@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: rgb(36, 62, 99);
}

html {
    scroll-behavior: smooth;
}

header {
    position: relative;
}

section {
    padding: 32px 0;
}

.row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    height: 80px;
    display: flex;
}

img {
    width: 100%;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav__container {
    width: 100%;
    padding: 32px 24px;
    max-width: 1335px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.purple {
    color: #6415ff;
}

.logo {
    width: 40px;
    height: 40px;
}

button {
    cursor: pointer;
}

ul {
    display: flex;
}

li {
    list-style-type: none;
}

.nav__link {
    margin-left: 16px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 8px;
}


.nav__logo--name {
    display: flex;
    align-items: center;
}

.nav__logo--title {
    font-weight: bold;
    font-size: 24px;
    padding: 0 10px;
}

.nav__link--list {
    display: flex;
    justify-content: space-between;
}


.nav__link-login,
.nav__link-sign-up {
    margin-left: 48px;
    font-weight: bold;
    font-size: 20px;
}

.nav__link-login {
    margin-right: 24px;
}

.nav__link-sign-up {
    margin: 0;
    padding: 10px 32px;
    margin-top: 2px;
    border-radius: 9999px;
    background: #6415ff;
    color: #fff;
    line-height: 1.5;
    border: none;
    width: auto;
    transition: all 300ms;
}

.nav__link-sign-up:hover {
    text-decoration: none;
}

.bnt__open {
    border: none;
    background-color: transparent;
    font-size: 30px;
    margin-right: 40px;
    display: none;
}

.bnt__close {
    background-color: transparent;
    font-size: 30px;
    border: none;
    position: fixed;
    top: 1px;
    right: 0.5px;
    padding: 24px;
    padding-top: 40px;
}

.menu__backdrop {
    position: absolute;
    background-color: rgb(255, 255, 255);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;
    opacity: 0;
    visibility: hidden;
    max-height: 45%;
    margin: 16px ;
    border: 1px solid #000000;
    border-radius: 8px;
}

.menu--open .menu__backdrop {
    visibility: visible;
    opacity: 1;
}

.menu--open {
    max-height: 100vh;
    overflow: hidden;
}

.menu__link--primary{
    background-color: #8418ff;
    color: white;
    font-size: 25px;
    border-radius: 500px;
    border: none;
    padding: 12px;
}

.menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__list {
    padding: 20px 0;
}

.menu__link {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.container {
    padding: 96px 0;
    margin: 0 auto;
}

/* HEADER */

.header__description {
    font-size: 30px;
}

.h1 {
    color: #1a202c;
    font-size: 48px;
    line-height: 1.25;
}

.header__description--para {
    margin: 32px 0;
}

.header__email {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 448px;
    height: 68px;
    position: relative;
}

.header__email--input {
    width: 100%;
    border-radius: 500px;
    border: 2px solid rgb(229, 231, 235);
    padding: 20px 192px 20px 32px;
    color: rgb(36, 62, 99);
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: border-color 300ms;
}

.header__email--btn {
    z-index: 2;
    margin: 8px;
    height: calc(100% - 16px);
    border-radius: 500px;
    width: 160px;
    border: none;
    background-color: #6415ff;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all 300ms;
}

.header__customers {
    margin-top: 48px;
    font-size: 12px;
    color: #a0aec0;
    font-weight: bold;
    letter-spacing: 0.6px;
    display: flex;
}

.header__img {
    margin-top: 16px;
    padding-right: 128px;
    opacity: 0.5;
    display: flex;
    display: flex-end;
}

.header__description {
    width: 41%;
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.header__img--wrapper {
    width: 100%;
    max-width: 780px;
}

.section__tag {
    font-size: 16px;
    letter-spacing: 1.6px;
    font-weight: 700;
}

/* FEATURES */

#features .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.section__title {
    font-size: 48px;
    font-weight: 900;
    color: rgb(36, 62, 99);
    line-height: 1.5;
    margin: 16px 0;
    letter-spacing: 0.025em;
}

.section__para {
    text-align: center;
    font-size: 20px;
    max-width: 576px;
    color: #7c8ba1;
    ;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature {
    width: calc(100% / 3);
}

.feature__row {
    display: flex;
    align-items: flex-start;
    padding: 32px 24px;
}

.feature__img--wrapper {
    display: flex;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 500px;
}

.feature__img {
    width: 24px;
    height: 24px;
}

.feature__text {
    margin-top: 8px;
    margin-left: 16px;
}

.feature__para {
    color: #7c8ba1;
    margin-top: 16px;
    line-height: 2;
    font-weight: 500;
}

/* QUALITY */

#quality .row {
    display: flex;
    justify-content: center;
}

.btn {
    background-color: #6415ff;
    color: white;
    border-radius: 500px;
    font-size: 14px;
    border: none;
    font-weight: bold;
    padding: 12px 32px;
    transition: all 300ms ease;
}

.quality__discription {
    max-width: 576px;
    margin-right: 64px;
}

.quality__para {
    padding: 20px 0;
    font-size: 20px;
}

.quality__title {
    padding-top: 20px;
    font-size: 50px;
    max-width: 467px;
}

/* STEPS */

#steps .row {
    display: flex;
}

.steps__img--wrapper {
    display: flex;
    position: relative;
    height: 100%;
    margin-top: 100px;
}


.steps__description {
    padding: 32px 0;
    padding-left: 64px;
}

.steps__title {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 50px;
    max-width: 467px;
}

.step {
    display: flex;
    margin-top: 32px;
    align-items: flex-start;
}

.step__number {
    display: flex;
    padding-right: 25px;
    font-size: 35px;
    color: #cbd5e0;
    line-height: 1;
}

.step__title {
    font-size: 25px;
    padding-bottom: 12px;
    font-weight: bold;
}

.step__para {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

/* VALUES */

#values .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.values__description,
.values__img {
    width: 50%;
}

.values__title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 48px;
}

.values__para {
    margin-top: 16px;
    margin-bottom: 20px;
    color: #7c8ba1;
    font-size: 18px;
    font-weight: 500;
}

.value__list {
    display: flex;
}

.value {
    padding: 15px;
}

.value__title {
    display: flex;
    align-items: center;
}

.value__img--wrapper {
    padding-right: 10px;
    width: 15%;
}

.value__name {
    font-weight: bold;
    font-size: 20px;
    color: #1a202c;
}

.value__para {
    margin-top: 16px;
    line-height: 1.625;
    color: #718096;
}

/* PRICING */

#pricing .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pricing .section__tag {
    display: flex;
    justify-content: center;
}

#pricing .section__para {
    max-width: 576px;
    text-align: center;
}

.Plans {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 100;

}

.plan {
    width: 100%;
    max-width: 384px;
    margin: 64px 32px 0 0;
    padding-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    position: relative;
    z-index: 100;
    background: #fff;
}

.plan:nth-child(1) .plan__stripe,
.plan:nth-child(1) .plan__button {
    color: white;
    background: linear-gradient(115deg, #3a00ab 0%, rgba(172, 17, 17, 0.541) 100%);
}

.plan:nth-child(3) .plan__stripe,
.plan:nth-child(3) .plan__button {
    color: white;
    background: linear-gradient(115deg, rgb(8, 32, 107)0%, rgba(117, 5, 221, 0.521) 100%);
}

.plan:nth-child(1) .plan__middle,
.plan:nth-child(3) .plan__middle {
    border-top: 2px solid #a0aec067;
    border-bottom: 2px solid #a0aec067;
}

.plan:nth-child(odd) .plan__name,
.plan:nth-child(odd) .plan__price,
.plan:nth-child(odd) .plan__target {
    color: #1a202c;
}

.plan:nth-child(2) {
    background: linear-gradient(135deg, rgb(8, 32, 107)0%, rgba(176, 8, 209, 0.822) 100%);
}

.plan:nth-child(2) .plan__button {
    background-color: #25076100;
    color: #000000;
}

.plan:nth-child(2) .plan__title,
.plan__pricing,
.plan__target {
    color: #000000;
}

.plan__stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.plan__top,
.plan__middle,
.plan__bottom {
    padding: 32px;
    text-align: center;
}

.plan__title {
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
}

.plan__pricing {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 12px;
}

.plan__time {
    color: #a0aec0;
    font-size: 15px
}

.plan__target {
    font-size: 20px;
    font-weight: 500;
}

.plan__feature {
    margin-top: 20px;
    color: #a0aec0;
    font-weight: 600;
}

.plan__bottom {
    padding: 32px 96px;
    position: relative;
}

.plan__button {
    color: white;
    border-radius: 500px;
    font-size: 14px;
    border: none;
    font-weight: bold;
    padding: 16px 32px;
    width: 100%;
    transition: all 300ms ease;
}

/* TESTIMONIALS */

#testimonials .row {
    display: flex;
}

.testimonials__img,
.testimonials__description {
    width: 50%;
}

.testimonials__img {
    display: flex;
    align-items: flex-start;
}

.testimonials__description {
    display: flex;
    flex-direction: column;
    padding-left: 64px;
}

.sectionT__para {
    font-size: 20px;
    max-width: 576px;
    color: #7c8ba1;
}

.testimonial {
    margin-top: 40px;
}

.testimonial__rating i {
    margin-bottom: 14px;
    color: rgba(246, 173, 85);
}

.testimonial__title,
.testimonial__name {
    font-weight: 700;
    color: #243e64;
    font-size: 20px;
    line-height: 1.5;
}

.testimonial__title {
    margin-bottom: 14px;
}

.testimonial__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.testimonial__role {
    color: #7c8ba1;
    font-weight: 500;
    line-height: 1.5;
}

.user__experience {
    margin: 16px 0px 40px 0;
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
}

.testimonial__profile {
    display: flex;
    align-items: center;
}

.testimonial__details {
    padding-left: 30px;
}

.testimonial__role {
    color: #7c8ba1;
}

.testimonial__img {
    width: 20%;
    border-radius: 50%;
}

.testimonial__buttons {
    display: flex;
    align-items: center;
}

.testimonial__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #edf2f7;
    border-radius: 50%;
    margin: 0 12px;
    transition: all 300ms;
}

.testimonial__button i {
    color: #6415ff;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: #000000;
}

/* START */

.start__container {
    padding: 96px 0;
    width: 100%;
    background-color: #6415ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start__row {
    width: 100%;
    margin: 0 auto;
    max-width: 1024px;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start__title {
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.5;
}

.start__title,
.start__buttons {
    width: 50%;
}

.start__buttons {
    display: flex;
    justify-content: flex-end;
}

.start__button {
    padding: 20px 40px;
    border-radius: 500px;
    font-weight: 700;
    font-size: 16px;
    color: #f7fafc;
    line-height: 1.5;
    letter-spacing: 0.025em;
    margin: 1px;
    z-index: 2;
}

.start__button:nth-child(1) {
    background-color: #9615ff;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    margin-right: 32px;
    transition: all 300ms;
}

.start__button:nth-child(2) {
    border: 1px solid #8418ff;
    transition: all 300ms;
    background-color: transparent;
}

/* FOOTER */

footer {
    background-color: #6415ff;
    padding: 96px 32px;
}

.footer__columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column--title {
    color: white;
    display: flex;
    font-weight: 500;
}

.footer__column--link:nth-child(2) {
    margin-top: 24px;
}

.footer__column--link {
    color: white;
    display: flex;
    margin-top: 12px;
    font-weight: 400;
    position: relative;
}

.footer__divider {
    width: 100%;
    background-color: #71809656;
    height: 2px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo--img {
    width: 32px;
    height: 32px;
}

.footer__logo--text {
    color: white;
    display: flex;
    font-size: 25px;
    margin-left: 10px;
}

.footer__copyright {
    color: #cbd5e0;
    font-weight: 500;
}

.footer__socials {
    display: flex;
}

.footer__social--link i {
    margin-left: 16px;
    padding: 8px;
    background: #f7fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    transition: all 300ms;
}

/* SMALL PHONES, TABLETS, LARGER SMARtPHONES */

@media (max-width:768px) {

    .header__description,
    .header__img--wrapper {
        width: 100%;
        max-width: 512px;
        margin: 0 auto
    }
}

@media (max-width: 768px) {
    .header__description {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bnt__open {
        display: block;
        margin-right: 30px;
    }

    .nav__link--list {
        display: none;
    }

    .header__row {
        flex-direction: column;
        align-items: center;
    }

    .section__para {
        font-size: 15px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature__row {
        padding: 32px 8px;
    }

    .feature__para {
        font-size: 18px;
    }

    .quality__title {
        font-size: 36px;
    }

    #quality .row,
    #values .row {
        flex-direction: column-reverse;
    }

    .quality__discription {
        width: 100%;
        max-width: 460px;
        text-align: center;
        margin-left: 80px;
    }

    .quality__img--wrapper,
    .steps__img--wrapper {
        width: 100%;
        max-width: 450px;
        margin-left: 100px;
        padding-bottom: 50px;
    }

    #steps .row {
        flex-direction: column;
        align-items: center;
    }

    .steps__img--wrapper {
        margin-right: 120px;
    }

    .values__description {
        width: 100%;
        max-width: 448px;
        text-align: center;
        margin-top: 64px;
    }

    .section__tag,
    .values__title,
    .values__para {
        text-align: center;
    }

    .value__title {
        flex-direction: column;
    }

    .value__list {
        flex-direction: column;
        max-width: 440px;
    }

    .section__title {
        font-size: 45px;
        text-align: center;
    }

    .Plans {
        flex-direction: column;
        align-items: center;
    }

    .testimonials__img {
        width: 100%;
        max-width: 440px;
        padding-left: 50px;
    }

    #testimonials .row {
        flex-direction: column;
        align-items: center;
    }

    .sectionT__para,
    .testimonial__rating,
    .testimonial__title,
    .user__experience {
        text-align: center;
    }

    .testimonial__img {
        width: 60px;
    }

    .user__experience {
        margin: 0 auto;
    }

    .testimonial__details {
        max-width: 100%;
        width: 200px;
    }

    .start__row {
        flex-direction: column;
    }

    .start__title {
        font-size: 30px;
        text-align: center;
        width: 100%;
    }

    .start__buttons {
        width: auto;
        margin-top: 24px;
    }

    .container {
        padding-left: 10px;

    }

    .footer__column{
        width: calc(100% / 3);
    }

    .footer__columns{
        justify-content: flex-start;
    }

    .footer__column--title{
        margin-top: 24px;
    }

    .footer__bottom{
        flex-direction: column;
        align-items: center;
    }

    .footer__copyright{
        margin: 40px;
    }
}


@media (max-width:899px) {

    .header__description,
    .header__img--wrapper {
        width: 100%;
        max-width: 512px;
        margin: 0 auto
    }
}

/* BIGGER SCREENS */

@media (max-width: 899px) {
    .header__description {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bnt__open {
        display: block;
        margin-right: 30px;
    }

    .nav__link--list {
        display: none;
    }

    .header__row {
        flex-direction: column;
        align-items: center;
    }

    .section__para {
        font-size: 15px;
    }

    

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature__row {
        padding: 32px 8px;
    }

    .feature__para {
        font-size: 18px;
    }

    .quality__title {
        font-size: 36px;
    }

    #quality .row,
    #values .row {
        flex-direction: column-reverse;
    }

    .quality__discription {
        width: 100%;
        max-width: 460px;
        text-align: center;
        margin-left: 80px;
    }

    .quality__img--wrapper,
    .steps__img--wrapper {
        width: 100%;
        max-width: 450px;
        margin-left: 100px;
        padding-bottom: 50px;
    }

    #steps .row {
        flex-direction: column;
        align-items: center;
    }

    .steps__img--wrapper {
        margin-right: 120px;
    }

    .values__description {
        width: 100%;
        max-width: 448px;
        text-align: center;
        margin-top: 64px;
    }

    .section__tag,
    .values__title,
    .values__para {
        text-align: center;
    }

    .value__title {
        flex-direction: column;
    }

    .value__list {
        flex-direction: column;
        max-width: 440px;
    }

    .section__title {
        font-size: 45px;
        text-align: center;
    }

    .Plans {
        flex-direction: column;
        align-items: center;
    }

    .testimonials__img {
        width: 100%;
        max-width: 440px;
        padding-left: 50px;
    }

    #testimonials .row {
        flex-direction: column;
        align-items: center;
    }

    .sectionT__para,
    .testimonial__rating,
    .testimonial__title,
    .user__experience {
        text-align: center;
    }

    .testimonial__img {
        width: 60px;
    }

    .user__experience {
        margin: 0 auto;
    }

    .testimonial__details {
        max-width: 100%;
        width: 200px;
    }

    .start__row {
        flex-direction: column;
    }

    .start__title {
        font-size: 30px;
        text-align: center;
        width: 100%;
    }

    .start__buttons {
        width: auto;
        margin-top: 24px;
    }

    .container {
        padding-left: 10px;

    }

    .footer__column{
        width: calc(100% / 3);
    }

    .footer__columns{
        justify-content: flex-start;
    }

    .footer__column--title{
        margin-top: 24px;
    }

    .footer__bottom{
        flex-direction: column;
        align-items: center;
    }

    .footer__copyright{
        margin: 40px;
    }
}