@charset "UTF-8";

@font-face {
    font-family: 'Lato-Regular';
    font-display: swap;
    src: url(./fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Lato-Bold';
    font-display: swap;
    src: url(./fonts/Lato-Bold.ttf);
}

:root {
    --color0: #fff;
    --color1: #555;
    --color2: #e60023;
    --color3: #3189c9;
    --color4: #128ddf;
    --color5: #f3f3f3;
    --color6: #efefef;
    --color7: #f9f9f9;
    --color8: #f0f0f0;
    --color9: #354248;
    --color10: #e9e9e9;

    --default-font: 'Arial, Verdana, Helvetica, sans-serif';
    --font1: 'Lato-Bold';
    --font2: 'Lato-Regular';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth
}

li {
    list-style: none;
    cursor: pointer;
}

body {
    width: 100%;
    margin: auto;
    background-color: var(--color0);
}

.in-view {
    font: 700 1.8rem/1.8rem var(--font1);
    color: var(--color2);
}

textarea,
input[type="email"]:focus,
input[type="text"]:focus {
    outline: none;
}

.plans {
    font-family: var(--font2);
    font-weight: 400;
    color: var(--color0);
    width: 100%;
    background-color: var(--color4);
    border: none;
    border-radius: 10rem;
    transition: 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans::after {
    content: url('./assets/right-arrow.png');
    width: 1.9rem;
    height: 1.9rem;
    margin-left: 0.7rem;
}

.plans:hover {
    cursor: pointer;
    transform: scale(1.05);
}

header {
    width: 100%;
    margin: auto;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: var(--color0);
    border-top: 1rem solid var(--color3);
    border-bottom: 0.05rem solid var(--color3);
}

header .menu-top-mobile {
    display: none;
}

header .container-one-desktop {
    width: 100%;
    max-width: 140.4rem;
    margin: auto;
    padding: 1rem 1rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .container-one-desktop .container-one-desktop-logo {
    width: 100%;
    max-width: 21.2rem;
}

header .container-one-desktop .container-two {
    width: 100%;
    max-width: 81rem;
}

header .container-one-desktop .container-two ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container-one-desktop .container-two ul li {
    font: 400 1.8rem/1.8rem var(--font2);
    color: var(--color1);
    transition: 200ms ease-in-out;
}

header .container-one-desktop .container-two ul li:hover {
    font: 700 1.8rem/1.8rem var(--font1);
    color: var(--color2);
}

header .container-one-desktop .container-two .user-logo {
    width: 100%;
    max-width: 13rem;
    margin-left: 2.6rem;
    padding: 0.8rem 2.4rem;
    border-radius: 10rem;
    background-color: var(--color4);
    display: flex;
    justify-content: center;
    font: 400 1.8rem/1.8rem var(--font2);
    color: var(--color0);
    transition: 300ms ease-in-out;
}

header .container-one-desktop .container-two .user-logo::before {
    content: url('./assets/user-logo.png');
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.5rem;
}

header .container-one-desktop .container-two .user-logo:hover {
    transform: scale(1.05);
}

.header {
    background: url('./assets/bg-section-one.webp') center center no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 192rem;
    margin: 13.3rem auto 0;
    height: 78rem;
}

.header .container-three {
    width: 100%;
    max-width: 140.2rem;
    margin: auto;
    padding: 0 1rem;

    position: relative;
}

.header .mobile-logo {
    display: none;
}

.header .container-three h1 {
    font: 400 4.9rem/6.1rem var(--font2);
    letter-spacing: -0.02em;
    color: var(--color1);
    width: 100%;
    max-width: 80.4rem;
    padding: 19rem 0 0;
}

.header .container-three h1 span {
    font-weight: 700;
    color: var(--color4);
}

.header .container-three .plans {
    font-size: 2.2rem;
    line-height: 2.6rem;
    max-width: 43.5rem;
    padding: 1.3rem 1rem 1.8rem;
    margin: 5.2rem 0 0;
}

.header .bg-mobile {
    display: none;
}

.header img.wp-logo {
    width: 100%;
    max-width: 64px;
    height: auto;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 100;
    transition: 300ms ease-in-out;
}

.header img.wp-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 1440px) {
    header .container-one-desktop .container-two .user-logo {
        margin-left: 0;
    }

    .header .container-three h1 {
        padding: 18rem 0 0 0;
    }
}

@media (max-width: 1279px) {
    header #menuDesktop {
        display: none;
    }

    header .menu-top-mobile {
        display: block;
        width: 100%;
        max-width: 127.9rem;
        margin: auto;
        padding: 2.7rem 4.5rem 1.3rem;
    }

    header .menu-top-mobile .container-one-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .menu-top-mobile .container-one-mobile .toggle {
        position: relative;
        width: 42px;
        height: 21px;
        right: 0px;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100000;
        cursor: pointer;
    }

    header .menu-top-mobile .container-one-mobile .toggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3.2px;
        border-radius: 50px;
        background-color: var(--color4);
        transform: translateY(-10px);
        box-shadow: 0 10px 0 var(--color4);
        transition: 300ms ease-in-out;
    }

    header .menu-top-mobile .container-one-mobile .toggle.active::before {
        transform: translateY(0px) rotate(45deg);
        box-shadow: 0 0 0 #fff;
    }

    header .menu-top-mobile .container-one-mobile .toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3.2px;
        border-radius: 50px;
        background-color: var(--color4);
        transform: translateY(10px);
        transition: 300ms ease-in-out;
    }

    header .menu-top-mobile .container-one-mobile .toggle.active::after {
        transform: translateY(0px) rotate(-45deg);
    }

    header .menu-top-mobile .user-logo {
        width: 100%;
        max-width: 11rem;
        padding: 0.5rem 2rem;
        border-radius: 10rem;
        background-color: var(--color4);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font: 400 1.8rem/1.8rem var(--font2);
        color: var(--color0);
        transition: 300ms ease-in-out;
    }

    header .menu-top-mobile .user-logo-img {
        width: 100%;
        max-width: 1.7rem;
        height: auto;
        margin-right: 0.5rem;
    }

    header .menu-top-mobile .user-logo:hover {
        transform: scale(1.05);
    }

    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: 400 1.8rem/1.8rem var(--font2);
        letter-spacing: 0.01em;
        color: var(--color1);
        transition: 200ms ease-in-out;
        margin: 0 auto 1.5rem;
    }

    header .menu-top-mobile .menu-top-mobile-active ul li:hover {
        font: 700 1.8rem/1.8rem var(--font1);
        color: var(--color2);
    }

    .header {
        background: none;
        height: 100%;
        margin: 7.9rem auto 0;
    }

    .header .bg-mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    .header .container-three {
        padding: 0 1rem 6rem;
    }

    .header .container-three h1 {
        text-align: center;
        max-width: 80.4rem;
        margin: auto;
        padding: 6rem 0 0;
    }

    .header .container-three .plans {
        margin: 5.2rem auto 0;
    }
}

@media (max-width: 1023px) {
    .header .container-three h1 {
        font-size: 3.6rem;
        line-height: 4.6rem;
        max-width: 76rem;
    }
}

@media (max-width: 539px) {
    header .menu-top-mobile .menu-top-mobile-active ul {
        padding-top: 4rem;
    }

    .header .container-three {
        padding: 0 1rem 5rem;
    }

    .header .container-three h1 {
        font-size: 2.5rem;
        line-height: 3.5rem;
        padding: 2.5rem 0 0;
    }

    .header .container-three .plans {
        font-size: 2rem;
        line-height: 2.6rem;
        max-width: 32rem;
        padding: 1.3rem 1rem 1.8rem;
        margin: 3rem auto 0;
    }
}