
/* google font */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {

    --primary-light: #FFFFFF;
    --primary-dark: #0c0c0c;

    --text-dark: #0f0f0f;
    --text-gray: #8d8d8d;
    
    --gray-light: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a,li,ul {
    text-decoration: none;
    list-style: none;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: "Manrope", sans-serif;
}

.wrapper {
    height: 100%;
    width: 100%;
    padding-inline: 1.2rem;
    padding-block: 1rem;
    scroll-behavior: smooth;
}

.hero__section {
    /* min-height: 120vh; */
    width: 100%;
    padding-bottom: 2rem;
    background-image: url(./assets/Hero-5.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 1.2rem;
}

.navBar {
    width: 100%;
    padding-top: 1rem;

    display: flex;
    align-items: center;
}

.nav__links {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;

}

.nav__links h4 a {
    font-size: 1.2rem;
    color: var(--primary-light);
    cursor: pointer;
}

.nav__links h4 {
    transition: all 0.3s ease-in-out;
}

.nav__links h4:hover {
    transform: translateY(4px);
}

.nav__menu {
    display: none;
}

.nav__menu i {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-light);
    cursor: pointer;
}

.hero__content {
    width: 100%;
}

.hero__title {
    width: 100%;
    /* text-align: center; */

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__title h1 {
    font-size: 2rem;
    color: var(--primary-light);
}

.hero__text {
    width: 100%;
    padding-inline: 12rem;
}

.content__title__text {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.content__title__text h2 {
    font-size: 1.8rem;
    color: var(--primary-light);
}

.content__title__text p {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.search__container {
    width: fit-content;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 5rem;

    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.search__group {
    padding-inline: 0.5rem;
    border-right: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search__group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.search__group select {
    width: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}

.search__btn button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 4rem;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    cursor: pointer;

    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.sub__hero__section {
    width: 100%;
    padding-block: 6rem 4rem;
    padding-inline: 6rem;
}

.main__text__container {
    width: 100%;

    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.left__text {
    width: 50%;
}

.left__text p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.right__text {
    width: 50%;
}

.right__text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.carousel__section {
    width: 100%;
    padding-inline: 6rem;
    padding-block: 4rem;
}

.swiper {
    width: 100%;
}

.swiper-wrapper {
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 4px solid var(--gray-light);
}

.swiper-slide {
    width: 60%;
    cursor: pointer;
}

.slider__card {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image__box {
    border-radius: 1rem;
    overflow: hidden;
}

.image__box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.slider__text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.slider__text p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
}

.cta__btn__section {
    width: 100%;
}

.cta__container {
    width: 100%;
    padding-bottom: 4rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    cursor: pointer;

    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.feature__section {
    width: 100%;
    padding-bottom: 2rem;
}

.feature__container {
    width: 100%;
    padding: 4vw;
    border-radius: 1.2rem;
    background-color: var(--primary-dark);
    color: var(--primary-light);

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

.left__feature__container {
    width: 60%;
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.title__tag {
    width: 100%;
    height: 60%;
}

.title__tag h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-light);
}

.title__text {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title__text h2 {
    font-size: 2.8rem;
    line-height: 3.5rem;
}

.title__text p {
    max-width: 70%;
    font-size: 1rem;
}

.main__text__content {
    width: 100%;
    height: 40%;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature__cta__btn button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);

    font-size: 0.9rem;
    font-weight: 600;
}

.right__feature__container {
    width: 40%;
    height: 70vh;
    /* padding-inline: 2rem; */
    position: relative;

    color: var(--primary-light);

    display: flex;
    align-items: center;
    justify-content: center;
}

.image__container {
    width: 80%;
    height: 100%;

    border-radius: 1.2rem;
    overflow: hidden;
}

.image__container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.feature__image__content {
    position: absolute;
    bottom: 10%;
    left: -12px;
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    padding: 0.6rem;
    background-color: var(--primary-light);
    border-radius: 1rem;

    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card__text {
    color: var(--primary-dark);
}

.card__text h4 {
    font-size: 1rem;
}

.card__text p {
    font-size: 0.8rem;
}

.card__icon {
    padding: 0.4rem 0.6rem;
    border-radius: 50%;
    background-color: var(--gray-light);
}

.card__icon i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.stats__box {
    width: 100%;
    padding-top: 4rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6vw;
}

.stats__count {
    display: flex;
    align-items: center;
    gap: 4vw;

    color: var(--text-gray);
    font-size: 1rem;
}

.stats__satic {
    display: flex;
    align-items: center;
    gap: 4vw;

    color: var(--text-gray);
    font-size: 1rem;
}

.footer__hero__title h1 {
    color: var(--text-dark);
}

.testimonial__card {
    padding: 1.2rem 1.8rem;
    border-radius: 1.4rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.testimonial__card__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial__card__header p {
    font-size: 0.8rem;
}

.client__image {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.client__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial__card__text {
    padding-top: 0.5rem;
}

.testimonial__card__text p {
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial__card__footer {
    width: 100%;

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

.card__footer__text p {
    font-size: 0.88rem;
}

.card__ratings {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.card__ratings i {
    font-size: 0.88rem;
}

.light__cta__btn {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.cta__banner {
    height: 90vh;
    width: 100%;
    border-radius: 1.2rem;
    background-image: url(./assets/Hero-3.jpg);
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-light);
}

.cta__btn__container {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    width: 100%;
    padding: 2rem;
}

.footer__container {
    width: 100%;
    padding-inline: 6vw;
    padding-block: 2rem;

    display: flex;
    justify-content: space-between;
    gap: 6rem;
}

.footer__left__content {
    width: 50%;
}

.footer__content__box {
    width: fit-content;
    padding-bottom: 1.2rem;
    border-bottom: 3px solid var(--gray-light);
}

.footer__content__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14vw;
}

.footer__content__box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
}

.footer__content__cta i {
    font-size: 1.2rem;
}


.footer__right__content {
    width: 50%;
}

.footer__option__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.opt__list li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);

    cursor: pointer;
    transition: all 0.3s ease-in-out;

    &:hover {
        transform: translateX(4px);
        font-weight: 600;
    }
}

.opt__list li:first-child {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.opt__list li:last-child {
    margin-bottom: none;
}



@media (width > 1024px) {

    .hero__title h1 {
        font-size: 22vw;
    }
}


@media (width < 1024px) {

    .hero__title h1 {
        font-size: 22vw;
    }

    .hero__text {
        padding-inline: 5rem;
    }

    .content__title__text h2 {
        font-size: 1.6rem;
    }

    .content__title__text p {
        font-size: 1.2rem;
    }

    .sub__hero__section {
        padding-inline: 4rem;
    }

    .search__container {
        width: fit-content;
    }

    .swiper {
        width: 100%;
    }

    .carousel__section {
        padding-inline: 2rem;
    }

    .feature__container {
        padding: 1.4rem 2.4rem;
        gap: 1.6rem;
    }

    .left__feature__container {
       min-height: 30vh;
    }

    .title__tag h4 {
        font-size: 0.8rem;
    }

    .title__text {
        gap: 1rem;
    }

    .title__text h2 {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }

    .title__text p {
        font-size: 0.8rem;
    }

    .right__feature__container {
        height: 30vh;
        padding-inline: 0.5rem;
    }

    .image__container {
        width: 100%
    }

    .feature__image__content {
        bottom: 5%;
        left: -8%;
        gap: 0.8rem;
    }

    .corosal__section {
        padding-inline: 4rem;
    }

    .testimonial__card {
        padding: 1rem;
    }

    .cta__banner {
        height: 40vh;
    }

    .footer__container {
        padding-inline: 3vw;
    }


}


@media (width < 768px) {

    .nav__links {
        display: none;
    }

    .navBar {
        padding-inline: 1rem;
        justify-content: flex-end;
    }

    .nav__menu {
        display: block;
    }

    .hero__title h1 {
        /* font-size: 8rem; */
        font-size: 22vw;
    }

    .hero__text {
        padding-inline: 4rem;
    }

    .content__title__text h2 {
        font-size: 1.4rem;
    }

    .content__title__text p {
        font-size: 1rem;
    }

    .search__container {
        width: fit-content;
        padding: 0.6rem;
        gap: 1rem;
        border-radius: 4rem;
    }

    .search__group {
        gap: 0.4rem;
    }

    .search__group h4 {
        font-size: 0.8rem;
    }

    .search__btn button {
        padding: 0.5rem;
        font-size: 0.8rem;
        border-radius: 0.5rem;
    }

    .sub__hero__section {
        padding-block: 4rem 1rem;
        padding-inline: 4rem;
    }

    .left__text p {
        font-size: 0.8rem;
    }

    .right__text h4 {
        font-size: 1rem;
    }

    .carousel__section {
        padding-inline: 3.2rem;
        padding-block: 2.2rem;
    }

    .swiper {
        width: 100%;
    }

    .slider__text h4 {
        font-size: 1rem
    }

    .slider__text p {
        font-size: 0.8rem;
    }

    .feature__container {
        padding: 2rem 4rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .left__feature__container {
        width: 100%;
        min-height: 50vh;
    }

    .title__tag h4 {
        font-size: 0.8rem;
    }

    .title__text {
        gap: 0.8rem;
    }

    .title__text h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .title__text p {
        max-width: 70%;
        font-size: 0.8rem;
    }

    .right__feature__container {
        width: 100%;
        height: 50vh;
        padding: 0.8rem 2rem;
    }

    .image__container {
        height: 100%;
        width: 100%;
    }

    .feature__image__content {
        left: -2%;
    }

    .card {
        padding: 0.4rem;
        border-radius: 0.8rem;
    }

    .card__text h4 {
        font-size: 0.8rem;
    }

    .card__text p {
        font-size: 0.6rem;
    }

    .cta__banner {
        height: 80vh;
    }

    .title {
        font-size: 1.4rem;
    }

    .footer__container {
        padding-inline: 3vw;
        padding-block: 1rem;

        flex-direction: column;
    }

    .footer__left__content {
        width: 100%;
    }

    .footer__content__box {
        width: 100%;
    }

    .footer__right__content {
        width: 100%;
    }

    .footer__option__list {
        align-items: flex-start;
        justify-content: space-around;
        gap: 2rem;
    }

}


@media (width < 540px) {

    .wrapper {
        padding-inline: 0.6rem;
    }

    .hero__title h1 {
        /* font-size: 6rem; */
        font-size: 22vw;
    }

    .hero__text {
        padding-inline: 1.5rem;
    }

    .content__title__text h2 {
        font-size: 1.2rem;
    }

    .content__title__text p {
        font-size: 0.8rem;
    }

    .search__container {
        width: 100%;
        border-radius: 4rem;
        gap: 0.4rem;
    }

    .search__group {
        padding-inline: 0.2rem;
        gap: 0.4rem;
    }

    .search__group h4 {
        font-size: 0.6rem;
    }

    .search__btn button {
        font-size: 0.6rem;
    }

    .sub__hero__section {
        padding-inline: 2rem 1rem;
    }

    .main__text__container {
        flex-direction: column;
        gap: 4rem;
    }

    .left__text {
        width: 100%;
    }

    .right__text {
        width: 100%;
    }

    .carousel__section {
        padding-inline: 2rem;
    }

    .swiper {
        width: 100%;
    }

    .slider__text h4 {
        font-size: 1rem;
    }

    .slider__text p {
        font-size: 0.8rem;
    }

    .cta__btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.8rem;
    }

    .feature__container {
        padding: 1.5rem 2rem;
        gap: 1.2rem;
    }

    .left__feature__container {
        min-height: 26vh;
    }

    .title__tag h4 {
        font-size: 0.7rem;
    }

    .title__text {
        gap: 0.6rem;
    }

    .title__text h2 {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .title__text p {
        max-width: 100%;
        font-size: 0.68rem;
    }

    .main__text__content {
        gap: 1rem;
    }

    .feature__cta__btn button {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }

    .right__feature__container {
        width: 100%;
        height: 35vh;
        padding: 0.8rem 2rem;
    }

    .feature__image__content {
        bottom: 4%;
        gap: 0.4rem;
    }

    .feature__image__content {
        bottom: 12%;
    }

    .card {
        padding: 0.2rem;
        border-radius: 0.6rem;
    }

    .card__text h4 {
        font-size: 0.6rem;
    }

    .card__text p {
        font-size: 0.4rem;
    }

    .card__icon {
        padding: 0.2rem 0.4rem;
    }

    .card__icon i {
        font-size: 1rem;
    }

    .stats__box {
        padding-top: 2rem;

        justify-content: start;
        gap: 2vw;
    }

    .stats__count {
        gap: 2vw;
        font-size: 0.8rem;
    }

    .stats__satic {
        gap: 2vw;
        font-size: 0.8rem;
    }

    .cta__banner {
        height: 40vh;
    }

    .title {
        font-size: 3vw;
    }

    .footer__container {
        padding-inline: 3vw;
        padding-block: 1rem;
        flex-direction: column;
        gap: 2rem;
    }

    .footer__left__content {
        width: 100%;
    }

    .footer__content__box {
        width: 100%;
        padding-bottom: 1rem;
    }

    .footer__content__box h2 {
        font-size: 1.8rem;
    }

    .footer__right__content {
        width: 100%;
    }

    .footer__option__list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

}