
:root {
    --block-color: #202020;
    --white-color: #e7e7e7;
    --primary-color: #333533;
    --highYellow-color: #ffd100;
    --lowYellow-color: #ffee32;
    --secondary-color: #ffffff;
    --darkBlue-color: #001d3d;
}

@font-face {
    font-family: "STIXTwoText";
    src: url("../fonts/STIXTwoText-Medium.ttf") format('truetype');
    /*src:url("../fonts/STIXTwoText-MediumItalic.ttf") format('truetype');*/
    /*src:url("../fonts/STIXTwoText-Regular.ttf") format('truetype');*/
    /*src:url("../fonts/STIXTwoText-Italic.ttf") format('truetype');*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "STIXTwoText", serif !important;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: var(--white-color);
    text-decoration: none !important;
}

a:hover {

    text-decoration: none !important;
}

.ui-box {
    text-decoration: none;
    border: none;
    font-size: 17px !important;
    position: relative;
    vertical-align: baseline;
    padding: 10px;
    color: var(--white-color);
}

.ui-box:hover {
    color: var(--highYellow-color);
}

.topBottom-rightLeftCorner:before, .topBottom-rightLeftCorner:after {
    border-top: 2px solid var(--highYellow-color) !important;
}

.top-rightStart:before, .top-rightStart:after {
    border-top: 2px solid var(--highYellow-color) !important;
}

.container-fluid {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto;
    margin-left: auto;
}

/*Start Footer*/
ul {
    margin: 0;
    padding: 0;
}

.footer-section {
    background: var(--secondary-color);
    position: relative;
    border-top: 1px solid var(--primary-color);
}

.footer-cta {
    border-bottom: 1px solid #b8b8b8;
}

.footer-cta .row {
    row-gap: 3rem;
}

.single-cta {
    display: flex;
}

.single-cta i {
    color: var(--highYellow-color);
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.logo {
    max-height: 100%;
}

.logo .logo-img {
    width: 40% !important;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.6rem;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: var(--primary-color);
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.footer-social-icon a {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--highYellow-color);
}

/*.footer-social-icon-span span::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    height: 2px;*/
/*    width: 50px;*/
/*    background: var(--highYellow-color);*/
/*}*/

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: var(--highYellow-color);
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: var(--primary-color);
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: var(--highYellow-color);
    padding: 13px 20px;
    border: 1px solid var(--highYellow-color);
    top: 0;
}

.subscribe-form button i {
    color: var(--primary-color);
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: var(--highYellow-color);
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: var(--highYellow-color);
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

/*End Footer*/

/*Start Header*/
nav {
    /*position: fixed;*/
    z-index: 99;
    /*width: 100%;*/
    background: #242526;
}

nav .wrapper {
    /*position: relative;*/
    max-width: 1300px;
    padding: 0 30px;
    height: 80px;
    /*line-height: 70px;*/
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
    margin: 0;
    z-index: 999;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: #3A3B3C;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 155px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content-headar {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content-headar .row_mega {
    width: 100%;
    line-height: 45px;
}

.content-headar .row_mega img {
    width: 80%;
    height: 100%;
    object-fit: cover;
}

.content-headar .row_mega header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}


.content-headar .row_mega .mega-links {
    /*margin-left: -40px;*/
    border-left: 1px solid rgba(255, 255, 255, 0.09);

}

.row_mega .mega-links li {
}

.row_mega .mega-links li a {
    padding: 0 10px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row_mega .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}


nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

/*End Header*/
/*Start btn More*/
.btn-more {
    display: inline-block;
    color: var(--primary-color);
    padding: 20px;
    position: relative;
    letter-spacing: 1px;
    height: 80%;
}

.btn__circle, .btn__text, .btn__white-circle {
    position: absolute;
}

.btn__circle {
    top: 0;
    left: 0;
    height: 40px;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 0 1px 1px var(--primary-color);
    transition: 0.3s linear;
}

.btn__white-circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--highYellow-color);
    display: flex;
    transition: 0.3s ease-in-out;
}

.btn__white-circle svg {
    width: 24px;
    height: 24px;
    margin: auto;
}

.btn__text {
    top: 50%;
    color: var(--primary-color);
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 2;
    padding: 0 8px;
    transition: 0.3s linear;
}

.btn-more:hover .btn__circle {
    transform: scale(0);
}

.btn-more:hover .btn__white-circle {
    transform: translate(-50%, -50%) scale(1);
}

.btn-more:hover .btn__text {
    transform: translate(40px, -50%);
}

/*End btn More*/

/*section about in home page*/
.aboutAs {
    text-align: center;
    padding-block: 6rem;

}

.aboutAs h2 {
    font-weight: bold;
}

/*section about in home page*/

/* Card Styles */

.card-sl {
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-sl:hover {
    scale: 1.2;
}

.card-image img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px 8px 0 0;
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--highYellow-color);
    font-weight: bold;
    border: 0;
    padding: 6px 10px;
    border-radius: 7px;
}


.card-heading {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    color: var(--primary-color);
    background-color: #f8f8f6;
    overflow: hidden;
}

.card-text {
    padding: 0 15px;
    font-size: 14px;
    color: #636262;
}

.card-button {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--highYellow-color);
    border-radius: 0 0 8px 8px;
    border: 0;
}

.card-button:hover {
    text-decoration: none;
    background-color: #1D3461;
    color: #fff;

}

.carousel-inner {
    border-radius: 20px !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/*Start Contact tablet < responsive*/
@media screen and (min-width: 970px) {

    .aboutAs p {
        line-height: 2.5rem;
        padding-inline: 4rem;
    }

    .getStart {
        display: block;
        color: var(--white-color);
    }

    .navbar-home {
        height: 70vh;
        background: linear-gradient(90deg, rgba(32, 32, 32, 1) 2%, rgba(32, 32, 32, 0.95) 40%, rgba(32, 32, 32, 0.15) 87%), url('https://as-auto.storage.iran.liara.space/AsTravel/learning/Agency/dubai.jpg') no-repeat right;
        background-size: 100% 100%;

    }

    .navbar_index-box {
        height: 60vh;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;

    }

    .navbar_index-box-text {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        color: var(--white-color);
        height: 56%;

    }


    .navbar_index-box-text span {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

    .navbar_index-box-text h1 span, .navbar_index-box-text h2 {
        color: var(--highYellow-color);
        font-size: 3.5rem;
    }

    .navbar_index-box-btns {
        display: flex;
        align-items: end;
        column-gap: 1.5rem;
    }

    .navbar_index-box-visa {
        background-color: var(--secondary-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color);
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .navbar_index-box-hotel {
        background-color: var(--highYellow-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color) !important;
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .residence {
        background-color: var(--secondary-color);
        padding: 2rem 4rem;
        border-bottom: 1px solid var(--primary-color);
    }

    .residence-title {
        color: var(--primary-color);

    }


    .residence-title span {
        font-size: 1.6rem;
    }

    .residence-title-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .residence-title-info h2 {
        font-size: 2.6rem;
        font-weight: bold;
    }

    .residence-collection {
        display: flex;
        margin: 2rem 0 0 5rem;
        column-gap: 1px;
    }


    .residence-collection-box-text {
        background-color: var(--block-color);
        border-radius: 30px;
        color: var(--white-color);
        padding: 3rem 1rem;

    }

    .residence-collection-box-text h3 {
        font-size: 1.7rem;
    }

    .residence-collection-box {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: start;
        padding-top: 7px;
        border-radius: 27px;
        background-color: var(--white-color);
        width: 22% !important;
    }

    .residence-collection-box-pic {
        width: 100%;
        height: auto;
        border-radius: 27px 27px 0 0;
        transition: all 0.3s ease;
    }

    .residence-collection-box-detail {
        color: var(--primary-color);
        background-color: var(--white-color);
        transition: all 0.5s ease-in-out;
    }

    .residence-collection-box-detail svg {
        margin-right: 3px;
    }

    .residence-collection-box:hover {

    }

    .residence-collection-box-pic:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0 14px 28px, rgba(0, 0, 0, 0.22) 0 10px 10px;

    }


    .bestRate {
        background-color: var(--secondary-color);
        padding: 6rem 4rem;
        border-bottom: 1px solid var(--primary-color);
    }

    .bestRate-left-images {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .bestRate-left-img-1 {
        width: 370px;
        height: 400px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .bestRate-left-img-2 {
        width: 390px;
        height: 400px;
        border-radius: 30px;
        position: relative;
        border: 10px solid #FFFFFF;
        top: 3rem;
        right: 5rem;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .bestRate-left-titr {
        background-color: var(--block-color);
        border-radius: 30px;
        color: var(--highYellow-color);
        padding: 1rem 3rem;
        position: relative;
        right: 65%;
    }

    .bestRate-right {
        row-gap: 5rem;
        height: 100%;
    }

    .bestRate-right span {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .bestRate-right h3 {
        font-weight: bold;
        font-size: 3rem;
    }

    .bestRate-right p {
        font-size: 1.1rem;
    }

    .bestRate-right-btn {
        border: 0;
        background-color: var(--highYellow-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color) !important;
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .visa {
        border-bottom: 1px solid var(--primary-color);

    }

    .typeVisa .row {
        column-gap: 7%;
    }

    .typeVisa {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-block: 6rem;

    }

    .typeVisa-title {
        width: 100%;
        text-align: center;
    }

    .typeVisa-title h2 {
        font-weight: bold;
    }

    .typeVisa-type-box {
        background-color: var(--secondary-color);
        border-radius: 30px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 300px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        transition: all 0.4s ease-out;
    }

    .typeVisa-type-box h5 {
        font-size: 1.9rem;
        font-weight: bold;
    }

    .typeVisa-type-box-btn {
        background-color: var(--block-color);
        padding: 0.9rem 2rem;
        border: 0;
        border-radius: 30px;
        color: var(--highYellow-color);
        width: 12rem;
        text-align: center;
    }

    .typeVisa-type-box:hover {
        background-color: var(--block-color);
        color: var(--secondary-color);
        box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    }

    .typeVisa-type-box:hover .typeVisa-type-box-btn {
        background-color: var(--highYellow-color);
        color: var(--block-color);
    }

    .typeVisa-type-box-btn svg {
        transform: translateX(0px);
        transition: all 0.4s ease-out;
    }

    .typeVisa-type-box:hover .typeVisa-type-box-btn svg {
        transform: translateX(5px);
        color: var(--primary-color);
    }

    .optionalTours {
        background-color: var(--block-color);
        padding-bottom: 4rem;
    }

    .tour {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        row-gap: 3.5rem;
    }

    .tour .row {
        column-gap: 7%;
    }

    .optionalTours-title {
        width: 100%;
        text-align: center;
        padding-top: 2rem;
        color: var(--white-color);
    }

    .box {
        position: relative;
        width: 20rem;
        height: 20rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;

    }

    .box:hover .imgBox {
        transform: translate(-2.2rem, -2.2rem);
    }

    .box:hover .box_content {
        transform: translate(2.2rem, 2.2rem);
    }

    .imgBox {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }

    .imgBox img {
        width: 20rem;
        height: 20rem;
        object-fit: cover;
        resize: both;
        border-radius: 30px;
        border: 1px solid var(--secondary-color);
    }

    .box_content {
        position: absolute;
        top: 0;
        left: 0;
        width: 20rem;
        height: 20rem;
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        background-color: var(--secondary-color);
        z-index: 1;
        align-items: flex-end;
        text-align: center;
        transition: 0.5s ease-in-out;
        border-radius: 30px;
    }

    .box_content h2 {
        display: block;
        font-size: 1.2rem;
        color: #111;
        font-weight: 500;
        line-height: 2rem;
        margin: 0;
    }

    .box_content span {
        color: #555;
        font-size: 1rem;
        font-weight: 300;
    }

    .navbar_index-box-route {
        color: var(--secondary-color);
    }

    .navbar_index-box-route span {
        margin-bottom: 5rem;
    }


    .box:hover .imgBox {
        transform: translate(0, -3rem);
    }

    .optionalTours-link {
        width: 100%;
        text-align: center;
        padding-top: 2rem;
        color: var(--white-color);
        font-size: 1.2rem;
    }

    .optionalTours-link svg {
        transform: translateX(0);
        transition: all 0.4s ease;
    }

    .optionalTours-link:hover svg {
        transform: translateX(5px);
        transition: all 0.4s ease;
    }

    /*Start List Hotel*/
    .listHotel {
        background-color: var(--secondary-color);
    }

    .listHotel_filter {
        background-color: var(--white-color);
        border-radius: 20px;
        padding: 1.5rem 3rem;
        display: flex;
        height: 80vh;
        position: sticky;
    }


    .listHotel_list-item {
        background-color: var(--white-color);
        border-radius: 20px;
        padding: 1.5rem 1.5rem;
        display: flex;
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
        margin-bottom: 1.5rem;
        height: 20rem;
    }

    .listHotel_list-item-title {
        margin-left: 1.5rem;
        display: flex;
        flex-direction: column;
        row-gap: 3%;
        justify-content: space-between;
    }

    .listHotel_list-item-info {
        display: flex;
    }

    .listHotel_list-item-info-pic {
        border-radius: 20px;
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    }

    /*End List Hotel*/
    .services {
        background-color: var(--block-color);
        padding-block: 3rem;
        border-top: 1px solid var(--primary-color);
    }

    .services-item {
        color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .services-item span {
        margin-top: 6%;

    }

    /*Strat page Login or sign*/
    .auth-page {
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .auth-page_title {
        color: var(--highYellow-color);
        font-weight: bold;
        text-align: center;
        margin-block: 3%;
    }

    .auth-page_btn {
        border-radius: 20px;
        border: 1px solid var(--highYellow-color);
        background-color: var(--highYellow-color);
        color: #FFFFFF;
        font-size: 12px;
        font-weight: bold;
        padding: 12px 45px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: transform 80ms ease-in;
    }

    .auth-page_btn:active {
        transform: scale(0.95);
    }

    .auth-page_btn:focus {
        outline: none;
    }

    .ghost {
        background-color: transparent;
        border-color: var(--highYellow-color);
    }

    .form-container form {
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 50px;
        height: 100%;
        text-align: center;
    }


    .auth-page_container {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
        position: relative;
        overflow: hidden;
        width: 768px;
        max-width: 100%;
        min-height: 480px;
        margin-bottom: 3%;
    }

    .form-container {
        position: absolute;
        top: 0;
        height: 100%;
        transition: all 0.6s ease-in-out;
    }

    .sign-in-container {
        left: 0;
        width: 50%;
        z-index: 2;
    }

    .container.right-panel-active .sign-in-container {
        transform: translateX(100%);
    }


    .auth-page_container.right-panel-active .sign-up-container {
        transform: translateX(100%);
        opacity: 1;
        z-index: 5;
        animation: show 0.6s;
    }

    @keyframes show {
        0%, 49.99% {
            opacity: 0;
            z-index: 1;
        }

        50%, 100% {
            opacity: 1;
            z-index: 5;
        }
    }

    .overlay-container {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        overflow: hidden;
        transition: transform 0.6s ease-in-out;
        z-index: 100;
    }

    .auth-page_container.right-panel-active .overlay-container {
        transform: translateX(-100%);
    }

    .overlay {
        background: var(--block-color);
        background: -webkit-linear-gradient(to right, var(--primary-color), var(--block-color));
        background: linear-gradient(to right, var(--primary-color), var(--block-color));
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 0 0;
        color: #FFFFFF;
        position: relative;
        left: -100%;
        height: 100%;
        width: 200%;
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }

    .auth-page_container.right-panel-active .overlay {
        transform: translateX(50%);
    }

    .overlay-panel {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 40px;
        text-align: center;
        top: 0;
        height: 100%;
        width: 50%;
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }

    .overlay-panel_titr {
        color: var(--highYellow-color);
    }


    .overlay-left {
        transform: translateX(-20%);
    }

    .auth-page_container.right-panel-active .overlay-left {
        transform: translateX(0);
    }

    .overlay-right {
        right: 0;
        transform: translateX(0);
    }

    .auth-page_container.right-panel-active .overlay-right {
        transform: translateX(20%);
    }

    .social-container {
        margin: 20px 0;
    }

    .social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }

    /*End page Login or sign*/


}

/*End Contact tablet < responsive*/

/*Start Contact tablet > responsive*/
@media screen and (max-width: 1200px) {
    .responsive-btn_book {
        width: 100%;
    }

    .getStart {
        display: flex;
        color: var(--white-color);
    }

    .navbar-home {
        height: 90vh;
        background: linear-gradient(90deg, rgba(32, 32, 32, 1) 2%, rgba(32, 32, 32, 0.95) 40%, rgba(32, 32, 32, 0.15) 87%), url('https://as-auto.storage.iran.liara.space/AsTravel/learning/Agency/dubai.jpg') no-repeat right;
        background-size: 100% 100%;

    }

    .navbar_index-box {
        height: 80vh;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;

    }

    .navbar_index-box-text {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        color: var(--white-color);
        height: 56%;
    }

    .navbar_index-box-text span {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

    .navbar_index-box-text h1 span, .navbar_index-box-text h2 {
        color: var(--highYellow-color);
        font-size: 3.5rem;
    }

    .navbar_index-box-btns {
        display: flex;
        align-items: end;
        flex-direction: column;
        row-gap: 1.1rem;
    }

    .navbar_index-box-visa {
        background-color: var(--secondary-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color);
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .navbar_index-box-hotel {
        background-color: var(--highYellow-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color) !important;
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .residence {
        background-color: var(--secondary-color);
        padding: 2rem 4rem;
        border-bottom: 1px solid var(--primary-color);
    }

    .residence-title {
        color: var(--primary-color);
    }

    .residence-title span {
        font-size: 1.2rem;
    }

    .residence-title-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .residence-title-info a {
        border: 1px solid var(--highYellow-color);
        padding: .5rem 0.8rem;
        border-radius: 1rem;
    }

    .residence-title-info h2 {
        font-weight: bold;
    }

    .residence-collection {
        display: flex;
        flex-direction: column;
        margin: 2rem 0;
    }

    .residence-collection-box-text {
        background-color: var(--block-color);
        border-radius: 30px;
        color: var(--white-color);
        padding: 3rem 1rem;
    }

    .residence-collection-box-text h3 {
        font-size: 1.7rem;
    }

    .residence-collection-box {
        display: flex;
        flex-direction: column;
        justify-content: start;
        padding-top: 7px;
        border-radius: 30px;
        margin: 1rem;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .residence-collection-box img:nth-child(3) {
        display: none;
    }

    .residence-collection-box-pic {
        height: 15rem;
        border-radius: 27px;
        transition: all 0.3s ease;
    }

    .residence-collection-box-detail {
        color: var(--primary-color);
    }

    .residence-collection-box-detail svg {
        margin-right: 3px;
    }

    .residence-collection-box:hover {
        background-color: var(--white-color);
    }

    .residence-collection-box-pic:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0 14px 28px, rgba(0, 0, 0, 0.22) 0 10px 10px;
        border-radius: 27px 27px 0 0;
    }


    .bestRate {
        background-color: var(--secondary-color);
        padding: 2rem 4rem;
        border-bottom: 1px solid var(--primary-color);
    }

    .bestRate-left-images {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .bestRate-left-img-1 {
        min-width: 100%;
        height: 400px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .bestRate-left-img-2 {
        display: none;
    }

    .bestRate-left-titr {
        background-color: var(--block-color);
        border-radius: 30px;
        color: var(--highYellow-color);
        padding: 1rem 3rem;
        position: relative;
        right: 50%;
    }

    .bestRate-right {
        row-gap: 5rem;
        height: 100%;
        padding-top: 2rem;
    }

    .bestRate-right span {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .bestRate-right h3 {
        font-weight: bold;
        font-size: 3rem;
    }

    .bestRate-right p {
        font-size: 1.1rem;
    }

    .bestRate-right-btn {
        border: 0;
        background-color: var(--highYellow-color);
        padding: 0.9rem 2rem;
        border-radius: 30px;
        color: var(--primary-color) !important;
        width: 12rem;
        text-align: center;
        transition: all 0.4s ease-out;
    }

    .visa {
        border-bottom: 1px solid var(--primary-color);
    }

    .typeVisa {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-block: 2rem;
    }


    .typeVisa-title {
        width: 100%;
        text-align: center;
    }

    .typeVisa-title h2 {
        font-weight: bold;
    }

    .typeVisa-type-box {
        background-color: var(--secondary-color);
        margin: 2rem;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 300px;
        transition: all 0.4s ease-out;
    }

    .typeVisa-type-box h5 {
        font-size: 1.9rem;
        font-weight: bold;
    }

    .typeVisa-type-box-btn {
        background-color: var(--block-color);
        padding: 0.9rem 2rem;
        border: 0;
        border-radius: 30px;
        color: var(--highYellow-color);
        width: 12rem;
        text-align: center;
    }

    .typeVisa-type-box:hover {
        background-color: var(--block-color);
        color: var(--secondary-color);
    }

    .typeVisa-type-box:hover .typeVisa-type-box-btn {
        background-color: var(--highYellow-color);
        color: var(--block-color);
    }

    .typeVisa-type-box-btn svg {
        transform: translateX(0px);
        transition: all 0.4s ease-out;
    }

    .typeVisa-type-box:hover .typeVisa-type-box-btn svg {
        transform: translateX(5px);
    }

    .optionalTours {
        background-color: var(--block-color);
        padding-bottom: 4rem;
    }

    .tour {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        row-gap: 3.5rem;
    }

    .optionalTours-title {
        width: 100%;
        text-align: center;
        padding-top: 2rem;
        color: var(--white-color);
    }

    .box {
        position: relative;
        height: 20rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 6rem;

    }

    .box:hover .content {
        transform: translate(2.2rem, 2.2rem);
    }

    .imgBox {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }

    .imgBox img {
        width: 100%;
        height: 20rem;
        object-fit: cover;
        resize: both;
        border-radius: 30px;
    }

    .box_content {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        background-color: var(--secondary-color);
        z-index: 1;
        align-items: flex-end;
        text-align: center;
        transition: 0.5s ease-in-out;
        border-radius: 30px;
    }

    .box_content h2 {
        display: block;
        font-size: 2rem;
        color: #111;
        font-weight: 500;
        line-height: 2rem;
        margin: 0 1rem;
    }

    .box_content span {
        color: #555;
        font-size: 1rem;
        font-weight: 300;
    }


    .box:hover .imgBox {
        transform: translate(0, -3rem);
    }

    .optionalTours-link {
        width: 100%;
        text-align: center;
        color: var(--white-color);
        font-size: 1.2rem;
    }

    .optionalTours-link a {
        border-radius: 1.6rem;
        border: 1px solid var(--highYellow-color);
    }

    .optionalTours-link svg {
        transform: translateX(0);
        transition: all 0.4s ease;
    }

    .optionalTours-link:hover svg {
        transform: translateX(5px);
        transition: all 0.4s ease;
    }

    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked ~ .nav-links {
        left: 0;
    }

    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content-headar {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content-headar .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content-headar .row:nth-child(1),
    .mega-box .content-headar .row:nth-child(2) {
        border-top: 0;
    }

    .content-headar .row .mega-links {
        border-left: 0;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content-headar .row header {
        font-size: 19px;
    }

    /*Start List Hotel*/
    .listHotel {
        background-color: var(--secondary-color);
    }

    .listHotel_filter {
        visibility: hidden;
    }

    .listHotel_list-item {
        background-color: var(--white-color);
        border-radius: 20px;
        padding: 1.5rem 1.5rem;
        display: flex;
        flex-wrap: wrap;
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
        margin-bottom: 1.5rem;
    }

    /*.listHotel_list-item-title {*/
    /*    margin-left: 1.5rem;*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    row-gap: 3%;*/
    /*    justify-content: space-between;*/
    /*}*/
    .listHotel_list-item-info {
        display: flex;
    }

    .listHotel_list-item-info-pic {
        border-radius: 20px;
        width: 100%;
        margin-bottom: 1rem;
        box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    }

    /*End List Hotel*/
    /*Strat page Login or sign*/
    .auth-page {
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .auth-page_title {
        color: var(--highYellow-color);
        font-weight: bold;
        text-align: center;
        margin-block: 3%;
    }

    .auth-page_btn {
        border-radius: 20px;
        border: 1px solid var(--highYellow-color);
        background-color: var(--highYellow-color);
        color: #FFFFFF;
        font-size: 12px;
        font-weight: bold;
        padding: 12px 45px;
        letter-spacing: 1px;
        text-transform: uppercase;
        transform: scale(0.95);
        transition: transform 80ms ease-in;
    }

    .auth-page_btn:active {
        transform: scale(1);
    }

    .auth-page_btn:focus {
        outline: none;
    }

    .auth-page_btn.ghost {
        background-color: transparent;
        border-color: var(--highYellow-color);
    }

    .form-container {
        position: absolute;
        top: 0;
        height: 100%;
        transition: all 0.6s ease-in-out;
    }

    .form-container form {
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 5px;
        height: 100%;
        text-align: center;
    }


    .auth-page_container {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
        position: relative;
        overflow: hidden;
        width: 768px;
        max-width: 100%;
        min-height: 480px;
        margin-bottom: 3%;
    }


    .sign-in-container {
        left: 0;
        width: 50%;
        z-index: 2;
    }

    .auth-page_container.right-panel-active .sign-in-container {
        transform: translateX(100%);
    }


    .auth-page_container.right-panel-active .sign-up-container {
        transform: translateX(100%);
        opacity: 1;
        z-index: 5;
        animation: show 0.6s;
    }

    @keyframes show {
        0%, 49.99% {
            opacity: 0;
            z-index: 1;
        }

        50%, 100% {
            opacity: 1;
            z-index: 5;
        }
    }

    .overlay-container {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        overflow: hidden;
        transition: transform 0.6s ease-in-out;
        z-index: 100;
    }

    .auth-page_container.right-panel-active .overlay-container {
        transform: translateX(-100%);
    }

    .overlay {
        background: var(--block-color);
        background: -webkit-linear-gradient(to right, var(--primary-color), var(--block-color));
        background: linear-gradient(to right, var(--primary-color), var(--block-color));
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 0 0;
        color: #FFFFFF;
        position: relative;
        left: -100%;
        height: 100%;
        width: 200%;
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }

    .auth-page_container.right-panel-active .overlay {
        transform: translateX(50%);
    }

    .overlay-panel {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 5px;
        text-align: center;
        top: 0;
        height: 100%;
        width: 50%;
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }

    .overlay-panel_titr {
        color: var(--highYellow-color);
    }

    .overlay-left {
        transform: translateX(-20%);
    }

    .auth-page_container.right-panel-active .overlay-left {
        transform: translateX(0);
    }

    .overlay-right {
        right: 0;
        transform: translateX(0);
    }

    .auth-page_container.right-panel-active .overlay-right {
        transform: translateX(20%);
    }

    .social-container {
        margin: 20px 0;
    }

    .social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }

    /*End page Login or sign*/
    .services {
        background-color: var(--block-color);
        padding-block: 3rem;
        border-top: 1px solid var(--primary-color);
    }

    .services-item {
        color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .services-item span {
        margin-top: 6%;
        text-align: center;
    }


}

/*End Contact tablet > responsive*/

.button-scroll {
    background-color: var(--primary-color);
    /*color: ;*/
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    width: 3.5rem;
    height: 3.5rem;
    border: none;
    padding: 0;
    text-align: center;
    border-radius: 100px;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    z-index: 111;
    transition: .3s ease-out;
    line-height: 54px;
    font-size: .75rem;
}

.button-scroll button {
    background: transparent;
    border: 0;
}


/*
.pagination{
    margin: 0!important;
    display: flex;
    justify-content: center;
}
.pagination li{
    margin-right: 2%;
}
*/

.form-container input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

/*start FAQ*/
.FAQ {
    padding-block: 3rem;
    border-top: 1px solid var(--primary-color);
}

.FAQ-title {
    font-weight: bold;
    text-align: center;
    margin-block: 3%;
}

.FAQ_accordion .FAQ_accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.FAQ_accordion .FAQ_accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--primary-color);
}

.FAQ_accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.FAQ_accordion button:hover, .FAQ_accordion button:focus {
    cursor: pointer;
    color: var(--primary-color);
}

.FAQ_accordion button:hover::after, .FAQ_accordion button:focus::after {
    cursor: pointer;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.FAQ_accordion button .FAQ_accordion-title {
    padding: 1em 1.5em 1em 0;
}

.FAQ_accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.FAQ_accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.FAQ_accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.FAQ_accordion button[aria-expanded='true'] {
    color: var(--primary-color);
}

.FAQ_accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.FAQ_accordion button[aria-expanded='true'] + .FAQ_accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.FAQ_accordion .FAQ_accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.FAQ_accordion .FAQ_accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}


/*End FQG*/

/*start Exhibitions*/
.Exhibitions {
    padding-block: 3rem;

    border-top: 1px solid var(--primary-color);
}

.Exhibitions-title {
    font-weight: bold;
    text-align: center;
    margin-block: 3%;
}

/*End Exhibitions*/

/*Start Blog*/
.showPost {
    display: flex;
    align-items: center;
}

.showPost_cover {
    border-radius: 30px;
    margin-bottom: 1.3rem;
}

.Suggested {
    border-left: 1px solid var(--secondary-color);

}

.Suggested_title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.Suggested_img {
    max-width: 100%;
    border-radius: 100%;
    height: 100px;
    width: 100%;

}

.Suggested_name {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/*End Blog*/

.bg {
    animation: pulse 1.2s ease infinite;
    background: var(--highYellow-color);
    opacity: 1;
}

.send-btn {

    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    z-index: 99;
    cursor: pointer;
    outline: none;
    background-color: var(--primary-color);
    border-radius: 0 0 8px 8px;
}

.send-btn button {
    border: 0;
    color: var(--highYellow-color);
    background: transparent;
}

.btn-submit {
    border: 0;
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 100%;
    z-index: 99;
    cursor: pointer;
    outline: none;
    background-color: var(--primary-color);
    color: var(--highYellow-color);
    border-radius: 8px;
}

.modal {
    backdrop-filter: blur(10px);

}

/*Start Contact-Us-btn*/

.bg,
.Contact-Us-btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 111;
    position: fixed;
    bottom: 1.875rem;
    left: 1.875rem;
    cursor: pointer;
}

.bg {
    animation: pulse 1.2s ease infinite;
}

.Contact-Us-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99;
    border: none;
    background: var(--primary-color);
    background-size: 18px;
    cursor: pointer;
    outline: none;
}


@keyframes pulse {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/*End Contact-Us-btn*/
.book_tour {
    border: 1px solid var(--highYellow-color);
    display: flex;
    flex-direction: column;
}

.book_tour-Title {
    background-color: var(--highYellow-color);
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book_tour-btn {
    background-color: var(--primary-color);
    color: var(--highYellow-color);
    padding: 10px 5px;
    margin-right: 0.2rem;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.book_tour-person {
    display: flex;
    justify-content: flex-end;
}

.book_tour-rate {
    margin-inline: 1rem;
    font-weight: bold;
    font-size: 2rem;
    color: var(--primary-color);
}

#prev-gallery-h > .carousel-control-prev-icon::after,
#next-gallery-h > .carousel-control-next-icon::after {
    content: "" !important;
}

.close-folder {
    display: flex;
    align-items: center;
}

.folder-icon {
    margin-right: 8px;
    cursor: pointer;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
}

.folder-icon:active, .folder-icon:focus {
    outline: none;
}

.card-tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.card-tour-detail {
    width: 93%;
    height: 100%;
    padding: 15px;
    position: absolute;
    color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    background-image: linear-gradient(transparent 40%, rgba(0, 0, 0, .85));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    line-height: 22px;
}
.card-tour-btn{
    display: flex;
    justify-content: space-between;
    padding: 8px 0 0 0;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}
