h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Segoe UI', sans-serif;
}

.navbarcontainer {
    padding: 20px 85px
}

.bigheading {
    font-weight: 800;
    color: #101826;
    margin: 0 0 15px 0;
    font-size: 40px;
}

.mediumheading {
    font-weight: 800;
    color: #101826;
    margin: 0 0 15px 0;
    font-size: 30px;
}

.learnmore {
    margin: 12px 0;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.heading {
    font-weight: 800;
    font-size: 26px;
    color: #101826;
    margin: 0 0 10px 0;
}

.text {
    color: #8d8d8d;
    margin: 0;
    font-size: 16px;
}

.features {
    color: #8d8d8d;
    margin: 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.productimage {
    max-width: 560px;
    min-width: 350px;
    width: 90%;
    border-radius: 10px;
}

.productrow {
    width: 100%;
    padding: 50px 140px;
    margin: 0 !important;
    gap: 40px 0;
}

.productimagecontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pinkbanner {
    background-color: #ff6ab0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    gap: 15px;
    margin: 50px 0 100px 0;
}

.person {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.userimage {
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
}

.bannertext {
    margin: 0;
    color: white;
    text-align: center;
    width: 45%;
    font-size: 20px;
    font-weight: 500;
}

.username {
    margin: 0;
    color: white;
    font-weight: 500;
}

.emailinput {
    border: 1px solid #d1d6dc;
    border-radius: 4px;
    padding: 3px 12px;
    font-size: 14px;
}

.emailinput:focus-visible {
    outline: none;
}

.learnmorebtn {
    background-color: #ff6ab0;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
    transition: all ease-in-out 0.2s;
}

.learnmorebtn:hover {
    background-color: #ee63a4;
}

.joinmainbox {
    /* padding: 100px 80px; */
    padding: 0px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joinbox {
    border: 1px solid #cad5e0;
    border-radius: 10px;
    width: 60%;
    padding: 60px 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    border-top: 1px solid #e5e7eb;
    padding: 55px 0 30px 0;
    margin-top: 100px;
}

.footertext {
    color: #8d8d8d;
    margin: 0;
    font-size: 12px;
    text-align: center;
}

@media only screen and (max-width: 1100px) {
    .productrow {
        padding: 50px 100px;
    }
}

@media only screen and (max-width: 991px) {
    .productimage {
        width: 100%;
    }

    .productimagecontainer {
        align-items: center !important;
    }
}

@media only screen and (max-width:768px) {
    .productrow {
        padding: 50px 70px;
    }

    .bannertext {
        width: 70%;
    }

    .joinmainbox {
        padding: 0px 70px;
    }

    .joinbox {
        width: 100%;
        padding: 45px 35px;
    }

    .pinkbanner {
        margin: 10px 0 60px 0;
    }

    .footer {
        margin-top: 50px;
        padding: 40px 0 30px 0;
    }

    .navbarcontainer {
        padding: 20px 50px;
    }
}

@media only screen and (max-width:576px) {
    .productrow {
        padding: 30px 40px;
    }

    .pinkbanner {
        margin: 10px 0 40px 0;
    }

    .joinmainbox {
        padding: 0px 40px;
    }
}

@media only screen and (max-width:450px) {
    .features {
        flex-wrap: wrap;
    }

    .productrow {
        padding: 30px 25px;
    }

    .navbarcontainer {
        padding: 20px 25px;
    }

    .joinmainbox {
        padding: 0px 25px;
    }

    .bannertext {
        width: 85%;
    }

    .emailinput {
        min-width: unset !important;
    }

    .productimage {
        min-width: unset;
    }

    .bigheading {
        font-size: 36px;
    }
}