:root {
    --white: #FAFEFF;
    --black: #0C2834;
}

.landing {
    font-family: 'Avenir Next', sans-serif !important;
    font-weight: 500;
    color: var(--black);
    font-size: 20px;
}

/*Header*/
.landing header a, .landing header a:hover {
    color: var(--white);
}

.landing .header-container nav {
    max-width: 1024px;
    margin: auto;
    padding: 26px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing .header-container nav ul.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .landing .header-container nav ul.nav-list {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .landing .header-container nav .menu__wrapper {
        display: none;
    }
}

.landing button {
    background-color: transparent;
    border: 1px solid #0C28341A;
    border-radius: 5px;
    padding: 10px 20px;
}

.landing .hamburger-menu {
    top: 70px;
}

.landing .hamburger-menu a {
    width: 100%;
}

.landing .hamburger-menu a span {
    color: #263238;
    font-size: 16px;
    position: relative;
    top: 2px;
}

/*Footer*/
.landing footer {
    height: 194px;
    background-color: #0C2834;
    padding: 0 40px;
}

.landing footer * {
    font-size: 16px;
}

.landing .footer-container {
    padding-top: 47px;
    max-width: 1024px;
    margin: 0 auto;
}

.landing .footer-container *, .landing .footer-container a:hover {
    color: var(--white);
}

.landing .footer-content {
    margin-top: 39px;
    display: flex;
    justify-content: space-between;
}

.landing .footer-content ul {
    display: flex;
    gap: 18px;
}

.landing .logo,
.landing footer .logo {
    background: url("../assets/logo-2.svg") center no-repeat;
    width: 220px;
    height: 43px;
}

@media screen and (max-width: 767px) {
    .landing .footer-container .logo {
        margin: 0 auto;
    }

    .landing .footer-content {
        margin-top: 32px;
        flex-direction: column;
        gap: 18px;
    }

    .landing .footer-content .copyright {
        font-size: 10px;
        text-align: center;
    }

    .landing .footer-content ul {
        width: fit-content;
        margin: 0 auto;
    }
}

/*Pricing, Abouts Us*/

#pricing header *,
#about-us header * {
    color: var(--black) !important;
}

#pricing header .logo,
#about-us header .logo {
    background: url(../assets/logo.svg) center no-repeat;
}

#pricing main .header,
#about-us main .header {
    padding: 100px 20% 140px;
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: #F1F5F9;
}

#pricing main .header::before,
#about-us main .header::before {
    content: '';
    background: url(../assets/pricing-header-bg.svg) repeat center center;
    background-size: 100%;
    position: absolute;
    top: -68%;
    left: -43%;
    width: 200%;
    height: 200%;
    z-index: -1;
}

@media (max-width: 767px) {
    #pricing main .header::before,
    #about-us main .header::before {
        background-size: 350%;
        top: -70%;
        left: -40%;
    }
}

#pricing main .header h2,
#about-us main .header h2 {
    font-weight: 900;
    color: #1E293B;
}

#pricing .container__inner,
#about-us .container__inner {
    display: flex;
    gap: 24px;
    margin: 0 20px;
    justify-content: center;
    position: relative;
    top: -70px;
}