/* --------------------------------------- */
/* HERO SECTION STYLES START */
/* --------------------------------------- */

.hero__section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;

    background-image: url(../../assets/editable/hero-bg-city-northern-lights-lg.webp);
    background-size: cover;
    background-position: center bottom;

    padding: 0rem 0rem 6rem 0rem;
}

/* .hero__section .background__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
} */

.hero__section .hero__content__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;

    gap: 3.5rem;
    padding-top: 8.5rem;
}

.hero__section .hero__content__container .text__container {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: start;

    gap: 1rem;
}

.hero__section .hero__content__container .text__container .title {
    color: var(--clr-white);
    font-size: var(--title);
    font-weight: 600;
}

.hero__section .hero__content__container .text__container .description {
    color: var(--clr-white);
    font-size: var(--size-base);
    font-weight: 300;
    /* width: 50ch; */
}

.hero__section .hero__content__container .search__bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    display: none;
}

.hero__section .hero__content__container .search__bar .search__form {
    background-color: var(--clr-white);
    border-radius: 1rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    
    gap: 0.8rem;
    padding: 1.25rem 1.7rem;
}

.hero__section .hero__content__container .search__bar .search__form input {
    width: 100%;
    background-color: var(--clr-teal-light);
    color: var(--clr-black);
    font-size: var(--size-xl);
    font-weight: 400;
    border: 1px solid var(--clr-teal-primary);
    border-radius: 0.6rem;

    padding: 0.6rem 1rem;
}

.hero__section .hero__content__container .search__bar .search__form input::placeholder {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 500;
}

.hero__section .hero__content__container .search__bar .search__form .submit {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 500;
    background-color: var(--clr-teal-primary);
    border-radius: 0.6rem;

    padding: 0.6rem 1rem;
}

.hero__section .hero__content__container .search__bar .search__form .submit i {
    padding-top: 0.2rem;
}


/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .hero__section .hero__content__container .search__bar .search__form input {
        width: 400px;
        border: 1px solid var(--clr-teal-primary);
        border-radius: 0.6rem;
    
        padding: 0.6rem 1rem;
    }

    .hero__section .hero__content__container .text__container .description {
        width: 50ch;
    }

    
}

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
@media (min-width: 1280px) {

    .hero__section .hero__content__container .search__bar .search__form input::placeholder {
        color: var(--clr-black);
        font-size: var(--size-lg);
        font-weight: 400;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* HERO SECTION STYLES END */
/* --------------------------------------- */

/* --------------------------------------- */
/* DESCRIPTION BLOCK STYLES START */
/* --------------------------------------- */

.description__section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;

    gap: 1.8rem;
}

.description__section .top__para {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    gap: 0.6rem;
}

.description__section .title {
    color: var(--clr-black);
    font-size: var(--title-mb);
    font-weight: 500;
}

.description__section .description {
    color: var(--clr-1b1-black);
    font-size: var(--size-base);
    font-weight: 400;
}


/* --------------------------------------- */
/* DESCRIPTION BLOCK STYLES END */
/* --------------------------------------- */



/* --------------------------------------- */
/* WHY CHOOSE US STYLES START */
/* --------------------------------------- */

.why__choose__us {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.why__choose__us__cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: stretch;
    align-items: stretch;
    overflow: hidden;
    overflow-x: scroll;

    gap: 1.8rem;
}

.why__choose__us__cards__grid .text__card {
    background-color: var(--clr-teal-primary);
    border-radius: 1rem;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;

    padding: 2.1rem 2rem 1.5rem 2rem;
}

.why__choose__us__cards__grid .card__item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.why__choose__us__cards__grid .text__card .title {
    color: var(--clr-teal-dark);
    font-size: var(--title-mb);
    font-weight: 700;
}

.why__choose__us__cards__grid .text__card .title .black__highlight {
    color: var(--clr-black);
}

.why__choose__us__cards__grid .text__card .btn {
    color: var(--clr-white);
    font-size: var(--size-lg);
    font-weight: 400;

    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    transition: all 0.3s ease-in-out;
}

.why__choose__us__cards__grid .text__card:hover .btn {
    background-color: var(--clr-white);
    color: var(--clr-black);
    font-size: var(--size-base);
    border-radius: 0.5rem;

    padding: 0.5rem 0.8rem;
}

.why__choose__us__cards__grid .card__item .image__wrapper {
    width: 100%;
    height: 365px;
    position: relative;
}

.why__choose__us__cards__grid .card__item .background__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why__choose__us__cards__grid .card__item .bottom__gradient {
    width: 100%;
    height: 180px;

    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(#00000000, #00000099);
}

.why__choose__us__cards__grid .card__item .details__container {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: stretch;

    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
}

.why__choose__us__cards__grid .card__item .details__container .title {
    color: var(--clr-white);
    font-size: var(--sub-title);
    font-weight: 600;
}



/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
@media (min-width: 1280px) {

    .why__choose__us__cards__grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: stretch;
        align-items: stretch;
        overflow: hidden;
        overflow-x: none;
    
        gap: 1.8rem;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* WHY CHOOSE US STYLES END */
/* --------------------------------------- */

/* --------------------------------------- */
/* TESTIMONIALS SECTION STYLES START */
/* --------------------------------------- */

.testimonials .testimonials__grid__container {
    display: grid;
    justify-content: stretch;
    align-items: start;

    gap: 1.8rem;
}

.testimonials__grid__container .image__grid__item {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
}

.testimonials__grid__container .image__grid__item .banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials__grid__container .image__grid__item .details__container {
    position: absolute;
    bottom: 0;
    right: 0;
    
    color: var(--clr-white);

    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    padding: 0rem 1rem 1rem 0rem;
}

.testimonials__grid__container .image__grid__item .details__container .precentage {
    font-size: var(--size-9xl);
    font-weight: 600;

    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;

    gap: 0.3rem;
    padding-bottom: -10rem;
    margin-bottom: -0.8rem;
}

.testimonials__grid__container .image__grid__item .details__container .precentage .mark {
    font-size: var(--size-lg);
    font-weight: 400;

    padding-bottom: 0.8rem;
}

.testimonials__grid__container .image__grid__item .details__container .text {
    font-size: var(--size-2xl);
    font-weight: 400;
    text-align: end;

    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}

.testimonials__grid__container .image__grid__item .details__container .sm__text {
    font-size: var(--size-sm);
    font-weight: 400;
    text-align: end;
}

.testimonials__grid__container .cards__slider {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;

    gap: 3rem;
}

.testimonials__grid__container .cards__slider .cards__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;

    gap: 1.8rem;
}

.testimonials__grid__container .cards__slider .cards__wrapper .card__item {
    background-color: var(--clr-teal-light);

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    border-radius: 1rem;

    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
}

.cards__slider .cards__wrapper .card__item .text {
    color: var(--clr-black);
    font-size: var(--size-sm);
    font-weight: 400;
}

.testimonials__grid__container .cards__slider .cards__wrapper .profile__container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;

    gap: 0.5rem;
}

.cards__slider .cards__wrapper .profile__container .profile__img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.cards__slider .cards__wrapper .profile__container .text__container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    gap: 0.1rem;
}

.cards__slider .cards__wrapper .profile__container .text__container .text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    gap: 0rem;
}

.cards__slider .cards__wrapper .profile__container .text__container .text__wrapper .name {
    color: var(--clr-black);
    font-size: var(--size-lg);
    font-weight: 500;
}

.cards__slider .cards__wrapper .profile__container .text__container .text__wrapper .country {
    color: var(--clr-333-black);
    font-size: var(--size-sm);
    font-weight: 400;

    margin-top: -0.3rem;
}

.cards__slider .cards__wrapper .profile__container .text__container .ratings__img {
    width: 80px;
    object-fit: cover;
}

.testimonials__grid__container .cards__slider .slider__nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;

    gap: 1rem;
}

.testimonials__grid__container .cards__slider .slider__nav .nav__arrow {
    width: 40px;
    height: 40px;
    background-color: var(--clr-teal-primary);
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    color: var(--clr-black);
    font-size: var(--size-lg);
}

.testimonials__grid__container .cards__slider .slider__nav .left__arrow {
    padding-right: 0.2rem;
}

.testimonials__grid__container .cards__slider .slider__nav .right__arrow {
    padding-left: 0rem;
}


/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .testimonials__grid__container .image__grid__item {
        height: 530px;
    }
}

/* lg */
@media (min-width: 1024px) {

    .testimonials .testimonials__grid__container {
        display: grid;
        grid-template-columns: 1.5fr 300px;

        gap: 1.8rem;
    }

    .testimonials__grid__container .image__grid__item {
        height: 100%;
    }
}

/* xl */
@media (min-width: 1280px) {

    .testimonials .testimonials__grid__container {
        display: grid;
        grid-template-columns: 1.5fr 475px;
    
        gap: 1.8rem;
    }

    .testimonials__grid__container .image__grid__item {
        height: 530px;
    }

    .testimonials__grid__container .image__grid__item .details__container {
        padding: 0rem 1.8rem 1.8rem 0rem;
    }

    .cards__slider .cards__wrapper .card__item .text {
        font-size: var(--size-sm);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */



/* --------------------------------------- */
/* TESTIMONIALS SECTION STYLES END */
/* --------------------------------------- */