.cs_site_header.cs_style_1.cs_transparent_header .cs_nav_list > li a img {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.cs_nav .cs_nav_list > li.menu-item-has-children.menu-lang > a::after {
    margin-inline-start: 10px;
    margin-bottom: 5px;
}
.cs_video_popup iframe {
    background: #1e1e1f;
}
/* h2.cs_fs_67.cs_mb_45 {
    line-height: 1.85em;
    font-size: 45px;
} */
@media (max-width: 991px) {
    .cs_fs_50 {
        font-size: 28px;
    }
    .cs_fs_38 {
        font-size: 24px;
    }
    .cs_card.cs_style_1 .cs_card_list {
        font-size: 13px;
    }
    .cs_fs_50 {
        font-size: 30px;
    }
}

.input-guest {
    background: transparent;
    border: none;
    max-width: 100px;
    color: #fff;
    outline: none;
}

.modal-custom {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-custom.is-open {
    display: flex;
}
.modal-custom .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.modal-custom .modal-dialog {
    position: relative;
    z-index: 99999999;
    max-width: 600px;
    width: calc(100% - 32px);
    margin: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.modal-custom .modal-content {
    background: #fff;
    color: #222;
    padding: 16px;
}
.modal-custom .modal-header,
.modal-custom .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.modal-custom .modal-title {
    margin: 0;
    font-weight: 600;
}
.modal-custom .btn-close.manual {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
.modal-custom .invalid-feedback {
    color: #dc3545;
    display: none;
}
.modal-custom .is-invalid + .invalid-feedback {
    display: block;
}

.form-highlight-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* حاوية الفورم أثناء التركيز: ترفع عند الحاجة فوق المحتوى */
.form-focus-wrapper {
    position: relative;
    z-index: 9999; /* سوف يرفع مؤقتًا فوق التراكب */
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1),
        box-shadow 0.35s ease, opacity 0.35s ease;
    will-change: transform, box-shadow, opacity;
}

/* الحركة الأساسية: دخول بصيغة زوم + نبضة */
@keyframes highlight-zoom {
    0% {
        transform: scale(0.86) translateY(10px);
        opacity: 0;
        filter: blur(6px);
    }
    40% {
        transform: scale(1.03) translateY(-6px);
        opacity: 1;
        filter: blur(0);
    }
    70% {
        transform: scale(0.98) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

/* نبضة خفيفة متتالية */
@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
    50% {
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.25),
            0 0 0 12px rgba(255, 193, 7, 0.06);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* عند إضافة الكلاس active تتحكم بالانيميشن */
.form-focus-wrapper.active {
    animation: highlight-zoom 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) both;
    box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.6);
}

/* نبضة متقطعة لاحقًا */
.form-focus-wrapper.pulse {
    animation: highlight-pulse 1.6s ease-in-out 0.6s 1;
}

/* حالة لتخفيف الشفافية لو رغبت */
.form-focus-wrapper.fadein {
    opacity: 1;
}
.cs_dropdown_toggle_btn svg {
    height: 22px;
    width: 22px;
}

.cs_dropdown_list {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--web-wash);
    color: var(--primary);
    width: 100px;
    margin-top: 20px;
    padding: 10px 0;
    border-radius: 0 0 7px 7px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border-top: 2px solid var(--accent);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    font-size: 15px;
}
.cs_dropdown_list.active {
    opacity: 1;
    visibility: visible;
}
.cs_dropdown_list li:not(:last-child) {
    margin-bottom: 1px;
}
.cs_dropdown_list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
}
.cs_dropdown_list a:hover {
    background-color: var(--gray);
}
.cs_dropdown_list .active a {
    color: var(--accent);
    background-color: var(--gray);
}

.cs_main_header_left .cs_dropdown_list {
    right: initial;
    left: 0;
}
.cs_page_heading {
    position: relative;
}
.cs_page_heading .overvlow {
    background: rgba(27, 27, 27, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}
.cs_page_heading .overvlow + .container {
    position: relative;
}

@media screen and (min-width: 992px) {
    .cs_height_lg_141 {
        height: 141px;
    }
    .cs_height_lg_141 {
        height: 141px;
    }
    .cs_height_lg_150 {
        height: 150px;
    }
    .cs_height_lg_140 {
        height: 140px;
    }
}
.cs_quantity_dropdown_item .cs_mouse_point.cs_style_3 {
    left: 0 !important;
    max-width: 100% !important;
}
.cs_quantity_list li label.cs_quantity_label {
    color: #000;
    text-shadow: 1px 1px 1px #ffffff;
    position: relative;
    z-index: 999;
}
.lg-outer {
    direction: ltr;
}

/* slider */
/*
.main-slider-gh{
    width: min(1200px, 90vw);
    margin: auto;
}
.main-slider-gh .slider{
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}
.main-slider-gh .slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.main-slider-gh .slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.main-slider-gh .slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.main-slider-gh .slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.main-slider-gh .slider .item:hover{
    filter: grayscale(0);
}
.main-slider-gh .slider[reverse="true"] .item{
    animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
} */

/* new slider */

.ezy__clients8 {
    /* Bootstrap variables */
    --bs-body-color: #28303b;
    --bs-body-bg: rgb(255, 255, 255);

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-item-bg: #f4f7fd;

    background-color: var(--bs-body-bg);
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .ezy__clients8 {
        padding: 100px 0;
    }
}

/* Gray Block Style */
.gray .ezy__clients8,
.ezy__clients8.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);

    /* Easy Frontend variables */
    --ezy-item-bg: #fff;
}

/* Dark Gray Block Style */
.dark-gray .ezy__clients8,
.ezy__clients8.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);

    /* Easy Frontenrgb(16, 26, 39)bles */
    --ezy-item-bg: #263344;
}

/* Dark Block Style */
.dark .ezy__clients8,
.ezy__clients8.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);

    /* Easy Frontend variables */
    --ezy-item-bg: #162231;
}

.ezy__clients8-heading {
    font-weight: bold;
    font-size: 25px;
    line-height: 38px;
}

@media (min-width: 768px) {
    .ezy__clients8-heading {
        font-size: 35px;
        line-height: 35px;
    }
}

.ezy__clients8-sub-heading {
    font-size: 18px;
    line-height: 25px;
    color: var(--bs-body-color);
    opacity: 0.7;
}

.ezy__clients8-item {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 0;
    border: 2px solid var(--theme-color-1);
    position: relative;
    transform: rotate(-45deg);
    margin: auto;
}
.ezy__clients8-item > img {
    transform: rotate(45deg);
}
.ezy__clients8-item::after,
.ezy__clients8-item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 0;
    top: 0;
    background: var(--theme-color-1);
}
.ezy__clients8-item::after {
    right: -2px;
    top: 20px;
}
.ezy__clients8-item::before {
    top: -20px;
    left: -2px;
}

.ezy__clients8-item .loine-rond::after,
.ezy__clients8-item .loine-rond::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    top: -2px;
    background: var(--theme-color-1);
}
.ezy__clients8-item .loine-rond::after {
    right: 20px;
}
.ezy__clients8-item .loine-rond::before {
    left: 20px;
    bottom: -2px;
    top: auto;
}
.ezy__clients8-img {
    max-height: 100%;
}

/* حاوية الشعار */
.client-logos-swiper {
    padding: 18px 0;
    background: #ffffff;
}

/* كل سلايد يوسّط الشعار */
.client-logos-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.98;
}

/* تصميم الشعار نفسه */
.client-logos-swiper .swiper-slide img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
    opacity: 0.6;
}

/* تأثير عند المرور بالفأرة */
.client-logos-swiper .swiper-slide img:hover {
    transform: scale(1.05);
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* إزالة أي قفل مرئي عند اللمس/سحب لو عطينا السماح */
.swiper-wrapper {
    will-change: transform;
}

/* Mpas  */
.selection-mpas {
    position: relative;
}
.selection-mpas .overbpar {
    position: absolute;
    background-color: rgb(30 13 47 / 72%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.maps {
    max-width: 550px;
    margin: 0;
    margin-right: auto;
    position: relative;
}
.maps svg path:hover {
    fill: var(--theme-color-1);
    fill-opacity: 0.7;
    cursor: pointer;
}

.maps svg path.active {
    fill: var(--theme-color-1);
    fill-opacity: 0.9;
    cursor: pointer;
}
.maps svg path.disabled {
    fill: var(--theme-color-1);
    fill-opacity: 0.1;
    cursor: not-allowed;
    pointer-events: none;
}

.main-destination {
    position: relative;
    height: 100%;
}
.list-location .cs_custom_slide_item {
    height: 200px;
    border-radius: 5px 5px 0 0;
}

.list-location
    .cs_custom_slide_container
    .cs_custom_slide_wrapper
    .cs_custom_slide {
    height: 100%;
}
.list-location .cs_custom_slide_arrow_right {
    z-index: 99;
}

.list-location .cs_custom_slide_container .container {
    padding: 0;
    width: 100%;
}

.list-location .cs_custom_slide_container {
    height: auto;
    position: static;
    margin: 0;
    margin-top: 55px;
}
.list-location .cs_slide_desc {
    background: var(--theme-color-4);
    padding: 15px 10px;
    border-radius: 0 0 5px 5px;
    font-size: 16px;
    color: var(--theme-color-1);
}

.list-location .cs_custom_slide_arrows {
    color: #fff;
}

.modal-custom .modal-content {
    background: var(--theme-color-4);
    color: var(--theme-color-1);
    padding: 49px;
}
button#modal_submit_btn {
    background-color: var(--theme-color-1);
    color: var(--theme-color-5);
}
.form-control {
    padding: 0.55rem 0.75rem;
}

.gh-border {
    border: 1px solid #f5efe3 !important;
}
.gh-text-white {
    color: #f5efe3 !important;
}

.cs_fs_13 {
    font-size: 13px;
    line-height: 1.6em;
}

.cs_fs_14 {
    font-size: 14px;
    line-height: 1.6em;
}

.cs_fs_15 {
    font-size: 15px;
    line-height: 1.667;
}
@media (max-width: 1400px) {
    .cs_fs_15 {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .cs_fs_15 {
        font-size: 14px;
    }
}

.cs_fs_16 {
    font-size: 16px;
    line-height: 1.875em;
}

.cs_fs_21 {
    font-size: 21px;
    line-height: 1.286em;
}

.cs_fs_28 {
    font-size: 28px;
    line-height: 1.25em;
}
@media (max-width: 1400px) {
    .cs_fs_28 {
        font-size: 25px;
    }
}
@media (max-width: 991px) {
    .cs_fs_28 {
        font-size: 20px;
        line-height: 1.5em;
    }
}

.cs_fs_38 {
    font-size: 28px;
    line-height: 1.316em;
    font-weight: 500;
}
@media (max-width: 1400px) {
    .cs_fs_38 {
        font-size: 23px;
    }
}
@media (max-width: 991px) {
    .cs_fs_38 {
        font-size: 20px;
        line-height: 1.5em;
    }
}

.cs_fs_25 {
    font-size: 25px;
    line-height: 1.25em;
}
@media (max-width: 1400px) {
    .cs_fs_25 {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .cs_fs_25 {
        font-size: 20px;
        line-height: 1.5em;
    }
}

.cs_fs_50,
.cs-font_50 {
    font-size: 50px;
    line-height: 1.3em;
}
@media (max-width: 1400px) {
    .cs_fs_50,
    .cs-font_50 {
        font-size: 46px;
    }
}
@media (max-width: 991px) {
    .cs_fs_50,
    .cs-font_50 {
        font-size: 24px;
    }
}

.cs_fs_67 {
    font-size: 50px;
    line-height: 1.4em;
}
@media (max-width: 1400px) {
    .cs_fs_67 {
        font-size: 23px;
    }
}
@media (max-width: 991px) {
    .cs_fs_67 {
        font-size: 20px;
    }
}

.cs_fs_89 {
    font-size: 76px;
    line-height: 1.124em;
}
@media (max-width: 1400px) {
    .cs_fs_89 {
        font-size: 70px;
    }
}
@media (max-width: 991px) {
    .cs_fs_89 {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .cs_fs_89 {
        font-size: 30x;
    }
}

.cs_fs_150 {
    font-size: 150px;
    line-height: 1em;
}
@media (max-width: 991px) {
    .cs_fs_150 {
        font-size: 120px;
    }
}
@media (max-width: 991px) {
    .cs_fs_150 {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .cs_fs_150 {
        font-size: 80px;
    }
}

@media screen and (min-width: 992px) {
    .cs_height_lg_80 {
        height: 80px;
    }
}
.cs_list.cs_style_2 .cs_list_icon{
        background-color: var(--theme-color-4);
}

.cs_image_layer.cs_style_3::before, .cs_image_layer.cs_style_4::before{
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    border: 20px solid transparent !important;
    -o-border-image: url(line-sheep.svg) 30 round !important;
    border-image: url(line-sheep.svg) 30 round  !important;
    border-width: 62px  !important;
    border-image-slice: 63  !important;
    border-image-repeat: stretch  !important;
    border-image-outset: 0  !important;
    border-style: solid  !important;
}
.cs_iconbox.cs_style_4 .cs_iconbox_icon img {
    flex: none;
    height: 100px !important;
    width: 100px !important;
}

@media (max-width: 768px) {
    .cs_site_header.cs_style_1 {
        padding-top: 0;
    }
    .cs_transparent_header .cs_nav_list {
        background-color: var(--theme-color-2) !important;
    }
    .cs_nav .menu-item-has-children ul li a {
        color: var(--theme-color-1);
    }
    .cs_hero.cs_style_1 {
        min-height: 431px  !important;
        height: calc(100vh - 210px) !important;
    }
    .modal-custom .modal-content {
        padding: 15px;
    }
    .form-control {
        padding: 0.35rem 0.75rem;
    }

    .gh-row-maps {
        flex-direction: column-reverse;
    }
    .maps {
        padding: 0 !important;
        max-height: 300px;
    }
    .list-location .cs_custom_slide_container {
        height: 300px;
    }
    .list-location .cs_custom_slide_arrows {
        width: 100%;
        justify-content: space-around;
        flex-direction: row-reverse;
    }
    .ezy__clients8-item > img {
    padding: 20px;
}
.ezy__clients8-item{
        width: 100px;
    height: 100px;
}
.client-logos-swiper .swiper-slide img {
    max-width: 160px;
    max-height: 50px;
}
.cs_about_feature_list_1{
            flex-wrap: inherit !important;
}
.cs_iconbox.cs_style_1 {
    text-align: center;
}
}
output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    cursor: pointer;
    display: list-item
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none!important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-1 {
        font-size:5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-2 {
        font-size:4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-3 {
        font-size:4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-4 {
        font-size:3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-5 {
        font-size:3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-6 {
        font-size:2.5rem
    }
}

.list-inline,.list-unstyled {
    list-style: none;
    padding-left: 0
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    color: #6c757d;
    font-size: .875em;
    margin-bottom: 1rem;
    margin-top: -1rem
}

.blockquote-footer:before {
    content: "â€”Â "
}

.img-fluid,.img-thumbnail {
    height: auto;
    max-width: 100%
}

.img-thumbnail {
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: .25rem
}

.figure {
    display: inline-block
}

.figure-img {
    line-height: 1;
    margin-bottom: .5rem
}

.figure-caption {
    color: var(--bs-secondary-color);
    font-size: .875em
}

.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }

    .cs_blog_details h1 {
    font-size: 26px;
}
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1140px
    }
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1320px
    }
}

.content-p h1 {
    font-size: 40px;
}
.cs_blog_details .cs_custom_slide_item {
    height: auto;
}
.cs_blog_details .cs_custom_slide_item img {
    margin: 0;
}


@media (max-width: 576px) {


    .cs_blog_details h1 {
    font-size: 26px;
}
.cs_blog_details ul {
    font-size: 12px;
}
.cs_blog_details img {
    margin-bottom: 20px;
}

.meta.mb-4 {
    margin-bottom: 10px !important;
}
}
