@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

:root{
    --primary_color: #c6b7a2;
    --secondary_color: #e6d1ce;
    --deeb_sec: #d3b7b6;
    --white_off: #f7f6f2;
    --white_color: #ffffff;
    --dark_color: #252525;
    --deeb_dark: #181818;
    --border_color: #eeeeee;
    --raduis: 0;
    /* --primary_font:  "Noto Kufi Arabic", sans-serif; */
    --primary_font: "Tajawal", sans-serif;
    --number_font: "Teko", sans-serif;
    --transition: 0.3s ease;
}

*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: var(--primary_font);
    transition: var(--transition);
}
ul , ol{
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
.link_abs{
    position: absolute;
    inset: 0;
    z-index: 9;
}
.lin_abs{
    position: absolute;
    inset: 0;
    z-index: 9;
}
.navbar-brand{
    margin: 0;
}
section,footer{
    position: relative;
    /* border-radius: var(--raduis); */
}
.container{
    max-width: 1350px !important;
}
.header_section{
    max-width: 900px;
    margin: auto;
}
.devider_hr{
    background: #ffffff1a;
    margin: 40px 0;
    height: 1px;
    width: 100%;
}

.btn_primary , 
.secondary_btn{
    padding: 20px 35px;
    border-radius: var(--raduis);
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    color: var(--dark_color);
    position: relative;
    background: var(--primary_color);
    transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    z-index: 1;
}
.btn_primary:hover{
    background: var(--white_color);
    color: var(--white_off);
}
.secondary_btn{
    color: var(--white_color);
    background: var(--deeb_sec);
}
.secondary_btn:hover{
    color: var(--white_color);
    background: var(--deeb_sec);
}

.btn_primary:before, .btn_primary:after ,
.secondary_btn:before, .secondary_btn:after {
    content: "";
    background: var(--deeb_dark);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    z-index: -1;
}
.btn_primary:before,
.secondary_btn:before {
    top: 0;
    left: 0;
    right: auto;
}
.btn_primary:hover:before,
.secondary_btn:hover:before {
    width: 100%;
    right: 0;
    left: auto;
}
.btn_primary:after,
.secondary_btn:after {
    bottom: 0;
    right: 0;
    left: auto;
}

.btn_primary:hover:after,
.secondary_btn:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn_primary svg ,
.secondary_btn svg {
    transform: scaleX(-1) ;
}
.btn_primary svg path 
{
    fill: var(--white_color);

}

.btn_primary:hover svg ,
.secondary_btn:hover svg{
    transform: scaleX(-1) rotate(45deg);
}
.btn_primary:hover svg path,
.secondary_btn:hover svg path{
    fill: var(--white_color);
}









main{
    /* padding: 15px; */
    /* background: var(--white_off); */
}
.header_nav{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    background: transparent;
    
}
.header_nav.sticked{
    top: 0;
    padding: 0;
    backdrop-filter: blur(100px);
    /* background: var(--deeb_dark); */
    /* background: var(--white_color); */
}

.header_nav.sticked {
    padding: 10px 5px 0;
}
#navbar .container{
    padding: 0;
    position: relative;
}
#navbar .container::before{
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #eeeeee65;
}
.header_nav.sticked .container::before{
    display: none;
}
.logo_site{
    max-width: 70px;
}

#nav_item{
    color: var(--white_off);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}
#nav_item:hover , #nav_item i{
    opacity: 1;
    color: var(--white_color);
}
#nav_item i{
    font-size: 10px;
}

.active_lang{
    color: var(--deeb_sec) !important;
}

.dropdown-menu{
    border: 1px solid var(--border_color);
    border-radius: calc(var(--raduis) * 0);
    background: var(--white_color);
    backdrop-filter: blur(20px);
    text-align: right;
    padding: 0;
    overflow: hidden;
    left: auto !important;
    right: 0 !important;
}
.dropdown-item{
    font-size: 13px;
    font-weight: 500;
    color: var(--deeb_dark);
    padding: 15px 10px;
    border-bottom: 1px solid var(--secondary_color);
}
.dropdown-item:hover{
    background: var(--primary_color);
    color: var(--white_color);
    padding-right: 18px
}

/* يخلي submenu يظهر جنب الأساسي */
.dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100% !important;
    left: 0 !important;
    margin-top: -1px;
}

/* يظهر بالـ hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.slash_nav{
    color: var(--white_color);
}



.hero_banner{
    min-height: 100vh;
    overflow: hidden;
    padding: 150px 0 70px;
}
.heroVid_frame{
    position: absolute;
    inset: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.heroVid_frame::before{
    border: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    mix-blend-mode: initial;
    position: absolute;
    top: 0;
    transition: 0.3s;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(125deg, #FFFFFF00 30%, #181818de 100%);
}
.heroVid_frame::after{
    border: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    mix-blend-mode: initial;
    position: absolute;
    top: 0;
    transition: 0.3s;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(0deg, #FFFFFF00 50%, #181818de 100%);
}
.vid_banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_content{
    position: relative;
    z-index: 2;
}
.badge_hero ,
.badge_section{
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--white_off);
    position: relative;
    display: inline-block;
    background: #ffffff1a;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0px;
    max-width: max-content;
    margin: 15px 0;
}
.badge_section{
    color: var(--primary_color);
    background: transparent;
    border: 1px solid var(--primary_color);
    margin: 30px 0;
}
.badge_secwhite{
    color: var(--dark_color);
    background: var(--primary_color);
}
.badge_hero span ,
.badge_section span{
    position: relative;
    display: inline-block;
    padding-left: 16px;
}

.badge_hero span::before ,
.badge_section span::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    background-color: var(--primary_color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.badge_secwhite span::before{
    background: var(--dark_color);
}
.hero_title{
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--white_color);
}
.hero_title span{
    display: block;
    color: var(--primary_color);
}
.hero_title code{
    color: var(--primary_color);
}

.hero_desc{
    color: var(--white_off);
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0 20px;
}
.hero_desc span{
    display: block;
    color: var(--primary_color);
}
.hero_desc code{
    font-family: var(--number_font);
    color: var(--primary_color);
    font-size: 18px;
}
.hero_cardnum{
    max-width: 100%;
    width: calc(33.33% - 20px);
    position: relative;
}
.hero_cardnum:not(.hero_cardnum:last-child)::before{
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    transform: rotate(-10deg);
    background-color: #ffffff1a;
    height: 100%;
    width: 1px;
}
.heronumcard_des{
    justify-content: start;
    color: var(--white_off);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
}
.heronumcard_title{
    color: var(--white_color);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2em;
    font-family: var(--number_font);
}

.text_sta{
    justify-content: start;
    color: var(--white_off);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
}
.stars_cont{
    justify-content: start;
    color: var(--white_off);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
}
.stars_sta i{
    color: var(--primary_color);
}
.btn_heroVideo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white_color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    border: 1px solid var(--white_off);
    border-radius: 50%;
    margin: 0px auto;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(15px);
}
.btn_heroVideo:hover{
    background: #ffffff57;
    /* color: var(--deeb_sec); */
    border-color: var(--white_color);
}



.aboutUs_section{
    padding: 100px 0 200px;
    background: url(../img/about-bg.png) center center/cover no-repeat;
    z-index: 1;
}
.aboutUs_section::before{
    content: "";
    background: #000000;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .46;
    z-index: -1;
}

.section_title{
    font-size: 30px;
    color: var(--white_off);
}

.desc_content{
    color: var(--dark_color);
    font-size: 15px;
    font-weight: 500;
}

.about_us_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.card_aboutimage{
    border-radius: var(--raduis);
    overflow: hidden;
}
.cardIMage_con{
    border-radius: var(--raduis);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}
.cardIMage_con img{
    width: 100%;
}
.about-text {
    position: absolute;
    bottom: 17px;
    left: 50%;
    max-width: 100%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}
.about-text span {
    /* font-family: var(--tl-ff-heading); */
    font-size: 170px;
    font-weight: 900;
    color: var(--white_color);
    opacity: .3;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
}

.card_about_con{
    padding: 20px 10px;
    border-radius: var(--raduis);
    overflow: hidden;
    background: var(--white_color);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
.card_title{
    font-size: 17px;
    font-weight: 600;
    color: var(--deeb_dark);
}

.first_iamgeab{
    aspect-ratio: 1 / 0.733;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto -20px;
    max-width: 100%;
}


.about_numbers .heronumcard_title{
    color: var(--deeb_dark);
}
.about_numbers .heronumcard_des{
    color: var(--dark_color);
}



.secrvises_section{
    padding: 60px 0;
    background-color: var(--deeb_dark); 
}

.secrvises_section::before{
    position: absolute;
    /* content: ""; */
    background-image: url(../img/about_bg.svg) ;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.servises_wrapper{
    padding: 20px;
    background: var(--dark_color);
    border-radius: var(--raduis);
}
.servises_card{
    text-align: left;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    background:transparent;
    margin-bottom: 0;
    text-align: right;
    align-content: end;
    
}
.also_servises .servises_card{
    background: var(--deeb_dark);
}
/* .servises_card::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background: var(--white_off);
    z-index: 2;
    opacity: 0;
} */
/* Shine effect */
.img-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.img-card:hover::before {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
/* .servises_card:hover::before{
    opacity: 0;
} */
.servises_card .img-card{
    width: 100%;
    height: 350px;
    opacity: 1;
    border-radius: var(--raduis);
    transition: 0.5s;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.servises_card .img-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.also_servises .img-card{
    height: 150px;
}
.servises_card:hover .img-card img {
    transform: scale(1.1);
}
.servises_card .card_title{
    color: var(--white_color);
    font-weight: 500;
}
.servises_card:hover .card_title{
    color: var(--primary_color);
}
.number-card{
    padding: 0;
    background: transparent;
    z-index: 10;
    transition: 0.5s;
    font-family: var(--number_font);
    font-size: 60px;
    font-weight: 400;
    color: var(--primary_color);
    line-height: 1.4em;
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 10px;
    opacity: 0.4;
}


.servises_card p{
    color: var(--white_color);
    font-size: 15px;
    font-weight: 400;
    line-height: 2em;
    z-index: 10;
    margin: 0;
    text-align: right;
    transition: 0.5s;
}

.cardser_con{
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 15px 0;
}

.feature-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: var(--primary_color);
    color: var(--white_off);
    z-index: 10;
}
.feature-btn svg{
    transform: scaleX(-1);
}

.feature-btn:hover svg{
    transform: scaleX(-1) rotate(45deg);
}


.page_titleHero{
    background-image: url(../img/page-header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 280px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.page_titleHero::before{
    border: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    mix-blend-mode: initial;
    position: absolute;
    top: 0;
    transition: 0.3s;
    z-index: -1;
    background-color: transparent;
    background-image: linear-gradient(-90deg, #FFFFFF00 20%, #040618a4 100%);
}
.page_title{
    font-size: 60px;
    color: var(--white_color);
    font-weight: 700;
}
.list_pagetitle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.list_pagetitle li ,
.list_pagetitle li a {
    color: var(--white_color);
}

.list_pagetitle li a:hover{
    color: var(--deeb_sec);
}
.list_pagetitle li{
    position: relative;
}
.list_pagetitle li:last-child::before{
    content: "/";
    position: relative;
    color: var(--white_color);
    font-size: 20px;
    right: -8px;
}

.card_map{
    padding: 15px;
    border-radius: var(--raduis);
    background: var(--deeb_dark);
}
.card_map iframe{
    border-radius: var(--raduis);
    width: 100%;
    min-height: 450px;
    margin: 0;
}


.wedgit_servises{
    background: var(--dark_color);
    border-radius: var(--raduis);
    overflow: hidden;
    padding: 15px;
}
.wedget_title{
    padding: 15px 20px;
    /* background: var(--deeb_sec); */
}
.wedget_title h3{
    color: var(--primary_color);
    font-size: 20px;
    margin: 0;
}
.servises_cardsWed{
    padding: 20px;
}
.servises_cardWedget_item{
    position: relative;
}
.servises_cardWedget_item:not(:first-child){
    margin-top: 15px;
}
.servises_cardWedget_item:not(:last-child){
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border_color);
}
.servises_cardWedget_item h4{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: var(--deeb_dark);
}
.servises_cardWedget_item:hover h4{
    color: var(--deeb_sec);
}
.servises_cardWedget_item svg{
    transform: scaleX(-1);
}
.servises_cardWedget_item:hover svg{
    transform: scaleX(-1) rotate(45deg);
    fill: var(--deeb_sec);
}

.widget_col{
    position: sticky;
    top: 100px;
}



.listed_aboutFeat{
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    list-style: none;
    margin-bottom: 30px;
}
.listed_aboutFeat li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--white_color);
}





.timer_style_section{
    padding: 60px 50px;
    background: var(--dark_color);
}
.header_section_timer{
    text-align: center;
}

.header_title_section_timer{
    color: var(--white_off);
    font-size: 30px;
}
.header_title_section_timer span{
    color: var(--primary_color);
}
.header_sectionTimer_desc{
    color: var(--white_color);
    font-size: 20px;
    margin: 10px 0 30px;
}


.timer_container_video{
    max-width: 100%;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}
.timer_container_video video{
    max-width: 100%;
    border-radius: 40px;
    min-height: 400px;
    height: 100%;
    object-fit: cover;
}
.timer_container_video.video_shadow::before{
    border: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    mix-blend-mode: initial;
    position: absolute;
    top: 0;
    transition: 0.3s;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF00 40%, #1f1f1f 100%);
}

.timer_section_container{
    position: relative;
}
.timer_container_content{
    padding: 40px;
    border-radius: 30px;
    background: color-mix(in oklab,#181818 10%,transparent);
    backdrop-filter: blur(20px);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.timer_content_abs.hero_content{
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.listed_timer_container_icons{
    margin: 0;
}
.timer_container_timer{
    font-size: 60px;
    color: var(--primary_color);
    font-weight: 900;
}
.timer_container_timer span{
    font-family: var(--number_font);

}
.timer_container_text{
    color: var(--white_color);
    font-size: 20px;
}
.timer_container_icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timer_container_icon img{
    transition: 0.4s;
    width: 100%;
    height: 100%;
}
.timer_container_icon:hover img{
    opacity: 0.7;
}




/* Start Story Section */
.story_section {
    background: var(--dark_color);
}
.timeline_swiper > .row > .col-md-2 {
    align-self: flex-start;
    max-height: 600px;
}

.timeline_swiper .timeline {
    box-sizing: border-box;
    height: 600px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--deeb_dark);
    border-radius: 20px;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 30px;
}

.timeline_swiper .timeline::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.timeline_swiper .timeline-track {
    position: relative;
    /* مركز الخط = بداية المحتوى (padding-left) − إزاحة النقطة + نصف قطرها */
    --tl-pad-left: 40px;
    --tl-dot-outdent: 20px;
    --tl-dot-size: 12px;
    --tl-line-center-x: calc(
        var(--tl-pad-left) - var(--tl-dot-outdent) + var(--tl-dot-size) / 2
    );
    padding: 20px 20px 24px var(--tl-pad-left);
}

.timeline_swiper .timeline-item {
    position: relative;
    cursor: pointer;
    color: #aaa;
    margin: 50px 0;
    transition: 0.3s;
    font-size: 24px;
}
.timeline_swiper .timeline-progress + .timeline-item {
    margin-top: 0;
}
.timeline_swiper .timeline-item.active {
    color:var(--primary_color);
    font-weight: bold;
}
/* dot */
.timeline_swiper .timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--tl-dot-outdent, 20px));
    top: 5px;
    width: var(--tl-dot-size, 12px);
    height: var(--tl-dot-size, 12px);
    background: #666;
    border-radius: 50%;
}

.timeline_swiper .timeline-item.active::before {
    background:var(--primary_color);
}
.timeline_swiper .timeline-line {
    position: absolute;
    left: var(--tl-line-center-x);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #444;
    transform: translateX(-50%);
}

/* yellow progress */
.timeline_swiper .timeline-progress {
    position: absolute;
    left: var(--tl-line-center-x);
    top: 0;
    width: 2px;
    height: 0;
    background:var(--primary_color);
    transition: height 0.6s ease-in-out;
    transform: translateX(-50%);
}

/* swiper */
.mySwiper_story .image{
    max-height: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

/* Story Section — responsive */
@media (max-width: 1199.98px) {
    .timeline_swiper .timeline-item {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 40px 0;
    }

    .timeline_swiper .timeline-track {
        --tl-pad-left: 36px;
        padding: 18px 18px 20px var(--tl-pad-left);
    }
}

@media (max-width: 991.98px) {
    .timeline_swiper > .row > .col-md-2 {
        max-height: 520px;
    }

    .timeline_swiper .timeline {
        height: 520px;
        max-height: 520px;
    }

    .mySwiper_story .image {
        max-height: 520px;
    }

    .story_section .section_heading_2 {
        margin-bottom: clamp(24px, 5vw, 40px) !important;
    }
}

@media (max-width: 767.98px) {
    .story_section .row.timeline_swiper {
        flex-direction: column;
        align-items: stretch;
        row-gap: clamp(20px, 5vw, 28px);
    }

    .story_section .row.timeline_swiper > .col-md-2,
    .story_section .row.timeline_swiper > .col-md-10 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    /* الصورة فوق، التايملاين تحت */
    .story_section .row.timeline_swiper > .col-md-10 {
        order: -1;
    }

    .story_section .row.timeline_swiper > .col-md-2 {
        order: 1;
        max-height: none;
        align-self: stretch;
    }

    .timeline_swiper .timeline {
        height: min(300px, 48vh);
        max-height: min(300px, 48vh);
        margin-bottom: 0;
        border-radius: 16px;
    }

    .timeline_swiper .timeline-track {
        --tl-pad-left: 32px;
        --tl-dot-outdent: 18px;
        --tl-dot-size: 10px;
        padding: 16px 16px 20px var(--tl-pad-left);
    }

    .timeline_swiper .timeline-item {
        margin: 28px 0;
        font-size: clamp(16px, 4.2vw, 20px);
    }

    .timeline_swiper .timeline-item::before {
        top: 6px;
    }

    .mySwiper_story .image {
        max-height: min(420px, 58vh);
        border-radius: 16px;
    }

    .mySwiper_story .image img {
        width: 100%;
        max-height: inherit;
        object-fit: cover;
    }
}

@media (max-width: 575.98px) {
    .timeline_swiper .timeline {
        height: min(260px, 44vh);
        max-height: min(260px, 44vh);
        border-radius: 14px;
    }

    .timeline_swiper > .row > .col-md-2 {
        max-height: none;
    }

    .timeline_swiper .timeline-item {
        margin: 22px 0;
    }

    .timeline_swiper .timeline-track {
        --tl-pad-left: 28px;
        padding: 14px 14px 18px var(--tl-pad-left);
    }

    .mySwiper_story .image {
        max-height: min(320px, 52vh);
        border-radius: 14px;
    }
}

/* End Story Section */