html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #00a071;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.top-bar {
    display: flex;
    align-items: center;
    position: fixed;
    height: 60px;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00a071;
}

.progress-bar-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #00a071;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: white;
    transition: width 0.2s ease-out;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.branding {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

#branding-title {
    font-weight: 600;
    line-height: 1;
    padding-top: 1.5px;
}

.top-bar-link-container {
    display: flex;
    gap: 30px;
    margin-right: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    padding-top: 2px;
}

.top-bar-link {
    color: #e7e7e7;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.top-bar-link:hover {
    color: white;
}

.landing-container {
    margin-top: 150px;
    text-align: center;
    min-height: 750px;
}

.landing-title {
    font-size: 100px;
    margin-bottom: 1px;
}

.buttons-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.landing-button {
    background-color: transparent;
    cursor: pointer;
    border: 2.5px solid #e7e7e7;
    color: #e7e7e7;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-button:hover {
    color: white;
    border-color: white;
}

.landing-arrow-button {
    margin-top: 200px;
    background: none;
    border: none;
    line-height: 0;
    transition: transform 0.3s ease;
}

.landing-arrow-element {
    display: block;
    width: 100%;
    height: auto;
    max-width: 75px;
}

.landing-arrow-button:hover {
    transform: translateY(10%);
}

.about {
    background-color: #00b881;
    color: white;
    min-height: 400px;
    padding-top: 60px;
    padding-bottom: 30px;
}

.about-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 50px;
}

.about-text {
    width: 30%;
    align-items: flex-start;
    flex-direction: column;
}

.about-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.about-acquisitions {
    width: 40%;
    align-items: flex-start;
    flex-direction: column;
}

.about-p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

.about-acq-p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

.about-acq-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    padding: 20px;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.word {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.reveal.active .word {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .word:nth-child(1) {
    transition-delay: 0s;
}
.reveal.active .word:nth-child(2) {
    transition-delay: 0.1s;
}
.reveal.active .word:nth-child(3) {
    transition-delay: 0.2s;
}
.reveal.active .word:nth-child(4) {
    transition-delay: 0.3s;
}
.reveal.active .word:nth-child(5) {
    transition-delay: 0.4s;
}
.reveal.active .word:nth-child(6) {
    transition-delay: 0.5s;
}

.contact {
    height: 700px;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.contact-text-cont {
    display: flex;
    flex-direction: column;
}

.contact-text-h1 {
    font-size: 50px;
    margin-bottom: 5px;
}

.contact-checkmark {
    height: 15px;
    width: auto;
}

.contact-content-cont {
    display: flex;
    flex-direction: column;
}

.contact-email-cont {
    width: 600px;
    padding: 20px;
    color: white;
    border-radius: 12px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.contact-modle {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 45%;
    min-width: 200px;
}

.contact-field.full-width {
    flex: 1 1 100%;
}

.contact-modle label.contact-title {
    font-weight: 600;
    margin-top: 15px;
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-label {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
    padding: 8px 4px 4px 0;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-label:focus {
    border-bottom-color: white;
}

.contact-label::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

textarea.contact-label {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
}

.form-submit-button {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.form-submit-button:hover {
    background-color: white;
    color: #00a071;
}

.form-submit-button .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.form-submit-button:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .landing-title { font-size: 60px; }
    .about-h1, .about-acq-h1, .contact-text-h1 { font-size: 36px; }
    .contact-email-cont { width: 100%; padding: 10px; }
    .about-container { flex-direction: column; align-items: flex-start; }
    .about-text, .about-acquisitions { width: 100%; }
    .about-p, .about-acq-p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .landing-title { font-size: 40px; }
    .about-h1, .about-acq-h1, .contact-text-h1 { font-size: 24px; }
    .contact-field { min-width: 100%; }
    .about-p, .about-acq-p {
        font-size: 14px;
    }
}

footer {
  background-color:#00b881;
  height: 140px;

}

.footer-container {
  display: flex;
  justify-content: center;
}

.footer-branding {
  color: white;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-weight: 800px;
}

#footer-closing {
  font-size: 15px;
}

.footer-roblox {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.footer-icon:hover {
    transform: translateY(-10%);
}


.footer-icon {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}