@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


@keyframes popMenu {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes popBlackscreen {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes closeMenu {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes closeBlackscreen {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes popContactForm {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes closeContactForm {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

:root {
    --nav-height: 100px;
}

* {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: gap 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

button.gap-25 {
    gap: 25px;
}

.gen-btn {
    background-color: #0F556F;
    border-radius: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 0 30px;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.gen-btn:hover {
    background-color: #156b8a;
    transition: background-color 0.3s;
    cursor: pointer;
}

.gen-btn:active {
    background-color: rgb(32, 32, 32);
    transition: background-color 0.3s;
    cursor: pointer;
}

.breadcrumb-wrapper {
    cursor: pointer;
}

.breadcrumb-wrapper:hover {
    text-decoration: underline;
}

.gen-section-wrapper {
    padding: 85px 40px;
}

.gen-section-container {
    max-width: 1450px;
    margin: auto;
}

.gen-description-wrapper {
    font-size: 18px;
    line-height: 30px;
}

.gen-arrow-icon {
    height: 15px;
}

/* Tabs */

.gen-tab-wrapper {
    display: flex;
    flex-direction: row;
    padding: 0;
    border-bottom: 1px solid lightgray;
}

.gen-tab-option {
    padding: 15px 25px;
    margin-bottom: -1px;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s;
}

.gen-tab-option.active {
    font-weight: bold;
    border-color: #0F556F;
}

.gen-tab-option:not(.active):hover  {
    cursor: pointer;
    border-color: #94aeb8;
}

.gen-tab-body-item {
    display: none;
    line-height: 25px;
}

.gen-tab-body-item p:first-child {
    margin-top: 0;
}

.gen-tab-body-item.active {
    display: block;
}

.mobile-navigation-wrapper {
    display: none;
}

.nav-wrapper {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid lightgray;
    transition: transform 0.6s;
}

.nav-wrapper.hidden {
    transform: translateY(-100px);
}

.nav-content-container {
    display: flex;
    padding: 0 50px;
    height: var(--nav-height);
    align-items: center;
    gap: 50px;
    margin: auto;
    max-width: 1450px;
}

.nav-items {
    margin-left: auto;
}

nav {}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav ul li {
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

nav ul li:hover {
    border-color: black;
    transition: border-color 0.3s;
}

.nav-logo-wrapper {
    cursor: pointer;
}

.nav-logo-wrapper img {
    height: 35px;
}

.nav-contact-wrapper {}

.nav-contact-wrapper button {
    background-color: black;
    border-radius: 50px;
    font-weight: 600;
    height: 50px;
    box-sizing: border-box;
    padding: 0 35px;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.nav-contact-wrapper button:hover {
    background-color: #363636;
    transition: background-color 0.3s;
    cursor: pointer;
}

.nav-contact-wrapper button:active {
    background-color: rgb(32, 32, 32);
    transition: background-color 0.3s;
    cursor: pointer;
}

.mobile-navigation-menu {
    display: none;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
}

.mobile-nav-line {
    width: 30px;
    height: 2px;
    background-color: black;
}

/* Footer */

footer {
    background-color: #181818;
    margin-top: auto;
}

.footer-wrapper .gen-section-wrapper {
    padding-bottom: 25px;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-wrapper img {
    width: 250px;
}

.footer-slogan-wrapper {
    max-width: 350px;
}

.footer-information-wrapper {
    display: flex;
    flex-direction: row;
    gap: 75px;

}

.footer-information-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-information-column ul li {
    transition: padding 0.3s;
}

.footer-information-column ul li:hover {
    text-decoration: underline;
    padding-left: 6px;
    cursor: pointer;
    transition: padding 0.3s;
}


.footer-contact-information {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-information p {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.footer-social-media-items {
    display: flex;
    gap: 10px;
}

.footer-social-media-items a {
    max-width: 50px;
}


.footer-social-media-items img {
    height: 25px;
    width: 100%;
}

.footer-credits-wrapper {
    display: flex;
    height: 100px;
    gap: 45px;
    margin-top: 45px;
}

.footer-credits-wrapper img {
    height: 100%;
    box-sizing: border-box;
}


.footer-copyright-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 35px;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


/* Contact form */

/* Navigation */

.nav-blackout-wrapper {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.90);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    z-index: 999;
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
}

.nav-blackout-wrapper.opening {
    animation: popBlackscreen;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

.nav-blackout-wrapper.opening nav {
    animation: popMenu;
    animation-duration: 0.6s;
}

.nav-blackout-wrapper.closing {
    animation: closeBlackscreen;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}


#contact-form {
    position: relative;
    width: 1000px;
    padding: 45px;
    box-sizing: border-box;
    z-index: 999;
    margin-top: auto;
    background-color: white;
}

.nav-blackout-wrapper.opening #contact-form {
    animation: popContactForm;
    animation-duration: 1s;
}

.nav-blackout-wrapper.closing #contact-form {
    animation: closeContactForm;
    animation-duration: 0.6s;
    animation-fill-mode:forwards;
}

.contact-fields-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    margin-top: 24px;
}

.contact-field label {
    font-size: 12px;
    font-weight: 600;
}

.contact-field input {
    height: 48px;
    border: none;
    padding: 16px;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    margin-top: 8px;
    background-color: #E5E5E580;
}

.contact-field.message-area {
    margin-top: 16px;
}

.contact-field textarea {
    border: none;
    outline: none;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 16px;
    resize: none;
    height: 160px;
    background-color: #E5E5E580;
}

.contact-form-logo img {
    height: 54px;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-disclaimer-wrapper {
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    margin-top: 8px;
}

.contact-form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 24px;
}

.contact-form__terms {
    font-size: 14px;
}

.contact-form__send {
    display: flex;
    justify-content: flex-end;
}

.contact-form__send button {
    height: 60px;
    background-color: black;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    padding: 0 50px;
    transition: background-color 0.3s;
}

.contact-form__send button:hover {
    background-color: #363636;
    transition: background-color 0.3s;
}

.contact-form__send button:active {
    background-color: #1b1b1b;
    transition: background-color 0.3s;
}

.contact-form__send button:disabled {
    background-color: #646464;
    cursor: not-allowed;
    transition: background-color 0.3s;
}

.contact-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.contact-form-success-icon img {
    width: 75px;
}

.contact-form-success-close {
    margin-top: 50px;
}

.contact-form-success-message {
    text-align: center;
}

#close-contact-form {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}


@media screen and (max-width: 1000px) {

    .nav-contact-wrapper {
        display: none;
    }

    .mobile-navigation-menu {
        display: flex;
    }

    .mobile-navigation-wrapper {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background-color: white;
        top: calc(var(--nav-height) + 1px);
        height: calc(100% - var(--nav-height));
        overflow: auto;
        opacity: 0;
        transform: translateY(100%);
        transition: transform 1s, opacity 1s;
    }

    .mobile-navigation-wrapper.open {
        transform: translateY(0);
        opacity: 1;
        transition: transform 1s, opacity 1s;
    }

    .mobile-navigation-copyright {
        text-align: center;
        padding: 15px;
        border-top: 1px solid #efefef;
        margin: auto 15px 0 15px;
        font-weight: 600;
        font-size: 12px;
    }

    .mobile-navigation-wrapper nav ul {
        flex-direction: column;
        justify-content: center;
        padding: 25px
    }

    .mobile-navigation-wrapper nav ul li span {
        font-size: 25px !important;
        font-weight: bold;
    }

    .mobile-navigation-wrapper nav ul li a span {
        text-transform: uppercase;
    }

    .mobile-navigation-wrapper nav ul li p {
        margin: 0;
        font-size: 14px;
        text-transform: initial;
        font-weight: normal;
    }

    .nav-items {
        display: none;
    }

    .gen-section-title {
        font-size: 55px;
        padding: 0 15px;
        line-height: normal;
        text-align: center;
    }

    .gen-description-wrapper {
        font-size: 15px;
    }

    .about-us-wrapper {
        gap: 30px;
    }

    .footer-columns {
        flex-direction: column-reverse;
        gap: 100px;
        align-items: center;
    }

    .footer-information-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-information-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-credits-wrapper {
        flex-direction: column;
        height: auto;
        margin-top: 100px;
        gap: 25px;
    }

    .footer-credits-wrapper img {
        height: 100px;
        object-fit: contain;
    }


    #contact-form {
        width: 100%;
    }

    .contact-fields-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form__send button {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {

    :root {
        --nav-height: 80px;
    }

    .nav-content-container {
        padding: 0 25px;
    }
    

    .nav-logo-wrapper img {
        height: 25px;
    }

   .gen-section-wrapper {
        padding: 45px 20px;
   }

   .gen-description-wrapper {
    text-align: center;
}

   .gen-tab-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        max-width: 100%;
   }

   #contact-form {
    padding: 45px 25px;
   }
}