@charset "UTF-8";

@font-face {
    font-family: 'Poppins-Regular';
    font-display: swap;
    src: url(./fonts/Poppins-Regular.woff2);
}

@font-face {
    font-family: 'Poppins-Medium';
    font-display: swap;
    src: url(./fonts/Poppins-Medium.woff2);
}

@font-face {
    font-family: 'Poppins-SemiBold';
    font-display: swap;
    src: url(./fonts/Poppins-SemiBold.woff2);
}

@font-face {
    font-family: 'Poppins-Bold';
    font-display: swap;
    src: url(./fonts/Poppins-Bold.woff2);
}

@font-face {
    font-family: 'Lato-Regular';
    font-display: swap;
    src: url(./fonts/Lato-Regular.woff2);
}

@font-face {
    font-family: 'Lato-Bold';
    font-display: swap;
    src: url(./fonts/Lato-Bold.woff2);
}

@font-face {
    font-family: 'Montserrat-Medium';
    font-display: swap;
    src: url(./fonts/Montserrat-Medium.woff2);
}

@font-face {
    font-family: 'OpenSans-Regular';
    font-display: swap;
    src: url(./fonts/OpenSans-Regular.woff2);
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    font-display: swap;
    src: url(./fonts/OpenSans-SemiBold.woff2);
}


:root {
    --color0: #fff;
    --color1: #3891f2;
    --color2: #001860;
    --color3: #555;
    --color4: #bfbfbf;
    --color7: #e9e9e9;
    --color8: #f9f9f9;

    --default-font: 'Arial, Verdana, Helvetica, sans-serif';
    --font1: 'Poppins-Regular';
    --font2: 'Poppins-Medium';
    --font3: 'Poppins-SemiBold';
    --font4: 'Poppins-Bold';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: auto;
    background-color: var(--color0);
}

a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

::placeholder {
    color: var(--color4);
    opacity: 1;
}

::-ms-input-placeholder {
    color: var(--color4);
}

.in-view {
    color: var(--color1);
}

li {
    list-style: none;
    cursor: pointer;
}

img {
    width: 100%;
}

header {
    width: 100%;
    margin: auto;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: var(--color2);
    border-bottom: 0.2rem solid var(--color1);
}

header .menu-top-mobile {
    display: none;
}

header .container-one-desktop {
    width: 100%;
    max-width: 139.2rem;
    margin: auto;
    padding: 1.4rem 1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .container-one-desktop .container-one-desktop-logo {
    width: 100%;
    max-width: 8.6rem;
}

header .container-one-desktop ul {
    width: 100%;
    max-width: 53.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container-one-desktop ul li {
    font: 500 1.6rem/2.4rem var(--font2);
    letter-spacing: 0.01em;
    color: var(--color0);
    transition: 100ms;
}

header .container-one-desktop ul li:hover {
    color: var(--color1);
}

header .container-one-desktop .user-logo {
    width: 100%;
    max-width: 11.9rem;
    padding: 0.4rem 2.5rem;
    border-radius: 0.6rem;
    background-color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 600 1.7rem/2.6rem var(--font3);
    letter-spacing: 0.01em;
    color: var(--color0);
    transition: 300ms;
}

header .container-one-desktop .user-logo::before {
    content: url("./assets/user-logo.svg");
    width: 100%;
    max-width: 1.7rem;
    height: auto;
    margin: 0.4rem 0.5rem 0 0;
}

header .container-one-desktop .user-logo:hover {
    transform: scale(1.05);
}

.header {
    background-color: var(--color8);
    margin: 12.088rem auto 0;
}

.header .container-three {
    width: 100%;
    max-width: 67.2rem;
    margin: auto;
    padding: 6.5rem 1rem 8.4rem;
}

.header .container-three h1 {
    font: 500 4.6rem / 6.9rem var(--font2);
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    margin: auto;
    background: linear-gradient(to right, var(--color2) 0%, var(--color1) 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.header .container-three p {
    font: 400 1.9rem/3.7rem var(--font1);
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--color2);
    width: 100%;
    margin: auto;
}

@media (max-width: 1440px) {
    header .container-one-desktop .container-one-desktop-logo {
        max-width: 7rem;
    }

    .header {
        margin: 10.472rem auto 0;
    }
}

@media (max-width: 1023px) {
    header #menuDesktop {
        display: none;
    }

    header .menu-top-mobile {
        display: block;
        width: 100%;
        max-width: 102.3rem;
        margin: auto;
        padding: 1rem;
    }

    header .menu-top-mobile .container-one-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .menu-top-mobile .container-one-mobile-logo {
        width: 100%;
        max-width: 6rem;
        height: auto;
    }

    header .menu-top-mobile .container-one-mobile .toggle {
        position: relative;
        width: 3.2rem;
        height: 3.5rem;
        right: 0;
        float: right;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        cursor: pointer;
    }

    header .menu-top-mobile .container-one-mobile .toggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 0.32rem;
        border-radius: 5rem;
        background-color: var(--color1);
        transform: translateY(-1rem);
        box-shadow: 0 1rem 0 var(--color1);
        transition: 300ms;
    }

    header .menu-top-mobile .container-one-mobile .toggle.active::before {
        transform: translateY(0) rotate(45deg);
        box-shadow: 0 0 0 var(--color1);
    }

    header .menu-top-mobile .container-one-mobile .toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 0.32rem;
        border-radius: 5rem;
        background-color: var(--color1);
        transform: translateY(1rem);
        transition: 300ms;
    }

    header .menu-top-mobile .container-one-mobile .toggle.active::after {
        transform: translateY(0) rotate(-45deg);
    }

    header .menu-top-mobile .menu-top-mobile-active {
        display: none;
    }

    header .menu-top-mobile .menu-top-mobile-active ul {
        width: 100%;
        margin: auto;
        text-align: center;
    }

    header .menu-top-mobile .menu-top-mobile-active ul li {
        font: 500 1.8rem/1.8rem var(--font2);
        color: var(--color0);
        transition: 100ms;
        margin: 0 auto 1.5rem;
    }

    header .menu-top-mobile .menu-top-mobile-active ul li:hover {
        color: var(--color1);
    }

    header .menu-top-mobile .menu-top-mobile-active .user-logo {
        width: 100%;
        max-width: 11.9rem;
        margin: auto;
        padding: 0.4rem 2.5rem;
        border-radius: 0.6rem;
        background-color: var(--color1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font: 600 1.7rem/1.7rem var(--font3);
        color: var(--color0);
        transition: 300ms;
    }

    header .menu-top-mobile .menu-top-mobile-active .user-logo::before {
        content: url("./assets/user-logo.svg");
        width: 100%;
        max-width: 1.7rem;
        height: auto;
        margin-right: 0.4rem 0.5rem 0 0;
    }

    header .menu-top-mobile .menu-top-mobile-active .user-logo:hover {
        transform: scale(1.05);
    }

    .header {
        margin: 8.461rem auto 0;
    }

    .header .container-three {
        padding: 4rem 1rem;
    }
}

@media (max-width: 767px) {
    .header .container-three h1 {
        font-size: 4rem;
        line-height: 7rem;
    }

    .header .container-three p {
        max-width: 40rem;
    }
}

@media (max-width: 539px) {
    header .menu-top-mobile .menu-top-mobile-active ul {
        padding-top: 1rem;
    }

    header .menu-top-mobile .menu-top-mobile-active ul li {
        font-size: 1.6rem;
        line-height: 1.6rem;
    }

    header .menu-top-mobile .menu-top-mobile-active .user-logo {
        font-size: 1.6rem;
        line-height: 1.6rem;
    }

    .header .container-three {
        padding: 2rem 1rem 3rem;
    }

    .header .container-three h1 {
        font-size: 2.8rem;
    }

    .header .container-three p {
        font-size: 1.6rem;
        line-height: 3rem;
        max-width: 28rem;
        margin: 1rem auto 0;
    }
}

@media (max-width: 374px) {
    .header .container-three h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}