@font-face {
    font-family: "Petrichor";
    src: url("../fonts/alfont_com_ZYAEA-Petrichor.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "29LT Bukra";
    src: url("../fonts/29lt-bukra-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mersal Arabic";
    src: url("../fonts/MERSALARABIC - VARIABLE (1).OTF") format("opentype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --afouq-primary: #4b4857;
    --afouq-accent: #bbe3e0;
    --afouq-primary-rgb: 75, 72, 87;
    --afouq-accent-rgb: 187, 227, 224;

    --fx-ink: #4b4857;
    --fx-mint: #bbe3e0;
    --fx-mint-soft: #e7f6f4;
    --fx-ink-deep: #2f2d36;
    --fx-surface: #f4fbfa;
    --fx-line: rgba(75, 72, 87, 0.14);

    --font-header: "29LT Bukra", "Petrichor", sans-serif;
    --font-body: "Mersal Arabic", "Petrichor", sans-serif;

    /* Bootstrap alignment */
    --bs-primary: var(--afouq-primary);
    --bs-secondary: var(--afouq-accent);
}

html,
body {
    font-family: var(--font-body);
    font-weight: 500;
}

/* Body copy */
body,
p,
li,
a,
label,
input,
textarea,
select,
button,
.fx-body,
.fx-eyebrow,
.nav-link,
.btn,
.fx-facility p,
.fx-glass-card p,
.fx-developer-copy p,
.fx-dest-item,
.fx-pulse-label,
.fx-pulse-num,
.fx-pulse-text,
.fx-chip,
.fx-media-caption {
    font-family: var(--font-body) !important;
    font-weight: 500;
}

span:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not([class^="fa-"]):not([class*=" fa-"]):not(.material-symbols-rounded):not(.material-symbols-outlined):not(.material-symbols-sharp):not(.navbar-toggler-icon) {
    font-family: var(--font-body) !important;
    font-weight: 500;
}

/* Keep icon fonts intact */
.fa,
.fas,
.far,
.fal,
.fab,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.material-symbols-rounded,
.material-symbols-outlined,
.material-symbols-sharp {
    font-family: "Material Symbols Rounded" !important;
    font-weight: normal !important;
}

/* Headers */
h1, h2, h3, h4, h5, h6,
.fx-headline,
.fx-statement-text,
.carousel-caption h1,
.navbar-brand,
.section-title,
.section-about-title,
.facilities-title,
.fx-facility h3,
.fx-glass-card h3 {
    font-family: var(--font-header) !important;
    font-weight: 500 !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--afouq-accent) !important;
    color: #ffffff !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "KFarnaz", "Jost", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    position: relative;
    padding: 35px 15px;
    color: #000 !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

@media (max-width: 767px) {
    .mobile {
        display: block !important;
    }

    .desktop {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(244, 251, 250, .97);
        z-index: 1030;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border: 1px solid var(--afouq-primary, #4b4857);
        color: var(--afouq-primary, #4b4857);
        background: rgba(187, 227, 224, .35);
        border-radius: 8px;
        z-index: 1050;
    }

    .navbar.navbar-expand-lg .navbar-toggler .fa,
    .navbar.navbar-expand-lg .navbar-toggler .fa-bars {
        font-family: "Font Awesome 5 Free" !important;
        font-weight: 900 !important;
        font-size: 1.25rem;
        line-height: 1;
        color: var(--afouq-primary, #4b4857);
        display: inline-block;
        visibility: visible;
        opacity: 1;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--afouq-primary) !important;
}

    .navbar-light .navbar-brand img {
        max-height: 90px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        background-color: #ffffff !important;
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        border-bottom: 1px solid rgba(75, 72, 87, .12);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(244, 251, 250, .97);
        z-index: 1030;
        box-shadow: 0 12px 28px rgba(75, 72, 87, .12);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        /* background: var(--bs-primary); */
        /* transition: .5s; */
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
}

.carousel-header .carousel,
.carousel-header .carousel-inner,
.carousel-header .carousel-inner .carousel-item {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
}

.carousel-header .carousel-inner .carousel-item img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.22));
    background-size: cover;
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption p {
    color: #ffffff !important;
}

.carousel-caption h1 {
    font-size: clamp(2.2rem, 4.8vw, 4.2rem) !important;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: .2px;
    margin-bottom: .35rem;
}

@media (max-width: 767px) {
    .carousel-header,
    .carousel-header .carousel,
    .carousel-header .carousel-inner,
    .carousel-header .carousel-inner .carousel-item {
        height: auto;
        min-height: 0;
        margin-top: 0;
        overflow: visible;
    }

    .carousel-header .carousel-inner .carousel-item img.mobile {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center top;
        display: block !important;
        margin-top: 0;
    }

    .carousel-header .carousel-inner .carousel-item img.desktop {
        display: none !important;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 100%;
        margin-top: 0;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

/* .about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
} */

/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}

.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}

/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}

/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

.facicons {
    width: 90px !important;
    max-width: 90px !important;
    transition: transform .45s ease, filter .45s ease;
}

.fac-ms {
    font-size: 58px;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .45s ease, filter .45s ease;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.facility-card:hover .fac-ms {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 6px 12px rgba(var(--afouq-primary-rgb), 0.26));
}

.payment-plan-creative {
    background:
        radial-gradient(circle at 12% 18%, rgba(var(--afouq-primary-rgb), 0.14) 0, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.payment-plan-creative h2 {
    color: #18395f;
    font-weight: 800;
    letter-spacing: .2px;
}

.payment-plan-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(var(--afouq-primary-rgb), 0.22);
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 18px 42px rgba(20, 28, 40, 0.08);
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.payment-plan-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--afouq-primary);
}

.payment-plan-card-secondary .payment-plan-card-accent {
    background: var(--afouq-accent);
}

.payment-plan-card-title {
    margin: 0;
    color: #18395f;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.6;
}

.payment-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--afouq-primary-rgb), 0.38);
    box-shadow: 0 22px 55px rgba(20, 28, 40, 0.12);
}

.unit-showcase {
    background: #ffffff;
}

/* Scroll-highlight backgrounds (Unit → Developer) */
.scroll-bg-section {
    transition: background-color 0.45s ease, color 0.45s ease;
}

#unit-section.scroll-bg-active {
    background: #f6cb62 !important;
}

#about.scroll-bg-active {
    background: #6283b3 !important;
}

#services.scroll-bg-active {
    background: #2d3329 !important;
}

#services.scroll-bg-active .facilities-title {
    color: #ffffff !important;
}

#developer.scroll-bg-active {
    background: #b4493e !important;
}

.unit-showcase-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    max-width: 1320px;
    margin: 0 auto;
    box-shadow: 0 22px 60px rgba(20, 28, 40, 0.18);
}

.unit-showcase-img {
    width: 100%;
    height: clamp(320px, 36vw, 520px);
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    filter: saturate(1.02) contrast(1.02);
}

.unit-showcase-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.0) 70%);
    opacity: 0.65;
}

.unit-showcase-card {
    position: absolute;
    top: 50%;
    right: clamp(14px, 3.6vw, 40px);
    transform: translateY(-50%);
    z-index: 2;
    width: min(520px, calc(100% - 28px));
}

.unit-showcase-card-inner {
    background: rgba(30, 30, 30, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 22px 22px 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.unit-showcase-title {
    color: #ffffff;
    font-size: clamp(1.15rem, 2.0vw, 1.5rem);
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 10px;
}

.unit-showcase-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.unit-showcase-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--afouq-primary);
    box-shadow: 0 14px 28px rgba(var(--afouq-primary-rgb), 0.34);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.unit-showcase-cta:hover {
    transform: translateY(-2px);
    background: var(--afouq-accent);
    box-shadow: 0 18px 34px rgba(var(--afouq-primary-rgb), 0.42);
    color: #ffffff;
}

.unit-showcase-cta-arrow {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 991.98px) {
    .unit-showcase-inner {
        border-radius: 16px;
    }

    .unit-showcase-card {
        right: 14px;
        left: 14px;
        width: auto;
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .unit-showcase-inner::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.6) 75%);
        opacity: 0.7;
    }
}

.facilities-creative {
    background:
        radial-gradient(circle at 5% 10%, rgba(var(--afouq-primary-rgb), 0.12) 0, transparent 35%),
        radial-gradient(circle at 95% 90%, rgba(var(--afouq-primary-rgb), 0.14) 0, transparent 40%),
        linear-gradient(130deg, #f7fbff 0%, #edf5ff 50%, #f7fbff 100%);
}

.facilities-title {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: #163558;
    letter-spacing: .3px;
}

.facility-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid rgba(var(--afouq-primary-rgb), 0.22);
    border-radius: 20px;
    min-height: 210px;
    padding: 1.4rem .85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(18, 70, 135, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.facility-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(var(--afouq-primary-rgb), 0.18), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
}

.fac-icon-wrap {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--afouq-primary);
    background: radial-gradient(circle at 30% 25%, #ffffff 0%, #e8f1ff 65%, #d7e7ff 100%);
    box-shadow: inset 0 0 0 1px rgba(var(--afouq-primary-rgb), 0.18), 0 8px 18px rgba(31, 56, 92, 0.14);
    margin-bottom: 10px;
    z-index: 1;
}

.facility-title-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #103a66;
    margin: 0;
    line-height: 1.45;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--afouq-primary-rgb), 0.55);
    box-shadow: 0 18px 35px rgba(12, 78, 162, 0.18);
}

.facility-card:hover::before {
    opacity: 1;
}

.facility-card:hover .facicons {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 6px 12px rgba(var(--afouq-primary-rgb), 0.28));
}

@media (max-width: 991.98px) {
    .facility-card {
        min-height: 195px;
    }
}

@media (max-width: 576px) {
    .fac-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .facicons {
        width: 78px !important;
        max-width: 78px !important;
    }

    .facility-title-text {
        font-size: .96rem;
    }
}

.developerlogo {
    width: 300px !important;
}

.offer {
    color: #ffffff !important;
    font-size: 30px !important;
}

.mostakbal {
    margin-top: 0 !important;
    position: relative !important;
    max-width: 500px !important;
    max-height: 500px !important;
}

@media (max-width: 576px) {
    .mostakbal {
        max-width: 260px !important;
        max-height: 260px !important;
        width: 100% !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}

/*** Tour Booking Start ***/

.projectlogo {
    width: 100px !important;
    max-width: 100px !important;
    margin-right: 100px !important;
}

.booking {
    background: linear-gradient(rgb(141 141 141 / 50%), rgb(141 141 141 / 55%)), url(../img/Header7.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;


}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--afouq-accent) !important;
    color: #ffffff !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}

/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}

/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: #666767;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #666767 !important;
}

.xlab {
    font-size: 5px;
    margin-top: 0 !important;
}

/*** copyright end ***/

.unit-frame {
    border: 2px solid #666767;
    border-radius: 12px;
    padding: 4px;
}

@media (max-width: 479px) {
    .projectlogo {
        width: 70px !important;
    }
}

/* ===============================
   Creative Landing Theme
   =============================== */

body {
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 42%, #f7fbff 100%);
    color: #18395f;
}

.container-fluid {
    position: relative;
}

.container-fluid.py-5 {
    overflow: hidden;
}

.container-fluid.py-5::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.payment-creative::before,
.about::before,
.facilities-creative::before,
.developer-creative::before,
.booking::before {
    background: radial-gradient(circle at 8% 15%, rgba(var(--afouq-primary-rgb), 0.14), transparent 40%);
}

.about {
    background: linear-gradient(130deg, #ffffff 0%, #f4f9ff 100%);
}

.developer-creative {
    background: linear-gradient(145deg, #f7fbff 0%, #edf5ff 60%, #f7fbff 100%);
}

.payment-creative .badge {
    background: var(--afouq-accent) !important;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(var(--afouq-accent-rgb), 0.28);
}

.payment-creative h2,
.about h5,
.about p,
.developer-creative p {
    position: relative;
    z-index: 1;
}

.navbar-light {
    background: rgba(244, 251, 250, .95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--afouq-primary-rgb), 0.22) !important;
    box-shadow: 0 10px 25px rgba(17, 68, 128, 0.08);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.navbar-light .navbar-nav .nav-link {
    border-radius: 10px;
    margin: 0 2px;
    transition: color .25s ease, background-color .25s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    background: rgba(var(--afouq-primary-rgb), 0.14);
    color: var(--afouq-primary) !important;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--afouq-primary-rgb), 0.1) 0, transparent 42%),
        linear-gradient(170deg, rgba(6, 16, 34, 0.28), rgba(14, 48, 89, 0.22));
}

.carousel-caption .offer {
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.about .h-100 img {
    border-radius: 22px;
    box-shadow: 0 22px 45px rgba(11, 62, 126, 0.2);
}

.about .col-lg-7 {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.92));
    border-radius: 22px;
    border: 1px solid rgba(var(--afouq-primary-rgb), 0.18);
    box-shadow: 0 18px 35px rgba(20, 74, 142, 0.08);
    padding: 2.2rem 1.8rem;
}

.about .section-about-title {
    color: var(--afouq-primary) !important;
    font-weight: 700;
    letter-spacing: .3px;
}

.about p {
    color: #274f7a;
    line-height: 1.9;
}

.developer-creative .mx-auto {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92));
    border: 1px solid rgba(var(--afouq-primary-rgb), 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(15, 79, 155, 0.1);
    padding: 2.2rem 1.4rem;
}

.developer-creative p {
    color: #2b557f;
    line-height: 1.9;
}


.header-button {
    font-size: 20px !important
}

.booking {
    background:
        linear-gradient(rgba(8, 24, 48, 0.64), rgba(8, 24, 48, 0.64)),
        url(../img/Header7.webp) center center / cover no-repeat fixed;
}

.booking .col-lg-12 {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem 1.4rem;
}

.booking .form-control {
    border-radius: 14px !important;
    border: 1px solid rgba(var(--afouq-primary-rgb), 0.26) !important;
    box-shadow: 0 8px 18px rgba(var(--afouq-primary-rgb), 0.10);
}

.booking .form-floating>label {
    color: #43658a;
}

.btn.btn-primary {
    background: var(--afouq-primary);
    border: none;
    box-shadow: 0 12px 24px rgba(var(--afouq-primary-rgb), 0.26);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--afouq-accent) !important;
    color: #ffffff !important;
}

.copyright {
    background: linear-gradient(145deg, #0d284b 0%, #153b6a 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright a,
.copyright i,
.copyright .text-body {
    color: #e6f1ff !important;
}

.back-to-top {
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 20px rgba(var(--afouq-primary-rgb), 0.30);
}

@media (max-width: 991.98px) {

    .about .col-lg-7,
    .developer-creative .mx-auto,
    .booking .col-lg-12 {
        border-radius: 18px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.15rem;
    }

    h5 {
        font-size: 1.05rem;
    }

    h6 {
        font-size: 0.95rem;
    }

    p,
    li,
    a,
    span,
    label,
    input,
    textarea,
    select,
    button {
        font-size: 0.92rem;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 12px 10px;
    }

    .btn {
        font-size: 0.9rem;
    }

    .projectlogo {
        width: 70px !important;
    }
}
/* =========================================================
   Afouq Futuristic Landing — #4b4857 / #bbe3e0
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--fx-surface);
    color: var(--fx-ink);
    overflow-x: hidden;
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-family: 'Material Symbols Rounded' !important;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--d, 0s);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

/* Shared section language */
.fx-section {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.fx-eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(75, 72, 87, .72);
    margin-bottom: .85rem;
    position: relative;
}

.fx-eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: .55rem;
    background: linear-gradient(90deg, var(--fx-mint), transparent);
}

.fx-headline {
    color: var(--fx-ink-deep);
    font-size: clamp(1.85rem, 3.4vw, 3rem);
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.fx-headline--xl {
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    max-width: 18ch;
    margin-inline: auto;
}

.fx-body {
    color: rgba(75, 72, 87, .88);
    font-size: 1.05rem;
    line-height: 1.95;
    margin-bottom: 1.1rem;
}

.fx-ornament {
    width: 64px;
    height: 64px;
    margin: .4rem 0 1.4rem;
    border-radius: 50%;
    border: 1px dashed rgba(187, 227, 224, .9);
    position: relative;
    animation: fx-spin 18s linear infinite;
}

.fx-ornament::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fx-mint) 0%, transparent 70%);
    opacity: .85;
}

@keyframes fx-spin {
    to { transform: rotate(360deg); }
}

.fx-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: .6rem;
    padding: .85rem 1.45rem;
    background: var(--fx-ink);
    color: var(--fx-mint) !important;
    text-decoration: none !important;
    border: 1px solid transparent;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
    box-shadow: 0 16px 40px rgba(75, 72, 87, .22);
    font-weight: 600;
}

.fx-cta:hover {
    transform: translateY(-3px);
    background: var(--fx-mint);
    color: var(--fx-ink) !important;
    box-shadow: 0 20px 48px rgba(187, 227, 224, .45);
}

.fx-cta--ghost {
    background: transparent;
    color: var(--fx-ink) !important;
    border-color: rgba(75, 72, 87, .35);
    box-shadow: none;
}

.fx-cta--ghost:hover {
    background: var(--fx-ink);
    color: var(--fx-mint) !important;
}

.fx-cta .material-symbols-rounded {
    font-size: 1.15rem;
    transition: transform .35s ease;
}

.fx-cta:hover .material-symbols-rounded {
    transform: translateX(-4px);
}

/* Media frames */
.fx-media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    isolation: isolate;
    box-shadow: 0 28px 70px rgba(47, 45, 54, .18);
}

.fx-media-frame--tall .fx-media-img {
    min-height: clamp(360px, 52vh, 620px);
}

.fx-media-frame--sm .fx-media-img {
    min-height: 220px;
}

.fx-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}

.fx-media-frame:hover .fx-media-img {
    transform: scale(1.1);
}

.fx-media-glow {
    position: absolute;
    inset: auto -20% -30% auto;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(187, 227, 224, .55), transparent 70%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: fx-pulse-glow 4.5s ease-in-out infinite;
}

@keyframes fx-pulse-glow {
    0%, 100% { opacity: .45; transform: scale(1); }
    50% { opacity: .85; transform: scale(1.08); }
}

.fx-hud span {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--fx-mint);
    border-style: solid;
    opacity: .85;
    z-index: 2;
}

.fx-hud span:nth-child(1) { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.fx-hud span:nth-child(2) { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.fx-hud span:nth-child(3) { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }
.fx-hud span:nth-child(4) { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }

.fx-media-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(47, 45, 54, .72));
    color: var(--fx-mint);
    font-size: .95rem;
    letter-spacing: .04em;
}

/* Pulse strip */
.fx-pulse {
    background:
        linear-gradient(120deg, rgba(187, 227, 224, .35), rgba(244, 251, 250, .9) 40%, rgba(187, 227, 224, .28)),
        radial-gradient(circle at 80% 50%, rgba(187, 227, 224, .5), transparent 45%);
    border-block: 1px solid var(--fx-line);
    padding: 1.6rem 0;
    position: relative;
    overflow: hidden;
}

.fx-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -60deg,
        transparent,
        transparent 18px,
        rgba(75, 72, 87, .03) 18px,
        rgba(75, 72, 87, .03) 19px
    );
    pointer-events: none;
}

.fx-pulse-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.fx-pulse-item {
    flex: 1 1 140px;
    text-align: center;
    min-width: 120px;
}

.fx-pulse-num,
.fx-pulse-text {
    display: block;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--fx-ink-deep);
    line-height: 1.2;
}

.fx-pulse-label {
    display: block;
    margin-top: .25rem;
    font-size: .82rem;
    color: rgba(75, 72, 87, .7);
    letter-spacing: .08em;
}

.fx-pulse-divider {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, transparent, rgba(75, 72, 87, .28), transparent);
}

@media (max-width: 767.98px) {
    .fx-pulse-divider { display: none; }
}

/* About */
.fx-about {
    background:
        radial-gradient(circle at 0% 0%, rgba(187, 227, 224, .38), transparent 42%),
        linear-gradient(180deg, #f7fcfb 0%, #eef8f6 100%);
}

/* Design */
.fx-design {
    background:
        linear-gradient(160deg, #4b4857 0%, #36343f 55%, #2f2d36 100%);
    color: #eef8f6;
}

.fx-design .fx-eyebrow {
    color: rgba(187, 227, 224, .85);
}

.fx-design .fx-eyebrow::after {
    background: linear-gradient(90deg, var(--fx-mint), transparent);
}

.fx-design .fx-headline {
    color: #f4fbfa;
}

.fx-glass-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(187, 227, 224, .22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.5rem 1.35rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease, background .4s ease;
}

.fx-glass-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--fx-mint), transparent);
}

.fx-glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(187, 227, 224, .55);
    background: rgba(187, 227, 224, .1);
}

.fx-card-index {
    display: block;
    font-size: .8rem;
    letter-spacing: .2em;
    color: var(--fx-mint);
    margin-bottom: .55rem;
}

.fx-glass-card h3 {
    color: #f4fbfa;
    font-size: 1.25rem;
    margin-bottom: .7rem;
}

.fx-glass-card p {
    color: rgba(244, 251, 250, .82);
    line-height: 1.85;
    margin: 0;
    font-size: .98rem;
}

/* Statement */
.fx-statement {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background:
        linear-gradient(90deg, rgba(187, 227, 224, .55), rgba(244, 251, 250, .95) 35%, rgba(187, 227, 224, .4)),
        var(--fx-mint);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fx-statement::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(75, 72, 87, .18), transparent 55%);
    pointer-events: none;
}

.fx-statement-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 3.4rem);
    line-height: 1.4;
    color: var(--fx-ink-deep);
    font-weight: 600;
    max-width: 18ch;
    margin-inline: auto;
}

.fx-statement-text em {
    font-style: italic;
    color: var(--fx-ink);
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: fx-sheen 4s ease-in-out infinite;
}

@keyframes fx-sheen {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: 0 0; }
}

/* Location */
.fx-location {
    background:
        radial-gradient(circle at 100% 0%, rgba(187, 227, 224, .42), transparent 40%),
        #f4fbfa;
}

.fx-destinations {
    display: grid;
    gap: 1rem;
}

.fx-dest-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--fx-line);
    border-radius: 4px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.fx-dest-item:hover {
    transform: translateX(-8px);
    border-color: rgba(187, 227, 224, .9);
    box-shadow: 0 18px 40px rgba(75, 72, 87, .1);
}

.fx-dest-item .material-symbols-rounded {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--fx-mint), #d7efec);
    color: var(--fx-ink);
    font-size: 1.45rem;
    flex-shrink: 0;
}

.fx-dest-item strong {
    display: block;
    color: var(--fx-ink-deep);
    font-size: 1.08rem;
    margin-bottom: .15rem;
}

.fx-dest-item small {
    color: rgba(75, 72, 87, .7);
    font-size: .9rem;
}

/* Units */
.fx-units {
    background: linear-gradient(180deg, #eef8f6 0%, #e3f3f1 100%);
}

.fx-units-stage {
    position: relative;
    margin-top: 2.2rem;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(47, 45, 54, .2);
}

.fx-units-img {
    width: 100%;
    display: block;
    max-height: 560px !important;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1.6s ease;
}

.fx-units-stage:hover .fx-units-img {
    transform: scale(1.08);
}

.fx-units-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(47, 45, 54, .7));
}

.fx-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1rem;
    background: rgba(187, 227, 224, .92);
    color: var(--fx-ink-deep);
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
    font-weight: 600;
    font-size: .95rem;
}

.fx-chip .material-symbols-rounded {
    font-size: 1.1rem;
}

/* Facilities */
.fx-facilities {
    background:
        radial-gradient(circle at 50% 0%, rgba(187, 227, 224, .35), transparent 45%),
        linear-gradient(180deg, #f7fcfb, #eef8f6);
}

.fx-facilities-head {
    margin-bottom: 2.4rem;
}

.fx-facility {
    height: 100%;
    padding: 1.7rem 1.3rem 1.5rem;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--fx-line);
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.fx-facility::after {
    content: "";
    position: absolute;
    inset: auto -30% -40% -30%;
    height: 70%;
    background: radial-gradient(circle, rgba(187, 227, 224, .45), transparent 65%);
    opacity: 0;
    transition: opacity .4s ease;
}

.fx-facility:hover {
    transform: translateY(-10px);
    border-color: rgba(187, 227, 224, .95);
    box-shadow: 0 24px 50px rgba(75, 72, 87, .12);
}

.fx-facility:hover::after {
    opacity: 1;
}

.fx-facility-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, #ffffff, var(--fx-mint));
    border: 1px solid rgba(75, 72, 87, .1);
    box-shadow: 0 12px 28px rgba(75, 72, 87, .1);
    position: relative;
    z-index: 1;
    transition: transform .45s ease;
}

.fx-facility:hover .fx-facility-icon {
    transform: scale(1.08) rotate(-6deg);
}

.fx-facility-icon .material-symbols-rounded {
    font-size: 2rem;
    color: var(--fx-ink);
}

.fx-facility h3 {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    color: var(--fx-ink-deep);
    margin-bottom: .65rem;
}

.fx-facility p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(75, 72, 87, .8);
    line-height: 1.75;
    font-size: .95rem;
}

/* Developer */
.fx-developer {
    background:
        linear-gradient(145deg, #3d3b47 0%, #4b4857 45%, #2f2d36 100%);
    padding-block: clamp(4rem, 7vw, 6.5rem);
}

.fx-developer-panel {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) 1.4fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(187, 227, 224, .22);
    border-radius: 4px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.fx-developer .fx-eyebrow {
    color: rgba(187, 227, 224, .85);
}

.fx-developer .fx-headline {
    color: #f4fbfa;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.fx-developer-logo {
    width: min(420px, 100%);
    height: auto;
    margin-bottom: 1.4rem;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .25));
}

.fx-developer-copy p {
    color: rgba(244, 251, 250, .86);
    line-height: 1.95;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.fx-developer-copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .fx-developer-panel {
        grid-template-columns: 1fr;
    }

    .fx-headline--xl {
        max-width: none;
    }
}

/* Booking + chrome retune */
.booking {
    background:
        linear-gradient(rgba(47, 45, 54, .72), rgba(47, 45, 54, .78)),
        url(../img/Header7.webp) center center / cover no-repeat fixed !important;
}

.booking .col-lg-12 {
    background: linear-gradient(165deg, rgba(187, 227, 224, .14), rgba(255, 255, 255, .08)) !important;
    border: 1px solid rgba(187, 227, 224, .32) !important;
}

.btn.btn-primary {
    background: var(--fx-ink) !important;
    color: var(--fx-mint) !important;
    box-shadow: 0 12px 24px rgba(75, 72, 87, .28) !important;
}

.btn.btn-primary:hover {
    background: var(--fx-mint) !important;
    color: var(--fx-ink) !important;
    box-shadow: inset 0 0 0 0 transparent !important;
}

.navbar-light {
    background: rgba(244, 251, 250, .95) !important;
    border-bottom: 1px solid rgba(75, 72, 87, .12) !important;
    box-shadow: 0 10px 25px rgba(75, 72, 87, .08) !important;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
}

.navbar-light.sticky-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030;
    background: rgba(244, 251, 250, .97) !important;
    box-shadow: 0 12px 28px rgba(75, 72, 87, .14) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    background: rgba(187, 227, 224, .35) !important;
    color: var(--fx-ink) !important;
}

.unit-showcase-cta.header-button {
    background: var(--fx-mint);
    color: var(--fx-ink) !important;
    box-shadow: 0 14px 28px rgba(187, 227, 224, .35);
}

.unit-showcase-cta.header-button:hover {
    background: #ffffff;
    color: var(--fx-ink) !important;
}

.copyright {
    background: linear-gradient(145deg, #2f2d36 0%, #4b4857 100%) !important;
}

.back-to-top {
    background: var(--fx-ink) !important;
    color: var(--fx-mint) !important;
    border-color: rgba(187, 227, 224, .5) !important;
}

@media (max-width: 767.98px) {
    .fx-section {
        padding: 3.4rem 0;
    }

    .fx-cta {
        width: 100%;
        justify-content: center;
    }

    .fx-media-frame--tall .fx-media-img {
        min-height: 300px;
    }
}

/* =========================================================
   Gallery carousel (Aria Verde–style peek slider)
   ========================================================= */

.fx-gallery {
    background:
        radial-gradient(circle at 50% 0%, rgba(187, 227, 224, .42), transparent 48%),
        linear-gradient(180deg, #f7fcfb 0%, #eef8f6 100%);
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
    overflow: hidden;
}

.fx-gallery-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fx-gallery-stage {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 .5rem;
}

.fx-gallery-carousel .fx-gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 22px 50px rgba(47, 45, 54, .16);
    transform: scale(.92);
    opacity: .55;
    transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .55s ease, box-shadow .55s ease;
    filter: saturate(.9);
}

.fx-gallery-carousel .owl-item.center .fx-gallery-item {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 30px 70px rgba(47, 45, 54, .24);
    filter: none;
}

.fx-gallery-carousel .fx-gallery-item img {
    width: 100%;
    height: clamp(240px, 42vw, 520px);
    object-fit: cover;
    display: block;
}

.fx-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 54px;
    padding: .65rem 1.05rem;
    border: 1px solid rgba(187, 227, 224, .45);
    border-radius: 999px;
    background: rgba(75, 72, 87, .92);
    color: var(--fx-mint);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(47, 45, 54, .28);
    cursor: pointer;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.fx-gallery-nav:hover {
    background: var(--fx-mint);
    color: var(--fx-ink);
    box-shadow: 0 18px 40px rgba(187, 227, 224, .4);
}

.fx-gallery-nav .material-symbols-rounded {
    font-size: 1.25rem;
    font-family: 'Material Symbols Rounded' !important;
}

.fx-gallery-nav-label {
    font-size: .78rem;
    letter-spacing: .12em;
    font-weight: 600;
}

.fx-gallery-prev {
    right: clamp(.5rem, 6vw, 5.5rem);
}

.fx-gallery-next {
    left: clamp(.5rem, 6vw, 5.5rem);
}

.fx-gallery-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 420px;
    margin: 1.75rem auto 0;
}

.fx-gallery-counter {
    flex-shrink: 0;
    font-size: .9rem;
    letter-spacing: .08em;
    color: var(--fx-ink);
    font-variant-numeric: tabular-nums;
}

.fx-gallery-counter em {
    font-style: normal;
    font-weight: 700;
    color: var(--fx-ink-deep);
}

.fx-gallery-track {
    flex: 1;
    height: 2px;
    background: rgba(75, 72, 87, .18);
    border-radius: 999px;
    overflow: hidden;
}

.fx-gallery-bar {
    height: 100%;
    width: 25%;
    background: var(--fx-ink);
    border-radius: inherit;
    transition: width .55s cubic-bezier(.22,1,.36,1);
}

@media (max-width: 767.98px) {
    .fx-gallery-nav-label {
        display: none;
    }

    .fx-gallery-nav {
        min-width: 46px;
        min-height: 46px;
        padding: .55rem;
        justify-content: center;
    }

    .fx-gallery-prev {
        right: .65rem;
    }

    .fx-gallery-next {
        left: .65rem;
    }

    .fx-gallery-carousel .fx-gallery-item img {
        height: clamp(220px, 58vw, 340px);
    }
}
