*, *:before, *:after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    text-decoration: none;
    background: none;
    border-collapse: collapse;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 10px;
}

body {
    font: 400 1.8rem/2.6rem Poppins, sans-serif;
}

a, button {
    cursor: pointer;
    transition: all 0.1s linear 0.01s;
}
button:disabled {
    cursor: not-allowed !important;
}

.root {
    overflow: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    color: #ffffff;
    background: #fafafa;
    position: relative;
}

input {
    width: 100%;
    height: 100%;
    border: 1px solid #14A0A6;
    padding: 0 1.5rem;
    font: 400 1.6rem/1.9rem Poppins;
    color: #14A0A6;
}
input.is-invalid { border-color: red; }

button {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15.3rem;
    height: 100%;
    background: #14A0A6;
    font: 400 1.6rem/1.9rem Poppins;
    text-align: center;
    color: #FFFFFF;
}

.row {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem;
}

.content-wrapper {
    margin: 0 auto;
    max-width: 144rem;
    padding: 0 22.5rem;
}
.content-wrapper.content-wrapper--wide {
    max-width: 117rem;
    padding: 0 3rem;
}

.header {
    display: flex;
    flex-flow: column nowrap;
    height: 58rem;
    position: relative;
    overflow: hidden;
    background: no-repeat center / cover;
}

.gnee-logo {
    width: 20.4rem;
    height: 3.9rem;
    margin-left: auto;
    background: url('/img/gnee-logo.svg') no-repeat center / contain;
}

.header-video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-line {
    flex-shrink: 0;
    flex-grow: 0;
    height: 10rem;
    background: rgba(255,255,255,.9);
    z-index: 1;
}

.header-line-inner {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 12.2rem;
    height: 5.6rem;
    background: url('/img/sematic-globe-logo.svg') no-repeat center / contain;
}

.header-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    height: 100%;
    width: 100%;
    clip-path: inset(0 0 0 0);
}

.header-title {
    margin-top: -10rem;
    font: 700 5.2rem/6.3rem Poppins;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.header-text {
    max-width: 46rem;
    font: 400 1.8rem/2.6rem Poppins;
    letter-spacing: 1px;
    color: rgba(255,255,255,.8);
}


.footer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    min-height: 20rem;
    margin-top: auto;
    background: #066A81;
}

.footer-logo {
    width: 7.4rem;
    height: 3.4rem;
    background: url('/img/sematic-globe-logo.svg') no-repeat center / contain;
    filter: brightness(0) invert(1);
    opacity: .5;
}

.footer-links {
    display: flex;
    flex-flow: row;
    gap: 4rem;
}

.footer-links > a {
    font: 400 1.4rem/4rem Poppins;
    color: #B9CAD2;
}

.footer-copy {
    font: 400 1.2rem/2.6rem Poppins;
    color: #B9CAD2;
}

.header-mobile {
    display: none;
}

.mobile-menu-wrapper.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    z-index: 9998;
}

.mobile-menu {
    padding: 5rem 1.5rem;
    position: fixed;
    top: 0;
    right: -25.5rem;
    bottom: 0;
    width: 100%;
    max-width: 25.5rem;
    background: #ffffff;
    z-index: 9999;
    transition: right ease-in-out .4s;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    margin: 0 auto;
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
    background: url("/img/i/close-icon.svg") no-repeat center / cover;
}

.mobile-menu-list {
    list-style-type: none;
    display: flex;
    flex-flow: column nowrap;
    margin-top: 2.3rem;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    height: 4rem;
    width: 100%;
    font: 400 1.4rem/1.8rem Poppins;
    color: #14A0A6;
}

.search-form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 4rem;
    width: 100%;
    max-width: 64.2rem;
}

.search-form label {
    width: 100%;
    height: 100%;
}

.search-form button:before {
    content: 'Search';
}

@media (max-width: 1440px) {
    .content-wrapper {
        padding: 0 11rem;
    }
}

@media (max-width: 1200px) {
    .content-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 769px) {
    .header {
        height: auto;
    }

    .header-line,
    .header-video,
    .header-inner {
        display: none;
    }

    .header-mobile {
        display: block;
        padding: 4rem 0 1rem;
        height: 9rem;
        background: #14A0A6;
    }

    .header-mobile-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-mobile-logo {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 1.2rem;
    }

    .header-mobile-inner .header-logo.header-logo {
        height: 4rem;
        width: 8.6rem;
        filter: brightness(0) invert(1);
    }

    .header-mobile-burger {
        cursor: pointer;
        width: 3.2rem;
        height: 3.2rem;
        background: url('/img/i/burger-icon.svg') no-repeat center / cover;
    }
}

@media (max-width: 481px) {
    .content-wrapper {
        padding: 0 2rem;
    }

    .footer {
        min-height: 14rem;
    }

    .footer-links > a {
        font: 400 1.2rem/1.4rem Poppins;
    }

    .footer-copy {
        font: 400 1rem/1.5rem Poppins;
    }
}
