
/********************************************************
1. body start
 *******************************************************/
 :root {
    --primary-color: #1579C5;
    --secondary-color: #0A233A; 
    --text-color: #6E8DA0;
    --white-color: #ffffff;
    --title-color: #002B46;    
    --input-bg-color: #EEF3F8;        
    --light-bg-color: #F5FAFF;        
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    font-family: 'Ubuntu';
    overflow-x:hidden;
}
html {
  scroll-behavior: smooth;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color:#dddddd;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;    
    background-color: var(--secondary-color);
}
/* Scroll */

*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
}
img, video {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
    border: none;
}
input, select{
    height: 30% !important;
    background-color: var(--input-bg-color);
    border-radius: 10px;
    border: none !important;
    color: var(--text-color) !important;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
textarea{
    width: 100%;
    min-height: 200px;
    resize: none;
    background-color: var(--input-bg-color);
    border-radius: 10px;
    border: none !important;
    color: var(--text-color) !important;
    padding: 15px 20px;
}
/* Select 2 Custom CSS*/
.select2-container--default .select2-selection--single {
    background-color: #EEF3F8  !important;
    border: none !important;
    border-radius: 10px !important;
    height: 60px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-color) !important;
    line-height: 60px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 20px !important;
    padding-right: 30px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    background-image: url(https://kamleshyadav.com/html/educo/educo/assets/images/all-instructor/arrow-down.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 6px;
    top: 27px;
    right: 15px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--secondary-color); 
}
/* Select 2 Custom CSS*/
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;  
}
/* Buttton CSS Start */
.btn {
    min-width: 150px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0 20px;
    transition: 0.3s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;
}
.btn::after {
    background-color:var(--secondary-color);
    border-radius: 50px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.3s transform ease-out;
    will-change: transform;
    z-index: -1;
}
.btn:hover {
    transform: scale(1.05);
    will-change: transform;   
    color: var(--white-color); 
}
.btn:hover::after {
    transform: translate(0, 0);    
}
/* Buttton CSS End*/

/* Paragraph */
.para{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}
/* Paragraph */

/* Container */
.top-header-bar .container, .header-wrapper .container, .banner-wrapper .container, .counter-wrapper .container{
    max-width: 1620px;
}
/* Container */

/* Top Heading */
.top-heading{
    display: inline-block;
    background: linear-gradient(90deg, #E1F2FF 0%, rgba(225, 242, 255, 0) 98.44%);
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 13px;
    border-radius: 50px;
    padding: 8px 10px 8px 20px;
    margin-bottom: 13px;
}
.top-heading-center {
    display: inline-block;
    background: linear-gradient(90deg, #E1F2FF 0.24%, rgba(225, 242, 255, 0) 49.73%, #E1F2FF 98.21%);
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 13px;
    border-radius: 50px;
    padding: 8px 10px 8px 20px;
    margin-bottom: 13px;
}
/* Top Heading */

/* Main Heading */
.main-heading{
    font-size: 30px;
    font-weight: 500;
    color: var(--title-color);    
    line-height: 1.5;
    text-transform: capitalize;        
    padding-bottom: 20px;
}
/* Main Heading */

/* Top Header Bar CSS Start*/
.top-header-bar{
    background-color: var(--secondary-color);
    padding: 15px 0;
}
.top-bar-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.top-header-left > p, .top-header-right > p{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}
.top-header-right{
    display: flex;
    align-items: center;
    gap: 40px;
}
.top-header-right > p > img{
    display: inline-block;
    margin-right: 10px;
}
.top-header-right > p > span{
    color: #31FFF3;
    font-weight: 500;
}
.social-icons ul{
    display: flex;
    gap: 15px;
}
.social-icons ul li a{
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background-color: #1F3A52;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.social-icons ul li a svg{
    fill: var(--white-color);
}
.social-icons ul li a:hover {
    box-shadow: 0 0 0 15px var(--secondary-color) inset;
    transform: translateY(-5px);
}
/* Top Header Bar CSS End*/

/* Header CSS Start*/
.header-wrapper {    
    background: #FFFFFF26;
    box-shadow: 0px 4px 51px 0px #5782A91A;  
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    z-index: 9;
    /* On retire margin: auto ici car le wrapper fait 100% de large */
}
.header-parent{
    display: flex;
    justify-content: space-between; /* Espace égal entre les blocs */
    align-items: center;
    padding: 0 20px; /* Petit espace sur les bords extérieurs */
    /* Centrage du contenu */
    max-width: 1200px; 
    margin: 0 auto;    
    width: 100%;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-login{
    display: flex;
    align-items: center;
    gap: 50px;
}
.nav-menu > ul{
    display: flex;
    align-items: center;
    gap: 50px;
}
.nav-menu ul li{
    position: relative;
}
.nav-menu ul li a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s;
}
.nav-menu > ul > li > a {
    padding: 30px 0;
}
.nav-menu > ul > li > a svg{
    width: 10px;
    height: auto;
    fill: var(--title-color);
    transition: all 0.3s;
}
.nav-menu ul li a:hover svg, .nav-menu ul li:hover a svg{
    fill: var(--secondary-color);
    transform: rotate(180deg);
}
.nav-menu ul li.active a svg{
    fill: var(--secondary-color);
}
.nav-menu ul li a:hover, .nav-menu > ul > li.active > a {
    color: var(--primary-color);
}
.nav-menu ul li:hover a{
    color: var(--primary-color);
}
.header-search{
    max-width: 230px;    
    width: 100%;
    position: relative;
}
.header-search input {
    width: 100%;
    height: 60px;
    border-radius: 50px;
    padding: 0 40px 0 20px;
    background-color: var(--white-color);
    color: var(--text-color);
}
.header-search input::placeholder{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}
.header-search img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

/* Sub Menu */
.sub-menu {
    width: 200px;
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    top: 100%;
    left: 0px;
    transform: translateX(-30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9;
}
.sub-menu li{
    margin-bottom: 10px;
}
.sub-menu li a{
    color: var(--title-color) !important; 
}
.sub-menu li a:hover{
    color: var(--primary-color) !important; 
}
.sub-menu li:last-child{
    margin-bottom: 0;
}
.nav-menu > ul > li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}
/* Sub Menu */
/* Search Box */
.searchBox {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    left: 0%;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
  .searchBox.show {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  .searchBox.show,
  .searchBox {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .searchBoxContainer {
    width: 50%;
    position: relative;
    text-align: end;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    visibility: hidden;
  }
  .searchBox.show .searchBoxContainer {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
  }
  .searchBox.show .searchBoxContainer,
  .searchBoxContainer {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
  }
  .search-bar-inner {
    position: relative;
    height: 60px;
  }
  .search-bar-inner input {
    width: 100%;
    height: 60px;
    padding: 0px 50px 0 20px;
    border-radius: 10px;
}
  .closeBtn svg {
    width: 20px;
    fill: var(--white-color) !important;
  }
  .search-bar-inner button {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: none;
    background: transparent;
    width: 45px;
    font-size: 20px;
    border-radius: 26px;
  }
  .closeBtn {
    margin: 0 0 20px 0;
    display: inline-block;
    padding: 0 15px;
  }
  .closeBtn svg {
    width: 20px;
    fill: var(--white-color);
  }
  span.searchBtn {
    cursor: pointer;
  }
/* Search Box */
/* Header CSS End*/

/* Banner CSS Start*/
.banner-wrapper {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0 100px 0;
}
.banner-left{
    max-width: 888px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.banner-left h1{
    font-size: 54px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: capitalize;
}
.banner-left h1 span{
    color: var(--secondary-color);
}
.banner-left p {
    max-width: 520px;
    line-height: 1.8;
    padding-top: 20px;
}
.banner-btns{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}
.banner-play-icon{
    display: flex;
    align-items: center;
    gap: 10px;
}
.banner-play-icon span{
    width: 60px;
    height: 60px;
    background-color: var(--title-color);
    border-radius: 50%;
    box-shadow: 15px 20px 60px 0px rgba(21, 121, 197, 0.02);
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: shadow-pulse 2s infinite;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(21 121 197 / 70%)        
    }
    100% {
        box-shadow: 0 0 0 20px rgb(255 255 0 / 0%);        
    }
}
.banner-play-icon span svg{
    fill: var(--white-color);
}
.banner-play-icon a {
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    text-transform: capitalize;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.banner-box {
    max-width: 888px;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 13px 14px 40px 0px #27628326;
    border-radius: 20px;
    padding: 30px;
    margin-top: 80px;
    position: relative;
}
.banner-form-flex{
    display: flex;
    flex-wrap: wrap;    
}
.banner-form-info {
    position: relative;
    z-index: 1;
    max-width: 222px;
    width: 100%;
    margin-right: 40px;
}
.banner-form-info::before{
    content: '';
    width: 1px;
    height: 108px;
    background-color: #E1E8EE;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    z-index: -1;
}
.banner-form-info:first-child:before{
    display: none;
}
.banner-form-info:nth-child(3){
    margin-right: 30px;
}
.banner-form-info label{
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    text-transform: capitalize;
    padding-bottom: 10px;
}
.banner-form-btn {
    margin-top: 38px;
}
.banner-form-btn a {
    min-width: unset;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.banner-form-btn a img {
    max-width: 17px;
    height: auto;
}
.banner-box > img {
    position: absolute;
    top: -100px;
    left: -60px;
    animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
.video-box {
    max-width: 245px;
    width: 100%;
    min-height: 80px;
    padding: 15px;
    background-color: #FFFFFF;
    box-shadow: 13px 14px 40px 0px #27628326;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: -10px;
    right: 0;
}
.arrow1 {
    position: absolute;
    top: -70px;
    right: 220px;
    animation: wobble-vertically 5s linear infinite;
}
@keyframes wobble-vertically {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.video-content h4{
    font-size: 28px;
    font-weight: 700;
    color:var(--title-color);
    text-transform: capitalize;
} 
.video-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;
    padding-top: 0;
} 
.banner-right {
    position: relative;
    max-width: 700px;
    width: 100%;
}
.banner-img {
    position: relative;
    z-index: 1;
    margin-left: -100px;
}
.banner-img:before{
    content: '';
    width: 826px;
    height: 826px;
    background: linear-gradient(180deg, rgba(4, 142, 248, 0.2) -8.05%, rgba(217, 217, 217, 0) 82.2%);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.banner-flex {
    display: flex;
    align-items: center;
}
.banner-reslt-box {
    max-width: 275px;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 13px 14px 40px 0px #27628326;
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 100px;
    right: -130px;
    z-index: 9;
}
.star-smile{
    position: absolute;
    top: -20px;
    right: -20px;
}
.banner-reslt-box > h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: capitalize;
    padding-bottom: 25px;
}   
.reslt-flex{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.reslt-flex:last-child{
    margin-bottom: 0;
}
.reslt-flex > img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
}
.reslt-info {
    min-width: 130px;
}
.reslt-info h4{
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.reslt-info p{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;
}
.reslt-grade span{
    width: 30px;
    height: 30px;
    background-color: #D7ECFD;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}
/* Banner CSS End*/

/* Counter CSS Start*/
.counter-wrapper {
    margin-top: -100px;
    position: relative;
}
.counter-parent{
    background: var(--secondary-color);
    box-shadow: 22px 25px 40px 0px #FFFFFF26 inset;
    border-radius: 10px;
    min-height: 200px;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
    position: relative;
}
.counter-parent > img {
    position: absolute;
    top: -90px;
    right: -70px;
    z-index: 1;
}
.count {
    text-align: center;
    position: relative;
    min-width: 150px;
}
.count::before{
    content: '';
    width: 1px;
    height: 108px;
    background: #355E84;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -120px;
}
.count:last-child:before{
    display: none;
}
.count .counting{
    font-size: 40px;
    font-weight: 500;
    color: var(--white-color);
}
.count-heading h5{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
    padding-top: 10px;
}
/* Counter CSS End*/

/* About CSS Start*/
.about-wrapper {
    background-color: var(--white-color);
    padding: 100px 0 150px 0;
}
.about-img {
    position: relative;
    z-index: 1;
    text-align: center;
}
.about-img:before {
    content: '';
    width: 692px;
    height: 692px;
    background: linear-gradient(180deg, rgba(4, 142, 248, 0.2) -8.05%, rgba(217, 217, 217, 0) 82.2%);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: -180px;
    z-index: -1;
}
.about-img .banner-reslt-box {    
    top: auto;
    right: auto;
    left: 100px;
    bottom: -70px;
    text-align: left;
}
.abt-review{
    position: absolute;
    top: 0;
    left: -50px;
}
.smile-star {
    position: absolute;
    top: -15px;
    left: 165px;
}
.abt-videoIcon {
    position: absolute;
    top: 37%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.about-content > p {
    padding-bottom: 20px;
} 
.about-content > ul {
    padding-bottom: 40px;
}
.about-content ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}
.about-content ul li:last-child{
    padding-bottom: 0;
}
.about-content ul li img{
    display: block;
}
.about-content .btn{
    min-width: 170px;
}
/* About CSS End*/

/* Course CSS Start*/
.course-wrapper{
    background-color: var(--light-bg-color);
    padding: 80px 0;
    margin-top: 200px;
}
.course-heading .main-heading{
    padding-bottom: 10px;
}
.tab-parent{
    text-align: center;
}
ul#myTab {
    border: none;
    background-color: var(--white-color);
    box-shadow: 13px 14px 40px 0px #2762830D;
    border-radius: 50px;
    display: inline-block;
    margin: 50px 0;
}
li.nav-item {
    display: inline-block;
}
.nav-tabs .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;
    border: none;
    padding: 17px 60px;
    border-radius: 50px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {    
    background: var(--secondary-color);
    border-radius: 50px;
    color: var(--white-color);
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;    
}
.tab-content-box {
    background: linear-gradient(180deg, #FF5359 0%, #F07B0E 100%);
    border: 2px solid #FFFFFF4D;
    box-shadow: 15px 20px 60px 0px #1579C505;
    box-shadow: 0px 0px 30px 0px #FFFFFF4D inset;
    position: relative;
    border-radius: 20px;
    padding: 50px 15px 40px;
    text-align: center;
    min-height: 515px;
}
.tab-content-box2{
    background: linear-gradient(180deg, #6F01FC 0%, #C400D6 100%);
    box-shadow: 0px 0px 50px 0px #D8B1FF66 inset;
    box-shadow: 15px 20px 60px 0px #1579C505;
}
.tab-content-box3{
    background: linear-gradient(180deg, #255BFF 0%, #00B4E1 100%);
    box-shadow: 0px 0px 50px 0px #B1E8FF66 inset;
    box-shadow: 15px 20px 60px 0px #1579C505;
}
.tab-img{
    max-width: 246px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}
.tab-img > img {
    display: block;
    margin: auto;
    min-height: 193px;
}
.tab-img::before {
    content: '';
    width: 284px;
    height: 284px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 25.18%, rgba(255, 255, 255, 0.34) 133.8%);
    border-radius: 50%;
    position: absolute;
    top: -60px;
    right: 0;
    left: -25px;
    margin: auto;
    z-index: -1;
}
.tab-inner {
    margin-top: 50px;
}
.tab-inner > img {
    display: block;
    margin: auto;
}
.tab-inner h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
}
.tab-inner p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    padding: 12px 0 15px;
}
.tab-inner a {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s;
}
.tab-inner a:hover{
    letter-spacing: 2px;
}
.eye {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.tooltip-show {
    min-width: 100px;
    max-width: 300px;
    position: absolute;
    bottom: 0px;
    right: 5px;
    background-color: var(--white-color);
    line-height: normal;
    color: var(--title-color);
    padding: 5px 8px;
    border-radius: 4px;
    text-align: center;
    transform: translate(-32px, 10px);
    transition: all linear 0.1s;
    box-shadow: 15px 15px 40px 0px #001D3326;
    opacity: 0;
    visibility: hidden;
}
.tooltip-show:before {
    content: "";
    position: absolute;
    top: 7px;
    right: -7px;
    width: 7px;
    height: 7px;
    border-left: 5px solid var(--white-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all linear 0.1s;
    opacity: 0;
    visibility: hidden;
}
.tooltip-show p {    
    color: var(--title-color);
    font-size: 16px;
    font-weight: 400;
}
.eye:hover .tooltip-show {
    opacity: 1;
    visibility: visible;
    transform: translate(-32px, 0px);
    transition: all linear 0.1s;
}
.eye:hover .tooltip-show:before{
    opacity: 1;
    visibility: visible;
    transition: all linear 0.1s;
}
.tab-pane {
    position: relative;
}
.tab-slider-parent {
    position: relative;
    overflow: hidden;
}
.swiper-button-lock{
    display: block;
}
.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0px 0px 50px 0px #27628333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: var(--secondary-color);
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;    
}
.swiper-button-prev{
    left: -80px;
}
.swiper-button-next{
    right: -80px;
}
.swiper-button-next svg, .swiper-button-prev svg{
    width: auto;
    height: auto;
    fill: var(--text-color);
    transition: all 0.3s;
}
.swiper-button-next:hover svg, .swiper-button-prev:hover svg{
    fill: var(--white-color);
}
.swiper-button-prev:after, .swiper-button-next:after{
    display: none;
}
/* Course CSS End*/

/* Service CSS Start*/
.service-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
}
.service-heading .main-heading{
    padding-bottom: 10px;
}
.service-heading > .para {    
    max-width: 540px;
    width: 100%;
}
.service-left-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
}
.service-left-content ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
    background: #EBF3FB;
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;
    border-radius: 50px;
    min-height: 60px;
    min-width: 240px;
    padding: 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex: 0 0 40%;
    transition: all 0.3s;
}
.service-left-content ul li:hover{
    transform: translateX(10px);
}
.service-right{
    position: relative;
}
.service-counter {
    max-width: 144px;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 13px 14px 40px 0px #27628326;
    border-radius: 10px;
    padding: 35px 30px;
    position: absolute;
    top: 130px;
    left: -10px;
}
.service-counter .count .counting {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
}
.service-counter .count { 
    text-align: left;
    min-width: auto;
}
.service-counter .count-heading h5 {
    color: var(--text-color);
    padding-top: 0;
    padding-bottom: 15px;
}
.service-counter .count:last-child .count-heading h5{
    padding-bottom: 0;
}
.service-counter .count::before{
    display: none;
}
.service-right .abt-review {    
    top: 100px;
    left: auto;
    right: -100px;
}
.service-right .smile-star { 
    top: 70px;
    left: auto;
    right: -85px;
}
.service-right .abt-videoIcon {
    top: auto;
    left: auto;
    transform: none;
    right: -40px;
    bottom: 120px;
}
/* Service CSS End*/

/* Team CSS Start*/
.team-wrapper{
    background-color: var(--light-bg-color);
    padding: 80px 0;
}
.team-heading{
    padding-bottom: 50px;
}
.team-heading .main-heading{
    padding-bottom: 10px;
}
.team-parent {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}
.team-box-inner{
    background-color: var(--white-color);
    padding: 5px;
    text-align: center;
    max-width: 270px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s;
}
.team-img {
    position: relative;
}
.team-img > img {
    width: 250px;
    height: 300px;
    object-fit: cover;    /* Recadre l'image sans la déformer pour remplir le cadre */
    object-position: center; /* Centre le sujet de l'image */
    border-radius: 10px;  /* Assure que l'image suit l'arrondi */
}
.team-img > span{
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    width: 54px;
    height: 24px;
    background-color: var(--white-color);
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;    
    position: absolute;
    top: 10px;
    right: 10px;
}
.team-content {
    padding: 20px 10px;
}
.team-content h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
}
.team-content p {
    text-transform: capitalize;
    padding-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.team-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin: auto;
    padding-top: 15px;
    border-radius: 10px;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden; 
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 20px;
}
.team-box-inner:hover .team-social{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);    
}
.team-social > a{
    width: 30px;
    height: 30px;
    background-color: var(--title-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.team-social > a:hover {
    box-shadow: 0 0 0 15px var(--secondary-color) inset;
    transform: translateY(-5px);
}
.team-social > a > svg{
    fill: var(--white-color);
    transition: all 0.3s;
}
.swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background-color: #CFDAE4;
    opacity: 1;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active{
    width: 24px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}
/* Team CSS End*/

/* Contact CSS Start*/
.contact-wrapper {
    background-color: var(--white-color);
    padding: 120px 0 80px;
}
.contact-flex{
    display: flex;
    align-items: center;    
    gap: 30px;
}
.contact-left-flex {
    display: flex;
    align-items: center;
    max-width: 849px;
    width: 100%;
    position: relative;
}
.contact-left-image{
    position: relative;
}
.contact-left-image .contact-image {
    max-width: 849px;
    width: 100%;
    height: auto;
}
.contact-left-image .contact-review {
    position: absolute;
    bottom: 160px;
    left: -130px;
}
.contact-left-image .contact-star {
    position: absolute;
    bottom: 340px;
    left: -133px;
}
.contact-left-image .contact-student {
    position: absolute;
    bottom: -40px;
    left: 50px;
    z-index: 1;
}
.contact-left-image .contact-arrow {
    position: absolute;
    top: 150px;
    left: -40px;
    transform: rotate(25deg);
}
.contact-left-form { 
    position: absolute;
    top: 10px;
    right: 20px;
}
.contact-left-form > img {
    position: absolute;
    top: -70px;
    left: -70px;
}
.contact-form-box {
    min-width: 470px;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 10px 10px 60px 0px #597F9526;
    border-radius: 10px;
    padding: 40px;
}
.contact-form-head {
    padding-bottom: 20px;
}
.contact-form-head h4{
    font-size: 30px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.input-field{
    margin-bottom: 20px;
}
.input-field input {
    padding: 0 20px;
    width: 100%;
}
.input-field input::placeholder, .input-field textarea::placeholder{
    color: var(--text-color);
}
.input-field-flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.input-field-flex .input-field:first-child {
    max-width: 148px;
    width: 100%;
}
.input-field-flex .input-field input {
    appearance: none;
    background-image: url(images/all-instructor/cal.png);
    background-position: center right 15px;
    background-repeat: no-repeat;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: var(--secondary-color);    
    border-color: var(--secondary-color);
}
.flatpickr-months .flatpickr-month, .flatpickr-current-month, .flatpickr-current-month input.cur-year {
    height: 50px !important;
}
.numInputWrapper span {
    padding: 0;
    height: 25%;
    line-height: 25%;
    display: flex;
    justify-content: center;
}
.numInputWrapper span.arrowDown {
    top: auto ;
    bottom: 0px;
}
.flatpickr-current-month {
    width: 100%;
    left: 0;
    padding: 0;
    font-size: 130%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    padding: 0;
    height: 50px !important;
}
.contact-form-btn .btn{
    width: 100%;
}
.contact-right {
    max-width: 400px;
    width: 100%;
}
/* Contact CSS End*/

/* Work CSS Start*/
.work-wrapper{
    background-color: var(--light-bg-color);
    padding: 80px 0;
    margin-top: 200px;
}
.work-heading {
    padding-bottom: 70px;
}
.work-box-inner{
    background-color: var(--white-color);
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    padding: 30px;
    z-index: 1;    
}
.work-box:hover{
    transform: translateY(-30px);
    box-shadow: 13px 18px 50px 0px #2762831F;
}
.work-box{
    position: relative;
    transition: all 0.3s;
}
.work-box::before {
    content: '';
    width: 150px;
    height: 150px;
    background-color: #B8D9F8;
    border-radius: 50%;
    border: 20px solid #E5F1FE;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    z-index: -1;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.work-box:hover:before{
    opacity: 1;
    visibility: visible;
}
.work-step {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
}
.work-step h4 {
    width: 108px;
    height: 30px;
    background: linear-gradient(90deg, #6BADFF -9.26%, #59DAFF 110.19%);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.work-box-2 .work-step h4{
    background: linear-gradient(90deg, #FF818C -9.26%, #FFC575 110.19%);
}
.work-box-3 .work-step h4{
    background: linear-gradient(90deg, #52CF56 -28.24%, #CED11A 110.19%);
}
.work-box-4 .work-step h4{
    background: linear-gradient(90deg, #A954FF -9.26%, #EC5CFF 110.19%);
}
.work-img {
    width: 100px;
    height: 100px;
    background: #EFF4F8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto 25px auto;
    transition: all 0.3s;
}
.work-content > h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.work-content > p {
    max-width: 210px;
    width: 100%;
    margin: auto;
    padding-top: 10px;
}
/* Work CSS End*/

/* Testimonials CSS Start*/
.testmnl-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
}
.testmnl-slider {
    padding: 40px 0;
    width: 743px;
    text-align: center;
}
.testmnl-slider .swiper-wrapper{
    align-items: center;
}
.testmnl-slider .swiper-slide {
    width: 250px !important;
    height: 380px !important;
    opacity: 0.5;
}
.testmnl-slider .swiper-slide img {
    width: 250px;
    height: 380px;
    object-fit: cover;    /* Recadre l'image sans la déformer pour remplir le cadre */
    object-position: center; /* Centre le sujet de l'image */
    border-radius: 10px;  /* Assure que l'image suit l'arrondi */
}
.testmnl-slider .swiper-slide-active{    
    opacity: 1;
    transform: scale(1.18) !important;
}
.tm-banner-media {
    position: relative;
}
.tm-banner-media_content{
    max-width: 210px;
    width: 100%;
    height: 63px;
    border-radius: 10px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
}
.tm-banner-media_content h4{
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.tm-banner-media_content p{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.tesml-main-parent{
    position: relative;
}
.tesml-main-parent .swiper-button-prev {
    left: -20px;
}
.tesml-main-parent .swiper-button-next {
    right: -20px;
}

/* Text Slider */
.temnl-text-slider{
    overflow: hidden;
}
.temsl-text-slider p {
    padding: 25px 0 30px 0;
    line-height: 1.7;
}
.tesmnl-rating{
    background-color: #EBF3FB;
    box-shadow: 6px 6px 25px 0px #FFFFFF4D inset;
    border-radius: 10px;
    max-width: 203px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.tesmnl-rating span{
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    display: flex;
    align-items: center;
    gap: 5px;
}
.tesmnl-rating span:nth-child(2) {
    margin-left: 10px;
}
.temsl-text-slider {
    margin-left: 20px;
}
/* Testimonials CSS End*/

/* Pricing CSS Start*/
.pricing-wrapper{
    background-color: var(--light-bg-color);
    padding: 80px 0;
}
.pricing-btn {
    text-align: center;
    margin-bottom: 75px;
}
.pricing-btn ul#myTab{
    margin: 0;
}
.price-box{
    position: relative;
    transition: all 0.3s;
}
.price-box:hover {
    transform: translateY(-30px);
    box-shadow: 13px 18px 50px 0px #2762831F;
}
.price-box::before {
    content: '';
    width: 150px;
    height: 150px;
    background-color: #B8D9F8;
    border-radius: 50%;
    border: 20px solid #E5F1FE;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    z-index: -1;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.price-box:hover:before {
    opacity: 1;
    visibility: visible;
}
.price-inner{
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
}
.price-head > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
    padding: 25px 0 5px 0;
}
.price-head > h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: capitalize;
    padding: 20px 0 25px 0;
}
.price-head > h1 > span{
    font-size: 16px;
}
.price-head .btn{
    width: 100%;
}
.pricing-list {
    padding-top: 30px;
}
.pricing-list ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.pricing-list ul li:last-child{
    margin-bottom: 0;
}
.popular-plan{    
    background: linear-gradient(90deg, #FF818C -20.43%, #FFC575 120.16%);
    border-radius: 50px 50px 0 50px;
    max-width: 190px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: -15px;
    right: 0;
}
/* Pricing CSS End*/

/* Blog CSS Start*/
.blog-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
    position: relative;
}
.blog-slider-parent{
    position: relative;
    overflow: hidden;
}
.blog-box{
    transition: all 0.3s;
}
.blog-img{
    background: linear-gradient(90deg, rgba(107, 173, 255, 0.25) -9.26%, rgba(89, 218, 255, 0.25) 110.19%);
    border-radius: 20px 20px 0 0;
    padding-bottom: 15px;
    overflow: hidden;
    position: relative;
}
.blog-box-2 .blog-img{
    background: linear-gradient(90deg, rgba(255, 129, 140, 0.25) -9.26%, rgba(255, 197, 117, 0.25) 110.19%);
}
.blog-box-3 .blog-img{
    background: linear-gradient(90deg, rgba(82, 207, 86, 0.25) -28.24%, rgba(206, 209, 26, 0.25) 110.19%);
}
.blog-img img {
    border-radius: 20px 20px 0 0;
    transition: all 0.5s;
    width: 100%;
    object-fit: cover;
}
.blog-img:hover img{
    transform: scale(1.1);
}
.blog-img > h4 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #6BADFF -13.2%, #59DAFF 111.04%);
    min-width: 231px;
    height: 30px;
    border-radius: 0 50px 50px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.blog-box-2 .blog-img > h4{
    background: linear-gradient(90deg, #FF818C -22.52%, #FFC575 118.8%);
}
.blog-box-3 .blog-img > h4{
    background: linear-gradient(90deg, #52CF56 -33.02%, #CED11A 136.05%);
}
.blog-content{
    padding: 30px;
    border: 1px solid transparent;
    border-radius: 0 0 20px 20px;
    border-top: 0;
    transition: all 0.3s;
}
.blog-box:hover .blog-content{    
    background-image: linear-gradient(#fff, #fff),linear-gradient(180deg, #ffbd7700, #59DAFF);          
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-top: 0;
    box-shadow: 12px 12px 50px 0px #597F951F;    
}
.blog-box-2:hover .blog-content{    
    background-image: linear-gradient(#fff, #fff),linear-gradient(180deg, #ffbd7700, #ff8689);    
}
.blog-box-3:hover .blog-content{    
    background-image: linear-gradient(#fff, #fff),linear-gradient(180deg, #ffbd7700, #52CF56);    
}
.blog-content > h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.blog-content > p{     
    overflow: hidden;    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;   
    line-clamp: 2; 
}
.blog-content a{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    position: relative;
    z-index: 1;
}
.blog-footer::before{
    content: '';
    width: 100%;
    height: 2px;
    box-shadow: 10px 10px 50px 0px #597F952E;
    background-color: #97B3C54D;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s;
}
.blog-content > p:nth-child(2) {
    padding-top: 15px;
}
.blog-footer p:last-child{
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-wrapper .swiper-button-next, .blog-wrapper .swiper-button-prev {
    top: 60%;
}
.blog-wrapper .swiper-button-next{
    right: 220px;
}
.blog-wrapper .swiper-button-prev{
    left: 220px;
}
/* Blog CSS End*/

/* Newsletter CSS Start*/
.newsletter-wrapper {
    max-width: 1520px;
    width: 100%;
    margin: auto;
    background-image: url(images/all-instructor/newsletter-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 86px 0;
    border-radius: 20px;
    position: relative;
}
.newsltr-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nesltr-left h4{
    font-size: 40px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 10px;
}
.nesltr-right {
    max-width: 444px;
    width: 100%;
}
.nesltr-right .input-field {
    position: relative;        
    margin-bottom: 0;
}
.nesltr-right .input-field input {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 0 160px 0 25px;
}
.nesltr-right .input-field .btn{
    position: absolute;
    top: 0;
    right: 0;
}
/* Newsletter CSS End*/

/* Footer CSS Start*/
.footer-wrapper {
    background-color: var(--light-bg-color);
    padding: 230px 0 0px 0;
    margin-top: -150px;
}
.footer-info p {
    max-width: 320px;
    padding: 30px 0;
}
.footer-info .social-icons ul li a{
    width: 40px;
    height: 40px;
}
.footer-info .social-icons ul li a:hover {
    box-shadow: 0 0 0 20px var(--secondary-color) inset;    
}
.footer-menu h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
    padding-bottom: 20px;
}
.footer-menu ul li{
    margin-bottom: 10px;
}
.footer-menu ul li:last-child{
    margin-bottom: 0;
}
.footer-menu ul li a{
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;   
    transition: all 0.3s; 
}
.footer-menu ul li a:hover{
    color: var(--secondary-color);
}
/* Footer CSS End*/

/* Copyright CSS Start*/
.copyright-parent p {
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    padding: 32px 0;
    border-top: 2px solid #E4ECF1;
    margin-top: 80px;
}
/* Copyright CSS End*/

/* Toggle css */
.el_toggle_btn { 
    display: none;
    position: absolute;
    right: 25px;
    top: 23px;
    cursor: pointer;
}
.el_toggle_btn span {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}
.el_toggle_btn span:nth-child(2){
    width: 25px;
}
.el_toggle_btn span:last-child{
    margin-bottom: 0;
}
/* Toggle css */

/* Inner pages css start*/
/* About page */
.breadcrumb-wrapper{
    background-image: url(images/all-instructor/breadcrumb-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    margin-top: 84px;
}
.breadcrmb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.breadcrmb-inner h1{
    font-size: 30px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: capitalize;
}
.breadcrmb-inner ul {
    display: flex;
    align-items: center;
    gap: 5px;
}
.breadcrmb-inner ul li, .breadcrmb-inner ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--Black-color);
    text-transform: capitalize;
}
.breadcrmb-inner ul li:last-child{
    color: var(--secondary-color);
}
.object-wrapper .container, .feature-wrapper .container {
    max-width: 1200px;
}
.object-wrapper .work-content > p{
    max-width: 100%;
}
.about-team-wrapper{
    background-color: var(--white-color);
}
.feature-wrapper{
    background-color: var(--light-bg-color);
    padding: 80px 0;
}
.feature-wrapper .counter-parent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: transparent;
    border-radius: 0;
    padding: 30px 0 0 0;
}
.feature-wrapper .count{
    background-color: var(--white-color);
    max-width: 210px;
    width: 100%;
    padding: 20px 15px;
    text-align: center;
    border-radius: 10px;
}
.feature-wrapper .count::before{
    display: none;
}
.feature-wrapper .count:nth-of-type(2n+2){
    margin-top: -50px;
}
.feature-wrapper .count .counting {
    font-size: 30px;
    font-weight: 700;
    color: var(--title-color);
}
.feature-wrapper .count .count-heading > h5 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #FF4F79 -25.63%, #FFBABA 122.5%);
    box-shadow: 12px 13px 40px 0px #FF889C26;
    border-radius: 50px;
    height: 30px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    margin: 10px 0;
}
.feature-wrapper .count-2 .count-heading > h5{
    background: linear-gradient(90deg, #52CF56 -26.87%, #CED11A 132.5%);
    box-shadow: 12px 13px 40px 0px #9CD03226;
}
.feature-wrapper .count-3 .count-heading > h5{
    background: linear-gradient(90deg, #49A0FF -23.75%, #5BD5FF 120%);
    box-shadow: 12px 13px 40px 0px #62C2FF26;
}
.feature-wrapper .count-4 .count-heading > h5{
    background: linear-gradient(90deg, #B766FF -23.75%, #E977FF 131.25%);
    box-shadow: 12px 13px 40px 0px #C757FF26;
}
.feature-wrapper .count-5 .count-heading > h5{
    background: linear-gradient(90deg, #FF8689 -21.87%, #FFBE77 128.12%);
    box-shadow: 12px 13px 40px 0px #FFA08026;
}
/* About page */

/* Blog single Page  */
.blog-single-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
}
.inner-blog-box{
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* empile les éléments verticalement */
    align-items: stretch;   /* les enfants prennent la largeur du parent */
    width: 100%;
    min-height: auto;
    gap: 12px;              /* <- espace entre chaque enfant */
    padding: 16px;          /* optionnel : espace intérieur */
}
.blog-medium-wrapper .blog-single{
    padding: 15px;
}
.inner-blog-box:last-child{
    margin-bottom: 0;
}

.blogsingle-img {
    width: 100%;          /* S'adapte à la largeur du parent */
    height: 300px;        /* Définit une hauteur fixe pour "cadrer" */
    overflow: hidden;     /* Empêche l'image de déborder du cadre arrondi */
    border-radius: 10px;  /* Votre arrondi sur le conteneur */
}

.blogsingle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Recadre l'image sans la déformer pour remplir le cadre */
    object-position: center; /* Centre le sujet de l'image */
    border-radius: 10px;  /* Assure que l'image suit l'arrondi */
}
.blogsingle-content h4 {
    padding-top: 20px;
    padding-bottom: 15px;
}
.blog-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--title-color);
    padding-bottom: 30px;
    text-transform: capitalize;    
}
.col-lg-5 {
    width: 400px;  /* Largeur constante */
    height: 300px; /* Hauteur constante */
    background-color: #ffffff; /* Pour mieux visualiser le cadre */
}
.col-lg-6 {
    width: 400px;  /* Largeur constante */
    height: 300px; /* Hauteur constante */
    background-color: #ffffff; /* Pour mieux visualiser le cadre */
}
.col-lg-7 {
    width: 400px;  /* Largeur constante */
    height: 400px; /* Hauteur constante */
    flex-direction: column;
    background-color: #ffffff; /* Pour mieux visualiser le cadre */
}
.col-lg-7 .inner-blog-box{
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;   /* grandit/rétrécit avec le parent */
    min-height: 0;    /* permet au contenu flex de shrink correctement */
    width: 400px;  /* Largeur constante */
    height: 400px; /* Hauteur constante */
}
.blogsingle-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}
.blogsingle-content ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--title-color);
    text-transform: capitalize;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.blogsingle-content ul li a:hover{
    color: var(--secondary-color);
}
.blogsingle-content ul li a span svg{
    width: 15px;
    height: auto;
    fill: var(--title-color);
    transition: all 0.3s;
}
.blogsingle-content ul li a:hover span svg{
    fill: var(--secondary-color);
}

#direction-rtl {
    direction: rtl !important; /* Force la direction de droite à gauche */
    text-align: right; /* Aligne aussi le texte à droite */
}

.blgs-comments {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.blgs-comments:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}
.blgs-cmts-img {
    width: 26%;
    overflow: hidden;
}
.blgs-cmts-img img{
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 50%;
}
.blgs-cmts {
    padding-left: 20px;
}
.blgs-cmt-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}
.blgs-cmt-name h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: capitalize;
    transition: all 0.3s;
}
.blgs-cmt-name p {
    font-weight: 500;
    transition: all 0.3s;
}
.blgs-cmt-name p svg {
    margin: -3px 8px 0 0;
    fill: var(--text-color);
    transition: all 0.3s;
}
a.blgs-cmnt-reply {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: capitalize;
    text-align: right;
    padding-top: 5px;
    transition: all 0.3s;
}
a.blgs-cmnt-reply svg {
    width: 14px;
    height: auto;
    margin: 0 8px 0 0;
    fill: var(--text-color);
    transition: all 0.3s;
}
.blgs-comments-wrapper .blgs-comments:nth-child(3), .blgs-comments-wrapper .blgs-comments:nth-child(4) {
    margin-left: 40px;
}
.search-widget .input-field{
    position: relative;
}
.search-widget .input-field input {
    padding: 0 70px 0 20px;
    width: 100%;
}
.search-widget .input-field .btn {
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 10px 10px 0;
}
.search-widget .btn::after{
    border-radius: 0 10px 10px 0;
}
.search-widget .btn:hover {    
    transform: scale(1); 
}
.category-widget h4{
    margin-bottom: 15px;
    text-align: center;           /* centre le texte */
    display: block;               /* occupe toute la largeur */
    width: 100%;
    background: var(--secondary-color); /* fond en couleur primaire */
    color: var(--white-color);        /* texte en blanc */
    padding: 12px 16px;           /* espace intérieur */
    border-radius: 8px;           /* arrondir légèrement (optionnel) */
    box-sizing: border-box;
}
.category-widget ul li{
    margin-bottom: 15px;
}
.category-widget ul li:last-child{
    margin-bottom: 0;
}
.category-widget ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;
    display: flex;    
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}
.category-widget ul li a svg{
    width: 10px;
    height: auto;
    transform: rotate(-90deg);
    fill: var(--text-color);
}
.category-widget ul li a:hover{
    color: var(--secondary-color);
    transform: translateX(10px);
}
.category-widget ul li a:hover svg{ 
    fill: var(--secondary-color);    
}
.blog-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-tags .btn {
    min-width: 100px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
}
.blogsingle-content > .btn {
    min-width: 130px;
    height: 50px;
    margin: 20px 0 15px 0;
}
.blog-bottom-pagination {
    margin-top: 10px;
}
.blog-bottom-pagination .pagination {
    margin: 20px 0 0 0;
    border-radius: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-bottom-pagination .pagination>li>a{    
    width: 40px;
    height: 40px;
    background: var(--input-bg-color);    
    border-radius:50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--title-color);        
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;    
}
.blog-bottom-pagination .pagination>li>a svg{
    width: 10px;
    height: auto;
    fill: var(--white-color);
}
.blog-bottom-pagination .pagination>.active>a, .pagination>.active>a:hover, .pagination>.active>a:focus{
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--white-color);        
}
.blog-bottom-pagination .pagination>li>a:hover{
    background: var(--secondary-color);
    color: var(--white-color);
}
/* Event page */
.event-wrapper .blog-content {
    padding: 30px 15px; 
}
.event-wrapper .blog-content > p {    
    display: block;
    -webkit-line-clamp: none;
    line-clamp: none;
    -webkit-box-orient: unset;
}
/* Instructors page */
.instrctr-feat-wrapper{
    background-color: var(--white-color);
}
.instrctr-feat-wrapper .count {
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.09);
}
/* Pricing Page */
.price-page-wrapper{
    background-color: var(--white-color);
}
.price-page-wrapper .price-box, .price-page-wrapper .pricing-btn ul#myTab{ 
    box-shadow: 13px 18px 50px 0px #2762831F;
}
/* opinions */
.opinion-content{
    display: flex;       /* Aligne l'image et les infos horizontalement */
    align-items: center; /* Centre verticalement l'image et le texte entre eux */
    gap: 20px;           /* Espace entre l'image et le bloc de texte */
    padding: 15px;
    background: #fff;
    border-radius: 10px; /* Cohérence avec vos styles précédents */
}
.opinion-content .image-container img {
    width: 80px;         /* Taille de l'image */
    height: 80px;
    border-radius: 50%;  /* Image ronde */
    object-fit: cover;   /* Évite de déformer l'image */
}
.opinion-content .opinion-info {
    display: flex;
    flex-direction: column; /* Force le nom et le p à s'empiler verticalement */
    gap: 5px;               /* Espace entre le nom et le paragraphe */
}
.opinion-content .opinion-info h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: capitalize;
}
.opinion-content .opinion-info p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}


/* Cart Page */
.cart-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
}
.woo-cart-table {
    text-align: center;
    background-color: var(--white-color);
    padding: 20px;
    text-transform: capitalize;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.09);
    border-radius: 10px;
}
.woo-cart-table .table {    
    border-radius: 10px !important;
}
thead>tr {
    border-width: 0 !important;
}
thead th:first-child {
    border-top-left-radius: 10px !important;
}
thead th:last-child {
    border-top-right-radius: 10px !important;
}
tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px !important;
}

tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px !important;
}
.woo-cart-table thead th {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 15px 10px;    
    border-width: 0;
}
.woo-cart-table tbody tr td {
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: none;
}
.woo-cart-table .table img {
    width: 100px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto;
}
.woo-cart-table tbody tr td span {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}
.woo-cart-table tbody tr td a {
    width: 22px;
    height: 22px;
    background: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    margin: auto;
    font-size: 12px;
}
form.form-inline {
    text-align: left;
}
form.form-inline .form-group input.btn{
    color: var(--white-color) !important;
}
.update-btn{
    text-align: left;
}
.update-btn input.btn {
    color: #fff !important;
}
.ed_cart_collaterals {
    padding: 20px;
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.09);
    max-width: 600px;
    width: 100%;
    margin: 20px 12px 0 auto;
    border-radius: 10px;
}
.cart_totals h2 {
    text-align: center;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    padding: 15px 10px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}
.cart-subtotal {
    font-size: 18px;
}
.order-total {
    font-size: 18px;
}
.cart-subtotal span {
    color: var(--secondary-color);
    font-size: 18px;
}
.wc-proceed-to-checkout {    
    padding: 15px 0px;    
}
.form-inline .input-field {
    position: relative;
    margin-bottom: 0;
}
.form-inline .input-field input.input-cupon{
    padding: 0 160px 0 20px;
}
.form-inline .input-field input.btn {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 150px;
    color: #fff !important;
    border-radius: 0 10px 10px 0;
}
/* Checkout page */
.checkout-wrapper{
    background-color: var(--white-color);
    padding: 80px 0;
}
.woo-checkout-table {
    text-align: left;
    padding: 30px;
}
h3.checkout-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: capitalize;
    padding-bottom: 30px;
}
.input-field label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    text-transform: capitalize;
    padding-bottom: 10px;
}
.input-field label sup{
    color: red;
}
.checkout-input-dble input:nth-child(3){
    margin-top: 15px;
}
.woocommerce-checkout-payment h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--title-color);
    margin: 0;    
    padding: 10px 0px;    
}
.woocommerce-checkout-payment .payment_methods.methods {    
    padding: 0px;
    margin: 0px;
    padding-bottom: 30px;
}
.chkout-flex h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color);
    text-transform: capitalize;
}
.chkout-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e7ef;
}
.custom-checkbox {
    width: 18px;
    height: 18px;
    position: relative;
}
.custom-checkbox input{
    width: 0 !important;
}
.custom-checkbox input[type=checkbox], .custom-checkbox input[type="radio"] {
    visibility: hidden;
}
.custom-checkbox label {
    cursor: pointer;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0;        
    background-color: var(--white-color);
    border: 2px solid #e0e7ef;  
    border-radius: 50%;
    right: -5px;
}
.custom-checkbox input[type=radio]:checked+label{
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
.woocommerce-checkout-payment ul.payment_methods.methods li .ed_rate .custom-checkbox label {
    top: 5px;
    right: 0;
    margin: 0px;
    left: 0px;
}
.custom-checkbox label:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e0e7ef;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    border-top: none;
    border-right: none;
}
.custom-checkbox input[type="radio"]:checked+label:after {
    background-color: var(--white-color);
}
.payment_box {
    display: none;
    padding-top: 15px;
}
.woo-cart-table .payment_methods img {
    width: auto;
    height: auto;
    margin-left: auto;
}
.placeorder-btn {
    text-align: right;
}
.checkout-wrapper .input-field input, .checkout-wrapper .select2-container--default .select2-selection--single {
    height: 50px !important;
}
.checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {    
    line-height: 50px !important;
}
.checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 22px;    
}
/* 404 page */
.notfound-wrapper {
    background: var(--white-color);
    padding: 160px 0 80px 0;
}
.notfound-wrapper img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
}
.notfound-footer {    
    padding: 80px 0 0px 0;
    margin-top: 0;
}
.notfound-wrapper h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: capitalize;
    padding-top: 20px;
}
.notfound-wrapper .para {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 0 30px 0;
}
.notfound-wrapper .btn{
    padding: 0 30px;
}
/* Contact Page */
.contact-page-wrapper{
    background-color: var(--white-color);
    /* Utilise Flexbox pour centrer l'enfant */
    display: flex;
    align-items: center;      /* Centre verticalement */
    justify-content: center;   /* Centre horizontalement */
    /* Important : le parent doit prendre toute la hauteur de l'écran */
    min-height: 100vh;
    height: 300px;
    width: 100%;
    padding: 20px;            /* Un peu de sécurité pour les petits écrans */
}
.contact-page-box {
    max-width: 1150px;
    margin: auto;
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.09);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;   /* Centre horizontalement */
    gap: 40px;
    padding-right: 40px;
}
.cntact-map {
    max-width: 500px;
    width: 100%;
}
.cntact-map iframe{
    max-width: 500px;
    width: 100%;
    height: 706px;
}
.contact-page-info {
    width: 100%;
}
/* Course Single Page css start */
.course-single-wrapper .blog-content {
    background-image: linear-gradient(#fff, #fff),linear-gradient(180deg, #ffbd7700, #ff8689) !important;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-top: 0;
    box-shadow: 12px 12px 50px 0px #597F951F;
}
.course-single-flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.course-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.course-price .blog-title{
    padding-bottom: 0;
}
.course-price > span {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
}
.course-sngle-teach a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--title-color);
    pointer-events: none;
}
.course-sngle-teach a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
}
.course-sngl-rating{
    display: flex;
    align-items: center;
    gap: 10px;
}
.course-sngl-rating span{
    color: var(--text-color);
}
.course-sngle-right p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.cours-sngle-tab-content h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    padding-bottom: 0;
}
.course-sngle-tab-parent ul#myTab {    
    margin: 30px 0;
}
.course-sngle-tab-parent .nav-tabs .nav-link {
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 50px;
}
.cours-sngle-tab-content p{
    margin-top: 15px;
}
.course-sngle-student-list > h4 {
    font-size: 20px;    
}
.course-sngle-student-list ul {
    max-height: 439px;
    overflow-x: hidden;
}
.curs-stnds-list {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #E1E8EE;
    padding: 15px 0;
}
.course-sngle-student-list ul li:last-child .curs-stnds-list{
    border-bottom: none;
    padding-bottom: 0;
}
.curs-stnds-list > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 100%;
}
.crs-stdnt-info h4 {
    font-size: 18px;
    text-transform: capitalize;
}
.crs-stdnt-info p{
    text-transform: capitalize;
}
.cours-sngle-tab-content h6 {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 400;
}
.lesson-parent {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    padding: 0 0px 25px 0px;
    margin-top: 30px;
}
.lesson-parent ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}
.lesson-parent ul li:first-child {
    background-color: var(--secondary-color);
    border-radius: 10px 10px 0 0;
}
.lesson-parent ul li:first-child a, .lesson-parent ul li:first-child span{
    color: var(--white-color);
}
.lesson-parent ul li:last-child{    
    border-bottom: 0;
    padding-bottom: 0;
}
.lesson-parent ul li a{
    color: var(--title-color);
}
.lesson-parent ul li span{
    color: var(--text-color);
}
.course-lesson-wrapper .blog-content > h4{
    padding-bottom: 0;
}
.blog-img iframe{
    width: 100%;
    height: 500px;
}
/* Course Single Page css end */

/* Banner Start */
.ed_pagetitle{
    background-color: var(--white-color);
    min-height: 500px;
}
.ed_teacher_div{
    background-color: var(--white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* empile les éléments verticalement */
    align-items: stretch;   /* les enfants prennent la largeur du parent */
    width: 100%;
    height: auto;        /* Laisse le contenu décider de la hauteur */
    min-height: 0;      /* Optionnel : retire toute contrainte minimum */
    gap: 12px;              /* <- espace entre chaque enfant */
    padding: 16px;          /* optionnel : espace intérieur */
}
.ed_teacher_div input[type="submit"]{
    height: auto !important;
}

/* Banner End */

/* Inner pages css start*/


/* ================= Responsive CSS Start ================= */
@media(min-width:1200px){
    .header_fixed {
        position: fixed;
        top: 0;
        width: 100%;
        backdrop-filter: blur(10px);
        background: rgba(255,255,255,0.75);
    }
}
@media(max-width:1850px){
    .banner-img:before {        
        width: 750px;
        height: 750px;
    }
    .banner-reslt-box {
        top: 150px;
        right: -80px;
    }
}
@media(max-width:1750px){
    .banner-img img {
        max-width: 600px;
        width: 100%;
    }
    .banner-reslt-box {     
        right: -30px;
    }
    .counter-parent > img {    
        right: 0;    
    }
    .blog-wrapper .swiper-button-prev {
        left: 100px;
    }
    .blog-wrapper .swiper-button-next {
        right: 100px;
    }
}
@media(max-width:1650px){
    .banner-reslt-box {
        right: 0;
    }
    .banner-box {
        max-width: 800px;
    }
    .banner-form-info {
        max-width: 193px;     
    }
    .star-smile {     
        top: -36px;
        right: 20px;
    }
    .about-img:before {        
        width: 650px;
        height: 650px;
        left: -60px;
    }
    .contact-left-image .contact-review {     
        left: -80px;
    }
    .contact-left-image .contact-star {     
        bottom: 350px;
        left: -80px;
    }
}
@media(max-width:1550px){
    .blog-wrapper .swiper-button-prev {
        left: 20px;
    }
    .blog-wrapper .swiper-button-next {
        right: 20px;
    }
    .service-right .abt-review {     
        right: -80px;
    }
    .service-right .smile-star {     
        right: -65px;
    }
}
@media(max-width:1440px){
    .banner-left h1 {
        font-size: 40px;     
    }
    .banner-img img {
        max-width: 500px;     
    }
    .banner-img:before {
        width: 650px;
        height: 650px;
    }
    .banner-right {     
        max-width: 600px;        
    }
    .banner-form-info {
        max-width: 160px;
        margin-right: 25px;
    }
    .banner-form-info::before{
        display: none;
    }
    .banner-box {
        max-width: 680px;
    }
    .about-img:before {             
        left: -20px;
    }
    .swiper-button-prev {
        left: -20px;
    }
    .swiper-button-next {
        right: -20px;
    }
    .contact-left-image .contact-review, .contact-left-image .contact-star, .contact-left-image .contact-arrow{
        display: none;
    }
    .newsletter-wrapper {
        max-width: 1200px;
        padding: 86px 50px;
    }
}
@media(max-width:1399px){
    .about-img:before {
        left: -100px;
    }
    .contact-left-image .contact-student {     
        left: 0;
    }
    .contact-form-box {
        min-width: 380px;
    }
    .contact-left-form {     
        top: -40px;
    }
    .testmnl-slider {        
        width: 600px;     
        padding: 0;
    }    
    .testmnl-slider .swiper-slide {
        width: 300px;
        visibility: hidden;             
    }
    .testmnl-slider .swiper-slide-next, .testmnl-slider .swiper-slide-prev{
        visibility: visible;
    }
    .testmnl-slider .swiper-slide-active {     
        transform: scale(1.08) !important;
        visibility: visible;
        opacity: 1;
    }
    .blgs-cmts-img {
        width: 40%;     
    }
}
@media(max-width:1300px){
    .video-box {
        top: -70px;
        right: -60px;
    }
    .banner-img:before {
        width: 550px;
        height: 550px;
    }
    .banner-img {     
        margin-left: 0;
        text-align: center;
    }
    .banner-reslt-box {        
        display: none;
    }
    .banner-right {
        max-width: 550px;
    }
    .banner-form-info {     
        margin-right: 15px;
    }
    .banner-form-info:nth-child(3) {
        margin-right: 15px;
    }
    .banner-box {
        max-width: 635px;
        padding: 30px 25px;
    }
    .service-right .abt-review {
        right: 0;
        top: 180px;
    }
    .service-right .smile-star {
        right: 0;
        top: 160px;
    }
}
@media(max-width:1199px){
    /* Toggle css */    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        background: #fff;
        box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
        height: 100%;
        padding: 30px 0 0 30px;
        transition: all 0.3s;
        z-index: 999;
    }
    .nav-menu > ul {     
        align-items: baseline;
        gap: 20px;
        flex-direction: column;
    }
    .nav-menu > ul > li > a {
        padding: 0px 0;
    }
    .header-right.el_menu_open .nav-menu{                
        left: 0;        
    }
    .el_toggle_btn {
        display: block;
        margin-top: 10px;        
    }   
    .el_menu_open .el_toggle_btn span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 3px 5px;
    }
    .el_menu_open .el_toggle_btn span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
    }
    .el_menu_open .el_toggle_btn span:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 4px -1px;
    }
    /* Toggle CSS */
    
    /* Sub menu CSS */
    ul.sub-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        position: relative;
        top: 12px;
        transform: none;
        transition: none;
        box-shadow: none;
        margin-left: 25px;
        padding: 15px 0;
    }
    ul.sub-menu.submenu-open {        
        opacity: 1;
        visibility: visible;
    } 
    .nav-menu > ul > li:hover .sub-menu{
        transform: none;
    }       
    /* Sub menu CSS */
    
    .header-search {     
        margin-right: 60px;
    }
    .header-search input {
        height: 50px !important;        
    }
    .logo {
        width: 120px;
        height: 30px;
    }
    .header-wrapper {
        padding: 20px 0;
    }
    .logo a, .logo a img {
        display: block;
    }
    .banner-img:before {
        width: 450px;
        height: 450px;
        left: 30px;
    }
    .banner-img img {
        max-width: 400px;
    }
    .banner-right {
        max-width: 480px;
    }
    .banner-box {     
        margin: 40px 0 15px 0;
    }
    .banner-form-flex {     
        gap: 10px;
    }
    .banner-form-info {
        margin-right: 10px;
        flex: 0 0 48%;
        max-width: 46%;
    }
    .counter-parent > img {     
        top: -110px;
    }
    .count::before {
        right: -70px;
    }
    .about-img:before{
        display: none;
    }
    .main-heading {
        font-size: 25px;
    }
    .service-left-content ul {
        gap: 15px;     
    }
    .service-left-content ul li {
        font-size: 14px;
        min-height: 50px;
        min-width: 210px;
        gap: 10px;     
    }
    .service-counter {
        left: 0;
    }
    .contact-left-image .contact-image, .contact-left-image .contact-student {     
        display: none;
    }
    .contact-left-form {
        position: unset;
        width: 100%;
    }
    .input-field {
        margin-bottom: 20px;
        width: 100%;
    }
    .blog-content {
        padding: 20px 10px;
    }
    .blog-content > h4 {
        font-size: 18px;
    }
    .blog-content > p {
        font-size: 14px;
    }
    .blog-content a {
        font-size: 15px;
    }
    .course-sngle-teach a{
        font-size: 18px;
    }
    .blog-footer p {
        font-size: 14px;
    }
    .newsletter-wrapper {
        max-width: 1000px;
        padding: 50px 30px;
    }
    .nesltr-left h4 {
        font-size: 30px;
    }
    .nesltr-left .para {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-color);
    }
    .footer-wrapper {     
        padding: 150px 0 0px 0;
        margin-top: -90px;
    }
    .feature-wrapper .count {     
        max-width: 32%;        
        flex: 0 0 32%;
    }
    .feature-wrapper .count:nth-of-type(2n+2) {
        margin-top: 0;
    }
    .feature-wrapper .counter-parent {
        padding: 0px 0 0 0;
    }
    .blgs-cmts-img img {
        width: 80px;
        height: 80px;     
    }
    .blgs-comments-wrapper .blgs-comments:nth-child(3), .blgs-comments-wrapper .blgs-comments:nth-child(4) {
        margin-left: 0;
    }
}
@media(max-width:1024px){
    .video-box {     
        right: -260px;
    }
    .arrow1 {
        right: 0;     
    }
}
@media(max-width:991px){
    .header-wrapper {
        top: 50px;
    }   
    .banner-flex {     
        flex-direction: column;
        gap: 30px;
    }
    .video-box {
        right: 0;
        top: 0;
    }
    .arrow1 {
        right: 270px;
        top: -40px;
    }
    .count .counting {
        font-size: 30px;     
    }
    .count-heading h5 {
        font-size: 14px;     
        padding-top: 0px;
    }
    .counter-parent {        
        min-height: 150px;        
        gap: 20px;        
    }
    .count::before {
        right: -20px;
    }
    .top-header-left > p, .top-header-right > p {
        font-size: 12px;     
    }
    .top-header-right {     
        gap: 20px;
    }
    .top-header-bar {     
        padding: 10px 0;
    }
    .about-wrapper {     
        padding: 100px 0 80px 0;
    }
    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 12px 30px;     
    }
    .pricing-btn .nav-tabs .nav-link {
        font-size: 16px;
        padding: 17px 60px;     
    }
    .tab-img::before {        
        width: 200px;
        height: 200px;
    }
    .tab-img > img {
        max-width: 200px;
        width: 100%;
        min-height: auto;
    }
    .tab-content-box {
        min-height: auto;
    }
    .tab-inner {
        margin-top: 30px;
    }
    .tab-inner h4 {
        font-size: 18px;
    }
    .tab-inner p {
        font-size: 14px;     
    }
    .service-wrapper .row {
        flex-direction: column-reverse;
    }
    .service-right .abt-videoIcon {        
        right: 40px;        
    }
    .contact-flex {     
        flex-direction: column-reverse;
    }
    .contact-form-box {
        min-width: auto;
    }
    .contact-right {
        max-width: 100%;     
    }
    .contact-left-form > img {     
        top: -50px;
        left: auto;
        right: -20px;
    }
    .input-field-flex .input-field:first-child {
        max-width: 250px;     
    }
    .contact-wrapper {     
        padding: 80px 0 80px;
    }
    .newsletter-wrapper {
        max-width: 100%;
        padding: 50px 0px;
        border-radius: 0;
    }
    .newsltr-flex {
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
    }
    .footer-wrapper {
        padding: 80px 0 0px 0;
        margin-top: 0;
    }
    .feature-wrapper .count {
        max-width: 47%;
        flex: 0 0 47%;
    }
    .woo-cart-table .payment_methods img {     
        max-width: 170px;        
    }
    .contact-page-box {
        flex-direction: column-reverse;
        padding: 30px;
    }
    .cntact-map {
        max-width: 100%;       
    }
    .cntact-map iframe {
        max-width: 100%;        
        height: 400px;
    }
}
@media(max-width:767px){
    .header-wrapper, .header-parent {
        height: auto !important;
        min-height: 61px;
        overflow: visible;
    }
    /* État initial : Le header est à sa place normale sous le top-header */
    .header-wrapper {
        position: relative;
        top: 5px;
        width: 100%;
        z-index: 999;
        background: #fff;
    }
    /* État quand on descend (Sticky) */
    .header-wrapper.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        background: #ffffff;
    }
    /* Cacher le Top Header lors du scroll */
    .header-wrapper.is-sticky .top-header-bar { 
        display: none !important; 
    }
    /* On ajuste le parent pour qu'il ne pousse pas le contenu vers le bas */
    .header-parent {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        top: 61px !important;
        height: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    .header-right {
        display: none !important;
        position: fixed; /* Fixed pour qu'il suive le scroll aussi */
        top: 61px !important; /* Doit être égal à la hauteur de votre header-wrapper */
        left: 0;
        height: calc(100vh - 61px); /* Pour couvrir tout l'écran sous le header */
        width: 100vw;
        background: white;
        z-index: 999;
        height: calc(100vh - 70px); /* Prend tout le reste de l'écran */
        overflow-y: auto;
    }
    .nav-menu {
        position: absolute;
        top: 50px;
        left: 0 !important;
        width: 300px;
        box-shadow: none;
        height: 100%;
        padding: 20px;
        transition: all 0.3s;
        z-index: 999;
        display: block !important;
    }

    .header-right.is-open {
        display: flex !important;
        flex-direction: column;
    }

    .el_toggle_btn {
        display: block !important;
        cursor: pointer;
        position: relative !important;
        top: 0px;
        right: 15px;
        z-index: 1001;
        padding: 10px;
    }
    .el_toggle_btn span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: #333;
        transition: 0.3s;
    }
    .ed_login_form {
        position: relative !important; /* Ou absolute selon votre structure */
        top: 0;
        left: auto !important; /* On annule le placement à gauche */
        right: 0 !important;   /* On le force à s'afficher à droite */
        width: 300px;         /* Gardez votre largeur actuelle */
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); /* Ombre inversée pour le côté droit */
        transform: translateX(100%); /* Caché à droite par défaut */
        transition: transform 0.3s ease;
    }
    .header-right.is-open .ed_login_form {
        transform: translateX(0); /* Il glisse de la droite vers le centre */
        height: auto; /* Ajuste la hauteur au contenu */
    }

    .video-box, .arrow1, .banner-box > img, .count::before {     
        display: none;
    }
    .banner-box {     
        max-width: 100%;
    }
    .banner-wrapper {
        padding: 150px 0 100px 0;
    }
    .counter-parent {     
        flex-wrap: wrap;
    }
    .count {     
        flex: 0 0 48%;
    }
    .social-icons ul {     
        gap: 5px;
    }    
    ul#myTab {     
        margin: 50px 0 30px 0;
    }
    .service-right .abt-videoIcon {
        right: 0;
        bottom: 0;
    }
    .service-right .abt-review {
        top: 200px;     
        right: -50px;
    }
    .service-right .smile-star {
        top: 200px;     
        right: -5px;
        width: 40px;
        height: auto;
    }
    .testmnl-slider {
        width: 100%;     
    }
    .testmnl-slider .swiper-slide {
        width: 240px;     
    }
    .testmnl-slider .swiper-slide-active {
        transform: scale(1.05) !important;     
    }
    .nav-tabs .nav-link {     
        padding: 12px 25px;
    }   
    .searchBoxContainer {
        width: 90%;     
    } 
    .feature-wrapper .count {
        max-width: 40%;
        flex: 0 0 40%;
    }
    .feature-wrapper .counter-parent {
        gap: 20px;
    }
    .blogsingle-content ul li a {
        font-size: 14px;
    }
    .blgs-cmts-img {
        width: 70%;
    }
    .woo-cart-table tbody tr td {     
        font-size: 13px;
    }
    .woo-cart-table .table img {
        width: 70px;     
    }
    .woo-cart-table thead th {
        padding: 10px 5px;
        font-size: 13px;
        font-weight: 500;
    }
    .woo-cart-table tbody tr td span {
        font-size: 15px;     
    }
    .update-btn input.btn, form.form-inline .form-group input.btn {        
        height: 45px !important;
        font-size: 14px;
        min-width: 120px;
    }
    .woo-cart-table ::-webkit-scrollbar {
        height: 5px;
    } 
    
}
@media(max-width:575px){
    .banner-img img, .banner-img:before, .counter-parent > img {     
        display: none;
    }
    .banner-left h1 {
        font-size: 35px;
    }
    .top-bar-flex, .top-header-right {     
        flex-direction: column;
        gap: 10px;
    }    
    .nav-tabs .nav-link {
        padding: 10px 21px;
        font-size: 13px;
    }
    .blog-wrapper .swiper-button-prev {
        left: 0px;
    }
    .blog-wrapper .swiper-button-next {
        right: 0px;
    }
    .feature-wrapper .count {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .blog-title {
        font-size: 20px;
    }
    .blogsingle-content ul li a span svg {
        width: 12px;     
    }
    .blogsingle-content ul li a {
        font-size: 13px;
        gap: 6px;
    }
    .blogsingle-content > p {
        font-size: 14px;
    }
    .blgs-cmts-img img {
        width: 70px;
        height: 70px;
    }
    .blgs-cmt-name h5 {
        font-size: 16px;
    }
    .blgs-cmt-name p {     
        font-size: 15px;
    }
    .blgs-cmt-name p svg {
        margin: -3px 5px 0 0;     
    }
    .blgs-cmts > p {
        font-size: 14px;
    }
    .blgs-cmts {
        padding-left: 10px;
    }
}
@media(max-width:480px){
    .header-search {
        max-width: 150px;     
    }
    .banner-left h1 {
        font-size: 30px;
    }
    .para {
        font-size: 14px;     
    }
    .banner-left p {
        max-width: 400px;
        line-height: 1.5;     
    }
    .btn {
        min-width: 140px;
        height: 50px;
        font-size: 15px;
        font-weight: 400;
    }
    .banner-play-icon span {
        width: 50px;
        height: 50px;
    }
    @keyframes shadow-pulse {
        0% {
            box-shadow: 0 0 0 0 rgb(21 121 197 / 70%)        
        }
        100% {
            box-shadow: 0 0 0 10px rgb(255 255 0 / 0%);        
        }
    }
    .banner-play-icon span svg {     
        width: 12px;
        height: auto;
    }
    .banner-play-icon a {
        font-size: 14px;
    }
    .banner-form-info {     
        flex: 0 0 100%;
        max-width: 100%;
    }
    .banner-form-btn {
        margin-top: 10px;
    }
    .main-heading {
        font-size: 20px;
    }
    .top-heading {
        font-size: 15px;
        letter-spacing: 5px;
    }
    .about-wrapper {
        padding: 60px 0 50px 0;
    }
    .course-wrapper, .service-wrapper, .team-wrapper, .contact-wrapper, .work-wrapper, .testmnl-wrapper, .pricing-wrapper, .blog-wrapper, .blog-single-wrapper, .cart-wrapper, .checkout-wrapper, .contact-page-wrapper{     
        padding: 50px 0;
    }
    .notfound-wrapper {     
        padding: 140px 0 50px 0;
    }
    .notfound-wrapper h1 {
        font-size: 30px;     
    }
    .notfound-wrapper .para {
        font-size: 14px;     
    }
    .nav-tabs .nav-link {
        font-size: 12px;
        padding: 9px 17px;
    }
    .top-heading-center {
        font-size: 15px;
        letter-spacing: 5px;
    }
    .service-right .abt-review, .service-right .smile-star{
        display: none;
    }
    .service-counter .count .counting {
        font-size: 20px;     
    }
    .service-counter {
        max-width: 130px;
        padding: 20px;
        top: 80px;
        left: 0px;
    }
    .service-left-content ul {     
        margin-bottom: 25px;
    }
    .contact-form-box {
        padding: 30px;
    }
    .contact-form-head h4 {
        font-size: 22px;     
    }
    .testmnl-slider .swiper-slide {
        width: 100%;
    }
    .pricing-btn .nav-tabs .nav-link {
        font-size: 14px;
        padding: 13px 40px;
    }
    .pricing-btn {     
        margin-bottom: 40px;
    }
    .nesltr-right .input-field input {     
        height: 50px !important;
    }
    .footer-wrapper {
        padding: 50px 0 0px 0;     
    }
    .copyright-parent p {
        font-size: 14px;        
        padding: 10px 0;        
        margin-top: 40px;
    }
    .breadcrumb-wrapper {
        padding: 50px 0;
        margin-top: 88px;
    }
    .breadcrmb-inner h1 {
        font-size: 20px;     
    }
    .blgs-comments {
        padding-bottom: 10px;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }
    .blgs-cmts-img, .blgs-cmts-img img {
        width: 105px;
        height: 105px;
    }
    .blgs-cmts {
        padding-left: 0;
        width: 100%;
    }
    .blog-box {     
        padding: 15px;
    }
    .blogsingle-content ul {        
        flex-wrap: wrap;
        gap: 10px;     
    }
    .blgs-cmt-name {
        flex-wrap: wrap;
        gap: 5px;
    }
    .event-wrapper .blog-box {
        padding: 0;
    }
    .event-wrapper .blog-content {
        padding: 20px 10px 10px 10px;
    }
    .contact-page-wrapper .team-heading {
        padding-bottom: 30px;
    }
    .contact-page-box {     
        padding: 20px;
    }
}
@media(max-width:425px){
    .nav-menu {
        width: 250px;
    }
    .header-parent {     
        gap: 10px;
    }
    .banner-left h1 {
        font-size: 25px;
    }
    .para {
        font-size: 13px;
    }
    .btn {
        min-width: 120px;
        height: 45px;
        font-size: 14px;
    }
    .banner-play-icon span {
        width: 45px;
        height: 45px;
    }
    .banner-btns {
        gap: 20px;
        margin-top: 30px;
    }
    .banner-play-icon a {
        font-size: 13px;
        gap: 10px;
    }
    .banner-form-info {     
        margin-right: 0;
    }
    .select2-container--default .select2-selection--single {
        height: 50px !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {        
        line-height: 50px !important;
        font-size: 14px !important;
    }
    .banner-form-info label {
        font-size: 15px;     
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 22px;
    }
    .main-heading {
        font-size: 18px;
    }
    .nav-tabs .nav-link {
        font-size: 10px;
        padding: 6px 10px;
    }
    .input-field-flex {     
        gap: 10px;
    }
    .input-field-flex .input-field input {     
        height: 50px !important;
    }
    .contact-form-box {
        padding: 30px 20px;
    }
    .input-field-flex .input-field:first-child {
        max-width: 130px;
    }
    ul#myTab {
        margin: 30px 0 30px 0;
    }
    .nesltr-right .input-field input {
        height: 45px !important;
    }
    .woocommerce-checkout-payment h3, h3.checkout-heading {
        font-size: 18px;
    }
    .woo-checkout-table {     
        padding: 20px;
    }
    .course-single-flex {
        flex-direction: column;
        gap: 15px;
    }
    .course-sngle-student-list > h4 {
        font-size: 18px;
    }
    .lesson-parent {
        padding: 0 0px 15px 0px;
    }
    .lesson-parent ul li {
        padding: 10px 15px;     
    }
    .lesson-parent ul li a, .lesson-parent ul li span {        
        font-size: 14px;
    }
}
@media(max-width:375px){
    .header-search input {
        height: 50px !important;
        width: 50px;
        padding: 0 18px;
    }
    .custom-checkbox label {
        width: 16px;
        height: 16px;
        border: 1px solid #e0e7ef;     
    }
    .custom-checkbox label:after {
        width: 4px;
        height: 4px;
        top: 5px;
        left: 5px;
    }
    .custom-checkbox input[type=radio]:checked+label {     
        border: 1px solid var(--secondary-color);
    }
    .chkout-flex h4 {
        font-size: 15px;
    }
    .woo-cart-table .payment_methods img {
        max-width: 128px;
    }
    .chkout-flex {     
        padding: 15px 0;
    }
}
.ed_info_wrapper {
  position: relative;
}
.ed_login_form {
  position: absolute;
  width: 300px;
  right: 10%;
  top: 66%;
  padding: 20px;
  display: inline-block;
  border-radius: 0px;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  display: none;
  z-index: 1000;
}
.ed_login_form button {
  text-decoration: none;
  color: #ffffff;
  border: none;
  background-color: #167ac6;
  font-size: 12px;
  padding: 10px 30px;
  margin-right: 10px;
  margin-top: 20px;
  border-radius: 3px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ed_login_form a {
  text-decoration: none;
  color: #ffffff !important;
  border: none;
  background-color: #167ac6;
  font-size: 12px !important;
  padding: 10px;
  margin-right: 10px;
  text-transform: capitalize !important;
  -webkit-transition: all 0.3s !important;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s !important;
  height: 36.2px;
  margin-top: 20.6px;
}
.slider-container {
            position: relative;
            width: 90%;
            max-width: 800px;
            height: 450px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .slides {
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute; /* Superpose les images */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0; /* Cache par défaut */
            transition: opacity 0.8s ease-in-out; /* Effet de fondu */
        }

        .slide.active {
            opacity: 1; /* Affiche l'image active */
        }

        /* Flèches */
        .slider-container .btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
            transition: background 0.3s;
        }
        .slider-container .btn:hover { background: rgba(255, 255, 255, 0.5); }
        .slider-container .prev { left: 20px; }
        .slider-container .next { right: 20px; }

        /* Conteneur de la barre */
        .progress-bar-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 20;
        }

        /* La barre qui se remplit */
        .progress-bar {
            width: 0%;
            height: 100%;
            background: #ffcc00; /* Couleur de la barre */
            transition: width 10s linear; /* Animation calée sur 10s */
        }

        /* Classe pour réinitialiser la barre sans animation */
        .reset-bar {
            width: 0% !important;
            transition: none !important;
        }

        /* Classe pour lancer l'animation */
        .full-bar {
            width: 100% !important;
        }


        .btn:hover { background: rgba(255, 255, 255, 0.5); }
        .prev { left: 20px; }
        .next { right: 20px; }
/* ================= Responsive CSS End =================== */
