/*
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
}

body {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
}
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

body {
  font-family: "Poppins", sans-serif;
  max-width: 100vw !important;
  width: 100vw;
  overflow-x: hidden;
  background: url(../img/headingbg.webp);
  background-size: cover ;
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

}

@media (max-width: 655px) {
  body {
    overflow-y: scroll;
    background: url(../img/headingbg.webp);
    background-size: 285%;
    background-position: top  !important ;
    background-repeat: no-repeat;
    overflow-x: hidden;
    background-attachment: scroll;
  
  }
}

.titre-de-section{
  font-size: 45px;
}
/*===================================================== Header Start ==================================*/

header {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 10px;
  padding-top: 10px;
  width: 100vw;
  margin: auto;
  top: 10px;
  left: 0;
  transition: 0.5s;
  z-index: 100;
  padding-left: 5rem;
  padding-right: 5rem;
  background: #ffffff00;
  height: 80px;
 /*  box-shadow: 0px 1px 3px #b7b6b6; */
}


header nav {
  display: none;
}

.logo{
  font-size: 20px;
  height: 100%;
  color: #F2F2F2;
  text-transform: uppercase;
  display:flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

header ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 20px;
  padding: 6px;
  transition: all ease .5s;
  border-style: none;
  border-color: #F29F05;
  border-radius: 0;
  border: 1px rgba(255, 255, 255, 0) solid;
}

header ul li a {
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease .1s;
  font-size: 1rem;
  color: #F2F2F2;
  font-weight: bold;
}

header ul li:hover {
  /* background-color: #F24405; */
  border: 1px #F2F2F2 solid;
}



.sticky {
  position:sticky;
  background-color: #ffffff;
  top:0;
  /* padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0px 3px 3px #aaaaaa;
  width: 100vw;
  
  padding-left: 5rem;
  padding-right: 5rem; */
}



header.sticky ul li a {
  color: #011640;
}

img.sticky {
  height: 40px;
}

 
.menu-btn{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  cursor: pointer;
  display: none;
} 




.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  display: none;
  background-color: #ffffff;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}



.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover {
  font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 17;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 26px;
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 16;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 120px;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  z-index: 15;
  background: white;
  position: absolute;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.responsivelogo {
  position: absolute;
  top: 5px ;
  left: 15px;

}

.responsivelogo img {
  height: 50px !important;
}

.nav-container input[type="checkbox"]:checked~.menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked~.responsivelogo {
  display: none;
}

@media (max-width: 1024px) {
  header {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .logo img {
    height: 40px;
  }

  header ul li a {
    font-size: 15px;
  }
}

@media (max-width: 867px) {
  header {
    display: none;
  }
  .navbar {
    display: block;
  }
}

@media (max-width: 425px) {
  .responsivelogo img {
    height: 35px;
  }

  header ul li a {
    font-size: 14px;
  }

  .nav-container .hamburger-lines {
    height: 24px;
    width: 29px;
  }


}






/* footer */
.footer {
  background-color: #262223;
  padding: 70px 0;
  z-index: 20;
  position: absolute;
  width: 100vw;
}

.footer-col {
  min-width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #F29F05;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li{
  list-style-type: none;
}

.footer-col ul li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
  
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footer-container {
  margin: auto;
  display: flex;
  flex-direction: row;
  padding: 0 7% 0 7%;
  justify-content: center;
  flex-wrap: wrap;

}

/*responsive*/
@media only screen and (max-width: 767px) {
  .footer-col {
    min-width: 40%;
    margin-bottom: 30px;
  }

  .footer-col h4::before {
    position: absolute;
    left: 44%;
  }
}

@media (max-width: 574px) {
  .footer-col {
    min-width: 100%;
    text-align: center;


  }
}




.copyright {
  color: white;

}

.copy {
  display: flex;
  justify-content: center;
  padding-top: 90px;
}

/*=================================== FAQ Starting ======================================*/

.faq-page {
  background-color: #04164e42;
  font-family: "Poppins", sans-serif;
  color: #545d7a;
  font-size: 1.3rem;
  font-weight: 400;
  padding-top: 80px;
}


.faq_container {
  width: 100%;
  margin: auto;
  min-height: 100vh;
  padding-top: 2rem;
  display: grid;
  place-items: center;
}

.accordion__wrapper {
  background-color: #ffffff84;
  box-shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 95%;
  padding: 1rem;
  margin-bottom: 40px;
  backdrop-filter: blur(20px)
}

.accordion__title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 4rem;
}

.accordion {
  border-bottom: 0.1rem solid #dae1f5;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.accordion__icon {
  background-color: #ff4b4b;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 1rem;
}

.accordion__question {
  font-size: 1.1rem;
  font-weight: 500;
  color: #011640;
}

.accordion__answer {
  padding: 2rem 0;
  font-size: 1rem;
  color: #011640;
}

.accordion__content {
  overflow: hidden;
  height: 0;
  transition: var(--transition);
}

@media screen and (min-width: 580px) {
  .accordion__wrapper {
    padding: 3rem 3rem;
  }
}


/*=================================== End of FAQ ======================================*/

/*=================================== Services start =================================*/
.service-section {
  background-color:#00071549;
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

.service-container {
  width: 100%;
  min-height: 100vh;
  padding: 0 8% 8% 8%;
  
  
  padding-top: 80px;
}

.service-container h1 {
  text-align: center;
  padding-top: 5%;
  margin-bottom: 60px;
  position: relative;
  font-size: 40px;
  color: #ffffff;
  text-shadow: 0 1px 1px #00000087;
  
  
}

.service-container h1::after {
  content: '';
  background: #ffffff;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  

}

.row {
  width: 100%;
  /* 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: 30px;
  justify-content: center;
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 25px 20px 35px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: rgb(255, 255, 255);
  transition: transform 0.5s, background 0.5s;
  width: 350px;
}

.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #F24405;
}

.service .service_heading {
  font-weight: 600;
  margin-bottom: 10px;
  color: #252161;

}

.service:hover {
  background: #fff !important;
  transform: scale(1.05) !important;
}

/* .service:hover i {
  color: #fff;
} */

.service_para {
  margin: 5px 0 30px 0;

}

.service_btn {
  padding: 10px 12px;
  border: 2px solid #F24405;
  border-radius: 10px;
  text-decoration: none;
  color: #F24405;
  font-weight: bold;
}

@media (max-width: 768px) {

  .service-container h1 {
    padding-top: 30px;
    font-size: 35px;
  }

}

/*============================================== End of services ==========================================*/



/*============================================== wcu section start ========================================*/

.wcu-section {
  width: 100%;
  padding: 5%;
  background-color: #fff;

}

.wcu-section h1 {
  text-align: center;
  font-size: 35px;
  position: relative;
  margin-bottom: 5rem;
  color: #252161;

}

.wcu-section h1::after {
  content: '';
  background: #F29F05;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.wcu-container {
  margin: auto;
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.reason {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
  align-items: center;
  row-gap: 10px;
  padding: 25px;
  box-shadow: 1px 1px 10px #00000028;
  border-radius: 10px;
  width: 300px !important;
}

.reason h3 {
  color: #F29F05;
  font-size: 15px;
}

.reason i {
  font-size: 2rem;
  color: #F29F05;
}

.wcu-description {
  font-size: 13px;
  text-align: center;
  color: #000;
}

/*================================== End why choose us ==================================*/
/*======================================= contact start ===================================*/



.contact-body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/contact.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 85px;
}

.contact-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color:#02153a7d;
}

.contact-section {
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-section-header {
  margin-bottom: 50px;
  text-align: center;
}

.contact-section-header h2 {
  color: #FFF;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.contact-section-header p {
  color: #FFF;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  border: solid 1px #F29F05;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
  color: #F29F05;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
  border-radius: 10px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #252161;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 0.5px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus~span,
.contact-form .input-box textarea:focus~span {
  color: #F29F05;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"] {
  width: 100%;
  background: #F29F05;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #F29F05;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover {
  background: #FFF;
  color: #F29F05;
}

@media (max-width: 991px) {
  .contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-info {
    margin-bottom: 40px;
    width: 90%;
  }

  .contact-form {
    width: 90%;
  }
}

@media (max-width: 655px) {
  .contact-body {
    align-items: center;
    background-image: url(../img/contact.png);
    background-size: 285%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 85px;
  }

  
  .contact-section-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .contact-section-header p {
    font-size: 14px;
  }

  .contact-info-icon i {
    font-size: 20px;
    line-height: 50px;
  }

  .contact-info {
  width: 95%;
  margin:auto;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 50px;
  width: 50px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-content h4 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 14px;
}

.contact-form{
  width: 95%;
}
}


/*=========================================== End contact ====================================*/

/*============================================== Home about section start ========================*/


.home-about-body {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  background: #f2f2f2 !important;
}

.home-about-container {
  width: 90%;
  height: 100%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 60px;
  padding: 35px 0;
}

.home-about-contentLeft,
.home-about-contentRight {
  width: 100%;
}

.home-about-contentLeft .home-about-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.home-about-contentLeft .home-about-row .home-about-imgWrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
}

.home-about-contentLeft .home-about-row .home-about-imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: 0.3s ease;
}

.home-about-contentLeft .home-about-row .home-about-imgWrapper:hover img {
  transform: scale(1.5);
}

.home-about-contentLeft .home-about-row .home-about-imgWrapper:nth-child(odd) {
  transform: translateY(-20px);
}

.home-about-contentLeft .home-about-row .home-about-imgWrapper:nth-child(even) {
  transform: translateY(20px);
}

.home-about-contentRight .home-about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.home-about-contentRight .home-about-content h4 {
  font-size: 16.5px;
  font-weight: 400;
  color: #F24405;
}

.home-about-contentRight .home-about-content h2 {
  font-size: 40px;
  color: #1e272e;
}

.home-about-contentRight .home-about-content p {
  font-size: 16px;
  color: #343434;
  line-height: 28px;
  padding-bottom: 10px;
}

.home-about-contentRight .home-about-content a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 13px 30px;
  color: #fff;
  background: #F24405;
  border-radius: 8px;
  user-select: none;
}

@media(max-width: 768px) {
  .home-about-container {
    grid-template-columns: 1fr;
  }

  .home-about-contentLeft .home-about-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about-contentLeft .home-about-row .home-about-imgWrapper {
    height: 150px;
  }

  .home-about-contentRight .home-about-content h4 {
    font-size: 18px;
  }

  .home-about-contentRight .home-about-content h2 {
    font-size: 30px;
  }


  .home-about-contentLeft .home-about-row .home-about-imgWrapper:nth-child(odd) {
    transform: translateY(0);
  }

  .home-about-contentLeft .home-about-row .home-about-imgWrapper:nth-child(even) {
    transform: translateY(0);
  }
}

/*============================================= End Home about ====================================*/

/*============================================== about page start =================================*/

.about-page-container {
  background-color: #f6f9fc;
  width: 100%;
  
  
  
}

.about-heading {
  min-height: 100vh;
  width: 100%;
  background-image: url(../img/aboutheading.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  
}
@media (max-width: 655px) {
  .about-heading {
    min-height: 100vh;
    width: 100%;
    background-image: url(../img/aboutheading.webp);
    background-repeat: repeat;
    background-size: 300%;
    background-position: top;
    background-attachment: scroll;
    
  }
}


/* .about-heading .divFlex {
  width: 100% !important;
  height: 100%;
  background-color: #262223b9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; 
  
} */

.about-heading .divFlex {  
  width: 100%;  
  min-height: 100vh;  
  background-color: #262223b9;  
  display: grid;  
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  
}  


.about-heading div h1 {
  color: #fff;
  font-size: 80px;/* 
  width: 50%; */
  text-align: center;
}

.about-heading div h1::after {
  content: '';
  background: #F29F05;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.about-heading div p{
  background-color: #201e59ca;
  padding:40px;/* 
  width: 50%; */
  line-height: 30px;
  color: #ccc;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 80px;
}

.background-gray {
  background-color: #f6f9fc;
}

.background-white {
  background: #ffffff;
}

.about-row {  
  display: grid;  
  grid-template-columns: 50% 45%; /* 40% pour l'enfant gauche, 50% pour l'enfant droit, 10% pour l'espace */  
  justify-content: center;
  justify-items: center;
  align-items: center;
  padding: 20px;  
  width: 100% !important;  
  min-height: 100vh; 
  background-image: url(../img/succesmax-about-background2.png);  
  background-repeat: no-repeat;  
  background-size: cover;  
  background-position: top center;  
  background-attachment: fixed;  
  overflow-x: hidden;
  gap:10px;
}  

.about-row-right{
  background: #F28241f1;
  padding: 30px;
  color: #fff;
  font-size: 14px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.about-row-left{
  background-color: #f2f2f2ee;
  font-size: 14px;
  color: #262223;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding:20px;
  
}

@media (max-width: 655px) {
  .about-row {  
    
    background-image: url(../img/succesmax-about-background2.png);  
    background-repeat: repeat;  
    background-size: cover;  
    background-position:73%;  
    background-attachment: scroll;  
    padding: 10px;

  }  

  .about-row-right{
    background: #f28241fe;
    padding: 20px;
  }
  .about-row-left{
    background-color: #f2f2f2fd;
    padding: 20px 10px;
  }
}



.about-row-left div{
  padding: 0 30px 0 30px !important;
}

.about-left {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  text-align: justify;
}

.about-left b {
  font-weight: 500;
}

.about-left h2 {
  font-size: 35px;
  color: #1e272e;
  margin-bottom: 15px;
}

.about-right h2 {
  font-size: 40px;
  color: #1e272e;
  margin-bottom: 15px;
}

.about-left p,
.about-right p {
  line-height: 30px;

}

.about-right {
  height: 80%;
  display: flex;
  justify-content: right;
  flex-direction: column;
  text-align: right;

}

.about-medium {
  padding: 20px;
  width: 80%;
  line-height: 30px;
  text-align: justify;

}

.about-medium img {
  height: 300px;
}

/* @media (max-width: 768px){
  .about-heading div h1{
    font-size: 38px;
  }
} */

@media (max-width: 1059px) {

  .about-heading .divFlex {  
    display: flex;  
    flex-direction: column;
    justify-items: center;  
    align-items: center; 
    padding: 10rem 20px 20px 20px;
    row-gap: 25px;
  }
  
  .about-heading div h1 {
    width: 80%;
  }

  .about-heading div p{
    
    padding:40px;
    width: 80%;
    line-height: 30px;
    color: #fff;
    font-size: 17px;
    border-radius: 5px;
    margin-top: 20px;
  }
 .about-row{
    grid-template-columns: 1fr; 
    justify-items: center;

 }
 .about-row-left{
  border-radius: 2px;
 }
 .about-row-left,.about-row-right{
  width: 90%;
  margin-top: 20px;
 }


}

@media (max-width: 866px) {
 
  .about-heading div h1 {
    font-size: 50px;
  }

  .about-heading .divFlex {  
   
    padding: 60px 20px 20px 20px;
  }
  
  
}


@media (max-width: 655px) {

  .about-heading div p{
    width: 100%;
    padding:20px;
    font-size: 14px;
    margin: auto;
  }

  .about-heading .divFlex {  
      display: flex;  
      flex-direction: column;
      justify-items: center;  
      align-items: center; 
    
    padding: 40px 20px 20px 20px;
  }
  
  .about-heading div h1 {
    width: 80%;
    font-size: 40px;
  }
}

/*========================================= End about page ==========================================*/
/*========================================= Team section =============================================*/


.team-body {
  width: 100%;
  min-height: 100vh;
 
  background-image: url(../img/aboutheading.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed; 
}

.team-title {
  text-align: center;
  font-size: 80px;
  color: #F2F2F2;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 866px) {
 
  .team-title {
    font-size: 50px;
  }
  
}




.team-body .divFlex {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #26222391;
  padding-bottom: 25px;
  
}



.team-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: fit-content;
}

.member {
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.218);
  padding: 20px;
  height: 220px;
  border-radius: 10px;
  background-color: #2622239c;
  
}
.member:nth-child(odd){
  background-color: #f282419c;
}

.member-pic {
  font-size: 40px;
  color: #F2F2F2;

}

.member h2 {
  font-size: 18px;
  color: #fff;

}

.member-post {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 655px) {
  .team-body{
    background-image: url(../img/succesmaxresponsiveaboutrowbackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    background-attachment: scroll;
  }
  .team-body .divFlex {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#ffffffaf !important;
    padding-bottom: 25px;
  }
  .team-title{
    color: #262223;
  }
  
  .member:nth-child(odd){
    background-color: #f28241ea;
  }
  .member{
    background-color: #262223da;
  
  }

}


/*========================================== End team ==================================================*/

/*========================================== Partners section  starting ==================================================*/


.partners-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: rgb(232, 232, 232);
}

.partners-section .titre-de-section {
  padding: 0 20px 20px 20px;
  margin: 0 0 10px 0;
}

.partners-section .slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 70%;
  overflow: hidden;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.partners-section .slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}

.partners-section .slider-items img {
  width: 12%;
  margin: 20px;
}


@media (max-width: 655px) {
  .partners-section .titre-de-section {
    font-size: 32px;
  }

  .partners-section .slider {
    width: 95%;
    height: 80% !important;
  }

}


/*========================================== End Partners section ==================================================*/

/*============================================ home starting======================================================*/

.home {
  height: 100vh;
  width: 100%;
  background:#00071549;
  
}


.home-heading h1,.home-heading h2 {
  font-size: 35px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
@media screen {
  
}

.home-heading h1 span, .home-heading h2 span {
  background: white;
  color: #F24405;
  padding: 0 10px;
  border-radius: 5px;


}

.home-heading p {
  color: #fff;
  font-size: 20px;
  max-width: 80%;
  text-align: center;
  margin-bottom: 10px;

}



 .sslide1 {
  background: #01164094 !important;
  /* background: -webkit-linear-gradient(90deg, #2a2462,#2a246294);                          
  background: linear-gradient(90deg, #2a2462,#2a246294); */
}

.sslide2 {
  background-color: #5a4206d2 !important;
}


.sslide3 {
  background-color: #000000ad !important;
}

.sslide4 {
  background-color: rgba(43, 1, 1, 0.77) !important;
} /**/

.home-action-btn {
  background-color: white;
  border-radius: 10px;
  padding: 5px 0;
  font-weight: 500;
  transition: all ease-in-out .5s;
  width: 250px;
  text-align: center;

}

.home-action-btn:hover {
  box-shadow: 1px 1px 7px #000000;
}


.home-action-btn a {
  text-decoration: none;
  color: #F24405;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
}




@media (max-width: 768px) {

  .home {
    background-size: auto;
  }

  .home-heading p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }

  .home-heading h1 {
    font-size: 30px;
    width: 70%;
  }

  .home-action-btn {

    width: 190px;
    font-size: 18px;

  }

  .swiper-button-next::after {
    font-size: 27px !important;
    color: #F29F05;
  }

  .swiper-button-prev::after {
    font-size: 27px !important;
    color: #F29F05;
  }

}


@media (max-width: 655px) {
  .home-heading h1 {
    font-size: 23px;
    width: 70%;
  }

  .home-heading h1 span {
    font-size: 28px;
    display: block;
    width: fit-content;
    margin: auto;
    margin-bottom: 0;
  }

  .swiper-slide {
    row-gap: 10px;
  }

  .home {
    height: 75vh;
    background-size: 50% !important ;
    background-position: center;
    background-attachment: fixed;

  }
 
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
  align-self: center;
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}

.btn-close {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.offers {
  margin: 0px;
  padding: 8rem 0 5rem 0 ;
  width: 100%;
  min-height: 100vh;
  font-size: 16px;
  background:#00071549;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

.fw-7 {
  font-weight: 700;
}

.fw-4 {
  font-weight: 400;
}

main {
  width: 90%;
  border-radius: 8px;
  box-shadow: 0px 0px 18px 1px #0800001c;
}

.panel {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.panel .panel-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  background: white;
  border-radius: 8px 8px 0px 0px;
  box-sizing: border-box;
}

.panel .panel-header h3 {
  color: #20205fd4;
  font-size: 24px;
  margin: 0px;
}

.panel .panel-header h4 {
  margin: 25px 0px 0px 0px;
  color:#F0903A;
  font-size: 19px;
}

.panel .panel-header .panel-text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  color: #00000085;
}

.panel .panel-header .panel-text p {
  margin: 0px;
  line-height: 26px;
}

.panel .panel-body {
  width: 100%;
  border-radius: 0px 0px 8px 8px;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}

.panel .panel-body .panel-left {
  width: 50%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2A2462;
  border-radius: 0px 0px 0px 8px;
  box-sizing: border-box;
}

.panel .panel-body .panel-left span.span1 {
  font-size: 35px;
  display: inline-block;
  color: white;
}

.panel .panel-body .panel-left span.span2 {
  font-size: 20px;
  display: inline-block;
  color: #f6f6f694;
}

.panel .panel-body .panel-left h3 {
  color: white;
  font-size: 19px;
  margin: 0px;
}

.panel .panel-body .panel-left p {
  color: #ffffff8c;
  display: flex;
  flex-direction: row;
  column-gap: 14px;
  align-items: center;
  margin-bottom: 0px;
}

.panel .panel-body .panel-left h4 {
  color: #ffffff94;
  display: flex;
  flex-direction: row;
  column-gap: 6px;
  align-items: center;
  margin-top: 0;
}

.panel .panel-body .panel-left a {
  height: 50px;
  text-decoration: none;
  border-radius: 8px;
  border: 0;
  color: white;
  background: #F0903A;
  font-size: 18px;
  box-shadow: 0px 1px 10px 1px #08000036;
  text-align: center;
  padding-top: 10px;
}

.panel .panel-body .panel-right {
  width: 50%;
  padding: 40px 50px;
  background: #494677;
  border-radius: 0px 0px 8px 0px;
  box-sizing: border-box;
}

.panel .panel-body .panel-right h3 {
  color: white;
  font-size: 19px;
  margin: 0px;
}

.panel .panel-body .panel-right .panel-text {
  color: #ffffff94;
  margin-top: 20px;
}

.panel .panel-body .panel-right .panel-text p {
  margin: 2px 0px;
  font-size: 15px;
}

@media only screen and (max-width: 957px) {
  .panel .panel-header h3 {
    font-size: 20px;
  }
}


@media only screen and (max-width: 675px) {
  .offers {
    height: 100%;
    margin: 0 auto;
  }

  main {
    width: 90%;
    margin: 0px auto;
  }

  .panel .panel-header {
    padding: 30px 25px;
  }

  .panel .panel-body {
    flex-direction: column;
  }

  .panel .panel-body .panel-left {
    width: 100%;
    border-radius: 0px;
    padding: 30px 25px;
  }

  .panel .panel-body .panel-right {
    width: 100%;
    border-radius: 0px 0px 8px 8px;
    padding: 30px 25px;
  }
}

.sondage-section{
  background-color: #01164086;
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-items: center;
  min-height: 120vh;
  height: 120vh;
  padding-top: 10%;
  width: 100%;
}