@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600;700&display=swap');

/***General body**/
:root
{
  --green:#27ae60;
  --dark-color:#219150;
  --black:#444;
  --light-color:#666;
  --border:.1rem solid rgba(0,0,0,.1);
  --border-hover:.1rem solid var(--black);
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --color-success:#2ecc71;
  --color-error:#e74c3c;
  --outline : .1rem solid rgba(0,0,0,.1);
  --outline-hover : .2rem solid var(--green);
  --progress: 100%;
  --progress1:100%;
  --progress2:100%;
  --progress3:100%;
  --progress4:100%;
}

*
{
  font-family: 'Newsreader', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all .2s linear;
  transition: width none;
}

a
{
  text-decoration: none !important;
}

html
{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar
{
  width: 1rem;
}

html::-webkit-scrollbar-track
{
  background: transparent;
}

html::-webkit-scrollbar-thumb
{
  background: var(--black);
}

section
{
  padding: 5rem 9%;
}

.heading
{
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.heading::before
{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.1rem;
  background: rgba(0, 0, 0, .2);
  z-index: -1;
}

.heading span
{
  font-size: 3rem;
  padding: .5rem 2rem;
  color: var(--black);
  background: #fff;
  border: var(--border);
}



/*Menu header**/

/*Top-Navbar*/
.header .header-1
{
  background: #fff;
  padding: 1.5rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-1 .logo
{
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
}

.header .header-1 .logo i
{
  color: var(--green);
}

.header .header-1 .search-from
{
  width: 50rem;
  height: 5rem;
  border: var(--border);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: .5rem;
}

.header .header-1 .search-from input
{
  font-size: 1.6rem;
  padding: 0 1.2rem;
  height: 100%;
  width: 100%;
  text-transform: none;
  color: var(--black);
}

.header .header-1 .search-from label
{
  font-size: 2.5rem;
  padding-right: 1.5rem;
  color: var(--black);
  cursor: pointer;
}

.header .header-1 .search-from label:hover
{
  color: var(--green);
}

.header .header-1 .icons div,
.header .header-1 .icons a
{
  display: inline-block;
  align-items: center;
  font-size: 2.5rem;
  margin-left: 1.5rem;
  color: var(--black);
  cursor: pointer;
}


.header .header-1 .icons div:hover,
.header .header-1 .icons a:hover
{
  color: var(--green);
}

#search-btn
{
  display: none;
}


/*Menu-Navbar***/
.header .header-2
{
  background: var(--green);
}

.header .header-2 .navb
{
  text-align: center;
}

.header .header-2 a
{
  color: #fff;
  display: inline-block;
  padding: 1.2rem;
  font-size: 1.7rem;
}

.header .header-2 a:hover
{
  background: var(--dark-color);
}

.header .header-2.active
{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}


/***Menu-Navabar bottom**/
.bottom-navb
{
  text-align: center;
  background: var(--green);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.bottom-navb a
{
  font-size: 2.5rem;
  padding: 2rem;
  color: #fff;
}

.bottom-navb a:hover
{
  background: var(--dark-color);
}

/*Menu-Navbar responsive***/
@media(max-width:991px)
{
  html
  {
    font-size: 55%;
  }

  .header .header-1
  {
    padding: 2rem;
  }

  section
  {
    padding: 3rem 2rem;
  }

}

@media(max-width:767px)
{
  html
  {
    scroll-padding-top: 0;
  }

  body
  {
    padding-bottom: 6rem;
  }

  .header .header-2
  {
    display: none;
  }
  
  .bottom-navb
  {
    display: block;
  }

  #search-btn
  {
    display: inline-block;
  }

  .header .header-1
  {
    box-shadow: var(--box-shadow) !important;
    position: relative;
  }

  .header .header-1 .search-from
  {
    position: absolute;
    top: -115%;
    right: 2rem;
    width: 90%;
    box-shadow: var(--box-shadow);
  }

  .header .header-1 .search-from.active
  {
    top: 115%;
    z-index: 1000 !important;
  }

  .home .row .content
  {
    text-align: center;
  }

  .home .row .content h3
  {
    font-size: 3rem;
  }

  .newsletter
  {
    background-position: left;
  }

  .newsletter form
  {
    margin: 0;
    width: 100%;
  }
}


@media(max-width:450px)
{
  html
  {
    font-size: 50%;
  }
}

/***Login-form****/
.login-from-container
{
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .9);
  position: fixed;
  top: 0;
  right: -105%;
  z-index: 1000;
  height: 100%;
  width: 100%;
}

.login-from-container form
{
  background: #fff;
  border: var(--border);
  width: 50rem;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border-radius: .5rem;
  margin: 2rem;
}

.login-from-container form h3
{
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

.login-from-container form span
{
  display: block;
  font-size: 1.5rem;
  padding-top: 1rem;
}

.login-from-container form .box
{
  width: 100%;
  margin: .7rem 0;
  font-size: 1.6rem;
  border: var(--border);
  border-radius: .5rem;
  padding: 1rem 1.2rem;
  color: var(--black);
  text-transform: none;
}

.login-from-container form .checkbox
{
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
}

.login-from-container form .checkbox label
{
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.btn
{
  margin-top: 1rem;
  display: inline-block;
  padding: .9rem 3rem;
  border-radius: .5rem;
  color: #fff;
  background: var(--green);
  font-size: 1.7rem;
  cursor: pointer;
  font-weight: 500;
}

.btn:hover
{
  background: var(--dark-color);
  color: #fff;
}

.login-from-container form .btn
{
  text-align: center;
  width: 100%;
  margin: 1.5rem 0;
}

.login-from-container form p
{
  padding-top: .8rem;
  color: var(--light-color);
  font-size: 1.5rem;
}

.login-from-container form p a
{
  color: var(--green);
  text-decoration: underline !important;
}

.login-from-container #close-login-btn
{
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 5.5rem;
  color: var(--black);
  cursor: pointer;
}

.login-from-container.active
{
  right: 0;
}


/****Slide****/
.home
{
  background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/Slides/Slide_01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 60vh;
  background-position: 50% 50%;
  width: 100%;
}

.home .row
{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.home .row .content
{
  flex: 1 1 42rem;
}


.home .row .book-slider
{
  flex: 1 1 42rem;
  text-align: center;
  margin-top: 2rem;
}

.home .row .book-slider a img
{
  width: 18rem;
  height: 25rem;
}

.home .row .book-slider a:hover img
{
  transform: scale(.9);
}
.home .row .book-slider .stand
{
  width: 100%;
  margin-top: -20rem;
}

.home .row .content h3
{
  color: #fff;
  font-size: 4.5rem;
}

.home .row .content p
{
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  padding: 1rem 0;
}

/****Icons stats***/
.icons-container
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.icons-container .icons
{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.icons-container .icons i
{
  font-size: 3.5rem;
  color: var(--green);
}

.icons-container .icons h3
{
  font-size: 2.2rem;
  color: var(--black);
}

.icons-container .icons p
{
  font-size: 1.4rem;
  text-align: center !important;
  color: var(--light-color);
  font-weight: bolder !important;
}

/***Form-register***/
#form
{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 30, 0, 0.8),rgba(0, 30, 0, 0.8)), url(../img/Slides/Slide_01.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.tab-form
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 450px;
  background: #fff;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.6);
}

.tab-form .tab-header
{
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.tab-form .tab-header > div
{
  flex: 1;
  padding: 15px;
  text-align: center;
  color: #555;
  cursor: pointer;
}

.tab-form .tab-header > div.actives
{
  border: 1px solid var(--green);
  color: #fff;
  background: var(--green);
  font-size: 15px !important;
}

.tab-form .tab-body
{
  position: relative;
  min-height: 495px !important;
  overflow: hidden;
}

.tab-form .tab-body > div
{
  position: absolute;
  width: 100%;
  top: -150vh;
  opacity: 0;
  padding: 5px 25px;
  transition: opacity 300ms ease-in-out 0ms;
}

.tab-form .tab-body > div.actives
{
  top: 0;
  opacity: 1;
  transition: opacity 300ms ease-in-out 0ms;
}

.tab-form .tab-body > div h2
{
  font-size: 25px;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

.tab-form .tab-body > div .form-input
{
  margin: 10px 0;
}

.tab-form .tab-body > div .form-input label
{
  display: block;
  font-size: 15px;
}

.tab-form .tab-body > div .form-input input
{
  width: 100%;
  padding: 4px;
  margin-top: 3px;
  border: var(--border);
  font-size: 10px !important;
  color: #000 !important;
  font-weight: 500 !important;
}

.tab-form .tab-body > div .form-input button
{
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--green);
  color: #f5f5f5;
  font-weight: 600;
}

.form-box h1
{
  font-size: 30px;
  margin-bottom: 60px;
  color: var(--green);
  position: relative;
}

.form-box h1::after
{
  content: '';
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: var(--green);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
}

/*****Validation du formulaire de register clt****/
.form-input small
{
  visibility: hidden;
}

.form-input.success input
{
  border-color: var(--color-success) !important;
}

.form-input.error input
{
  border-color: var(--color-error) !important;
}

.form-input.error small
{
  color: var(--color-error);
  visibility: visible;
}


/***Prof-index**/

.featured .featured-slider .box
{
  width: 30rem !important;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border: var(--border);
  text-align: center;
}


.featured .featured-slider .box:hover
{
  border: var(--border-hover);
}

.featured .featured-slider .box .image
{
  padding: 1rem;
  background: linear-gradient(15deg, #eee 30%, #fff 30.5%);
}

.featured .featured-slider .box:hover img
{
  transform: translateY(5rem);
}

.featured .featured-slider .box .image img
{
  width: 26rem;
  height: 26rem;
}

.featured .featured-slider .box .icons
{
  border-bottom: var(--border-hover);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1;
  transform: translateY(-105%);
}

.featured .featured-slider .box:hover .icons
{
  transform: translateY(0%);
}

.featured .featured-slider .box .icons a
{
  color: var(--black);
  font-size: 2.2rem;
  padding: 0.6rem 0.6rem;
}

.featured .featured-slider .box .icons a:hover
{
  background: var(--green);
  color: #fff;
}

.featured .featured-slider .box .content
{
  background: #eee;
  padding: 1.5rem;
}

.featured .featured-slider .box .content h3
{
  font-size: 2rem;
  color: var(--black);
}

.featured .featured-slider .box .content .price
{
  font-size: 2.2rem;
  color: var(--black);
  padding-top: 1rem;
  font-weight: bolder;
}

.featured .featured-slider .box .content .price span
{
  font-size: 1.5rem;
  color: var(--light-color);
  text-decoration: line-through;
}

.swiper-button-next,
.swiper-button-prev
{
  border: var(--border-hover);
  height: 4rem !important;
  width: 4rem !important;
  color: var(--black) !important;
  background: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after
{
  font-size: 2rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover
{
  background: var(--black);
  color: #fff !important;
}


/***Newsletter****/
.newsletter
{
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/Slides/new.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.newsletter form
{
  width: 45rem;
  margin-left: auto;
  text-align: center;
  padding: 5rem 0;
}

.newsletter form h3
{
  font-size: 2.2rem;
  color: #fff;
  padding-bottom: .7rem;
  font-weight: normal;
}

.newsletter form .box
{
  width: 100%;
  margin: .7rem 0;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  color: var(--black);
  border-radius: .5rem;
  text-transform: none;
}

/****Deal***/
.deal
{
  background: #f3f3f3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.deal .content
{
  flex: 1 1 42rem;
}

.deal .image
{
  flex: 1 1 42rem;
}

.deal .image img
{
  width: 100%;
}

.deal .content h3
{
  color: var(--green);
  font-size: 2.5rem;
  padding-bottom: .5rem;
}

.deal .content h1
{
  color: var(--black);
  font-size: 4rem;
}

.deal .content p
{
  padding: 1rem 0;
  color: var(--light-color);
  font-size: 1.4rem;
  line-height: 2;
}

/***Temoins***/
.reviews .reviews-slider .box
{
  width: 30rem;
  border: var(--border);
  padding: 2rem;
  text-align: center;
}

.reviews .reviews-slider .box:hover
{
  border: var(--border-hover);
}

.reviews .reviews-slider .box img
{
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.reviews .reviews-slider .box h3
{
  color: var(--black);
  font-size: 2.2rem !important;
  padding: .5rem 0;
}

.reviews .reviews-slider .box p
{
  color: var(--black);
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 2;
}

.reviews .reviews-slider .box .stars i
{
  font-size: 1.7rem;
  color: var(--green);
}

/****Footer***/

.footer .box-container
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3
{
  font-size: 2.2rem;
  color: var(--black);
  padding: 1rem 0;
}

.footer .box-container .box a
{
  display: block;
  font-size: 1.4rem;
  color: var(--light-color);
  padding: 1rem 0;
}

.footer .box-container .box a i
{
  color: var(--green);
  padding-right: .5rem;
}

.footer .box-container .box a:hover i
{
  padding-right: 2rem;
}

.footer .box-container .box .map
{
  width: 100%;
}

.footer .share
{
  padding: 1rem 0 !important;
  text-align: center !important;
}

.footer .share a 
{
  width: 5rem !important;
  height: 5rem !important;
  line-height: 5rem !important;
  color: #fff;
  font-size: 5rem !important;
  background: var(--green);
  margin: .3rem .3rem;
  border-radius: 50%;
}


.footer .share a:hover
{
  background: var(--black);
}

.footer .credit
{
  border-top: var(--border);
  margin-top: 2rem;
  padding: 0 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: var(--light-color);
  text-align: center;
}

.footer .credit span a
{
  color: var(--green) !important;
}

/***Loading***/
.loader-container
{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-container.active
{
  display: none !important;
}

/*
.loader-container img
{
  height: 20rem !important;
}
*/

/****Contact***/
#contact
{
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  padding: 2rem;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form
{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form
{
  background: #009900;
  position: relative;
}

.circle
{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #00f500);
  position: absolute;
}

.circle.one
{
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two
{
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before
{
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: #009900;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

#contact form
{
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title
{
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container
{
  position: relative;
  margin: 1rem 0;

}

.input-container .input
{
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.7rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  border-radius: 22px !important;
  transition: 0.3s;
}


textarea.input
{
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label
{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 1.5rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label
{
  top: 1rem;
  transform: translateY(0);
}

.btns
{
  padding: 0.7rem 1.3rem;
  background: #fff;
  border: 2px solid #fafafa;
  font-size: 1.95rem;
  color: #009900;
  line-height: 1;
  border-radius: 22px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btns:hover
{
  background: transparent;
  color: #fff;
}

.input-container span
{
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  padding: 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after
{
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background: #009900;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before
{
  left: 50%;
}

.input-container span:after
{
  right: 50%;
}

.input-container.focus label
{
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 1.5rem;
}

.input-container.focus span:before,
.input-container.focus span:after
{
  width: 50%;
  opacity: 1;
}

.contact-info
{
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .titles
{
  color: #009900;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.texts
{
  color: #333;
  margin: 1.5rem 0 2rem 0;
  text-align: center !important;
}

.information
{
  display: flex;
  color: var(--black);
  margin: 1rem 0;
  align-items: center;
  font-size: 1.5rem;
}

.information a
{
  color: #333;
}

.icon
{
  font-size: 28px !important;
  color: #009900;
  margin-right: 0.8rem !important;
}

.social-media
{
  padding: 2rem 0 0 0;
}

.social-media p
{
  color: #333;
  font-size: 22px;
}

.social-icon
{
  display: flex;
  margin-top: 1.5rem;
}

.social-icon a
{
  width: 35px;
  font-size: 24px !important;
  border-radius: 5px;
  background: linear-gradient(45deg, var(--green), #009900);
  color: #fff;
  text-align: center;
  line-height: 35px !important;
  margin-right: 1.2rem;
  transition: 0.3s;
}

.social-icon a:hover
{
  transform: scale(1.05);
}

.contact-info:before
{
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #009900;
  border-radius: 50%;
  bottom: -50px !important;
  right: 50px;
  opacity: 0.3;
}

.big-circle
{
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--green), #009900);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
  opacity: 0.1;
}

.big-circle:after
{
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

@media(max-width: 850px)
{
  .form
  {
    grid-template-columns: 1fr;
  }

  .contact-info:before
  {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before
  {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .big-circle
  {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text
  {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media
  {
    padding: 1.5rem 0 0 0;
  }
}

@media(max-width: 480px)
{
  .container
  {
    padding: 1.5rem;
  }

  .contact-info:before
  {
    display: none;
  }

  .big-circle
  {
    display: none;
  }

  .contact-form form,
  .contact-info
  {
    padding: 1.7rem 1.6rem;
  }

  .texts,
  .information,
  .social-media p
  {
    font-size: 1rem;
  }

  .titles
  {
    font-size: 1.5rem;
  }

  .social-icon a
  {
    font-size: 18px;
    line-height: 30px;
  }

  .icon
  {
    font-size: 18px;
  }

  .input
  {
    padding: 0.45rem 1.2rem;
  }

  .btns
  {
    padding: 0.45rem 1.2rem;
  }
}


::placeholder
{
  color: #000 !important;
  opacity: 1;
  font-size: 11px !important;
}

:-ms-input-placeholder
{
  color: #000 !important;
}

::-ms-input-placeholder
{
  color: #000 !important;
}

/**Contact***/
.input-container ::placeholder
{
  color: #fafafa !important;
  opacity: 1;
  font-size: 11px !important;
}

.input-container :-ms-input-placeholder
{
  color: #fafafa !important;
}

.input-container ::-ms-input-placeholder
{
  color: #fafafa !important;
}
/*****Team-profs***/
.prof .member
{
  position: relative;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: start;
}

.prof .member .teampic img
{
  width: 130px !important;
  height: 100px !important;
}

.prof .member .teampic
{
  overflow: hidden;
  border-radius: 50%;
}

.prof .member .member-info
{
  padding-left: 30px;
}

.prof .member h4
{
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
}

.prof .member span
{
  display: block;
  font-size: 15px;
  padding-bottom: 8px;
  position: relative;
  font-weight: 500;
}

.prof .member span::after
{
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--green);
  left: 0;
}

.prof .member p
{
  margin: 10px 0 0 0;
  font-size: 15px;
}

.prof .member .bts
{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#prof
{
  padding: 60px 0;
  overflow: hidden;
}

.secton-title
{
  text-align: center;
}

.secton-title p
{
  font-size: 15px;
  color: var(--light-color);
}

@media(max-width : 850px)
{
  .prof .member p
  {
    margin: 12px 0 0 0;
    font-size: 15px;
  }

  .prof .member span
  {
    font-size: 18px !important;
  }

  .prof .member .teampic img
  {
    width: 100px !important;
  }

  .secton-title p
  {
    font-size: 12px;
    color: var(--light-color);
  }
}

@media(max-width: 767px)
{
  .prof .member p
  {
    margin: 10px 0 0 0;
    font-size: 10px;
  }

  .prof .member .teampic img
  {
    width: 130px !important;
    height: 80px !important;
  }

  .secton-title p
  {
    font-size: 12px;
    color: var(--light-color);
  }

}

@media (max-width: 450px)
{
  .prof .member .teampic img
  {
    width: 120px !important;
    height: 70px !important;
  }

  .prof .member .teampic
  {
    margin-top: 40px;
  }

  .prof .member span
  {
    font-size: 11px !important;
  }

  .secton-title p
  {
    font-size: 10px;
    color: var(--light-color);
  }
}

#cherch-container
{
  width: 95%;
  margin: auto 0;
  margin: 1rem 0;
}

#cherch-container input
{
  background-color: transparent;
  width: 30%;
  border-bottom: 1.5px solid var(--green);
  padding: 1rem 0.3rem;
}

#cherch-container input:focus
{
  border-bottom-color: var(--green);
}

#cherch-container button
{
  padding: 1rem 2rem;
  margin-left: 1rem;
  background-color: var(--green);
  color: #ffffff;
  border-radius: 5px;
  margin-top: 0.5rem;
}

.button-value
{
  border: 1px solid var(--green);
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  background-color: transparent;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  margin: auto 3px !important;
  cursor: pointer;
}

.acve
{
  background: var(--green);
  color: #ffffff;
}

.button-value:hover
{
  background: var(--green);
  color: #ffffff;
}

@media(max-width: 991px)
{
  #cherch-container input
  {
    width: 50% !important;
  }
}

@media(max-width: 768px)
{
  .button-value
  {
    padding: 0.5rem 1.2rem;
    font-size: 10px;
  }

  #cherch-container button
  {
    padding: 0.5rem 1.3rem;

  margin-top: 0.5rem;
  }

  #cherch-container input
  {
    width: 60% !important;
  }
}

@media(max-width: 450px)
{
  .button-value
  {
    padding: 0.3rem 1rem;
    font-size: 9px;
  }

  #cherch-container button
  {
    padding: 0.3rem 1rem;

    margin-top: 0.5rem;
  }
}

/****Recommandations***/
.blog-container
{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;
}

.blog-box
{
  width: 320px;
  background: #ffffff;
  border: 1px solid #ececec;
  margin: 10px;
  height: 500px !important;
}

.blog-img
{
  width: 100%;
  height: 250px !important;
}

.blog-img img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-text
{
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.blog-text .blog-tilte
{
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--green);
}

.blog-text span
{
  color: #272727;
  font-size: 1.5rem;
}

.blog-text span:hover
{
  color: var(--green);
  transition: all ease 0.3s;
}

@media(max-width: 767px)
{
  #title_ecole span
  {
    font-size: 1.7rem !important;
  }

  #title_prof_recom span
  {
    font-size: 1.5rem !important;
  }
}

/****COurs-exercices****/
.blog-post
{
  width: 100%;
  padding: 5rem;
  background-color: #dbf4ff21;
  box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  border-radius: .8rem;
  margin: 10px;
}

.blog-post_img
{
  min-width: 35rem;
  max-width: 35rem;
  height: 30rem;
  transform: translateX(-8rem) !important;
  position: relative;
}

.blog-post_img img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post_img img::before
{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, 0.5);
}

.blog-post_date
{
  display: block;
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 600;
  margin: .5rem 0;
}

.blog-post_tilte
{
  font-size: 2.5rem;
  margin: 1.5rem 0 2rem;
  text-transform: uppercase;
  color: var(--green);
}

.blog-post_text
{
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);

}

#blog-post_cta
{
  display: inline-block;
  padding: 1.5rem 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
  border-radius: .8rem;
  text-decoration: none;
  background: linear-gradient(to right, #009900 0%, var(--green) 100%);
}

#blog-post_cta:hover
{
  background: linear-gradient(to right, var(--green) 0%, #009900 100%);
}

@media screen and (max-width: 991px)
{
  .blog-post
  {
    max-width: 100%;
  }

  .blog-post_img
  {
    max-width: 30rem;
    max-height: 30rem;
  }
}

@media screen and (max-width: 868px)
{
  .blog-post
  {
    max-width: 100%;
  }

  .blog-post_text
  {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 768px)
{
  .blog-post
  {
    max-width: 100% !important;
    flex-direction: column;
  }

  .blog-post_text
  {
    font-size: 1.2rem !important;
  }

  .blog-post_img
  {
    max-width: 100%;
    max-height: 100%;
    transform: translate(0 .1rem);
    transform: translateX(0) !important;
  }

  #blog-post_cta
  {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/****Bloc detail prof****/

.card-style1 {
    box-shadow: 0px 0px 10px 0px rgb(89 75 128 / 9%);
}
.border-0 {
    border: 0!important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}

#detail {
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}
.mb-2-3, .my-2-3 {
    margin-bottom: 2.3rem;
}

.section-title {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.text-primary {
    color: #fff !important;
    font-size: 15px !important;
}
.text-secondary {
    color: #15395A !important;
}
.font-weight-600 {
    font-weight: 600;
}
.display-26 {
    font-size: 1.3rem;
}

@media screen and (min-width: 992px){
    .p-lg-7 {
        padding: 4rem;
    }
}
@media screen and (min-width: 768px){
    .p-md-6 {
        padding: 3.5rem;
    }
}
@media screen and (min-width: 576px){
    .p-sm-2-3 {
        padding: 2.3rem;
    }
}
.p-1-9 {
    padding: 1.9rem;
}

.bg-secondary {
    background: #15395A !important;
    width: 100% !important;
}
@media screen and (min-width: 576px){
    .pe-sm-6, .px-sm-6 {
        padding-right: 3.5rem;
    }
}
@media screen and (min-width: 576px){
    .ps-sm-6, .px-sm-6 {
        padding-left: 3.5rem;
    }
}
.pe-1-9, .px-1-9 {
    padding-right: 1.9rem;
}
.ps-1-9, .px-1-9 {
    padding-left: 1.9rem;
}
.pb-1-9, .py-1-9 {
    padding-bottom: 1.9rem;
}
.pt-1-9, .py-1-9 {
    padding-top: 1.9rem;
}
.mb-1-9, .my-1-9 {
    margin-bottom: 1.9rem;
}
@media (min-width: 992px){
    .d-lg-inline-block {
        display: inline-block!important;
    }
}
.rounded {
    border-radius: 0.25rem!important;
}

/*****Profil ecole***/
.bg-secondary-soft {
    background-color: rgba(208, 212, 217, 0.1) !important;
}
.rounded {
    border-radius: 5px !important;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
.file-upload .square {
    height: 250px;
    width: 250px;
    margin: auto;
    vertical-align: middle;
    border: 1px solid #e5dfe4;
    background-color: #fff;
    border-radius: 5px;
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(208, 212, 217, 0.5) !important;
}
.btn-success-soft {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}
.btn-danger-soft {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #29292e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e5dfe4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

/****Image-create-professeur****/
.wrapper
{
  position: relative;
  height: 300px;
  width: 100%;
  border: 2px dashed var(--green);
  border-radius: 10px;
  background: #fff !important;
  display: flex;
  align-items: center !important;
  justify-content: centre !important;
  text-align: center !important;
  overflow: hidden;
}

.wrapper.activer
{
  border: none;
}

.wrapper .image
{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper .image img
{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wrapper .icon
{
  font-size: 100px !important;
  color: var(--green);
  text-align: center !important;
}

.wrapper .text
{
  font-size: 20px;
  font-weight: 500;
  color: var(--light-color);
  text-align: center !important;
}

.wrapper #cancel-btn
{
  position: absolute !important;
  top: 15px;
  right: 15px;
  font-size: 28px !important;
  cursor: pointer;
  color: var(--green);
  display: none;
}

.wrapper.activer:hover #cancel-btn
{
  display: block;
}

.wrapper.activer #cancel-btn:hover
{
  color: #fff;
}

.wrapper .file-name
{
  position: absolute !important;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(135deg, #009900 0%, var(--green) 100%);
  width: 100%;
  color: #fff;
  padding: 8px 0;
  display: none;
  font-size: 18px;
}

.wrapper.activer:hover .file-name
{
  display: block;
}

#custom-btn
{
  margin-top: 30px !important;
  width: 100%;
  height: 50px;
  display: block;
  border: none;
  outline: none !important;
  background: linear-gradient(135deg, #009900 0%, var(--green) 100%);
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-control:focus
{
  box-shadow: none !important;
  border-color: var(--green) !important;
}

.form-control
{
  resize: none !important;
}

/***Resultats examens**/

/***CEPE***/
#progressBar
{
  width: 220px !important;
  height: 35px !important;
  border: 2px solid #00aeff;
  position: relative !important;
  border-radius: 20px !important;
}

#progressBar::before
{
  content: attr(data-progress);
  position: absolute !important;
  left: 0;
  top: 0;
  width: var(--progress) !important;
  max-width: 100%;
  height: 100%;
  background: #00aeff;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 2% !important;
}


/***BEPC***/
#progressBar1
{
  width: 220px !important;
  height: 35px !important;
  border: 2px solid grey;
  position: relative !important;
  border-radius: 20px !important;
}

#progressBar1::before
{
  content: attr(data-progress1);
  position: absolute !important;
  left: 0;
  top: 0;
  width: var(--progress1) !important;
  max-width: 100%;
  height: 100%;
  background: grey;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 2% !important;
}

/****BAC SM***/
#progressBar2
{
  width: 220px !important;
  height: 35px !important;
  border: 2px solid green;
  position: relative !important;
  border-radius: 20px !important;
}

#progressBar2::before
{
  content: attr(data-progress2);
  position: absolute !important;
  left: 0;
  top: 0;
  width: var(--progress2) !important;
  max-width: 100%;
  height: 100%;
  background: green;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 2% !important;
}

/****BAC SE***/
#progressBar3
{
  width: 220px !important;
  height: 35px !important;
  border: 2px solid black;
  position: relative !important;
  border-radius: 20px !important;
}

#progressBar3::before
{
  content: attr(data-progress3);
  position: absolute !important;
  left: 0;
  top: 0;
  width: var(--progress3) !important;
  max-width: 100%;
  height: 100%;
  background: black;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 2% !important;
}


/****BAC SS***/
#progressBar4
{
  width: 220px !important;
  height: 35px !important;
  border: 2px solid yellow;
  position: relative !important;
  border-radius: 20px !important;
}

#progressBar4::before
{
  content: attr(data-progress4);
  position: absolute !important;
  left: 0;
  top: 0;
  width: var(--progress4) !important;
  max-width: 100%;
  height: 100%;
  background: yellow;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  padding-right: 2% !important;
}

/***FAQ**/
.accordian
{
  max-width: 800px !important;
}

.accordian .contentBx
{
  position: relative;
  margin: 10px 20px;
}

.accordian .contentBx .label
{
  position: relative;
  padding: 10px;
  background: var(--green);
  font-size: 2rem !important;
  color: #fff;
  cursor: pointer;
}

.accordian .contentBx .label::before
{
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-weight: 600;
}

.accordian .contentBx.activor .label::before
{
  content: "-";
}

.accordian .contentBx .contents
{
  position: relative;
  font-size: 1.8rem !important;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  overflow-y: auto;
}

.accordian .contentBx.activor .contents
{
  height: 150px;
  padding: 10px;
}

/****About****/
.about-1 p
{
  text-align: center !important;
  font-size: 14px !important;
  padding: 3px !important;
}

.about-item
{
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  background-color: white;
  padding: 50px 20px !important;
  height: 300px !important;
  box-shadow: 0 0 9px rgba(0, 0, 0, .6) !important;
}

.about-item i
{
  font-size: 43px;
  margin: 0;
  color: var(--green) !important;
}

.about-item  h3
{
  font-size: 25px;
  margin-bottom: 10px;
}

.about-item hr
{
  background: var(--green) !important;
}

.about-item p
{
  margin-top: 20px !important;
}

.about-item:hover
{
  background: var(--green) !important;
  color: #fff !important;
}

.about-item:hover i
{
  color: #fff !important;
}

.about-item:hover hr
{
  background: #fff !important;
}

.about-item:hover i
{
  transform: translateY(-20px);
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover hr
{
  transition: all 200ms ease-in-out !important;
}

/***new-prof****/
.boxs-container
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.boxs-container .boxs
{
  padding: 2rem 3rem;
  background: #fff;
  outline: var(--outline-hover);
  outline-offset: -1rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  height: 450px !important;
}

.boxs-container .boxs:hover
{
  outline: var(--outline-hover);
  outline-offset: 0;
}

.boxs-container .boxs img
{
  margin: 1rem 0;
  width: 180px !important;
  height: 15rem;
}

.boxs-container .boxs h3
{
  font-size: 2.5rem;
  line-height: 1.8;
  color: var(--black);
}

.boxs-container .boxs h4
{
  font-size: 2rem;
  line-height: 1.8;
  color: var(--black);
}

.boxs-container .boxs p
{
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--light-color);
  padding: 1rem 0;
}


