.popular-otels {
    padding: 64px var(--page-padding-8);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

    .popular-otels .title span {
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
        text-align: center;
    }

    .popular-otels .tabs {
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }

        .popular-otels .tabs button {
            white-space: nowrap;
        }

    .popular-otels .content {
        display: flex;
        flex-direction: row;
    }

    .popular-otels .float {
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }

    .popular-otels .card {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 280px;
        max-width: 340px;
        border-radius: 16px;
        border: solid 1px #e0e6ec;
        /* height: 426px; */
        box-shadow: var(--box-shadow-1c2b3d1f);
    }

        .popular-otels .card:hover {
            border-color: #67778a;
        }

        .popular-otels .card .imageBox {
            display: flex;
            overflow: hidden;
            height: 200px;
        }

        .popular-otels .card .image {
            width: 100%;
            height: 100%;
            background-color: #d9d9d9;
            border-radius: 12px 12px 0px 0px;
            object-fit: cover;
        }

        .popular-otels .card .detials {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            gap: 8px;
            flex: 1;
        }

        .popular-otels .card .location {
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: #0077ff;
        }

        .popular-otels .card .titleBox {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 4px;
        }

        .popular-otels .card .title {
            font-size: 18px;
            font-weight: 700;
            line-height: 27px;
            text-align: center;
            max-height: 57px;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .popular-otels .card .nights {
            display: flex;
            flex-direction: row;
            align-self: center;
        }

            .popular-otels .card .nights span {
                color: #e99b05;
                font-size: 20px;
            }

        .popular-otels .card .detials .free06 {
            font-weight: 500;
            font-style: Medium;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0%;
            color: var(--color-primary-dark);
        }

        .popular-otels .card .actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

            .popular-otels .card .actions .discout {
                font-weight: 700;
                font-style: Bold;
                font-size: 12px;
                line-height: 100%;
                letter-spacing: 0%;
                text-align: center;
                color: #2b7336;
                background-color: #28a13833;
                padding: 4px;
                border-radius: 4px;
            }

        .popular-otels .card .priceBox {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .popular-otels .card .prevPrice {
            font-weight: 600;
            font-size: 12px;
            line-height: 20px;
            letter-spacing: 0px;
            text-decoration: line-through;
            color: #67778a;
        }

        .popular-otels .card .price {
            font-size: 20px;
            font-weight: 700;
            line-height: 27px;
        }

        .popular-otels .card .start {
            font-size: 12px;
            font-weight: 500;
            line-height: 20px;
        }

        .popular-otels .card .actions a {
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            color: var(--color-primary);
        }

    .popular-otels .seeAll {
        display: flex;
        flex: 1;
        justify-content: center;
    }

/* Popular regions */
.popular-regions {
    padding: 64px var(--page-padding-8) 0px var(--page-padding-8);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

    .popular-regions .title span {
        font-size: 32px;
        font-weight: 700;
        line-height: 40px;
    }

    .popular-regions .links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

        .popular-regions .links a {
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            color: var(--color-primary);
        }

    .popular-regions .cards {
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

        .popular-regions .cards .row {
            display: flex;
            flex-direction: row;
            gap: 16px;
            flex-wrap: wrap;
        }

    .popular-regions .card {
        height: 220px;
        min-width: 220px;
        border-radius: 16px;
        background-color: #e99b05;
        flex: 1;
        position: relative;
        text-decoration: none;
    }

        .popular-regions .card:hover .line {
            width: 181px;
            max-width: 100%;
        }

    .popular-regions .cards .row:nth-child(1) .card:nth-child(1),
    .popular-regions .cards .row:nth-child(3) .card:nth-child(3) {
        flex: 2;
    }

    .popular-regions .card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .popular-regions .card .details {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        bottom: 20px;
        left: 20px;
        z-index: 10;
    }

    .popular-regions .card .title {
        font-size: 20px;
        font-weight: 700;
        line-height: 27px;
        color: var(--color-white);
    }

    .popular-regions .card .otels {
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        color: var(--color-white);
    }

    .popular-regions .card .line {
        height: 3px;
        width: 29px;
        background-color: var(--color-white);
        margin-top: 7px;
    }

    .popular-regions .seeAll {
        display: flex;
        flex: 1;
        justify-content: center;
    }

/* ---------------------------------------- Tur page CSS ------------------------------------------------------- */
.hero-tur {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url("../assets/tur/hero-tur.jpeg");
    object-fit: cover;
}

/* .popular-turs .card {
  height: 349px;
} */

/* ------------------------------ */
.popular-turs .card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    border-radius: 16px;
    border: solid 1px #e0e6ec;
    /* height: 334px; */
    box-shadow: var(--box-shadow-1c2b3d1f);
    padding: 16px;
    gap: 10px;
}

    .popular-turs .card .imageBox {
        display: flex;
        overflow: hidden;
        height: 150px;
    }

    .popular-turs .card .image {
        width: 100%;
        height: 100%;
        background-color: #d9d9d9;
        border-radius: 12px;
        object-fit: cover;
    }

    .popular-turs .card .detials {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 0px;
        gap: 4px;
        justify-content: start;
    }

    .popular-turs .card .title {
        font-size: 18px;
        font-weight: 700;
        line-height: 27px;
        text-align: start;
        /* max-height: 27px; */
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .popular-turs .card .umreTile {
        font-size: 18px;
        font-weight: 700;
        line-height: 27px;
        text-align: start;
        max-height: 57px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .popular-turs .card .duration {
        font-weight: 500;
        font-size: 16px;
        color: var(--color-primary-dark);
    }

    .popular-turs .card .otelNameBox {
        display: flex;
        flex-direction: row;
        gap: 6px;
        font-weight: 500;
        font-size: 16px;
        color: var(--color-primary-dark);
    }

    .popular-turs .card .group {
        padding: 2px 4px;
        background-color: #f1f4f7;
        border-radius: 4px;
        font-weight: 400;
        font-size: 14px;
        color: var(--color-primary-dark);
        align-self: flex-start;
    }

    .popular-turs .card .divider {
        border-top: solid 1px #e0e6ec;
    }

    .popular-turs .card .actions {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .popular-turs .card .priceBox {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .popular-turs .card .price {
        font-size: 20px;
        font-weight: 700;
        line-height: 27px;
    }

    .popular-turs .card .start {
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
    }

    .popular-turs .card .actions a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        color: var(--color-primary);
    }

    /* ------------------------------ */

    .popular-turs .card .titleBox .title {
        height: 54px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .popular-turs .card .price {
        font-size: 20px;
        font-weight: 700;
        line-height: 27px;
        color: var(--color-primary);
    }

/* Tur benefits */
.tur-benefits {
    padding: 0px var(--page-padding-8) 64px var(--page-padding-8);
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 16px;
    flex-wrap: wrap;
}

    .tur-benefits .card {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        border: solid 1px #e7ebf0;
        background-color: #ebf4ec99;
        align-items: center;
        padding: 16px;
        gap: 14px;
        flex: 1;
        min-width: 220px;
    }

        .tur-benefits .card .iconBox {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            width: 62px;
            height: 62px;
            background-color: #ffffff;
            border-radius: 100px;
        }

            .tur-benefits .card .iconBox span {
                font-size: 40px;
                color: #2b7336;
            }

        .tur-benefits .card .details {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

            .tur-benefits .card .details .title {
                font-weight: 700;
                font-size: 16px;
                line-height: 19px;
                color: #2b7336;
                text-align: center;
            }

            .tur-benefits .card .details .description {
                font-weight: 400;
                font-size: 14px;
                line-height: 17px;
                text-align: center;
            }

/* Visa free turs */

.visaFree-turs .cards .row:nth-child(1) .card:nth-child(1) {
    flex: 1;
}

/* tur thems */
.tur-thems {
    background-color: #e3f0ffb2;
    padding-top: 48px;
    padding-bottom: 48px;
}

    .tur-thems .cards .row:nth-child(1) .card:nth-child(2) {
        flex: 2;
    }

    .tur-thems .cards .row:nth-child(1) .card:nth-child(1) {
        flex: 1;
    }

/* ------------------------------------- End of Tur page CSS ----------------------------------------------------*/

/* ---------------------------------------------- umre page CSS ------------------------------------------------- */
.hero-umre {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url("../assets/umre/hero-umre.jpeg");
    object-fit: cover;
}

/*----  umre thems ------*/
.umre-thems .cards .row:nth-child(1) .card:nth-child(1) {
    flex: 1;
}

.umre-thems .cards .row:nth-child(1) .card:nth-child(2) {
    flex: 2;
}

.intro-wrap {
    display: flex;
    flex-direction: row;
    flex: 1;
    padding: 64px 28px;
}

    .intro-wrap .intro {
        display: flex;
        flex-direction: column;
        flex: 1;
        background-color: #f5f7f9;
        border-radius: 16px;
        width: 100%;
    }

.intro .details {
    display: flex;
    flex-direction: column;
    padding: 64px 7% 50px 7%;
    gap: 46px;
    width: 100%;
}

    .intro .details .head {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;
        gap: 16px;
    }

        .intro .details .head .titleBox {
            display: flex;
            flex-direction: column;
        }

            .intro .details .head .titleBox .title {
                font-weight: 700;
                font-size: 32px;
                line-height: 40px;
            }

            .intro .details .head .titleBox .description {
                font-weight: 400;
                font-size: 24px;
                line-height: 30px;
            }

        .intro .details .head .customerCommentBtn {
            white-space: nowrap;
        }

    .intro .details .content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 36px;
        width: 100%;
        /* background-color: #e99b05; */
    }

        .intro .details .content .statistics {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: start;
        }

            .intro .details .content .statistics .staticBox {
                display: flex;
                flex-direction: row;
                gap: 43px;
                /* flex-wrap: wrap; */
            }

                .intro .details .content .statistics .staticBox .statistic {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    white-space: nowrap;
                }

                    .intro .details .content .statistics .staticBox .statistic .number {
                        font-weight: 700;
                        font-size: 30px;
                        line-height: 37px;
                        color: var(--color-primary);
                    }

                    .intro .details .content .statistics .staticBox .statistic .description {
                        font-weight: 400;
                        font-size: 20px;
                        line-height: 24px;
                        color: #67778a;
                    }

        .intro .details .content .commentsWrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            /* background-color: red; */
        }

        .intro .details .content .commentsContainer {
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;
            /* background-color: yellow; */
        }

        .intro .details .content .comments {
            display: flex;
            flex-direction: row;
            position: relative;
            width: 100%;
            overflow-y: hidden;
            overflow-x: hidden;
            height: 280px;
            scrollbar-width: none;
            -ms-overflow-style: none;
            /* max-width: 500px; */
            /* background-color: #2b7336; */
        }

            .intro .details .content .comments .comments-float {
                position: absolute;
                flex: 1;
                top: 0px;
                left: 0px;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 16px;
                height: 100%;
            }

            .intro .details .content .comments .comment {
                display: flex;
                flex-direction: column;
                min-width: 190px;
                width: 190px;
                padding-top: 16px;
            }

                .intro .details .content .comments .comment .inBox {
                    display: flex;
                    flex-direction: column;
                    padding: 24px 16px 16px 16px;
                    border-radius: 12px;
                    gap: 12px;
                    background-color: var(--color-white);
                    border: solid 1px #d6dde6;
                    position: relative;
                }

                .intro .details .content .comments .comment .text {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                }

                    .intro .details .content .comments .comment .text:after {
                        content: "";
                        position: absolute;
                        left: 16px;
                        top: -16px;
                        width: 40px;
                        height: 31px;
                        background-image: url("../assets/main/”.svg");
                        background-repeat: no-repeat;
                        background-position-x: 50%;
                        background-position-y: 50%;
                    }

                .intro .details .content .comments .comment .commenterBox {
                    display: flex;
                    flex-direction: column;
                }

                .intro .details .content .comments .comment .commenter {
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 19px;
                }

                .intro .details .content .comments .comment .position {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20px;
                }

.intro .footerImgBox {
    position: relative;
}

.intro .footerImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px 0px 16px 16px;
}

.intro .footerElciImg {
    position: absolute;
    top: -90px;
    width: 180px;
    left: 7%;
}

/* customer comments */
.customerCmnts-wrap {
    display: none;
}

.modal-customerCmnts {
    width: 1060px;
    max-height: calc(100vh);
    /* max-height: calc(100vh - 60px); */
    background-color: transparent;
}

.modal-header-customerCmnts {
    background-color: var(--color-white);
    border-radius: 16px 16px 0px 0px;
}

.cuscmnt-content {
    /* padding: 0px; */
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 10px 0px 16px 0px;
    background-color: var(--color-white);
}

    .cuscmnt-content .cuscmntTabs {
        display: flex;
        position: relative;
    }

        .cuscmnt-content .cuscmntTabs .cuscmntTab {
            font-weight: 600;
            font-size: 16px;
            line-height: 20px;
            padding: 12px 16px;
            border-bottom: solid 2px #d6dde6;
            cursor: pointer;
        }

            .cuscmnt-content .cuscmntTabs .cuscmntTab:hover {
                border-bottom: solid 2px #67778a;
            }

            .cuscmnt-content .cuscmntTabs .cuscmntTab:active {
                border-bottom: solid 2px var(--color-primary);
                color: var(--color-primary);
            }

        .cuscmnt-content .cuscmntTabs .cuscmntTab-active {
            border-bottom: solid 2px var(--color-primary);
            color: var(--color-primary);
        }

        .cuscmnt-content .cuscmntTabs .cuscmntTabRest {
            border-bottom: solid 2px #d6dde6;
            flex: 1;
        }

        .cuscmnt-content .cuscmntTabs .cuscmntTab12 {
            border-bottom: solid 2px #d6dde6;
            width: 12px;
        }

        .cuscmnt-content .cuscmntTabs .cuscmntTab16 {
            border-bottom: solid 2px #d6dde6;
            width: 16px;
        }

    .cuscmnt-content .cuscmntContents {
        height: calc(100vh - 166px);
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .cuscmnt-content .cuscmntContent {
        display: flex;
        flex-direction: column;
        padding: 16px 16px 0px 16px;
        gap: 16px;
    }

    .cuscmnt-content .cuscmntComments {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .cuscmnt-content .cuscmntComment {
        display: flex;
        flex-direction: column;
    }

    .cuscmnt-content .cuscmntName {
        display: flex;
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        height: 32px;
        align-items: center;
    }

    .cuscmnt-content .cuscmntComment .cuscmntContext {
        display: flex;
        flex-direction: column;
        background-color: #f5f7f9;
        border-radius: 8px;
        padding: 8px 12px;
        gap: 8px;
    }

    .cuscmnt-content .cuscmntComment .cuscmntText {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        margin: 0px;
    }

    .cuscmnt-content .cuscmntComment .cuscmntDate {
        font-weight: 500;
        font-size: 12px;
        line-height: 20px;
        color: #67778a;
    }

    .cuscmnt-content .cuscmntMoreComment {
        align-self: start;
    }

    .cuscmnt-content .cuscmntImages {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .cuscmnt-content .cuscmntImage {
        display: flex;
        /* width: 243px; */
        min-width: 194px;
        max-width: 295px;
        height: 156px;
        flex: 1;
    }

        .cuscmnt-content .cuscmntImage img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            object-fit: cover;
        }

/* umre en yakin turs  */
.umre-turs-slider-wrap {
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.umre-turs-slider {
    position: relative;
    display: flex;
    flex: 1;
    height: 44px;
    overflow: hidden;
    align-items: center;
}

.umre-turs-slider-float {
    position: absolute;
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    top: 0px;
    left: 0px;
    height: 100%;
}

/* Umre FAQ */
.umreFAQs {
    padding: 0px var(--page-padding-8);
}

    .umreFAQs .faqContent {
        display: flex;
        flex-direction: row;
        align-items: start;
        background-color: #e3f0ffb2;
        border-radius: 16px;
        padding: 48px;
        flex-wrap: wrap;
        gap: 80px;
    }

        .umreFAQs .faqContent .faqTitleBox {
            display: flex;
            flex-direction: column;
            max-width: 40%;
            gap: 12px;
            min-width: 310px;
        }

            .umreFAQs .faqContent .faqTitleBox .faqTitle {
                font-weight: 700;
                font-size: 32px;
                line-height: 40px;
            }

            .umreFAQs .faqContent .faqTitleBox .faqDescription {
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                color: #000000;
            }

        .umreFAQs .faqContent .faqQuestionsContainer {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
            width: 100%;
        }

        .umreFAQs .faqContent .faqQuestions {
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 12px;
        }

            .umreFAQs .faqContent .faqQuestions .question {
                display: flex;
                flex-direction: column;
                border: solid 1px #d6dde6;
                background-color: var(--color-white);
                border-radius: 16px;
            }

                .umreFAQs .faqContent .faqQuestions .question .faqHeader {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    padding: 16px 16px 16px 20px;
                    /* gap: 10px; */
                    /* white-space: nowrap; */
                    cursor: pointer;
                }

                    .umreFAQs .faqContent .faqQuestions .question .faqHeader .faqString {
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 20px;
                    }

                    .umreFAQs .faqContent .faqQuestions .question .faqHeader .qExpand {
                        background-color: transparent;
                        border: none;
                        color: var(--color-primary-dark);
                    }

                .umreFAQs .faqContent .faqQuestions .question .answer {
                    /* padding: 16px 0px; */
                    padding: 0px 16px 16px 20px;
                }

                    .umreFAQs .faqContent .faqQuestions .question .answer .faqAnswerText {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 17px;
                        padding: 0px;
                        margin: 0px;
                    }

        .umreFAQs .faqContent .faqSeeAll {
            align-self: start;
        }

/* ------------------------------------------ End of umre page CSS ---------------------------------------------- */

/* ----------------------------------------------  Hac page CSS ------------------------------------------------- */
.hero-hac {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url("../assets/hac/hero-hac.jpeg");
    object-fit: cover;
}

.hero-hac-frame {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

    .hero-hac-frame a {
        font-weight: 700;
        font-size: 20px;
        line-height: 22px;
        padding: 15px 24px;
    }

.button-hac-lux {
    background-color: #e5d7b0;
    border: solid 1px #e7ebf0;
    color: #695319;
}

/* --- Hac accouncment ---- */
.hac-announce {
    padding: 0px var(--page-padding-8);
}

    .hac-announce .annContent {
        border: solid 1px #e0e6ec;
        border-radius: 16px;
        padding: 24px;
        overflow: hidden;
    }

        .hac-announce .annContent .annTitle {
            font-weight: 700;
            font-size: 32px;
            line-height: 40px;
        }

        .hac-announce .annContent .annContext {
            font-weight: 400;
            font-size: 20px;
            line-height: 26px;
        }

        .hac-announce .annContent img {
            max-width: calc(100vw - 60px - 2 * var(--page-padding-8)) !important;
        }

/*---------- old hac photoes --------------- */
.oldHac-slider {
    height: 498px;
}

.oldHac-title-container {
    text-align: start;
    padding: 0px 16px;
}

.oldHac-card-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oldHac-card {
    width: 382px;
    height: 240px;
    border-radius: 16px;
    position: relative;
}

.oldHac-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.hac-tur-context {
    padding-top: 64px;
}
/* ------------------------------------------ End of umre page CSS ---------------------------------------------- */

/* ---------------------------------------- Popular regions page CSS -------------------------------------------- */
.pRegions {
    padding-top: 0px;
    padding-bottom: 80px;
}

.pRegions-topsection {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

.pRegions .cards .row:nth-child(1) .card:nth-child(1),
.pRegions .cards .row:nth-child(3) .card:nth-child(3) {
    flex: 1;
}

.pRegions-searchhead {
    padding-top: 34px;
    padding-bottom: 34px;
}

/* ---------------------------------------- End Popular regions page CSS ---------------------------------------- */

/* ------------------------------------------ Popular hotels page CSS ------------------------------------------ */
.pHotels-cards {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 16px;
    flex-wrap: wrap;
}

.pHotels-row {
    /* background-color: red; */
    display: flex;
    gap: 16px;
}

.pHotels-card {
    flex: 1;
    /* width: 229px; */
    max-width: 250px;
    min-width: 200px;
    height: 168px;
    border-radius: 16px;
    margin: 2px 0px;
    position: relative;
}

/* ----------------------------------------- End Popular hotels page CSS ---------------------------------------- */

/* --------------------------------------------  companies page CSS --------------------------------------------- */
.company-hero-tabs-out {
    display: none;
}

.popular-otels .companies-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.company-card {
    display: flex;
    flex-direction: column;
    width: 287px;
    height: 360px;
    margin: 2px 0px;
    border: solid 1px #d6dde6;
    border-radius: 6px;
    padding: 8px;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--color-white);
}

    .company-card:hover {
        border: solid 1px #e7ebf0;
        box-shadow: var(--box-shadow-1c2b3d29);
    }

.company-image {
    width: 100%;
    height: 288px;
    border-radius: 6px;
}

    .company-image img {
        width: 100%;
        height: 100%;
        border-radius: 6px;
    }

.company-des {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-primary-dark);
}

.company-card-disabled {
    border: solid 1px #e7ebf0;
}

    .company-card-disabled .company-des {
        color: #b0bac8;
    }

    .company-card-disabled .company-image img {
        filter: grayscale(100%);
    }

/* -----------------------------------------  End of companies page CSS ----------------------------------------- */

/* ------------------------------------------  company details page CSS ----------------------------------------- */
.companyDet-navbar {
    box-shadow: var(--box-shadow-1c2b3d1f);
}

.companyDet-searchhead {
    padding: 0px;
}

.companyDet {
    padding: 80px 20% 64px 20%;
}

    .companyDet .comdetInfo .comdetHaed {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        margin-top: 24px;
    }

    .companyDet .comdetInfo .comdetTitle {
        font-size: 48px;
        font-weight: 600;
        line-height: 60px;
    }

    .companyDet .comdetInfo .comdetDescription {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }

    .companyDet .comdetInfo .comdetContent p {
        margin: 0px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .companyDet .comdetInfo .comdetContent .indentedP {
        text-indent: 60px;
    }

/* Other or more companies */
.otherCompanies {
    display: flex;
    flex-direction: column;
    padding: 0px var(--page-padding-8) 64px var(--page-padding-8);
    gap: 20px;
}

    .otherCompanies .ocHead {
        display: flex;
        flex-direction: row;
        flex: 1;
        justify-content: space-between;
        align-items: end;
        gap: 24px;
    }

        .otherCompanies .ocHead .ocTitleBox {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

            .otherCompanies .ocHead .ocTitleBox .ocTitle {
                font-size: 26px;
                font-weight: 700;
                line-height: 32px;
            }

            .otherCompanies .ocHead .ocTitleBox .ocDescription {
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
            }

    .otherCompanies .ocCards {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

/* ---------------------------------------------- End Hac page CSS ---------------------------------------------- */

/* ---------------------------------------------- Article page CSS ---------------------------------------------- */
.article-tur-card {
    width: 275px;
    margin: 2px 0px;
}

.articleDet-tur-card {
    /* width: 229px; */
    min-width: 216px;
    max-width: 320px;
    margin: 2px 0px;
    flex: 1;
}

.article-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
    border-top: solid 1px #e4e7ec;
    border-bottom: solid 1px #e4e7ec;
    padding: 8px 0px;
}

.articleMetaInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .articleMetaInfo .articleDate {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        padding: 0px 40px 0px 8px;
    }

    .articleMetaInfo .articleSite {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

.article-meta .articleShare {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
/* ---------------------------------------------- End Article page CSS ------------------------------------------ */

/* ---------------------------------------------- AboutUs page CSS ---------------------------------------------- */

/* Banner */
.aboutus-topSection {
    display: flex;
    flex-direction: column;
}

.banner-wrap {
    display: flex;
    flex-direction: row;
    flex: 1;
    padding: 0px 28px;
}

.banner {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(to right, #004799, #0077ff);
    border-radius: 16px;
    padding: 48px;
    gap: 8px;
}

    .banner .title {
        font-size: 40px;
        font-weight: 800;
        line-height: 47px;
        color: var(--color-white);
    }

    .banner .description {
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
        color: var(--color-white);
    }

/*  */
.aboutus-intro-wrap {
    padding: 48px 28px;
}

/* about us description */
.aboutus-desc-wrap {
    display: flex;
    flex-direction: column;
    padding: 0px var(--page-padding-8);
    gap: 64px;
}

.aboutus-desc-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
    flex-wrap: wrap;
}

    .aboutus-desc-col p {
        margin: 0px;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }

/* about us context */
.aboutus-context-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0px 14% 80px 14%;
}

    .aboutus-context-wrap p {
        margin: 0px;
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
    }

/* -------------------------------------------- End AboutUs page CSS -------------------------------------------- */

/* --------------------------------------------  agencies page CSS ------------------------------------------- */
.agencies-navbar {
    box-shadow: var(--box-shadow-1c2b3d1f);
}
/* -------------------------------------------- End agencies page CSS ------------------------------------------- */

/* ----------------------------------------------- contact page CSS --------------------------------------------- */
.contactus-wrap {
    padding: 12px var(--page-padding-8) 80px var(--page-padding-8);
    display: flex;
    flex-direction: row;
    gap: 64px;
    flex-wrap: wrap;
}

    .contactus-wrap .form,
    .contactus-wrap .mapContainer {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 400px;
    }

    .contactus-wrap .form {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

        .contactus-wrap .form .head {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

            .contactus-wrap .form .head .titleBox {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

                .contactus-wrap .form .head .titleBox .title {
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 22px;
                }

                .contactus-wrap .form .head .titleBox .description {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 20px;
                }

            .contactus-wrap .form .head .infoRow {
                display: flex;
                flex-direction: row;
                gap: 24px;
            }

                .contactus-wrap .form .head .infoRow .infoBox {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                }

                    .contactus-wrap .form .head .infoRow .infoBox .label {
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 22px;
                        color: #23272e;
                    }

                    .contactus-wrap .form .head .infoRow .infoBox .value {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 20px;
                        color: #23272e;
                    }

        .contactus-wrap .form .inputs {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

            .contactus-wrap .form .inputs .rowBox {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

                .contactus-wrap .form .inputs .rowBox .row {
                    display: flex;
                    flex-direction: row;
                    gap: 30px;
                    /* background-color: red; */
                }

    .contactus-wrap .footer {
        display: flex;
        flex-direction: row-reverse;
    }

    .contactus-wrap .mapContainer {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

        .contactus-wrap .mapContainer .mapAddress {
            font-weight: 700;
            font-size: 18px;
            line-height: 22px;
        }

        .contactus-wrap .mapContainer .map {
            width: 100%;
            height: 523px;
        }

            .contactus-wrap .mapContainer .map img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

/* agents */
.agencies-wrap {
    padding: 0px var(--page-padding-8) 88px var(--page-padding-8);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .agencies-wrap .title {
        font-size: 40px;
        font-weight: 800;
        line-height: 48px;
    }

.agencies-nav a {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 143%;
    color: var(--color-primary-dark);
}

.agencies-tabs-container {
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.agencies-tabs {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.agencies-searchFiled {
    border: solid 1px #d6dde6;
    padding: 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fbfcfc;
    /* width: 300px; */

    height: 44px;
}

    .agencies-searchFiled input {
        border: none;
        height: 100%;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        outline: none;
        background-color: transparent;
    }

    .agencies-searchFiled .icon {
        color: #1c1b1f;
        width: 30px;
        height: 24px;
    }

.agency-tab-btn {
    white-space: nowrap;
    background-color: var(--color-white);
    height: 44px;
    gap: 10px;
    border-radius: 100px;
    padding: 12px 16px;
    border: solid 1px #e7ebf0;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary-dark);
}

.agency-tab-btn-active {
    background-color: #0077ff;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    border: none;
}

    .agency-tab-btn-active:hover {
        background-color: #005fcc;
        border: none;
    }

    .agency-tab-btn-active:active {
        background-color: #004799;
        border: none;
    }

.contactus-tab-btn {
    white-space: nowrap;
}

.agencies-contents {
    display: flex;
    flex-direction: column;
}

    .agencies-contents .content {
        display: flex;
        flex-direction: row;
        gap: 28px;
        row-gap: 89px;
        flex-wrap: wrap;
    }

    .agencies-contents .card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: start;
        border-radius: 16px;
        padding: 20px;
        border: solid 1px #d6dde6;
        width: 100%;
        flex: 1;
        max-width: 586px;
        min-width: 400px;
    }

        .agencies-contents .card .info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

            .agencies-contents .card .info .cardTitle {
                font-size: 20px;
                font-weight: 700;
                line-height: 27px;
            }

            .agencies-contents .card .info .porps {
            }

                .agencies-contents .card .info .porps .row {
                    display: flex;
                    flex-direction: row;
                    gap: 8px;
                }

                    .agencies-contents .card .info .porps .row .label {
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 28px;
                        width: 142px;
                        min-width: 142px;
                    }

                    .agencies-contents .card .info .porps .row .value {
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 24px;
                    }

        .agencies-contents .card .mapBox {
            width: 100%;
            height: 184px;
            border-radius: 12px;
        }

            .agencies-contents .card .mapBox img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 12px;
            }
/* -------------------------------------------- End of contact page CSS ----------------------------------------- */

/* ------------------------------------------- guest relations page CSS ----------------------------------------- */

.guestRel-wrap {
}

    .guestRel-wrap p {
        margin: 0px;
    }

    .guestRel-wrap .form {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0px 0px 88px 0px;
        flex-wrap: wrap;
    }

        .guestRel-wrap .form .head {
            max-width: 380px;
            align-items: start;
        }

            .guestRel-wrap .form .head .infoRow {
                flex-direction: column;
            }

/* ---------------------------------------- End of guest relations page CSS ------------------------------------- */

/* ----------------------------------------------- Mobile screen ------------------------------------------------ */

@media screen and (max-width: 1024px) {
    .intro .details .content {
        flex-wrap: wrap;
    }

    .intro .details {
        padding-bottom: 140px;
    }
}

@media screen and (max-width: 920px) {
    .umreFAQs .faqContent .faqTitleBox {
        max-width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 600px) {
    .popular-otels {
        padding: 48px 0px 48px 0px;
    }

        .popular-otels .title {
            display: flex;
            flex: 1;
            justify-content: center;
        }

        .popular-otels .content {
            position: relative;
            overflow: hidden;
            overflow-x: scroll;
            /* Hide scrollbar for firefox */
            scrollbar-width: none;
            /* Hide scrollbar for Edge- IE */
            -ms-overflow-style: none;
            /*  */
            height: 480px;
        }

            .popular-otels .content::-webkit-scrollbar {
                display: none;
            }

        .popular-otels .float {
            position: absolute;
            display: flex;
            flex: 1;
            left: 0px;
            top: 0px;
            flex-wrap: nowrap;
            /*  */
            padding: 0px 16px;
        }

        .popular-otels .tabs {
            flex-wrap: nowrap;
            padding: 0px 16px;
            overflow-y: hidden;
            overflow-x: scroll;
            /* Hide scrollbar for firefox */
            scrollbar-width: none;
            /* Hide scrollbar for Edge- IE */
            -ms-overflow-style: none;
        }

            .popular-otels .tabs::-webkit-scrollbar {
                display: none;
            }

    /* Poplular regions */
    .popular-regions {
        padding: 48px 16px 0px 16px;
    }

        .popular-regions .title {
            display: flex;
            flex: 1;
            justify-content: center;
        }

        .popular-regions .links {
            flex-wrap: nowrap;
            overflow-y: hidden;
            overflow-x: scroll;
            /* Hide scrollbar for firefox */
            scrollbar-width: none;
            /* Hide scrollbar for Edge- IE */
            -ms-overflow-style: none;
        }

            .popular-regions .links::-webkit-scrollbar {
                display: none;
            }

        .popular-regions .cards .row {
            flex-direction: column;
        }

        .popular-regions .card {
            flex: 1;
        }

    /* -------------- Tur.html css -------  */
    .popular-turs .content {
        height: 380px;
    }

    .tur-benefits {
        padding: 0px 16px 48px 16px;
        flex-direction: column;
    }

    /* -------------- Tur thems ------------ */
    .tur-thems {
        padding-left: 0px;
        padding-right: 0px;
    }

        .tur-thems .cards {
            flex-direction: row;
            gap: 16px;
            overflow-y: hidden;
            overflow-x: scroll;
            padding-left: 16px;
            padding-right: 16px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

            .tur-thems .cards::-webkit-scrollbar {
                display: none;
            }

            .tur-thems .cards .row {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                gap: 16px;
            }

                .tur-thems .cards .row .card {
                    width: 320px;
                    height: 300px;
                }

                .tur-thems .cards .row:nth-child(1) .card:nth-child(2) {
                    flex: 1;
                }

                .tur-thems .cards .row .card img {
                    height: 100%;
                    width: 100%;
                }

    /*--- Visa free turs ---*/

    .visaFree-turs .cards .row .card img {
        height: 160px;
    }

    /*------------------------------------------- umre.css --------------------------------------*/
    .intro-wrap {
        padding: 32px 16px;
        position: relative;
    }

    .intro .details {
        padding: 16px 16px 80px 16px;
        gap: 24px;
    }

        .intro .details .content {
            padding-bottom: 300px;
        }

    .intro .footerElciImg {
        width: 112px;
        left: 35%;
        left: calc((100vw - 32px - 116) / 2);
        top: -56px;
    }

    .intro .details .content .statistics .staticBox {
        flex-wrap: wrap;
    }

    .intro .details .content .commentsWrap {
        position: absolute;
        bottom: 330px;
        left: 0px;
        width: 100%;
        justify-content: end;
    }

    .intro .details .content .comments {
        overflow-x: scroll;
        /* background-color: #e99b05; */
        height: 250px;
    }

        .intro .details .content .comments .comments-float {
            padding-left: 32px;
            padding-right: 32px;
        }

    /* umre turs */

    .umre-turs-slider {
        overflow-y: hidden;
        overflow-x: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .umre-turs-slider::-webkit-scrollbar {
            display: none;
        }

    .umre-turs-slider-float {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Umre FAQ */
    .umreFAQs {
        padding: 0px 16px;
    }

        .umreFAQs .faqContent {
            flex-direction: column;
            padding: 16px;
            gap: 16px;
        }

            .umreFAQs .faqContent .faqTitleBox {
                max-width: 100%;
                min-width: auto;
            }

    /* customer comments */
    .modal-customerCmnts {
        position: fixed;
        height: calc(100vh - 36px);
        bottom: 0px;
        width: 100%;
        box-shadow: none;
    }

    .cuscmnt-content .cuscmntImage {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 220px;
    }

    /* ----------------------------------------------  Hac page CSS ------------------------------------------------- */
    .hero-hac-frame {
        flex-direction: column;
        gap: 32px;
    }

    .hero-hac .hero-hac-dis {
        display: block;
    }

    /* --- Hac accouncment ---- */

    .hac-announce {
        padding: 0px 16px;
    }

        .hac-announce .annContent img {
            max-width: calc(100vw - 80px) !important;
        }

    .oldHac-slider {
        height: 240px;
    }

    .oldHac-card-box {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

    .oldHac-card {
        width: 300px;
    }

    .hac-tur-context {
        padding-top: 32px;
    }

    /*  */
    .hac-elci-tur-slider {
        padding: 0px 16px;
        flex-direction: column;
        overflow: auto;
        width: 100%;
        height: auto;
    }

    .hac-elci-tur-slider-float {
        margin: 0px;
        padding: 0px;
        flex-direction: column;
        position: relative;
    }

    .hac-elci-tur-card {
        width: 100%;
    }

    /* ------------------------------------------ End of umre page CSS ---------------------------------------------- */

    /* ---------------------------------------- Popular regions page CSS -------------------------------------------- */
    .pRegions-hero {
        padding-bottom: 160px;
    }

    .pRegions {
        padding-top: 50px;
        padding-bottom: 40px;
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
    }

    .pRegions-topsection {
        position: absolute;
        top: -105px;
        width: 100%;
        padding: 40px 16px 200px 16px;
        z-index: 1;
        background-image: linear-gradient(#004799, #004799, #ffffff);
        border-radius: 8px 8px 0px 0px;
    }

        .pRegions-topsection .title {
            color: var(--color-white);
            font-size: 30px;
            font-weight: 700;
            line-height: 37px;
            justify-content: start;
        }

    .pRegions-cards {
        padding-left: 16px;
        padding-right: 16px;
        z-index: 2;
        min-height: 200px;
    }

    .pRegions-hero-title-wrap {
        justify-content: start;
    }

    .pRegions-hero-title-box {
        align-items: start;
    }

    .pRegions-hero-title-text {
        font-size: 26px;
        font-weight: 700;
        line-height: 32px;
    }

    .pRegions-hero-title-dis {
        display: block;
        text-align: start;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }

    .pRegions-hero-search-item {
        border: none;
        border-radius: 0px;
        min-width: 130px;
    }

    .pRegions-hero-seprator {
        border-top: solid 1px #d6dde6;
    }

    .pRegions-hero-suggestions {
        display: none;
    }

    .pRegions-searchhead {
        display: none;
    }

    .pRegions-cards-more {
        width: 100%;
    }
    /* ---------------------------------------- End Popular regions page CSS ---------------------------------------- */

    /* ------------------------------------------- Popular hotels page CSS ------------------------------------------ */
    .pHotels {
        padding-top: 0px;
        padding-bottom: 40px;
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
    }

    .pHotels-cards {
        padding-left: 16px;
        padding-right: 16px;
        z-index: 2;
        min-height: 200px;
    }

    .pHotels-card {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 227px;
    }
    /* ----------------------------------------- End Popular hotels page CSS ---------------------------------------- */

    /* --------------------------------------------  companies page CSS --------------------------------------------- */
    .company-hero-tabs-out {
        display: block;
        margin-bottom: 34px;
    }

        .company-hero-tabs-out .company-hero-tabs {
            padding: 0px 16px;
        }

    .company-hero-tabs-wrap {
        display: none;
    }

    .company-hero-tabs-out {
        margin-bottom: 34px;
    }

    .company-hero-tab-btn {
        background-color: #ffffff80;
    }

    .company-hero-tab-btn-active {
        background-color: var(--color-white);
        color: var(--color-primary);
    }

    .popular-otels .content::-webkit-scrollbar {
        display: none;
    }

    .popular-otels .companies-tabs {
        padding: 0px;
    }

    .popular-otels .companies-contents {
        z-index: 2;
        padding-left: 16px;
        padding-right: 16px;
        z-index: 2;
        min-height: 200px;
    }

    .popular-otels .companies-content {
        flex-direction: column;
        overflow-x: auto;
        height: auto;
    }

    .company-tab-btn {
        background-color: var(--color-white);
        color: var(--color-primary);
    }

    .company-tab-btn-active {
        color: var(--color-white);
        background-color: var(--color-primary);
    }

        .company-tab-btn-active:hover {
            background-color: #005fcc;
            border-color: #005fcc;
        }

        .company-tab-btn-active:active {
            background-color: #004799;
            border-color: #004799;
        }

    .company-card {
        width: 100%;
    }

    /* ------------------------------------------  company details page CSS ----------------------------------------- */
    .companyDet {
        padding: 16px 16px 32px 16px;
    }

    .otherCompanies {
        padding: 0px 16px 32px 16px;
        gap: 20px;
    }

        .otherCompanies .ocHead {
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
    /* ----------------------------------------  End company details page CSS --------------------------------------- */

    /* ---------------------------------------------- Article page CSS ---------------------------------------------- */
    .article-tur-card,
    .articleDet-tur-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .article-moreBtn {
        flex-direction: column;
        align-items: stretch;
    }

    .article-meta {
        display: flex;
        flex-direction: row;
    }
    /* ---------------------------------------------- End Article page CSS ------------------------------------------ */

    /* ---------------------------------------------- about us page CSS --------------------------------------------- */
    .aboutus-navbar {
        box-shadow: var(--box-shadow-1c2b3d1f);
    }

    .aboutus-topSection {
        flex-direction: column-reverse;
    }

    .banner-wrap {
        padding: 0px 16px 24px 16px;
    }

    .banner {
        padding: 20px;
    }

        .banner .title {
            font-size: 26px;
            font-weight: 800;
            line-height: 31px;
        }

        .banner .description {
            font-size: 16px;
            font-weight: 400;
            line-height: 22px;
            color: var(--color-white);
        }

    .aboutus-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aboutus-desc-wrap {
        flex-direction: column;
        padding: 0px 16px;
        gap: 24px;
    }

    .aboutus-intro-wrap {
        padding: 24px 16px;
    }

    .aboutus-context-wrap {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 0px 16px 32px 16px;
    }
    /* ----------------------------------------- End of about us  page CSS ------------------------------------------ */

    /* --------------------------------------------- contact us  page CSS ------------------------------------------- */
    .contactus-wrap {
        flex-direction: column;
        padding: 16px 16px 32px 16px;
    }

        .contactus-wrap .form .inputs .rowBox .row {
            flex-direction: column;
        }

        .contactus-wrap .form,
        .contactus-wrap .mapContainer {
            min-width: auto;
        }

            .contactus-wrap .form .head .infoRow {
                flex-direction: column;
            }

        .contactus-wrap .footer button {
            width: 100%;
        }

    /* agencies */
    .agencies-wrap {
        padding: 0px 0px 40px 0px;
    }

    .agencies-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .agencies-tabs {
        flex-wrap: nowrap;
        padding: 0px 16px;
        overflow-y: hidden;
        overflow-x: scroll;
        /* Hide scrollbar for firefox */
        scrollbar-width: none;
        /* Hide scrollbar for Edge- IE */
        -ms-overflow-style: none;
    }

        .agencies-tabs::-webkit-scrollbar {
            display: none;
        }

    .agencies-searchFiled {
        flex: 1;
        margin: 0px 16px;
    }

    .agencies-contents {
        padding: 0px 16px;
    }

        .agencies-contents .content {
            gap: 24px;
        }

    .agencies-wrap .title {
        padding: 0px 16px;
    }

    .agencies-contents .card {
        min-width: auto;
        max-width: auto;
    }

        .agencies-contents .card .pathBtn {
            width: 100%;
        }
    /* ----------------------------------------- End of contact us page CSS ------------------------------------------ */

    /* ------------------------------------------- guest relations page CSS ----------------------------------------- */

    .guestRel-wrap .form {
        flex-direction: column;
        padding: 0px 0px 48px 0px;
    }

    /* ---------------------------------------- End of guest relations page CSS ------------------------------------- */
}

@media screen and (max-width: 360px) {
    .agencies-contents .card .info .porps {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .agencies-contents .card .info .porps .row {
            flex-direction: column;
            gap: 0px;
        }
}
