:root{
    --main-color: #332682;
    --second-color: #287cb8; 
	--third-color: #e6e6fa5e;
}
*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
	overflow-x: hidden;
}
body{
    font-family: 'Open Sans', sans-serif;
	/*padding-top: 80px;*/
	overflow: hidden;
}

.container{
    /*width: 1170px;*/
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

        #header {
            padding-top: 5px;
            background-color: #287cb8;/* Header background color */
        }

        #header .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px; /* Add some padding */
        }

        #header .logo {
            flex: 0 0 13% !important; /* Allow logo to take 15% of the space */
            text-align: center;
        }

        #header .text-center {
            flex: 1; /* Allow text to take the remaining space */
            text-align: center;
            color: white; /* Adjust text color */
            font-size: 30px;
        }

        #header h2 {
            margin: 5px 0; /* Small margin for headings */
            color: white; /* Heading color */
            font-size: 30px; /* Base font size */
        }

        /* Media query for small screens */
        @media (max-width: 576px) {
            #header .header-content {
                justify-content: center; /* Center items */
                padding: unset;
            }

            #header .logo {
                flex: none; /* Allow logo to take its own size */
            }
#header img{
   width: 50px !important;
}

#header .text-center {
				font-size: 15px !important;
				margin-top: 0px;
				width: 100%;
				padding-top: 0;
		        padding-bottom: 5px;
            }

#header h2 {
        font-size: 15px !important;
        width: 98%;
        margin: auto;
        margin-top: 5px;
            }
			#etus_relizane{
				display: block;
			}
        }
		
		
		

#runned_bus {
    position: absolute;
    right: -200px; /* Start off-screen to the right */
    top: 12px; /* Adjust this value to position the bus vertically */
    z-index: 9999999999999999;
    width: 100px;
}
@media(max-width: 575px){
    #runned_bus {
    top: 6px; /* Adjust this value to position the bus vertically */
    width: 45px;
}
}
#runned_bus.active{
	animation: move-bus 5s linear infinite;
}
@keyframes move-bus {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100vw - 100px));
    }
}

/*start all lines button*/
.download_button{
	display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
	position: relative;
    padding-bottom: 50px;
}
.download_button .button-down {
    --width: 220px; /* Increase width */
    --height: 60px; /* Increase height */
    --tooltip-height: 35px;
    --tooltip-width: 90px;
    --gap-between-tooltip: 18px;
    --button-color: #1163ff;
    --tooltip-color: #fff;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    background-color: green;
    color: white;
    text-align: center;
    line-height: var(--height); /* Ensures text is centered vertically */
    border-radius: 0.6em;
    position: relative;
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: bold;
}


  .button-down:hover {
    background-color: var(--second-color);
	color:white;
  }

  /* Tooltip styling */
  .download_button .button-down::before {
    content: attr(data-tooltip);
    position: absolute;
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: var(--tooltip-color);
    color: #111;
    font-size: 0.9rem;
    text-align: center;
    line-height: var(--tooltip-height);
    border-radius: 0.25em;
    bottom: calc(100% + var(--gap-between-tooltip));
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }

  .download_button .button-down:hover::before {
    opacity: 1;
    visibility: visible;
  }


/*Start Settings Box*/
.settings-box{
    position: fixed;
    left: -200px;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    width: 200px;
    min-height: 100vh;
    transition: .3s;
    border: 1px solid #eee;
}
.settings-box.open{
    left: 0;
}
.settings-box .toggle-settings{
    position: absolute;
    right: -30px;
    top: 130px;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    
}
.settings-box .toggle-settings .fa-gear{
    width: 30px;
    padding: 8px 0;
    
}
.settings-box .option-box{ 
    padding: 10px;
    text-align: center;
    background-color: #eee;
    margin: 10px;
}
.settings-box .option-box h4{ 
    margin: 0;
    color: #666;
    font-size: 14px;
}
.settings-box .option-box .colors-list{ 
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 10px 0 0;
}
.settings-box .option-box .colors-list li{ 
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    border: 3px solid #eee;
}
.settings-box .option-box .colors-list li.active{
    border-color: #fff;
}
.settings-box .option-box .colors-list li:first-child{
    background-color: #ff9800;
}
.settings-box .option-box .colors-list li:nth-child(2){
    background-color: #E91E63;
}
.settings-box .option-box .colors-list li:nth-child(3){
    background-color: #009688;
}
.settings-box .option-box .colors-list li:nth-child(4){
    background-color: #03A9F4;
}
.settings-box .option-box .colors-list li:nth-child(5){
    background-color: #4CA950;
}
.settings-box .option-box .yes,
.settings-box .option-box .no{
    width: 50px;
    background-color: var(--main-color);
    color: #eee;
    margin-top: 10px;
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    font-weight: bold;
    border-radius: 4px;
    opacity: .5;
    cursor: pointer;
}
.settings-box .option-box span.active{
    opacity: 1;
}
.settings-box .reset-options{
    background-color: #f44336;
    border: none;
    width: 178px;
    margin: 10px auto;
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}
/*End Settings Box*/

/*Start nav bullets*/
.nav-bullets{
        position: fixed;
        right: 0;
        top: 50%;
        transform: translate(0%, -50%);
        width: 40px;
        z-index: 1000;
        display: none;

}
.nav-bullets .bullet {
    width: 20px;
    height: 20px;
    border: 3px solid var(--main-color);
    margin: 20px auto;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: none;
    }
.nav-bullets .bullet .tool-tip{
    background-color: var(--main-color);
    width: 120px;
    color: #fff;
    padding: 8px 10px;
    position: absolute;
    right: 32px;
    top: -10px;
    text-align: center;
    cursor: default;
    pointer-events: none;
    display: none;
}
    .nav-bullets .bullet:hover .tool-tip{
        display: block;
    }
.nav-bullets .bullet .tool-tip:before{
    content: '';
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent transparent var(--main-color);
    height: 0;
    width: 0;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    }    
/*End nav bullets*/

/*<!--Start Landing Page-->*/
.landing_article{
	display: flex;
	position: relative;
}
.landing-page {
    height: calc(100vh - 307px);
    background-size: cover;
    position: relative;
    flex: 2;
    border: 1px solid #33268263;
    margin-right: 5px;
    transition: opacity 0.5s ease-in-out;
}
/* Add this new class */
.landing-page.fade-out {
    opacity: 0;
}
.landing_article .articles{
	flex: 1;
	position: relative;
	text-align: center;
	border: 1px solid #33268263;
	margin-left: 5px;
	height: calc(100vh - 307px);
	overflow-y: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.landing_article .articles .articles_title {
	border: 1px solid #33268263;
	position: relative;
	text-align: center;
	background-color: #f0f0fa;
}
.landing_article .articles .articles_title h2{
	position: absolute;
	text-align: center;
	color: var(--main-color);
	display: contents;
}
.landing_article .articles .articles_item{
	display: none; /* Hide all articles initially */
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    height: calc(100% / 3 - 13px);
    position: relative;
    border-bottom: 1px solid var(--third-color);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: transform 1s ease-out;
    transform: translateY(100%);
}

@media(min-width: 882px) and (max-width: 1024px){
.landing_article .articles .articles_item{
    height: calc(100% / 2 - 13px);
}
.landing_article .articles #last_articles_item .article_img img{
	height: 130px;
}
} 

@media(max-width: 881px){
.landing_article {
	display: block;
}
.landing-page{
	margin-bottom: 50px;
}
.landing_article .articles{
	width: 90%;
	margin: auto;
	height: 100%;
}
.landing_article .articles .articles_title{
	background-color: #fff;
}
.landing_article .articles .articles_title h2{
	font-size: 30px;
	font-weight: bold;
}
.landing_article .articles .articles_item .articles_text{
	padding-top: 20px;
}
.landing_article .articles .articles_item .articles_text strong{
	Font-size: 22px;
}
.landing_article .articles .articles_item .articles_text h4{
	Font-size: 22px;
}
}

.landing_article .articles .articles_item.active {
    display: flex;
    opacity: 1;
	transform: translateY(0)
}
/*
.landing_article .articles #first_articles_item {
	padding-top: 0px;
}
.landing_article .articles #last_articles_item {
	padding-bottom: 0px;
}
*/
.landing_article .articles .articles_item:nth-of-type(2){
	padding-top: 0px;
}
.landing_article .articles .articles_item:last-of-type{
	padding-bottom: 0px;
}
.landing_article .articles .articles_item .article_img{
	
}
.landing_article .articles .articles_item .article_img img{
	height: 100%;
	width: 131.84px;
}
.landing_article .articles .articles_item .articles_text{
	width: 100%;
}
.landing_article .articles .articles_item .articles_text a{
	text-decoration: none;
}
.landing_article .articles .articles_item .articles_text a h4:hover{
	cursor: pointer;
	text-decoration: underline;
}
.landing_article .articles .articles_item .articles_text h4{
	text-align: left;
    font-size: 19px;
    color: #000000d9;
    padding-left: 2px;
    line-height: 1;
    font-weight: bold;
}
.landing_article .articles .articles_item .articles_text strong{
	color: var(--second-color);
}
@media (max-width: 768px){
.landing-page{
	width: 100%;
	height: 50vh;
}
}
.landing-page .overlay{
    background-color: #333333a8;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.landing-page .container{
    position: fixed;
    z-index: 1000;
    min-width: 100%;
    background-color: #ffffffd4;
    border-bottom: 1px solid #d1cece;
}
/*end landing page*/

/*marquee-infinite-content start*/
.text-wrapper{
	display: flex;
	justify-content: flex-start;
	background-color: var(--second-color);
	overflow: hidden;
}
.information-icon {
    background-color: #3498db;
    color: white;
    padding: 10px;
    font-size: 24px;
    z-index: 2;
}
.text-wrapper h3{
	font-size: 24px;
    text-transform: uppercase;
    color: #2c3e50;
    white-space: nowrap;
    padding: 15px 20px;
    margin: 0;
    flex-shrink: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    animation: move-ltr 40000ms linear infinite;
}
.marquee-content h3:hover {
    color: white;
    transform: scale(1.05);
}
.text-wrapper h3:hover {
    color: white;
    transform: scale(1.05);
}
/*
.text-wrapper:hover h3{
	animation-play-state: pause;
}
*/
@keyframes move-ltr{
	0%{
		transform: translateX(100%);
		
	}
	100%{
		transform: translateX(-100%);
		
	}
}

/*marquee-infinite-content end*/

/*
.marquee-wrapper {
    display: flex;
    align-items: center;
    /*background-color: #ecf0f1;*//*
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.information-icon {
    background-color: #3498db;
    color: white;
    padding: 10px;
    font-size: 24px;
    z-index: 2;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #2c3e50;
    white-space: nowrap;
    padding: 15px 20px;
    margin: 0;
    flex-shrink: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.marquee-content h3:hover {
    color: #3498db;
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}*/

/* Responsive design */
@media (max-width: 768px) {
    .marquee-content h3 {
        font-size: 18px;
    }
    
    .information-icon {
        font-size: 24px;
        padding: 8px;
    }
	.text-wrapper h3{
		Font-size: 22px;
	}
}

/*start navbar*/
.navbar{
	position: relative;
    width: 100%;
    background-color: #e6e6fa2e;
    z-index: 9999;
    top: 0;
	height: 80px;
	border-bottom: 1px solid #e4e2ed9c;
}
#navbar_landing{
	background-color: #f0f0ff;
}
.header-area{
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    padding: 10px;
    height: 80px;
	width: 100%;
}
.header-area .links-container{
    width: 100%;
    text-align: right;
}
@media(max-width: 576px){
	.header-area .links-container{
    padding-right: 15px;
}
}
.header-area .logo{
    width: 300px;
    padding: 15px;
    font-weight: bold;
    margin-top: -22px;
	height: 80px;
}
.header-area .logo img{
    width: 70px;
    margin-top: -6px;
} 
@media(max-width: 767px){
.header-area .logo img{
    width: 70px;
    margin-top: -4px;
} 
}
.header-area .links{
    list-style: none;
    padding: 0;
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
}
.header-area .links li{
    display: inline-block;
    margin-left: 10px;
}
.header-area .links li a {
    color: var(--main-color);
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
    text-align: left;
    position: relative;
}

.header-area .links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.header-area .links li a:hover::after, 
.header-area .links li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-area .links li a:hover,
.header-area .links li a.active,
.header-area .links li button.active {
    color: var(--main-color);
    opacity: 0.6;
}

.header-area .toggle-menu{
    background: none;
    border: none;
    width: 40px;
    margin-top: 12px;
    cursor: pointer;
    display: none;
    position: relative;
}
.header-area .toggle-menu.menu-active:before{ /*.menu-active temne3 had lclass mel tenfid ki yengle3 hada lclass yemchi nrml*/
    content: '';
    border-color: transparent transparent var(--main-color) transparent;
    border-width: 10px;
    border-style: solid;
    top: 21px;
    position: absolute;
    margin-left: -8px;
}
.header-area .toggle-menu:focus{
    outline: none;
}
.header-area .toggle-menu span{
    display: block;
    background-color: var(--main-color);
    height: 4px;
    margin-bottom: 4px;
}

.introduction-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 95%;
    z-index: 1;
}

.introduction-text p{
    line-height: 1.6;
    font-size: 20px;

}
.introduction-text h1{
    font-size: 34px;
    margin: 0 0 12px;
}
@media(max-width: 575px){
    .introduction-text h1{
        font-size: 26px;
    }
}
.introduction-text h1 span{
    color: var(--second-color);
    text-shadow: 2px 2px 1px rgb(255 255 255 / 43%);
    -webkit-text-stroke: white;
    font-size: 45px;
}
@media(max-width: 991px) {
    .header-area .links{
        display: none;
    }
.header-area .links.open{
        display: block;
        padding: 10px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 50px;
        width: 100%;
        border-radius: 4px;
        text-align: left;
    }
.header-area .links.open li{
        display: block;
        margin: 10px;
    }
.header-area .links.open li a{
        display: inline-block;
        color: var(--main-color);
        font-weight: bold;
    }
.header-area .toggle-menu{
        display: inline-block;
    }
.introduction-text{
        margin-top: 50px;
    }
    
    
}
/*<!--End navbar-->*/

/*Start all lines*/
.all_lines{
	padding-top: 100px;
    padding-bottom: 30px;
    text-align: center
}
.all_lines h2{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.all_lines h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.all_lines .container{
}
.all_lines .container img{
	max-height: calc(100vh + 20px) !important;
    width: 100%;
    display: block;
    margin: 0 auto;
	border-radius: 25px;
}
.all_lines .container img:hover{
	-moz-transform: scale(1.01) translate(-3px, 0px);
	-webkit-transform: scale(1.01) translate(-3px, 0px);
	-o-transform: scale(1.01) translate(-3px, 0px);
	-ms-transform: scale(1.01) translate(-3px, 0px);
	transform: scale(1.01) translate(-3px, 0px);
}
/*
.section-title {
    font-weight: 700;
    font-size: 36px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.lines-image {
    max-height: calc(100vh - 111px);
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .lines-image {
    transform: scale(1.05);
}
*/
/*End all lines*/

/*Start About Us*/
.about-us{
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
}
.container #objectif{
    margin-top: -80px;
}
.container #objectif .image-box{
    margin-top: -80px;
}
.container #vision{
    margin-top: -80px;
}
.container #vision .image-box{
    margin-top: -70px;
}
.about-us .info-box{
    flex: 2;
    padding: 30px;
	background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	margin: 10px;
}
.about-us .info-box p {
    line-height: 1.8;
    color: var(--text-light);
}
.about-us .info-box h2{
    font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 10px;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
	text-align: center;
}
.about-us .info-box h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.about-us .info-box p{
    line-height: 1.8; 
    color: #767676;
    margin: 0;
}
.about-us .image-box{
	flex: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 30px;
}
.about-us .image-box img{
    margin-top: 100px;
    width: 280px;
	border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}
.about-us .image-box img:hover {
    transform: translateY(-5px);
}
.about-us #first_image_box img{
	margin-top: 30px;
}
@media(max-width: 767px){
.about-us{
    display: block;
    text-align: center;
	padding-bottom: 150px;
}
.container #vision .image-box{
    margin-top: -130px;
}
.about-us .info-box{
    padding: 0px;
	margin-bottom: 1px;
}
.about-us #bus{
	margin-bottom: -44px;
}
.about-us #vision_text{
	margin-bottom: 20px;
}
.about-us .image-box img{
    width: 250px;
}
.about-us #objectif .image-box{
    margin-top: -100px;
}
.container #vision .image-box{
	margin-top: -100px;
}
.about-us #first_image_box img{
	margin-top: 60px;
}
}
@media(max-width: 576px){
.about-us .info-box{
    padding: 10px;
	}
}

/*End About Us*/

/*Start skills*/
.skills {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #eee;
}
.skills h2{
    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
}
.skills .skill-box{
    background-color: #fff;
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
}
@media(max-width: 767px){
    .skills .skill-box{
        display: block;

    }
}
.skills .skill-box .skill-name{
    font-weight: bold;
    width: 140px;
    text-align: center;
    line-height: 30px;
}
@media(max-width: 767px){
    .skills .skill-box .skill-name{
        width: 100%;
        margin-bottom: 15px;
    }
}
.skills .skill-box .skill-progress{
    height: 30px;
    width: calc(100% - 110px);
    background-color: #fff;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.skills .skill-box .skill-progress span{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--main-color);
    transition: all .5s;
}
/*End skills*/

/*Start Galery*/
.gallery{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.gallery h2{
    font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.gallery h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.gallery .images-box{
    text-align: center;
}
.gallery .images-box img{
    width: 200px;
    padding: 3px;
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    margin: 5px;
    cursor: pointer;
}

.popup-overlay{
    position: fixed;
    background-color: #333333db;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.popup-box{
    position: fixed;
    left: 50%;
    top: 55%;
    transform: translate(-50% , -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1001;
}
.popup-box h3{
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
    color: var(--main-color);
}
.popup-box img{
    max-width: 100%;
}
.close-button{
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-family: Arial, Tahoma;
    border-radius: 50%;
}
/*End Gallery*/

/*Start features*/
.features{
    padding-top: 80px;
    padding-bottom: 80px;
}
.features h2{
    font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.features h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.features .feat-box{
	width: calc(100% / 2);
    /*width: calc(100% / 3);*/
    float: left;
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media(max-width: 991px){
    .features .feat-box{
        width: calc(100% / 2);
    }
}
@media(max-width: 575px){
    .features .feat-box{
        width: 100%;
    }
}
.features .feat-box img{
    width: 96px;
}
.features .feat-box h4{
    font-size: 22px;
    margin: 15px 0 40px;
    position: relative;
}
.features .feat-box h4:before{
    content: '';
    width: 40px;
    height: 4px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: -22px;

}
.features .feat-box p{
    width: 80%;
    margin: 0 auto;
    line-height: 1.7;
    color: #706f6f;
}

/*End features*/

/*Start Testimonials*/
.testimonials {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
.testimonials:before{
    content: '';
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--main-color);
    height: 100%;
}
.testimonials:after{
    content: '';
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #333;
    height: 100%;
    
}
.testimonials h2{
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    margin: 0 0 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}
@media(max-width: 767px){
    .testimonials h2{
        text-align: center;
    }
}
.testimonials .ts-box{
    position: relative;
    z-index: 2;
    width: calc(98% / 3);
    float: left;
    background-color: #fff;
    padding: 20px;
}
@media(max-width: 767px){
    .testimonials .ts-box{
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}
.testimonials .ts-box:not(:last-of-type){ /*not last of type hna ye9sed les deux ts-box lwala, sauf ts-box tali*/
    margin-right: 1%;
}
.testimonials .ts-box > p{ /*> p it means direct child of ts-box, ye3ni ye9sed ghi awel p men kol ts-box*/
    margin: 0 0 20px;
    line-height: 1.5;
    font-size: 18px;
    color: #707070;
    font-style: italic;
}
.testimonials .ts-box .personal-info{
    overflow: hidden;
}
@media(max-width: 991px){
    .testimonials .ts-box .personal-info{
        text-align: center;
        overflow: visible;
    }
}
.testimonials .ts-box .personal-info img{
    float: left;
    border-radius: 50%;
    margin-right: 20px;
}
@media(max-width: 991px){
    .testimonials .ts-box .personal-info img{
        float: none;
        margin-right: 0px;
    }
}
.testimonials .ts-box .personal-info h4{
    margin: 14px 0 10px;
}
@media(max-width: 767px){
    .testimonials h2{
        text-align: center;
    }
}
.testimonials .ts-box .personal-info p{
    color: #707070;
    margin: 0;
}
/*End Testimonials*/

/*Start Contact Us*/
.contact{
    min-height: 600px;
    background-image: url(../imgs/contact.png);
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
.contact .container{
    position: relative;
}
.contact .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 60%);
}
.contact h2{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.contact h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.contact form{
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}
.contact form .left{
    float: left;
    width: 49%;
}
.contact form .right{
    float: right;
    width: 49%;
}
@media(max-width: 767px){
    .contact form .left,
    .contact form .right{
        float: none;
        width: 100%;
    }
}
.contact form input:not([type="submit"]),
.contact form textarea{
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background-color: rgba(218, 218, 218, 0.9);
}
.contact form input:not([type="submit"]):focus,
.contact form textarea:focus{
    outline: 1px solid var(--main-color);
}
.contact form input{
    height: 40px;
}
.contact form textarea{
    height: 150px;
}
.contact form textarea:focus::-webkit-input-placeholder,
.contact form input:not([type="submit"]):focus::-webkit-input-placeholder{ 
    opacity: 0;
    transition: .3s;
}
.contact form textarea:focus::-ms-input-placeholder,
.contact form input:not([type="submit"]):focus::-ms-input-placeholder{ 
    opacity: 0;
    transition: .3s;
}
.contact form textarea:focus::placeholder,/*::placeholder kichghol derna class lel placeholder wntigo n3edlo 3liha*/
.contact form input:not([type="submit"]):focus::placeholder{ 
    opacity: 0;
    transition: .3s;
}
.contact form input[type="submit"]{
    padding: 10px;
    width: 100%;
    border-color: transparent;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}
/*End Contact Us*/

/*start statistiques*/
.statistics{
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
}
.statistics .container .Static-title{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.statistics .container .Static-title::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.statistics .container .col{
    margin-top: 120px;
}
.statistics .container .card {
    background-color: #fff !important;
}

.statistics .container .card:hover {
    transition: all 0.25s ease-out;
	transform: scale(1.1) translate(50px);
    animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-fwd-center {
    0% {
        transform: translateZ(0); 
		transform: translateX(0); 
		transform: translateY(0); 
    }
    100% {
        transform: translateZ(160px); 
		transform: translateX(20px); 
		transform: translateY(20px); 
    }
}

.statistics .container .card .card-title {
    font-weight: bold;
    font-size: 25px;
}
.statistics .container .card .card-text {
    margin-top: 30px;
    font-size: 35px;
    color: var(--second-color);
    font-weight: bold;
}
.statistics .container .card .card-text span {
    color: #000000b3;
    display: block;
    font-size: 25px;
    font-weight: unset;
    margin-top: -10px;
}
/*end statistiques*/
/*start word*/
.word .container{
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
}
.word .container .manager-pic img{
    max-width: 160px;
    border: 5px solid var(--second-color);
    border-radius: 50%;
    margin: 0 0 15px;
}
.word .container .button {
    --color: #fff;
    padding: 0.2em 1.3em;
    background-color: var(--main-color) !important;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-size: 15px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
    width: 185px;
    height: 55px;
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.word .container .button::before, .button::after {
 content: '';
 display: block;
 width: 50px;
 height: 50px;
 transform: translate(-50%, -50%);
 position: absolute;
 border-radius: 50%;
 z-index: -1;
 background-color: var(--color);
 transition: 1s ease;
}

.word .container .button::before {
 top: -1em;
 left: -1em;
}

.word .container .button::after {
 left: calc(100% + 1em);
 top: calc(100% + 1em);
}

.word .container .button:hover::before, .button:hover::after {
 height: 410px;
 width: 410px;
 background-color: var(--second-color) !important;
}

.word .container .button:hover {
 color: #fff !important;
 background-color: var(--second-color) !important;
}

.word .container .button:active {
 filter: #fff !important;
}
.word .container .word-post strong{
  color: #4e4e4e;
}
.word .container .word-text{
	display: none;
}
.word .container .word-text.active{
	display: block;
}
.word .container .word-text p{
  text-align: left;
  color: #1c1c1c;
  margin-top: 5px;
}

/*end word*/

/*Start footer*/
.footer{
    background-color: #333;
    color: #eee;
    padding: 20px;
    text-align: center;
}
/*End footer*/
.dropbtn {
  color: var(--main-color);
  transition: .3s;
  cursor: pointer;
  border: none;
  font-weight: bold;
  background-color: transparent;
  transition: .3s;
  margin-left: -5px;
}
.dropbtn:hover{
    color: #9e93eb;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.navbar .dropdown button{
	position: relative;
}
.show-after::after {
    opacity: 0.6;
    content: '';
    width: 135px;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    margin-top: 0px;
    margin-left: 0px;
	display: block;
    /* Any additional styling for your pseudo-element */
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown:hover .dropdown-content {
  display: block;
}


  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: .3s;
  }
  .dropdown-content a:hover{
    background-color: #c7c2c2;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
/* Start Design */
.design {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    height: 641px;
    position: absolute;
    background-image: url(../imgs/design-features.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
  }
.design::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
  }
.design .image,
.design .text {
    position: relative;
    z-index: 2;
    flex: 1;
  }
.design .image {
    text-align: center;
  }
@media (max-width: 767px) {
.design .image {
      display: none;
}
}
.design .image img {
    position: relative;
    bottom: -150px;
}
.design .text {
    color: white;
    padding: 50px;
    background-color: var(--transparent-color);
}
.design .text h2 {
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.design .text ul li {
    padding: 15px 0;
}
.design .text ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f108";
    font-weight: 900;
    margin-right: 20px;
    position: relative;
    top: 1px;
}
/* From Uiverse.io by Rodrypaladin */ 
.card {
    width: 210px;
    height: 400px;
    background-color: #08152c !important;
    border-radius: 35px;
    border: 2px solid rgb(40, 40, 40);
    padding: 7px;
    position: relative;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
    display: inline-flex !important;
    margin-top: 100px !important;
    margin-right: -180px !important;
    border-radius: 1rem;
}
  
.card-int {
    background-image: linear-gradient(to right bottom, #ff0000, #ff0045, #ff0078, #ea00aa, #b81cd7, #8a3ad6, #5746cf, #004ac2, #003d94, #002e66, #001d3a, #020812);
    background-size: 200% 200%;
    background-position: 0% 0%;
    height: 100%;
    border-radius: 25px;
    transition: all 0.6s ease-out;
    overflow: hidden;
}
  
.card:hover .card-int {
    background-position: 100% 100%;
  }
  
.top {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 35%;
    height: 18px;
    background-color: black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
  
.speaker {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 40%;
    height: 2px;
    border-radius: 2px;
    background-color: rgb(20, 20, 20);
}
  
.camera {
    position: absolute;
    top: 6px;
    right: 84%;
    transform: translate(50%, 0%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.048);
}
  
.int {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: rgba(0, 0, 255, 0.212);
}
  
.btn1, .btn2, .btn3, .btn4 {
    position: absolute;
    width: 2px;
}
  
.btn1, .btn2, .btn3 {
    height: 45px;
    top: 30%;
    right: -4px;
    background-image: linear-gradient(to right, #111111, #222222, #333333, #464646, #595959);
}
  
.btn2, .btn3 {
    transform: scale(-1);
    left: -4px;
}
  
.btn2, .btn3 {
    transform: scale(-1);
    height: 30px;
}
  
.btn2 {
    top: 26%
}
  
.btn3 {
    top: 36%
}
  
.hello {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    height: 100%;
    transition: 0.5s ease-in-out;
}
  
.hidden {
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in;
}
  
.card:hover .hidden {
    opacity: 1;
}
  
.card:hover .hello {
    transform: translateY(-20px);
}
  
.download-button{
    position: absolute;
    left: 52%;
    top: 80%;
}
.button {
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #17795E;
    background-color: var(--main-color) !important;
    overflow: hidden;
}
  
.button, .button__icon, .button__text {
    transition: all 0.3s;
}
  
.button .button__text {
    transform: translateX(22px);
    color: #fff;
    font-weight: 600;
}
  
.button .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: #17795E;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.button .svg {
    width: 20px;
    fill: #fff;
}
  
.button:hover {
    background: #17795E;
}
  
.button:hover .button__text {
    color: transparent;
}
  
.button:hover .button__icon {
    width: 148px;
    transform: translateX(0);
}
  
.button:active .button__icon {
    background-color: #146c54;
}
  
.button:active {
    border: 1px solid #146c54;
} 
  /* End Design */

  /* Start Landing */
.landing {
    position: relative;
    margin-top: -550px;
  }
  .landing::before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: -1;
    transform: skewY(-6deg);
    transform-origin: top left;
  }
  .landing .container {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-bottom: 120px;
  }
  .landing .text {
    flex: 1;
  }

  /*start search*/
  /* From Uiverse.io by LightAndy1 */ 
.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 190px;
  }
  
  .input {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    height: 45px;
    padding-left: 2.5rem;
    box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000;
    border: 0;
    border-radius: 12px;
    background-color: var(--main-color) !important;
    outline: none;
    color: #bdbecb;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    z-index: 0;
  }
  
  .input::placeholder {
    color: #bdbecb;
  }
  
  .input:hover {
    box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
  }
  
  .input:active {
    transform: scale(0.95);
  }
  
  .input:focus {
    box-shadow: 0 0 0 2.5px #2f303d;
  }
  
  .search-icon {
    position: absolute;
    left: 1rem;
    fill: #bdbecb;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    z-index: 1;
  }
  
  /*end search*/
  @media (max-width: 991px) {
    .landing .text {
      text-align: center;
    }
  }
  .landing .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
  }
  @media (max-width: 767px) {
    .landing .text h1 {
      font-size: 28px;
    }
  }
  .landing .text p {
    font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
  }
  @media (max-width: 991px) {
    .landing .text p {
      margin: 10px auto;
    }
  }
  @media (max-width: 767px) {
    .landing .text p {
      font-size: 18px;
    }
  }
  .landing .image img {
    position: relative;
    width: 600px;
    animation: up-and-down 5s linear infinite;
  }
  @media (max-width: 991px) {
    .landing .image {
      display: none;
    }
  }
  .landing .go-down {
    color: var(--main-color);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
  }
  .landing .go-down:hover {
    color: var(--main-color-alt);
  }
  .landing .go-down i {
    animation: bouncing 1.5s infinite;
  }
  /* End Landing */

/*start info*/
.info{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.info h2{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.info h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.info video{
    width: calc(100% / 3);
    float: left;
    text-align: center;
    margin-bottom: 40px;
}
.info iframe{
	width: 330px;
    margin: 10px;
    margin-bottom: -120px;
}
/*end info*/

/*start lines*/
/*horaire*/
.horaire{
    padding-top: 50px;
	padding-bottom: 50px;
}
.horaire .container #horaire_title{
    font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.horaire .container #horaire_title::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.chemin{
	padding-bottom: 20px;
}
.chemin #chemin_title{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
	text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.chemin #chemin_title::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.horaire tr th{
	color: var(--main-color);
    font-size: 18px;
}
.horaire tr td{
	color: var(--second-color);
    font-weight: bold;
    font-size: 18px
}
/*horaire*/

.line{
    padding-top: 0px;
    padding-bottom: 100px;
    text-align: center;
	position: relative;
}
.line .line_overlay{
	height: 155px;
    position: relative;
    display: block;
	background: rgb(51,38,130);
    background: linear-gradient(90deg, rgba(51, 38, 130, 1) 0%, rgba(40, 124, 184, 1) 50%, rgba(51, 38, 130, 1) 100%);
}
.line .line_overlay div{
	display: block;
    height: 140px;
    color: #fff;
}
.line .line_overlay div h2{
	font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    height: 70px;
	padding-top: 10px;
}
.line .line_overlay div h2 span{
	border: 1px solid var(--main-color);
    padding: 5px;
    color: var(--second-color);
    background-color: #fff;
}
.line #line_container_time{
	padding-top: 30px;
    position: relative;
}
.line .line_time{
	height: 150px;
    width: 700px;
    border: 5px solid var(--main-color);
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}
.line .line_time p{
	margin-bottom: 12px;
    color: var(--main-color);
    font-size: 17px;
}
/* From Uiverse.io by SteveBloX */ 
.line #line_content{
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
}
.line .line_info{
  position: relative;
  margin-right: 60px;
  margin-bottom: 20px;
  text-align: center;
}
.line .line_info:after{
  position: absolute;
  content: '';
  height: 5px;
  width: 40px;
  background-color: var(--second-color);
  margin-left: 85px;
  margin-top: -30px;
}
.line .line_info:last-child:after{
  height: 0px;
  width: 0px;
}
.line .button {
  position: relative;
  /* padding: 12px 24px; */
  border: none;
  color: #fff;
  /*background-color: #332682;*/
  cursor: text;
  transition: all 0.2s ease;
  font-weight: bold;
  padding: 30px 10px 30px 10px;
  justify-content: center;
  align-items: center;
}

.line .button:active {
  transform: scale(0.95);
}

.line .button:before,
.line .button:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.line .button:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #287cb8 20%, transparent 30%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #287cb8 15%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: orangeTopBubbles 0.6s ease;
}

@keyframes orangeTopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.line .button:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #287cb8 15%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%),
    radial-gradient(circle, #287cb8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: orangeBottomBubbles 0.6s ease;
}

@keyframes orangeBottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.line .graph{
	padding-top: 10px;
	display: grid;
    grid-template-columns: 30% 70%;
}
.line .graph .map_exp{
	height: 100%;
    top: calc(50% - 10px);
    position: relative;
    transform: translateY(-50%);
    flex-direction: column;
    display: flex;
    justify-content: center;
	position: relative;
}
.line .graph .map_exp .bus_line {
    display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.line .graph .map_exp .bus_line .line_bar{
	max-width: 50px;
    height: 5px;
    background-color: #1267ff;
    flex: 1;
    margin-bottom: 15px;
    border-radius: 15px;
}

.line .graph .map_exp .bus_line p {
    font-weight: bold;
    color: #000000cc;
    flex: 1.3;
    margin-right: 100px;
}
.line .graph .map_exp .bus_stops{
	display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.line .graph .map_exp .bus_stops p{
    font-weight: bold;
    color: #000000cc;
    flex: 1.3;
    margin-right: 100px;
}
.line .graph .map_exp .sites_lines{
	display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}
.line .graph .map_exp .sites_lines .line_bar{
	max-width: 50px;
    height: 5px;
    background-color: #ffd600;
    flex: 1;
    margin-bottom: 15px;
    border-radius: 15px;
}
.line .graph .map_exp .sites_lines p{
	font-weight: bold;
    color: #000000cc;
    flex: 1.3;
}
.line .graph .map_exp .sites_stops{
	display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}
.line .graph .map_exp .bus_stops i, 
.line .graph .map_exp .sites_stops i {
    color: #1267ff;
    flex-shrink: 0;
    margin-right: 15px;
    font-size: 25px;
    margin-bottom: 15px;
}

.line .graph .map_exp .sites_stops i {
  color: #ffd600;
}
.line .graph .map_exp .sites_stops p{
	font-weight: bold;
    color: #000000cc;
    flex: 1.3;
    margin-right: 70px;
}

.line .graph p iframe{
	border: 5px solid var(--main-color);
}

@media(max-width: 991px){
	.line #map_container{
		margin: auto;
	}
	.line .graph{
		display: flex;
        flex-direction: column;
		padding-top: 20px
	}
	.line .graph p {
        order: 1 !important; /* Ensures .line p appears first */
    }
	.line .graph .map_exp{
		order: 2 !important;
		left: 65%;
        transform: translateX(-50%);
        padding-bottom: 10px;
		left: calc(50% - 100px);
		transform: none;
	}
	.line .graph .map_exp .bus_line p{
		margin-right: 500px;
	}
	.line .graph .map_exp .bus_stops p{
		margin-right: 500px;
	}
	.line .graph .map_exp .sites_lines p{
		margin-right: 400px;
	}
	.line .graph .map_exp .sites_stops p{
		margin-right: 470px;
	}
}
@media (max-width: 767px) {
	.horaire tr th{
		font-size: 17px;
        font-weight: bold;
	}
	.horaire tr td{
		font-size: 17px;
        font-weight: unset;
	}
	.line .graph p{
	    margin: auto;
        width: 100%;
        display: flex;
        justify-content: center;
	}
	.line .graph p iframe{
		height: 400px !important;
	}
	.line .graph .map_exp{
		left: 50%;
		transform: translateX(-50%);
		padding-top: 20px;
	}
	.line .graph .map_exp .bus_line{
		 padding: 5px 10px;
		 width: calc(100vh - 200px);
	}
	.line .graph .map_exp .bus_line .line_bar,
	.line .graph .map_exp .sites_lines .line_bar{
		margin-bottom: 0;
	}
	.line .graph .map_exp .bus_stops i,
	.line .graph .map_exp .sites_stops i{
		margin-bottom: 0;
	}
	.line .graph .map_exp .bus_line p,
	.line .graph .map_exp .bus_stops p{
		margin-right: 200px;
	}
	.line .graph .map_exp .sites_lines p{
		margin-right: 95px;
	}
	.line .graph .map_exp .sites_stops p{
		margin-right: 160px;
	}
	.line .graph .map_exp .bus_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_lines{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}

}

@media(max-width: 575px) {
	.line .line_overlay div h2{
		font-size: 19px;
		height: 50px;
	}
	.line .line_overlay {
		height: 120px;
	}
	.horaire tr th{
		Font-size: 13px;
	}
	.horaire tr td{
		font-weight: unset;
        font-size: 13px;
	}
	.line .graph p{
		padding-bottom: 20px;
	}
	.line .graph p iframe{
		height: 400px !important;
	}
	.line .graph .map_exp{
		left: 50%;
        transform: translateX(-50%);
        padding-top: 0px;
        padding-left: 10px;
        padding-right: 10px;
	}

	.price h2{
		Font-size: 30px !important;
	}
	.price tr th,
	.price tr td{
		font-size: 15px !important;
        font-weight: bold !important;
	}
	.price .container .warning i{
		font-size: 45px !important;
	}
	.price .container .warning p span{
		font-size: 15px !important;
	}
	.price .container .folder i{
		display: none;
	}
	.price h2{
		font-size: 30px !important;
		margin: 0 0 30px !important;
	}
	.line .graph .map_exp{
		left: 50%;
		transform: translateX(-50%);
		padding-top: 20px;
	}
	.line .graph .map_exp .bus_line{
		 padding: 5px 10px;
		 width: calc(100vh - 200px);
	}
	.line .graph .map_exp .bus_line .line_bar,
	.line .graph .map_exp .sites_lines .line_bar{
		margin-bottom: 15px;
	}
	.line .graph .map_exp .bus_stops i,
	.line .graph .map_exp .sites_stops i{
		margin-bottom: 15px;
	}
	.line .graph .map_exp .bus_line p,
	.line .graph .map_exp .bus_stops p{
		margin-right: 200px;
	}
	.line .graph .map_exp .sites_lines p{
		margin-right: 95px;
	}
	.line .graph .map_exp .sites_stops p{
		margin-right: 160px;
	}
	.line .graph .map_exp .bus_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_lines{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.horaire #cont_tab{
	padding-left: 0;
    padding-right: 0;
	}
	.table>:not(caption)>*>*{
		padding: .2rem .2rem !important;
	}
}
@media(max-width: 450px){
		.line .graph .map_exp{
		left: 50%;
		transform: translateX(-50%);
		padding-top: 20px;
	}
	.line .graph .map_exp .bus_line{
		 padding: 5px 10px;
		 width: calc(100vh - 200px);
	}
	.line .graph .map_exp .bus_line .line_bar,
	.line .graph .map_exp .sites_lines .line_bar{
		margin-bottom: 15px;
	}
	.line .graph .map_exp .bus_stops i,
	.line .graph .map_exp .sites_stops i{
		margin-bottom: 15px;
	}
	.line .graph .map_exp .bus_line p,
	.line .graph .map_exp .bus_stops p{
		margin-right: 500px;
	}
	.line .graph .map_exp .sites_lines p{
		margin-right: 395px;
	}
	.line .graph .map_exp .sites_stops p{
		margin-right: 460px;
	}
	.line .graph .map_exp .bus_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_lines{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
	.line .graph .map_exp .sites_stops{
		padding: 5px 10px;
		width: calc(100vh - 200px);
	}
}
/*
.line #map_container{
	margin-right: 50px;
}
*/
/*end lines*/
@media (max-width: 767px) {
.line .line_overlay h2{
    width: 95%;
}
.line .line_time{
	width: 350px;
}
.line .graph p iframe{
	width: 95%;
}
}
@media(max-width: 575px){
    .line .line_info{
		position: relative;
        width: 100%;
    }
	.line .button{
		margin: auto;
        margin-bottom: 25px;
        transform: translateX(25%);
	}
	.line .line_info:after{
		height: 40px;
        width: 5px;
		margin-left: 35px;
        margin-top: -23px;
	}
}
/*start price*/
.price{
	position; relative;
}
.price .container{
padding-top: 50px;
padding-bottom: 100px;
}
.price h2{
	    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.price h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
.price tr th{
	color: var(--main-color);
	font-size: 18px;
}
.price tr td{
	color: var(--second-color);
	font-weight: bold;
	font-size: 18px;
}
.price .container .warning{
	padding-top: 20px;
    position: relative;
    display: flex;
    font-size: 18px;
    align-items: center;
}
.price .container .warning i{
	margin-right: 10px;
    color: #dc3545;
    font-size: 54px;
}
.price .container .warning p{
	margin: auto;
    margin-left: 0;
}
.price .container .warning p span{
	background-color: #ffc107;
	font-size: 17px;
	font-weight: bold;
}
.price .container .folder{
	position: relative;
    padding-top: 50px;
}
.price .container .folder .title{
	display: flex;
    text-align: center;
    justify-content: center;
}
.price .container .folder i{
	color: var(--main-color);
    font-size: 30px;
    margin-right: 10px;
    height: 33px;
    padding-top: 3px;
}
.price .container .folder ul{
	font-size: 18px;
    font-weight: 500;
	color: #494545;
	padding-bottom: 5px;
}
/*end price*/

/*start articles*/
/*
.article_detail{
	padding-top: 50px;
	padding-bottom: 50px;
    position: relative;
}
.article_detail h2{
	font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin: 0 0 60px;
    color: var(--main-color);
}
.article_detail .container{
	display: flex;
    justify-content: center;
}
.article_detail .container .text_article{
	flex: 1;
    margin-right: 5px;
}
.article_detail .container .text_article h3{
	font-size: 20px;
    padding-bottom: 30px;
    color: var(--second-color);
}
.article_detail .container .text_article p{
	width: 100%;
}
.article_detail .container .image_article{
	flex: 1;
    margin-left: 5px;
	height: 100%;
}
.article_detail .container .image_article a{
	cursor: pointer;
}
.article_detail .container .image_article img{
	width: 100%;
    padding-top: 70px;
}
*/

  /*start articles*/
 .article_detail {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
  }
 .article_detail h2{
	font-weight: bold;
    font-size: 28px;
    color: var(--main-color);
    margin: 0 0 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.article_detail h2::after{
	content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 15px auto 0;
}
  .article_detail .container {
    overflow: hidden; /* Clearfix */
  }
  .article_detail .container .text_article h3 {
    font-size: 20px;
    padding-bottom: 30px;
    color: var(--second-color);
  }
  .article_detail .container .text_article p {
    width: 100%;
  }
  .article_detail .container .image_article {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 40%;
    max-width: 400px;
  }
  .article_detail .container .image_article img {
    width: 100%;
    height: auto;
    display: block;
	padding-top: 65px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 575px) {
    .article_detail .container {
      display: flex;
      flex-direction: column;
    }
    .article_detail .container .text_article {
      order: 1;
    }
    .article_detail .container .image_article {
      order: 2;
      float: none;
      margin-left: 0;
      width: 100%;
      max-width: none;
      margin-top: 20px;
    }
  
  }
  /*end articles*/
/*end articles*/

@media (max-width: 700px) {
	body{
		Font-size: medium;
	}

    header .row img {
        width: 85px !important; /* Adjust the logo size for small screens */
    }

    header .text-center{
		Font-size: 28px;
	}

	
}

@media (max-width: 575px) {
	body{
		Font-size: medium;
	}

    header h2 {
        font-size: 22px;
    }
	header div:first-of-type h2 {
        margin-bottom: -5px;
        padding-bottom: 0px;
    }
	.landing_article .landing-page{
		height: 200px;
	}
	
	.text-wrapper h3{
		font-size: 18px;
		color: white;
		font-weight: 600;
	}
	.header-area .logo img{
		width: 50px;
        margin-top: 7px;
	}
	.landing_article .articles{
		margin-top: -5px;
	}
	
}
.messages{
	display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    box-sizing: border-box;
    top: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-weight: bold !important;
}
.messages .success{
    color: green;
}
.messages .error{
    color: red;
}
@media(max-width: 576px){/*Small devices => landscape phones // 576 <= x <= 767*/
    .messages{
		top: 180px;
	}
}
@media(min-width: 577px){/*Small devices => landscape phones // 576 <= x <= 767*/
    .messages{
		top: 350px;
	}
}
@media(min-width: 768px){/*Medium devices => Tablets // 768 <= x <= 991*/
    .messages{
		top: 290px;
	}
}
@media(min-width: 710px) and (max-width: 767px){
    .messages{
		top: 310px;
	}
}
@media(min-width: 992px){/*Desktops // 992 <= x <= 1199*/
    .messages{
		top: 280px;
	}
}
@media(min-width: 1200px){/*Large screens // x >= 1200*/
    .messages{
		top: 250px;
	}
}

@media (max-width: 380px){
			.line .graph .map_exp .bus_line{
				width: calc(100vh - 0px);
			}
			.line .graph .map_exp .bus_stops{
				padding: 5px 10px;
				width: 100%;
				box-sizing: border-box;
				overflow-x: hidden;
			}
			.line .graph .map_exp .bus_stops p{
				        margin-right: 50px;
			}
			    .line .graph .map_exp .bus_line,
				.line .graph .map_exp .sites_lines,
				.line .graph .map_exp .sites_lines p,
				.line .graph .map_exp .sites_stops p,
				.line .graph .map_exp .sites_stops{
					width: 100%
				}
				.line .graph .map_exp .sites_lines p{
					margin-right: 30px;
				}
				.line .graph .map_exp .sites_stops p{
					margin-right: 10px;
				}
				.line .graph .map_exp .bus_line p,
				.line .graph .map_exp .bus_stops p{
					margin-right: 50px;
				}
		}

/*Start grid system cvd ngesmo les éléments  3la hsab al chacha en utilisant Media Queries*/
@media(min-width: 576px){/*Small devices => landscape phones // 576 <= x <= 767*/
    .container{
        max-width: 540px;
    }
}
@media(min-width: 768px){/*Medium devices => Tablets // 768 <= x <= 991*/
    .container{
        max-width: 720px;
    }
}
@media(min-width: 992px){/*Desktops // 992 <= x <= 1199*/
    .container{
        max-width: 960px;
    }
}
@media(min-width: 1200px){/*Large screens // x >= 1200*/
    .container{
        max-width: 1140px;
    }
}
/*End grid system*/