
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
/*Scroll styling */
html{

  scroll-behavior: smooth;
}
::selection{
  color:white;
  background-color:#0a87b1;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: #eaf7ec ;
}
::-webkit-scrollbar-thumb{
  background-color:#0a87b1;
  border-radius: 10px;
}
:root{
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/

    /*========== Font and typography ..bash 3rftina mahankhdmoush behom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight .. bash 3rfti hadu maghaykhdmoush lina .. lah reby shedani lshi dev web==========*/
  --font-medium: 500;
  --font-semi-bold: 700;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.50rem !important;
    --small-font-size: 1.50rem !important;
    --smaller-font-size: .813rem !important;
  }
}
body{
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    height: 100% !important;
    overflow-x: hidden ;
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
   background-color: #efefef !important;

}

/*__________________________________________________________________________________________________________________________*/

/* Style tab links */
.tablink {
  background-color: #8abd91;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.4em;
  position: relative;
  width: 25%;
  text-decoration: none;
  font-weight: 500 !important;
  font-family:"Poppins", sans-serif !important;
}


 .tablink:hover {
  background-color: #0a87b1;
  text-decoration: none;
  color: #eee;
}
.on{
  background-color: #0a87b1;
  text-decoration: none;
  color: #eee;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/

/*================================= nav .. header or whatever it is===================================================*/

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.containerH {

  margin-inline: 1.5rem;

}

/*=============== HEADER ===============*/
.header {
  margin-top: 0 !important;
  position: absolute ;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: white;
  z-index: 10;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);

}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-right: 1em;

  transition: color 0.3s;
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: #8abd91;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: #efefef;
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100% !important;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;

  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
  .nav__list{
  width: 100% !important;

  }

}

.nav__link {
  color: #8abd91;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  font-weight: 500 !important;
  font-size: 1.25rem;
  font-family:"Poppins", sans-serif !important;
}
.nav__link:hover {

  border-bottom: 4px solid #8abd91 !important ;
    color: #8abd91 !important ;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__button:hover {
  border-bottom: 4px solid #8abd91;
    color:#8abd91;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color:white !important;
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: #efefef;
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: #0a87b1;
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color:#0a87b1;
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: #6bd7fb;
}
.dropdown__linke {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color:#0a87b1;
  transition: color 0.3s;
}
.dropdown__linke:hover {
  color: #6bd7fb;
}
.dropdown__linkes {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color:#0a87b1;
  transition: color 0.3s;
}
.dropdown__linkes:hover {
  color: #6bd7fb;
}
/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
    border-bottom: 4px solid #8abd91 !important ;
    color: #8abd91 !important;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;

  }

  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: #efefef;
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: #efefef;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: #0a87b1;


  }
  .dropdown__linke {
    font-size: var(--small-font-size);
  }
  .dropdown__linke:hover {
    color: #0a87b1;


  }
  .dropdown__linkes {
    font-size: var(--small-font-size);
  }
  .dropdown__linkes:hover {
    color: #0a87b1;


  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .containerH {
    margin-inline: auto;
    margin-left: 0;
    margin-right: 0;

  }

}


/* ######################################################## FOOTER ############################################### */

.footer  {
  background-color:#8abd91;
  padding: 20px;
  text-align: center;
  color: white;
  font-size: medium;
  bottom: 0 !important;
  height: 10% !important;

}


.footer p {
  margin: 0;

}
.footer a {
  color: white;
  font-size: 20px;
  padding: 3px;
}
.footer a:hover {
  color:#0a87b1;
}



/*       ##################################### HOME PAGE STYLING ##################################*/
.sign{
	float: right;
	line-height: 60px;
	margin-right: 40px;
}
.sign a{
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.act{
	border: 2px solid #fff;
	border-radius: 50px;
	padding: 6px 15px;
}



/* slider & dots styling */
.slider{
	position: relative;
	width: 100%;
	margin-top: 0px;
  padding-top: 0px;
}
.myslide{
	height: 655px;
	display: none;
	overflow: hidden ;
}
/*_______for large screens__________*/
@media only screen and (min-width: 2000px) {
  .myslide{
	height: 1000px;
	display: none;

}
}
.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;

}
.prev:hover, .next:hover{
	color: white;
}
.next{
	right: 0;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 1px solid #fff;

	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}


/* javascript */
.active, .dot:hover{
	border-color: white;
  background-color:#8abd91;
  width: 13px;
	height: 13px;
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 8s;
  animation-name: fade;
  animation-duration: 8s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* text styling and animating */
.txt{
	position: absolute;
	color: #fff;
	letter-spacing: 2px;
	line-height: 35px;
	top: 40%;
	left: 15%;
	-webkit-animation-name: posi;
  -webkit-animation-duration: 4s;
  	animation-name: posi;
  	animation-duration: 4s;
	  z-index: 1;
    font-family: "Poppins";
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}


@keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}

.txt h1{
	color: white;
	font-size: 80px;
	margin-bottom: 20px;

  text-transform: uppercase;
}
.txt p{
	font-weight: bold;
	font-size: 20px;
}


/* img animating*/
#img{
	transform: scale(1.5, 1.5);
	-webkit-animation-name: zoomin;
  -webkit-animation-duration: 40s;
  animation-name: zoomin;
  animation-duration: 40s;
  opacity: 2;
}
@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}




/* tablet */
@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 2px;
		line-height: 25px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 4s;
		animation-name: posi2;
		animation-duration: 4s;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 40px;
	}
	.txt p{
		font-size: 13px;
	}

}
/* phone */


@media screen and (max-width: 520px){
	.txt h1{
		font-size: 30px;
		margin-bottom: 20px;
	}
	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
    text-decoration: none;
	}
}
/*_____________________________________________About_____________________________________________________*/

.about-text p{
    padding-top: 5%;
    font-size: medium;

    text-align: justify;
    text-justify: inter-word;
  }
  .about{
    padding-top: 3%;
    padding-bottom: 5%;

  }
  @media only screen and (min-width:1200px){
    .img-fluid{
      height:400px;
      width: auto;
    }

.about-text p{
    padding-top: 7%;
    font-size: large;
  }
  .about{
    padding-top: 5%;
    padding-bottom: 6%;

  }
  }
  @media only screen and (min-width:1440px){


.about-text p{
    padding-top: 8%;
    font-size: 20px;
  }
  .about{
    padding-top: 9%;
    padding-bottom: 7%;

  }
  }
  @media only screen and (min-width:2000px){

.about-text p{
    padding-top: 8%;
    font-size: 25px;
  }
  .about{
    padding-top: 9%;
    padding-bottom: 7%;

  }
  }
/* ______________________________________strength keys__________________________________________________________ */
#punch{
  max-height: 150px;

  padding-left: 45%;
  padding-right: 45%;
  padding-top: 20px;
  padding-bottom: 20px;
}


#pf{
  color: #0a87b1;
  font-family: 'Playfair Display','Times New Roman', Times, serif;
}



.A-cnt{
  margin: 5% 0 5% 0;
  right: 0;
  left: 0;
}
.strengthK{
  margin: 0 0 0 0;
  right: 0;
  left: 0;
}
.strengthK h1
{
  font-weight: bold;
  color:#98ffb5;
  text-align: center;
  font-size: 1.5em;
  padding-bottom: 10px;
  border-bottom: 2px solid #bbb;

}
.strengthK p {
  font-size: 1.5em;
  color: white;

  text-align: center;
  padding-top: 15px;
}
.molecule {
  margin-left: 3%;
  max-width: 90%;
  max-height: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 18px;
  background: #f9f9f9; /* Light gray background for contrast */
  box-shadow: 0 4px 8px rgb(0, 78, 102);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.molecule h1 {
  font-size: 25px;
  font-weight: bold;
  color: #333; /* Neutral text color */
  line-height: 1.4;
  margin-bottom: 10px;
}
.containerH {
  margin-inline: 1.5rem;
}
#npf{
  margin-top: 8%;
}
#PF_Row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  margin-bottom:-10%;

  align-items: stretch; 
  margin-left: -6%;/* Ensures equal height for all items */
}
@media screen and (max-width: 1000px) {
  #PF_Row {
      display: flex;
      flex-direction: column; /* Stack items vertically */
      gap: 0.5rem; /* Maintain spacing between rows */
      justify-content: center;
      text-align: center;
      align-items: stretch; /* Ensure all items have the same height */
      margin-left: 0; /* Remove the negative margin */
  }

  .key-item {
      flex: 1 1 100%; /* Full width for each item */
      height: 200px; /* Set a fixed height for equal height items */
      width: 100%; /* Ensure equal width */

  }
}
.key-item {
  flex: 1 1 30%; /* Equal width columns */
  text-align: center;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;

  height: 400px; /* Fixed height for all items */
}

/* Media Query for Screens 1000px or Smaller */
@media screen and (max-width: 1000px) {
  #PF_Row {
      flex-direction: column; /* Stack items vertically */
      gap: 1rem;
  }

  .key-item {
      flex: 1 1 100%; /* Each item takes full width */
      height: 200px; /* Maintain same height in stacked layout */
  }
}
/* Media Query for One Element Per Row */
@media screen and (max-width: 768px) {
  #PF_Row {
      flex-direction: column; /* Stack items vertically */
      gap: 1rem; /* Maintain spacing between rows */
  }

  .key-item {
      flex: 1 1 100%; /* Each item takes full width */
      text-align: center;
  }
}

.strengthK {


  border-radius: 12px; /* Rounded corners for a modern look */

  font-family: 'Arial', sans-serif; /* Modern font */
} 
.molecule p {
  font-size: 18px;
  color: #04007e; /* Slightly lighter text */
  line-height: 1.6;
}
.strengthK .col-md-4 {
  text-align: center; /* Center align for consistency */
  margin-bottom: 10px; /* Add space between rows */
}

#s-key1 h1, #s-key2 h1, #s-key3 h1 {
  color: #28a745; /* Distinct color for headings in each section */
}
.molecule:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}
@media only screen and (max-width: 768px){
  #PF_Row{
    justify-content: center;
  }

#bar{

  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 70% !important;
  height: auto;
}

}
@media only screen and (max-width: 994px){
  #PF_Row{
    justify-content: center;
  }


}
@media only screen and (min-width: 995px){
  #PF_Row{
    justify-content:center;
  }

  #s-key2{
    align-items: center;
    margin-left: 7%;
    margin-right: 7%;
    vertical-align: middle;
  }
}
@media screen and (min-width: 1440px){
 #PF_Row{
    justify-content: space-between;
  }

}
/*largy large screens here */
@media screen and (min-width: 2560px) {
  #PF_Row{
    justify-content:center;
  }
  #punch{
  max-height: 150px;
  padding-left: 35%;
  padding-right: 35%;
  padding-top: 40px;
  padding-bottom: 30px;
}

#pf{
  color: #0a87b1;
  font-weight: 200;
  font-size: 4em;
  margin: 1%;
}


#bar{
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: 90%;
  height: auto;
}
.strengthK h1
{
  font-weight: bold;
  color:#98ffb5;
  text-align: center;
  font-size: 35px;
}
.strengthK p {
  font-size: 25px;
  color: white;
  justify-content: center;
  padding-top: 30px;
}
}

/*-------------------------------------------Nos Cycles--------------------------------------------------------*/
.cnt-C{
  margin: 0 3% 0 3%;
}
.imgT h5{
  font-size: 16px;
}
.cycles p {
  font-size: 20px;
  color: black;
  justify-content: center;
  margin-top: 20px ;
  margin-bottom: 20px;
  margin-left: 20px;
  justify-content: center;
}
.Title-s{
  float: right !important;
  margin-top: 3%;
  margin-bottom: 3%;
  margin-right: 1%;
}

.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.imgT {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 95% !important;

}

.img-small {
  width: 100%;
  max-width: 200px; 
  height: auto;
}


@media screen and (max-width: 768px) {
  .row {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .col-md-3 {
      width: 100%; 
    
  }
}

.prev, .next {
  font-size: 30px;
  position: absolute;
  top: 50%;
  z-index: 1;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); 
  border: none;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}


.prev {
  left: 10px;
}

.next {
  right: 10px;
}


@media screen and (max-width: 768px) {
  .prev, .next {
      font-size: 20px;  
      padding: 8px;     
  }

  .prev {
      left: 5px;  
  }

  .next {
      right: 5px; 
  }
}


@media screen and (max-width: 480px) {
  .prev, .next {
      font-size: 18px;  
      padding: 6px;     
  }
}

.nc {
  height: 100% !important;
  width: 100% !important;
}
.custom-underline::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #0a87b1;
    margin-top: 4px;
    right: 0;
  }
@media screen and (min-width: 1500px) {
    .cycles p {
  font-size: 30px;
  padding-bottom: 5%;
}
}
@media screen and (min-width: 2000px) {
 .imgT{
  width: 58% !important;
 }
}
@media screen and (max-width: 768px) {
  #bar {
    display: none; /* Hide the second image on small screens */
  }
}
@media screen and (max-width: 800px) {
  #bar {
    display: none; /* Hide the second image on small screens */
  }
}
@media screen and (max-width: 900px) {
  #bar {
    display: none; /* Hide the second image on small screens */
  }
}
@media screen and (max-width: 1000px) {
  #bar {
    display: none; /* Hide the second image on small screens */
  }
}
/*_________________________________activites parascolaires_____________________________________________________________*/
.MySlides {display: none}

/* Slideshow container */
#para {
  max-width: 1000px;
  position: relative;
  margin-top: 2% !important;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 60%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;

}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 17px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot1 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.8s ease;
}

.Active, .dot1:hover {
  background-color: #717171;
}

/* Fading animation */
.Fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/*________________mot de president________________________________________________*/
.president-word{
  background-color: #8abd91;
  padding-bottom: 2%;
  width: 100%;
  margin-bottom: 4%;
  margin-top: 2%;
}
.Pw h2{
    color: white;
    padding-top: 1px;
}
.Pw{

  padding-top: 1%;
  padding-left: 3%;
}
.card-text{
  font-size: 18px;
}
.p-pw{
  margin-left: 3%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  .president-word{
    padding-bottom: 5% !important;
    margin-bottom: 10% !important;
  }
}
@media screen and (max-width: 600px) {
  .president-word{
    padding-bottom: 8% !important;
    margin-bottom: 16% !important;
  }
}
@media screen and (min-width: 1500px) {
  .card-tex {font-size: 18px}
  .Pw{
  margin-left: 0.8%;
}
}
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%    Forms     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
.legend {
  display: flex;
  align-items: center;
  justify-content: center ;
  height: 30px;
  margin-top: 10rem;
  margin-bottom: 8rem;
}





select.form-select {
        height: calc(2.25rem + 12px);
}
 label{
        font-weight: 200 !important;
        color: #0a87b1;
        font-size: medium;
        font-style: normal;
        margin-top: 8px;
    }

#label{
        font-weight: 200;
        color: #0a87b1;
        font-size: medium;
        font-style: normal;
        margin-top: 8px;

    }




.btn {
    background-color:#0a87b1 !important;
   color:white !important;
   border-radius: 5px !important;
   width: 210px !important;
   height: 50px !important;
   margin-top: 0.5% !important;
   font-size: medium !important;
   border: none !important;
   margin-bottom: 0.5% !important;
}

.conTainer {

margin: 0 auto;
margin-top: 3%;

}

@media screen and (max-width: 768px) {

  form{
    margin-bottom: 20%;
  }
}
/* ############################## Suivi Bourses ############################## */
.FormSB{
  margin: 3% 3% 4% 3%;
  background-color:#E5E4E2;
  border-radius: 20px;
  border: 1px solid #0a87b1;
  padding-top: 0.6%;
 margin-top: 2%;
 margin-bottom: 10%;
 padding-bottom: 1.5%;
}
.legend5 {
  display: flex;
  align-items: center;
  justify-content: center ;
  height: 30px;
  margin-top: 5rem !important;
  margin-bottom: 9rem;
}


label{
        font-weight: 200 !important;
        color: #0a87b1;
        font-size: medium;
        font-style: normal;
        margin-top: 8px;
    }

#label{
        font-weight: 200;
        color: #0a87b1;
        font-size: medium;
        font-style: normal;
        margin-top: 8px;

    }




#btn1 {
    background-color:#0a87b1;
   color:white;
   border-radius: 5px;
   width: 180px;
   height: 50px;
   margin-top: 0.5%;
   font-size: 2em;
   border: none;
   margin-bottom: 0.5%;
  float: inline-end;

}
@media screen and (max-width: 768px) {

  .FormSB
  {
    margin-bottom: 22%;
  }
}


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Campuses %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
.campus{
  margin-top: 10rem;
  margin-bottom: 10rem;


}
.crow{
  justify-content: center !important;
  align-self: center;
  column-gap: 3rem;
}
.heading h1 {
  padding: 1.5rem 1rem;
  margin: 2rem 0 0 0;
  color: white;
  font-size: 3rem;
  text-transform: uppercase;
  background: #0a87b1;
  width: fit-content;
}

h1.simple-clip {
  padding-right: 50px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

h1.complex-clip {
  padding-top: 20px;
  padding-right: 50px;
  width: 25rem;
  clip-path: polygon(0 0%, 90% 0, 100% 100%, 0% 100%);
}

#p {

  border: 4px solid #0a87b1;
  padding: 2rem 0.5rem 1.5rem;
  background-color: #f3f3fd;
  height: 70rem;
}
.camp li{

  color: #8abd91;
}
.imgC{
  max-width: 225px ;
  max-height:190;
  opacity: 80%;
  z-index: -9;
  border-radius: 5px;
  max-height: 35rem;
  width: 100%;
}
.caption{
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 5%;
  color:#043e52;
  font-size: 2rem;
}
.links a{
  font-style: normal;
  text-decoration: none;
  color:#043e52!important;
  font-size: 1.5rem;
}
.links a:hover{
  font-size: large;
  font-style: normal;
  text-decoration: none;
  color: #8abd91;
}
.C-heading{
  margin-top: 4rem;
  margin-bottom: 4rem;


  color: #0a87b1;

  padding-top: 1%;
  padding-bottom: 30px !important;

  border-bottom: solid 1px  #0a87b1;
  width: 20rem;


  font-weight: 500 ;


}
.cmp p{
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 5%;
  color:black;
  font-size: 2rem;
}
.cmp img{
  padding-top: 4rem;
  width: 100%;
  height: 90%;
}
.facilities{

  margin-bottom: 10rem;
}

/* ####################################### Planning Concours Styling ########################### */

table{
  margin-top: 5%;

}


#Concours_SEC{

  background-color:#8abd91;
  border-radius: 15px;
  padding-bottom: 2%;
  margin-bottom: 6%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 1%;
  font-size: medium;
}

td{
  border: 8px solid #8abd91 !important;
}
th{
  border:  8px solid #8abd91 !important;
  color:white !important;
}
th.diagonalFalling
{
background: linear-gradient(to right top, #0a87b1 0%,#0a87b1 49.9%,white,white 51%,#0a87b1.1%,#0a87b1 100%);
}
@media only screen and (max-width: 1024px) {

th p{

margin-bottom: 40%;
}
#Concours_SEC{
  margin-bottom: 8%;}
}
/* ################################ CONTACT STYLING ############################ */
#contactajax {
  border: 1px solid #0a87b1;
  border-radius: 15px;
margin: 0;


background-color: #E5E4E2;
box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);
margin-left: 1%;
width: 98%;
z-index: -50;
margin-top: -4.5%;
}
.legend6 {
  display: flex;
  align-items: center;
  justify-content: center ;
  height: 30px;
  margin-top: 3rem !important;
  margin-bottom: 5rem;
}



#contact_container {

margin: 0 auto;
margin-top: 3%;

}
#phone, #Email, #Nom, #message, #objet{
  font-weight:200;
  color: #0a87b1;
  font-size: large;
}
#btn2 {
  background-color: #0a87b1;
 color:white;
 border-radius: 5px;
 float: right;
 margin-top: 1.5%;
 height: 40px;
 width: 150px;
 font-size: medium;
 margin-bottom: 1.5%;
}
@media screen and (max-width: 768px) {

#contact_field{
  margin-bottom: 35%;
}
.legend6 {
  margin-top: 4.5% !important;
}
}
/* ################################# wrapper and content styling of all file except home and formations ##################*/


/* ############################ demande de bourse 1ère interface styling ########################""*/

 #DB1_Field {
  margin: 3% 3% 4% 3%;
    border: 1px solid #0a87b1;
    border-radius: 15px;

    padding: 5px;
    background-color: #E5E4E2;
    box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);
    z-index: -50;

  }

  #DB1_Con {

  margin: 0 auto;
  margin-top: 3%;

  }

  #label{
          font-weight:200;
          color: #0a87b1;
          font-size: large !important;
      }
  #btn_DB1 {
    background-color: #0a87b1;
    color:white;
    border-radius: 5px;
    float: right;
    margin-top: 1.5%;
    height: 40px;
    width: 150px;
    font-size: medium;
    margin-bottom: 1.5%;


  }
  @media screen and (max-width: 768px) {

  #DB1_Field{
    margin-bottom: 20%;
  }

  }
  /* ######################## Documents styling ######################## */

@media screen and (max-width: 768px) {

  #Doc_card{

    width: 100% !important;
    margin-left: 0 !important;

}
#Doc_con{
    margin-bottom: 20%;
}
#ribCard {
  margin-left: 14% !important; /* remove the margin-left */
  width: 100% !important; /* set the width to 100% */
  max-width: 89% ; /* set the max-width to 40% */

}
}

 #Doc_card, #ribCard{
  box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);

  height: 150px !important;
  min-width: 40% !important;
  padding: 5% 5% 5% 5%;
  margin-top: 1%;
  margin-bottom: 2%;
  background-color:  #E5E4E2;
}
#Doc_card, #ribCard a:hover{
    color: #69b573 !important;
}

 #Doc_card:hover {
  transition: background-color 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0px 0px 40px #0a87b1 ;

}
#ribCard:hover {
  transition: background-color 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0px 0px 40px #0a87b1
}

/* ################################ pre-inscription STYLING ####################################*/
#label{
  font-weight:200;
  color: #0a87b1;
  font-size: large !important;
}
#label1 {
  font-weight:200;
  font-size: large !important;
}

  #inscri_field, input, select, textarea{
    font-size: large !important;
  }

.btn_inscri {
background-color: #0a87b1;
color:white;
border-radius: 5px;
margin-left: 17%;
width: 250px;
height: 45px !important;
margin-top: 3%;
font-size: medium;
border: none !important;
}


#inscri_con {


margin-top: 3%;
margin-bottom: 5% !important;


}
#inscrif{
border:#0a87b1;

}

@media screen and (max-width: 768px) {

  #inscri_field{
  margin-bottom: 35%;
}

#inscrif{
  margin-top: 10%;
}
.btn_inscri{

  width: 150px;
}
}

/*####################### Résultats concours styling ############################*/


@media only screen and (max-width: 525px) {

  .bordered-content{
    margin-bottom: 40% !important;
    height: 100%;
    width: 95%;
    text-align: center;
  }
  .bordered-content1{
    width: 100% !important;
    margin-left: 0 !important;
    font-size: 1.1em !important;
  }
  #col1{
    margin-bottom: 30% !important;
    flex-direction: column;
    align-content: center;
  }
  #col2{
    margin-top:30% !important;
    flex-direction: column;
    align-items: center;

  }
}
.bordered-content{
    border: 2px solid #0a87b1;
  padding: 95px;
  text-align: center ;
  background-color:#E5E4E2;
  color:#0a87b1;
  border-radius: 25px;
  font-size: 1.5em;
 height: 100%;
 box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);
 margin-bottom: 10%;
}
.bordered-content1{
    border: 1px solid #0a87b1;
    padding-bottom: 1.5%;
    padding-top: 6%;
  margin-left: 25%;
  margin-right: 15%;
  background-color: #efefef;

  border-radius: 5px;
  font-size: 1.2em;
 width: 50%;
  height: 50%;
  box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);
}
#res_row a:hover {
  color:#8abd91!important;
}


/* ####################suivi pre-inscription styling#################################### */



  .legend4 {
    display: flex;
    align-items: center;
    justify-content: center ;
    height: 30px;
    margin-top: 6rem !important;
    margin-bottom: 14rem;
  }
  .form-Title4 {
    padding-top: 1%;
    padding-bottom: 30px !important;
    color: #0a87b1;
    border-bottom: solid 1px  #0a87b1;
    width: 30rem;
    height: 8rem;
    font-size: 25px !important;
    font-weight: 500 !important;
    text-align: center !important;
    justify-content: center !important;

  }

  #SPI_field {
          border: 1px solid #0a87b1;
          border-radius: 15px;
    margin: 0;
    padding: 5px;
    background-color: #E5E4E2;
    box-shadow:  0px  0px 30px rgba(127, 137, 161, 0.25);
    z-index: -50;
    margin-top: -3%;
    margin-left: 1%;
width: 98%;
  }


  #SPI_con {

  margin: 0 auto;
  margin-top: 3%;

  }

  #label{
          font-weight:200;
          color: #0a87b1;
          font-size: large;
      }
  #btn_SPI {
      background-color: #0a87b1;
     color:white;
     border-radius: 5px;
     float: right;
     margin-top: 1.5%;
     width: 180px;
     height: 50px;
     font-size: 2em;
     margin-bottom: 1.5%;
  }

@media screen and (max-width: 768px) {

#SPI_field{
  margin-bottom: 20%;
}

}

/* #################################FORMATION CONTINUE #######################################*/
.hero-imagefc{

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
 width: 100%;

  background-color: black;
  position: relative;
  display:flex;
  justify-content: left;
  align-content: left;
  color:white;
  z-index: 10;

}

.hero-imagefc img {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
 width: 100%;
  position: relative;
 opacity: 70%;
  display:flex;
  justify-content:left;
  align-content: left;
  color:white
}
.hero-textfc {
  text-align:left;
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero-textfc button {
  border: none;
  border-radius: 5px;

  position: relative;
  padding: 10px 20px;
  color:white;
  background:#0a87b1;
  text-align: center;
  cursor: pointer;
  font-size: 1.5rem !important;
  font-weight: 500;
  overflow: hidden;

}
.Shape1{
  top: 0;
  position: absolute;
  background: #ffffff81;
  width: 30px;
  height: 100%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  transform: translateX(-170%);
  animation: moveShape 1s infinite alternate;
}
@keyframes moveShape {
  0% {
    transform: translateX(-170%);
  }
  100% {
    transform: translateX(400%);
  }
}

.hero-textfc button:hover{
  background: #1ab0e2;
  scale: 1.05;
  transition: all 0.5s;
}
/* ################ Infos in formation continue ################ */
.Infos {

  position: absolute;
  top: 50%; /* Adjust as needed */
  right: 0;
  transform: translateY(-50%);
  height: auto !important;
  display: inline-block !important;
  background-color: rgba(255, 255, 255, 0.8); /* Use rgba to set the background color with transparency */
  padding: 3% 3% 3% 3%;
  margin-right: 5%;
  align-content: left;
  backdrop-filter: blur(5px);

}

#icons{
  color:#043e52;

}

.Infos_content-wrapper {
  color: #043e52;
  align-items: center;

}

.Infos_content-wrapper h5, .Infos_content-wrapper p {
  font-size: 1.7rem;
  display: block;
}

.Infos_icon-box {
  position: relative;

  align-items: center;

}
.containerB {
	max-width: 140rem;
	width: 100%;

	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  justify-content: center !important;
  margin-bottom: 10%;
  margin-left: auto;
  margin-right: auto;

 }
#wrapper-formation {
	display: flex;
}
.indicator {
	padding: 1.5rem 0;
	border-right: 1px solid #0a87b1;
}
.indicator li {
	display: flex;
	align-items: center;
	grid-gap: .5rem;
	padding: 10px 2rem;
	cursor: pointer;
	font-size: 1.75rem;
	color: #0a87b1;
	border-right: 3px solid transparent;
}
.indicator li i {
	font-size: 1.75rem !important;
}
.indicator li:hover {
	background:  #c7e8f3;
}
.indicator li.ActIve {
	border-right-color: #0a87b1;
	color: #043e52;
	background: #c7e8f3;
}
#content-formation {
	padding: 1.5rem 2rem;
}
#content-formation li {
	display: none;
}
#content-formation li.ActIve {
	display: block;
}
#content-formation li h1 {
	font-size: 2rem;
	font-weight: 600;
	color: #043e52;
	margin-bottom: 1.75rem;
}
#content-formation li p {
	margin-bottom: .5rem;
	color:#043e52;
	font-size: 1.5rem;
}
/*###############" small screens ########################"*/
@media screen and (max-width: 768px) {
	#wrapper-formation {
		flex-direction: column;
	}
	.indicator {
		border-right: none;
	}
  .containerB {
    margin-bottom: 28%;
  }
}
/* text formation styling */
#text_fc1{
  padding: 1% 4% 1% 4%;
  margin-top: 5%;
  color:black;
  font-size: 2rem;

}
#text_fc2{
  padding: 1% 4% 1% 4%;
  margin-top: -1.5% !important;
  color: black;
  font-size: 2rem;
  margin-bottom: 10%;
}
/* small screens */
@media screen and (max-width: 1018px) {
  .hero-textfc {

    font-size: 1rem !important;
  }

  .Infos {
    right: 5%;
    width: 180px;
    font-size: small;
    height: min-content !important;
    margin-right: 0 !important;


  }
  #text_fc1{
    font-size: small;
  }
  .Infos_content-wrapper h5, .Infos_content-wrapper p {
    font-size: small;}
    .hero-imagefc img{
      height: 400px;
    }
}
@media screen and (max-width: 600px){
  .hero-textfc h6 {
    margin-left: -10% !important;
      text-align: left;
      position: relative;
      top: -78px !important; /* Adjust the top position as needed */
      transform: translateX(-2%);

  }
  .Infos {

    margin-right: -3% !important;
    margin-top: 10%;
}
.hero-textfc button{
  margin-left: -3% !important;
}

}
@media only screen and (max-width: 320px){
  .hero-textfc h6 {
    margin-left: -10% !important;
      text-align: left;
      position: relative;
      top: -78px !important; /* Adjust the top position as needed */
      transform: translateX(-2%);

  }
  .Infos {

    margin-right: -3% !important;
    margin-top: 20%;
}
.hero-textfc button{
  margin-left: -3% !important;
  width:100px ;
}

}
@media screen and (max-width: 1024px) {
 .containerB{
  width: 95%;
  }
}
/* ############ bourse text ########*/
.shiny-text {
  padding: 1.5% 1.5% 1.5% 1.5% ;
  text-align: center !important;
    margin-top:6%;
    font-size: 36px;
    color: #fff ;
    position: relative;

    border-radius: 30px;
    animation: shine 2s infinite linear;
}

@keyframes shine {
    0% {
        box-shadow: 0 0 5px rgb(207, 78, 78) ;
    }
    50% {
        box-shadow: 0 0 20px rgb(207, 78, 78), 0 0 22px rgb(141, 0, 0) ;
    }
    100% {
      box-shadow: 0 0 5px rgb(207, 78, 78) ;
  }

}
/*bottom home page slider image*/
/*Contact us*/
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* Contact form wrapper */
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Contact form container */
.contact-email-form {
  flex: 1;
  max-width: 900px;
  padding: 1rem;
  background: rgb(214, 218, 189);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 5%;
}



.bt-n {
  background-color: var(--second-color);
  color: white;
  border-radius: 5px;
  width: 205px;
  height: 50px;
  margin-top: 3%;
  font-size: medium;
  border: none;
}

.conTainer {
  margin: 0 auto;
  margin-top: 3%;
}

#test {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-top: 5%;
}

.test {
  border-radius: 35px;
  padding-top: 1%;
  color: var(--second-color);
  font-weight: 500 !important;
  width: 90%;
  height: 2em;
  font-size: 25px;
  text-align: center;
}

