header img {
  width: 20%;
}

body {
  font-size: 20px;
  font-family: "Caviar-Dreams";
  width: 100%;
  height: 100%;
  background-color: black;
  overflow-y: unset;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.title h1 {
  padding: 30px;
  width: 80%;
  font-family: "GoodTimes";
  font-size: clamp(22px, 3vw, 26px);
  text-transform: uppercase;
  text-align: center;
}

.title h1 strong {
  color: #F012BE;
  font-weight: bold;
  font-size: clamp(26px, 5vw, 32px);
}

.title h2 {
  font-family: "Goodtimes";
  font-size: clamp(18px, 3vw, 26px);
  padding: 15px;
  text-align: center;
}

.title h2 strong {
  color: rgba(162, 73, 185, 0.8117647059);
  font-weight: bold;
  font-size: clamp(22px, 5vw, 32px);
  text-align: center;
}

.title p {
  text-align: center;
  padding: 0px 15px;
  margin: 0 30px;
  font-size: clamp(16px, 2vw, 22px);
}

.intersection {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 30px 0px;
}

.intersection .trait {
  width: 50%;
  height: 4px;
  background-color: white;
  background-size: 300% 300%;
  background-image: linear-gradient(-45deg, rgba(15, 20, 78, 0.8901960784) 0%, #576fe6 25%, rgba(162, 73, 185, 0.8117647059) 51%, #F012BE 100%);
  -webkit-animation: AnimateBG 20s ease infinite;
  animation: AnimateBG 20s ease infinite;
  border-radius: 50%;
}

@-webkit-keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container1 {
  width: 90%;
  color: white;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 50px;
  padding: 15px 15px 0px 15px;
  margin: auto;
}

.container1 .bulles {
  width: 90%;
  height: auto;
  max-width: 400px;
}

.container1 .bulles img {
  width: 96px;
  height: 96px;
  margin-bottom: 15px;
}

.container1 .bulles h3 {
  font-family: "goodtimes";
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 15px;
}

.container1 .bulles p {
  font-size: clamp(16px, 1.5vw, 16px);
}

.container2 {
  width: 100%;
  color: white;
  display: flex;
  text-align: justify;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 50px;
  margin: 50px auto;
  align-items: center;
}

.container2 .offre {
  width: 25vw;
  height: 600px;
  min-width: 350px;
  background-color: white;
  background-size: 300% 300%;
  background-image: linear-gradient(-45deg, rgba(15, 20, 78, 0.8901960784) 0%, #576fe6 25%, rgba(162, 73, 185, 0.8117647059) 51%, #F012BE 100%);
  -webkit-animation: AnimateBG 20s ease infinite;
  animation: AnimateBG 20s ease infinite;
}

.container2 .offre H1 {
  font-family: "goodtimes";
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 15px;
  color: #C0C0C0;
}

.container2 .offre .offre-bg {
  width: 24.5vw;
  background-color: black;
}

#box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
}

#box img {
  width: 128px;
  border: solid 5px white;
  border-style: double dotted;
  border-radius: 50%;
}

#box h3 {
  font-family: "Caviar-dreams";
  font-size: clamp(20px, 2.5vw, 25px);
  color: white;
  text-transform: uppercase;
  padding: 15px;
  text-align: center;
}

#box h4 {
  font-family: "caviar-dreams";
  font-size: clamp(18px, 2.5vw, 20px);
  padding: 10px;
  text-align: center;
}

#box .trait {
  width: 30%;
  height: 3px;
  border-radius: 15px;
  background-color: white;
}

#box .button {
  width: 80%;
  height: 50px;
  margin: 15px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Goodtimes";
  font-size: clamp(16px, 2vw, 18px);
  border-radius: 25px;
  background-size: 300% 300%;
  background-image: linear-gradient(-45deg, rgba(15, 20, 78, 0.8901960784) 0%, #576fe6 25%, rgba(162, 73, 185, 0.8117647059) 51%, #F012BE 100%);
  -webkit-animation: AnimateBG 20s ease infinite;
  animation: AnimateBG 20s ease infinite;
  color: white;
  cursor: pointer;
}

#box .button:hover {
  scale: 1.15;
}

#box p {
  font-size: clamp(16px, 2vw, 18px);
  padding: 15px 30px;
}

.gradient-border {
  --borderWidth: 3px;
  background: black;
  position: relative;
  border-radius: var(--borderWidth);
  min-height: 450px;
}

.gradient-border:after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(-45deg, #3bade3 0%, #576fe6 25%, rgba(162, 73, 185, 0.8117647059) 51%, hsl(338deg, 100%, 60%) 100%);
  z-index: -1;
  -webkit-animation: animatedgradient 3s ease alternate infinite;
          animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.atout {
  width: 100%;
  height: 500px;
  background-color: #576fe6;
  justify-content: center;
  align-items: center;
}

.atout .container {
  width: 90%;
  height: auto;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.atout .container .bulle {
  width: 20%;
  height: 300px;
  min-width: 300px;
  background-color: white;
}

.service-container {
  width: 100%;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  color: white;
}
.service-container .service-box {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  width: 90%;
  max-width: 450px;
  min-height: 300px;
  padding: 25px;
  margin: 25Px;
  text-align: center;
  -o-border-image: linear-gradient(to right, rgba(185, 28, 240, 0.75), #F012BE) 100% 2;
     border-image: linear-gradient(to right, rgba(185, 28, 240, 0.75), #F012BE) 100% 2;
  border-style: solid;
  border-radius: 16px;
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  border-image-width: 3px 0 0 0;
  padding: 10px;
  /* just to show box-shadow still works fine */
  box-shadow: 0px 3px 4px 7px rgba(185, 28, 240, 0.75);
  -webkit-box-shadow: 0px 3px 4px 7px rgba(185, 28, 240, 0.75);
  -moz-box-shadow: 0px 3px 4px 7px rgba(185, 28, 240, 0.75);
}
@media (max-width: 400px) {
  .service-container .service-box {
    min-height: 400px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 25px 20px;
  }
}
.service-container .service-box .service-icon {
  width: 70px;
  height: 70px;
  z-index: 300;
}
.service-container .service-box .web {
  background-image: url("/img/section1/code.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.service-container .service-box .com {
  background-image: url("/img/section1/megaphone.webp");
  background-size: contain;
}
.service-container .service-box .visibility {
  background-image: url("/img/section1/icon-ref.webp");
  background-size: contain;
}
.service-container .service-box a {
  text-decoration: none;
  color: white;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.service-container .service-box a .moreoffer {
  background-color: #F012BE;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 2px;
  border-radius: 25px;
  text-align: center;
  font-size: clamp(18px, 2vw, 28px);
  margin: auto;
  margin-top: 15px;
}
.service-container .service-box a .moreoffer:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 600px) {
  .service-container .service-box h2 {
    padding: 5px;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: bold;
  }
}
@media screen and (min-width: 600px) {
  .service-container .service-box h2 {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 5px;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: bold;
  }
}
.service-container .service-box strong {
  font-size: clamp(28px, 2vw, 32px);
  color: #F012BE;
}
.service-container .service-box h3 {
  padding: 5px;
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 28px);
}
.service-container .service-box h4 {
  padding: 5px;
  font-size: clamp(20px, 3vw, 24px);
}

.service-box {
  width: 35%;
  justify-items: center;
  align-items: center;
}

.container3 {
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding: 15px;
  text-align: center;
  color: white;
}
.container3 .trait {
  width: 50%;
  height: 4px;
  background-color: white;
  background-size: 300% 300%;
  background-image: linear-gradient(-45deg, rgba(15, 20, 78, 0.8901960784) 0%, #576fe6 25%, rgba(162, 73, 185, 0.8117647059) 51%, #F012BE 100%);
  -webkit-animation: AnimateBG 20s ease infinite;
  animation: AnimateBG 20s ease infinite;
  border-radius: 50%;
  margin: auto;
}

.container3 .title-container3 {
  padding: 10px;
}

.container3 .box-container-container3 {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 45px;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  justify-items: center;
}

.container3 .box-container-container3 .box-container3 {
  width: 35%;
  height: auto;
  border: solid 3px;
  justify-content: center;
  margin: auto;
  text-align: center;
  padding: 50px;
}/*# sourceMappingURL=main.css.map */