@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700;900&display=swap');
:root {
    --primary_color: #FF8A00;
    --soft_primary: #ffe0bc;
    --primary_mix: #FFC000;
    --text_color: #5C5C5C;
    --dark_blue: #09223A;
    --soft-blue: rgb(235, 241, 255);

  }

a{
    text-decoration: none !important;
    color: inherit !important;
}
.app_logo, .menu-button-container{
    padding: 20px 40px;
}


html, body {
  margin: 0;
  height: 100%;
}

* {
  font-family: "Poppins";
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}
body{
  color: var(--text_color);
  line-height: 120% !important;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: var(--dark_blue);
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 99;

}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > a > li {
 
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--primary_color);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.menu a li{

    padding: 27px;
    height: 80px;
    transition: 250ms;

}
.menu a li:hover{
  background: var(--soft_primary);
}
.active_menu{
    background-color: var(--primary_color);
    color: #fff;
}
.active_menu:hover{
  background-color: var(--primary_color) !important;
}
.slides{
  padding-top: 80px;
}
.slide_items{
  width: 100%;
  height: 500px;
  position: relative;
  
}
.slide_img{
  height: 100%;
}
.slide_img img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
b, h1, h2, h3{
  color: #3D3D3C;
  
}
.slide_filter{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(11, 50, 87, 0.7);
  padding: 40px;
  display: flex;
  align-items: center;
}
.slide_msg{
  max-width: 500px;
  color: white;
  margin: auto;
  text-align: center;
}
.cover_title{
  max-width: 700px;
  margin: auto;
  color: white !important;
  padding-right: 25%;
}
.cover_title h3{
  color: white;
}
.slide_msg h3{
  color: white;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;

}

h1, h2, h3{

  line-height: 114%;
  font-weight: 700;

}
.btn{
  padding: 10px 40px;
  border-radius: 60px;
  font-size: medium;
  color: white;
  background-color: var(--primary_color);
  background: linear-gradient(253.58deg, var(--primary_mix) 1.55%, var(--primary_color) 95.8%);
  border: 1px transparent;
  transition: 250ms;
}

.btn:hover{
  color: var(--dark_blue);
  border: 1px solid var(--dark_blue);
  background: transparent;
}
.white_btn:hover{
  color: #fff !important;
  border: 1px solid #fff !important;
}

.value_bloc{
  max-width: 250px;
  text-align: center;
}
.flex_c{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 50px;
  max-width: 1000px;
  margin: auto;
}
.social_medias{
  font-size: 25px;
  color: #5C5C5C;
  padding: 20px;
  letter-spacing: 5px;
}
.fa-facebook:hover{
  color: #0065c4;
}
.fa-twitter:hover{
  color: #4ba8ff;
}
.fa-instagram:hover{
  color: #e74bff;
}
.blue_bloc{
  background-color: var(--soft-blue);
  padding: 40px;
}
.title{
  font-weight: 700;
  font-size: large;
}
.formations{
  border-radius: 10px; 
  width: 100%;
  max-width: 1000px;
  margin: auto;

}

.formations:before,
.formations:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100px;
  top: 0;
  height: 100%;
  pointer-events: none; /*makes the linkes behind clickable*/
}



.formations:after {
  right: 0;
  background: linear-gradient(to left, rgba(235, 241, 255, 1) 20px, rgba(235, 241, 255, 0));
}

.formation_card{
  max-width: 300px;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px; 
  margin-left: 20px;
  
}
.formation_card img{
  margin-bottom: 20px;
  margin: auto;
}
.formation_card small{
font-size:smaller !important;
line-height: 100%;
}
.formation_container{
  position: relative;
}
.masker{
  height: 100%;
  width: 200px;
  background-color: red;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.contact_bloc{
  display: flex;
  max-width: 1000px;
  margin: auto;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  border-radius: 25px;
  flex-wrap: wrap;

}

.image_contact{
  max-width: 300px;
  background: linear-gradient(253.58deg, var(--primary_mix) 1.55%, var(--primary_color) 95.8%);
  display: flex;
  align-items: center;
  width: 50%;
  min-width: 300px;
  max-width: 500px;
  border-radius: 25px 0px 0px 25px;
  
}
.image_contact img{
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.contact_form{
  text-align: left;
  width: 50%;
  min-width: 300px;
  max-width: 500px;
  padding: 20px 40px;
}

footer{
  background-color: #000120;
  padding: 100px 20px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: white !important;
  gap: 40px;
}
footer b{
  color: white;

}
.footer_logo{
  width: 200px;
  height: auto;
}
footer .social_medias{
  color: white;
  padding: 0px;
}
footer > div{
  width: 30%;
  max-width: 300px;
  min-width: 300px;
}
.slick-next{
  right: 25px;

}
.slick-prev{
  left: 25px;
  z-index: 100;
}
.formations .slick-prev{
  display: none !important;

}
.formations .slick-next:before{
  
}
.slick-prev:before, .slick-next:before{
  font-size: 30px;
  opacity: 0.5;
  background: var(--primary_color);
  color: white;
  border-radius: 100px;
  content: "\f144";
  font-family: 'FontAwesome';
  padding: 0;
 
}
.slick-prev{
  -ms-transform: rotate(300deg); /* IE 9 */
  transform: rotate(300deg);
 
}

.formations .slick-next:before{
  font-size: 50px;
  opacity: 1;


}
.formations .slick-next{
  right: -0px;
  z-index: 100;
}
.blue_bloc .slick-next{
  color: var(--primary_color) !important;
}
.all_formations{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: auto;
  max-width: 1000px;
  margin: auto;
}
.short{
  height: 300px;

}
.short{
  height: 200px;
}
.text_bloc{
  max-width: 700px;
  text-align: justify;
  margin: auto;
  padding: 20px;
}
.formation_bloc{
  max-width: 700px;
  margin: auto;
  padding: 20px;
  
}
.formation_bloc h2{
  font-size: 17px;
  margin-top: 30px;
}
.formation_bloc h2::before {
  content: url('../assets/images/circle.svg');
  display: inline-block;
  width: 15px;
  height: 20px;
  margin-right: 10px;
}
.formation_bloc p, .formation_bloc ul{
  border-left: 1px dashed silver;
  padding-left: 20px;
  margin-left: 8px;
}

@media (max-width: 890px) {
  .menu-button-container {
    display: flex;
  }
  .menu a{
    width: 100%;
  }
  .slide_items{
    height: 300px;
  }
  .short{
    height: 200px;
  }
  .slide_msg{
    line-height: 120%;
  }
  .slide_items img{
    width: 100%;
    object-position: center;
    object-fit: cover;
  }
  .slide_msg h3{
    font-size: 17px;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 70px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;

  }
  #menu-toggle ~ .menu a li {
    height: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle ~ .menu .social_medias {
    visibility: hidden;
    height: 0;
  }
  #menu-toggle:checked ~ .menu .social_medias {
    visibility: initial;
    height: initial;
    background-color: #222;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: white;
  }
  #menu-toggle:checked ~ .menu a li {
    visibility: initial;
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > a > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > a > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
@media (max-width: 890px) {
  .image_contact, .contact_form{
    width: 100%;
    max-width: unset;
    border-radius: 0;
  }
  .contact_form{
    margin: auto;
    margin-top: -20px;
    width: 90%;
    z-index: 10;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;

  }
  .blue_bloc{
    padding: 20px;
  }
  .formations .slick-next{
    right: 24px;
  }
  .all_formations .formation_card{
    max-width: 500px;
    margin: auto;
  }
}