@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    min-height: 100vh;
}



.header-index {
    background-color: #ffffff;
    display: flex;
    padding: 20px 30px;
}
#header-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
#header-nav ul li a {
    color: #2f313f;
    font-size: 1em;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #eeeeee;
    text-underline-offset: 4px;
    text-decoration-thickness: 4px;
}
#header-nav ul li a:hover {
    transition: 0.3s;
    text-decoration-color: #00b775;
}
.header-index .div-bars {
    display: none;
    flex: 1;
    justify-content: end;
    align-items: center;
}
#nav-toggle-button {
    color: #2f313f;
    font-size: 1.8em;
    background: none;
    border: 0;
}
@media(max-width: 700px) {
    #header-nav {
        display: none;
        position: absolute;
        width: 100%;
        top: 68.8px;
        left: 0;
        background-color: #ffffff;
        padding: 30px;
    }
    #header-nav ul {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }
    #header-nav ul li a {
        color: #2f313f;
        font-size: 2em;
    }
    .header-index .div-bars {
        display: flex;
    }
}



.header-apps {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}
.header-apps > .nav-desktop {
    width: 1000px;
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 10px 20px;
}
@media(max-width: 1000px) {
    .header-apps > .nav-desktop {
        width: 100%;
    }
}
.header-apps > .nav-desktop > .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.header-apps > .nav-desktop > .logo > h1 > a {
    color: #2f313f;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: -4px;
    display: block;
    text-decoration: none;
}
.header-apps > .nav-desktop > .logo > a {
    color: #717780;
    font-size: 14px;
    font-weight: 300;
    margin-top: -4px;
    text-decoration: none;
}
.header-apps > .nav-desktop > .menu {
    display: flex;
    justify-content: center;
}
.header-apps > .nav-desktop > .menu > ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-apps > .nav-desktop > .menu > ul > li {
    display: inline-block;
}
.header-apps > .nav-desktop > .menu > ul > li > a {
    color: #2f313f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}
.header-apps > .nav-desktop > .signup {
    display: flex;
    justify-content: end;
}
.header-apps > .nav-desktop > .signup > ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-apps > .nav-desktop > .signup > ul > li {
    display: inline-block;
}
.header-apps > .nav-desktop .fa-user {
    color: #2f313f;
    font-size: 20px;
    display: block;
}
.header-apps > .nav-desktop .fa-right-from-bracket {
    color: #717780;
    font-size: 20px;
    display: block;
    background: none;
    border: 0;
    cursor: pointer;
}
.header-apps .button-primary {
    padding: 4px 16px;
    border-radius: 9999px;
    border: 0;
    display: block;
    background-color: #2f313f;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
.header-apps .button-primary:hover {
    transition: 0.3s;
    background-color: #50515a;
}
.header-apps .button-tertiary {
    border: 0;
    background: none;
    display: block;
    color: #717780;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
.header-apps .button-tertiary:hover {
    text-decoration: underline;
}
.header-apps > .nav-desktop > .div-bars {
    display: none;
    align-items: center;
}
.toggle-menu-button {
    display: block;
    color: #2f313f;
    font-size: 26px;
    background: none;
    border: 0;
}
.header-apps > .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    padding: 10px 20px;
    flex-direction: column;
    gap: 50px;
}
.header-apps > .nav-mobile > .div-xmark {
    display: flex;
    justify-content: end;
    height: 47px;
}
.header-apps > .nav-mobile > .menu > ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.header-apps > .nav-mobile > .menu > ul > li > a {
    color: #003a65;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}
.header-apps > .nav-mobile > .signup > ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}
@media(max-width: 800px) {
    .header-apps > .nav-desktop {
        display: flex;
    }
    .header-apps > .nav-desktop > .logo {
        flex: 1;
    }
    .header-apps > .nav-desktop > .div-bars {
        display: flex;
    }
    .header-apps > .nav-desktop > .menu {
        display: none;
    }
    .header-apps > .nav-desktop > .signup {
        display: none;
    }
}





.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}





main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

section {
    display: flex;
    justify-content: center;
}
main > section:last-child {
    margin-bottom: 100px;
}


.no-scroll {
    overflow: hidden;
}


h1 {
    font-size: 50px;
}
@media(max-width: 500px) {
    h1 {
        font-size: 11vw;
    }
}



.container {
    width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}
.container > .title {
    display: flex;
    justify-content: center;
}
@media(max-width: 1200px) {
    .container  {
        width: 100%;
    }
}
.button-primary {
    padding: 10px 20px;
    border: 0;
    font-weight: 600;
    font-size: 1em;
    display: block;
    color: #ffffff;
    background-color: #000000;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.button-primary:hover {
    background-color: #00b775;
}

small {
    font-size: 12px;
}
footer {
    background-color: #000000;
    height: 500px;
    display: flex;
    flex-direction: column;
}
footer > .mid {
    flex: 1;
}
footer > .credit {
    background-color: #111111;
    display: flex;
    justify-content: center;
}
footer > .credit > small {
    color: #888888;
    padding: 5px;
    font-size: 13px;
}
footer > .credit > small > a {
    text-decoration: none;
    color: #888888;
}
footer > .credit > small > a:hover {
    transition: 0.3s;
    color: #666666;
}
.popup-container {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000005b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.popup-content {
    background-color: #ffffff;
    padding: 20px;
}


.nowrap {
    white-space: nowrap;
}