/* -- Hero -- */

.hero__inner {
    background-image: url(../img/34974.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: var(--primary-borderradius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero__content {
    width: 100%;
    background: #ffffff15;
    backdrop-filter: blur(6px);
    border-radius: var(--primary-borderradius);
    border: solid 1px #ffffff75;
    box-shadow: 0 0 10px #00000020;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    gap: 10px;
}

.hero__heading-wrap {
    width: 55%;
    flex-direction: column;
    justify-content: center;
}


.hero__mainheading {
    font-family: var(--primary-fontfamily);
    color: var(--primary-color);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
}

.hero__description {
    width: 54%;
    font-family: var(--primary-fontfamily);
    color: var(--primary-text-color);
    text-align: center;
    margin-bottom: 16px;
}

.hero__description-link {
    color: var(--primary-text-color);
}

.hero__btn-wrap {
    width: 40%;
    display: flex;
    gap: 10px;
    background: #ffffff12;
    padding: 10px;
    border-radius: var(--primary-borderradius);
    box-shadow: inset 0 0 10px #0000002b;
    border: dashed 2px #ffffff75;
}

.hero__btn-wrap .global__btn {
    width: 50%;
}

/* ================================= */

/* -- Article -- */

.article__text-wrap {
    border-radius: var(--primary-borderradius);
    box-shadow: 0 0 10px #00000020;
    padding: 40px;
    position: relative;
}

/* ================================= */

/* -- Tour Cards -- */

.tour__cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.tour__card {
    padding: 10px;
    box-shadow: 0 0 10px #00000024;
    border-radius: var(--primary-borderradius);
}

.tour__card-img {
    display: block;
    max-width: 100%;
    border-radius: var(--primary-borderradius);
}

.tour__card-time-wrap {
    color: var(--primary-text-color);
    font-family: var(--primary-fontfamily);
    font-size: 16px;
    font-weight: var(--medium-fontweight);
    gap: 6px;
}

.tour__card-time-icon {
    display: block;
    max-width: 24px;
}

.tour__card-heading {
    color: var(--primary-color);
    font-family: var(--primary-fontfamily);
    font-size: 22px;
}

.tour__card-price {
    color: var(--primary-color);
    font-family: var(--primary-fontfamily);
    font-size: 28px;
    font-weight: var(--semibold-fontweight);
}

.tour__card-highlighted {
    color: var(--primary-text-color);
}


.tour__card-description {
    font-size: 14px;
}

.tour__card-price-wrap {
    justify-content: space-between;
}


.tour__card-content {
    display: grid;
    gap: 10px;
    padding: 20px 20px 10px 20px;
}

.tour__card-img-wrap {
    position: relative;
}

.tour__card-img-wrap::before {
    content: 'Dubai';
    background: var(--secondary-color);
    color: var(--primary-text-colorr);
    font-family: var(--secondary-fontfamily);
    box-shadow: 0 0 10px #00000024;
    padding: 4px 16px;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 10px;

}

.tour__card-full {
    height: 320px;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    align-items: center;
}

.tour__card-full--inverted {
    flex-direction: row-reverse;
}

.tour__card-full .tour__card-img-wrap {
    width: 40%;
}

.tour__card-full .tour__card-content {
    width: 60%;
}

.tour__card-full .tour__card-img {
    height: 300px;
}

/* ================================= */

/* -- Tour Cards -- */
.transport {
    background-color: var(--primary-color);
    margin: 40px 0;
    border-radius: var(--primary-borderradius);
}

.transport__heading,
.transport__description {
    color: var(--secondary-color);
    text-align: left;
}

.transport__subheading {
    color: var(--secondary-color);
    border: dashed 2px var(--secondary-color);
}

.transport__description {
    width: 70%;
    margin-bottom: 10px;
}

/* ================================= */

/* -- Services -- */

.services__banner-wrap {
    display: grid;
    place-items: center;
}

.services__banner {
    width: 100%;
    height: 500px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px #00000020;
    border-radius: var(--primary-borderradius);
    margin: 40px 0;
    padding: 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.services__banner::before,
.services__banner::after {
    width: fit-content;
    font-family: var(--secondary-fontfamily);
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
    font-size: 100px;
    position: absolute;
}

.services__banner::before {
    content: 'Desert Safari';
    top: -14%;
    left: 0%;
}

.services__banner::after {
    content: 'Dubai';
    bottom: -14%;
    right: 0%;
}

.services__list {
    list-style: none;
    width: 100%;
    font-family: var(--primary-fontfamily);
    color: var(--primary-color);
    font-weight: var(--medium-fontweight);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.services__list-item {
    font-size: 18px;
    gap: 6px;
}

.services__list-icon {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.services__img {
    display: block;
    width: 100%;
    height: 420px;
    border-radius: var(--primary-borderradius);
    border: solid 2px var(--primary-color);
    padding: 4px;
    object-fit: cover;
}

/* ================================= */

/* -- Features -- */

.features__description-wrap {
    justify-content: center;
}

.features__description {
    width: 60%;
    text-align: center;
    margin-bottom: 20px;
}

.features__boxes-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.features__box {
    position: relative;
    justify-content: end;
    gap: 20px;
    border-radius: var(--primary-borderradius);
    box-shadow: 0 0 10px #00000020;
    padding: 20px;
}

.features__box-icon-wrap {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 4px 4px var(--primary-borderradius) var(--primary-borderradius);
    position: absolute;
    bottom: -10%;
    left: 30px;
    box-shadow: 0 0 10px #00000020;
}

.features__box-icon {
    display: block;
    width: 100px;
    height: 110px;
    object-fit: contain;
}

.features__box-content {
    width: 70%;
}

.features__box-heading {
    color: var(--primary-color);
    font-family: var(--primary-fontfamily);
    font-size: 22px;
}

.features__box-description {
    line-height: 1.6;
    font-size: 16px;
}

/* ================================= */

/* -- About -- */

.about__mainheading {
    text-align: left;
}

.about__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about__box {
    border-radius: var(--primary-borderradius);
    box-shadow: 0 0 10px #00000020;
    text-align: center;
    padding: 30px;
}

.about__boxes-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 10px 0;
}

.about__box-heading {
    color: var(--primary-color);
    font-family: var(--primary-fontfamily);
    font-size: 30px;
}

.about__img-wrap {
    justify-content: center;
    position: relative;
}

.about__img-wrap::before {
    content: '';
    width: 300px;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--primary-borderradius);
    z-index: -1;
}

.about__img {
    display: block;
    max-width: 100%;
}

.about__box-text {
    font-size: 18px;
}

/* ================================= */

/* -- Gallery -- */

.gallery__swiper {
    width: 1200px;
    height: 80vh;
}

.swiper .button-prev svg path,
.swiper .button-next svg path {
    fill: var(--primary-color) !important;
}

.gallery__imgs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__swiper-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--primary-borderradius);
    box-shadow: 0 0 10px #00000020;
}

/* ================================= */

/* -- Reviews -- */

.reviews__wrap {
    gap: 20px;
    overflow: auto;
}

.review__box {
    min-width: 480px;
    display: grid;
    gap: 20px;
    padding: 30px;
    border-radius: var(--primary-borderradius);
    box-shadow: 0 0 10px #00000020;
    border: solid 1px #a5730a1f;
}

.review__box-header {
    justify-content: space-between;
}

.review__user-wrap {
    gap: 10px;
}

.user__img {
    display: block;
    width: 60px;
    border-radius: 50%;
}

.user__info-wrap {
    font-family: var(--primary-fontfamily);
}

.user__name {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: var(--medium-fontweight);
}

.user__email,
.review__description {
    font-size: 14px;
}

.review__rating-wrap {
    justify-content: end;
}

.review__rating {
    display: block;
    width: 60%;
}

/* ================================= */

/* -- Banner -- */

.banner__inner {
    padding: 40px 0;
    background: var(--primary-color);
    border-radius: var(--primary-borderradius);
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
}


.banner__heading,
.hero__btn-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner__heading {
    color: var(--secondary-color);
    font-family: var(--primary-fontfamily);
    font-size: 32px;
}

.banner__description {
    width: 60%;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ================================= */

/* -- FAQs -- */
.faq {
    display: none;
}

.faq__content {
    width: 100%;
    box-shadow: 0 0 10px #00000020;
    border-radius: var(--primary-borderradius);
    padding: 20px;
}

.faq__item {
    border-bottom: solid 1px #33333312;
}

.faq__item:last-child {
    border: none;
}

.faq__question-wrap {
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
}

.faq__question {
    color: var(--primary-color);
    font-family: var(--primary-fontfamily);
    font-weight: var(--medium-fontweight);
    font-size: 18px;
}

.faq__answer {
    font-family: var(--primary-fontfamily);
    font-size: 14px;
    max-height: 0px;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer.open {
    max-height: fit-content;
    padding: 10px;
    display: block;
}

.faq__arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease
}

.faq__arrow.open {
    transform: rotate(90deg);
}

/* ================================= */

.about__img-wrap--mob {
    display: none;
}