/* Styles */

.socialmedia-links {
  font-size: 1.2rem;
  display: block;
  background:#3a4753;
  color: white;
  
}

.socialmedia-links a {
  color: white;
}



.socialmedia-links {
  justify-content: center;
  display: flex;
  align-items: center;
}

.socialmedia-links i {
  margin: 4px;
}

.socialmedia-links #facebook:hover {
  color: rgb(89, 158, 255);
}

.socialmedia-links #youtube:hover {
  color: rgb(250, 70, 70);
}

.socialmedia-links #linkedin:hover {
  color: rgb(89, 158, 255);
}

.socialmedia-links #whatsapp:hover {
  color: rgb(63, 247, 130);
}


/* Why Us section */

.why-us .img-bg {
  min-height: 500px;
  position: relative;
}

.why-us .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.why-us .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
}

.why-us h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-wrapper {
  height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

@media (max-width:900px){
  .socialmedia-links{
    display: none;
  }

}


.call-to-action {
  padding: 0;
}

.call-to-action .container {
  padding: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px;
  }
}

.call-to-action .content h3 {
  font-size: 48px;
  font-weight: 700;
}

.call-to-action .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}

.call-to-action .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  font-size: 18px;
}

.call-to-action .content .cta-btn {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--accent-color);
}

.call-to-action .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.call-to-action .img {
  position: relative;
}

.call-to-action .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}

.call-to-action .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-to-action .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}


/* footer */

body.footer {
  display: flex;
  justify-content: flex-end;
  min-height: 100vh;
}

.footer {
  position: relative;
  width: 100%;
  background:#3a4753;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.footer .social_icon,
.class-menu {
    display: flex;
    position: relative;
    margin: 15px 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

* {
  list-style: none;
}

.footer .class-menu li a {
  color: white;
  margin: 0 10px;
  display: inline-block;
  font-size: 0.89rem;
}

.footer .social_icon li a {
  font-size: 1.5rem;
  color: white;
  margin: 0 10px;
  display: inline-block;
}

.footer p {
  color: white;
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
}

.footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  bottom: -20px;
  background:url(../../valeurs/waveT.png);
  background-size: 1000px 100px;

}

.footer .wave#wave1 {
  
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}

.footer .wave#wave2 {
  opacity: 0.5;
  bottom: 20px;
  animation: animateWave_02 4s linear infinite;
}

/* Animation */


@keyframes animateWave {
  0% {
    background-position-x: 1000px ;
  }

  100% {
    background-position-x: 0px ;
  }


}


@keyframes animateWave_02 {
  0% {
    background-position-x: 0px ;
  }

   100% {
    background-position-x: 1000px ;
  }

}

/* skills */
@keyframes fillbors {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
