header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 514px) {
  header {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
}
@media screen and (min-width: 916px) {
  header {
    padding: 0 8rem;
    padding-bottom: 1rem;
    justify-content: space-between;
  }
}
header a {
  height: -moz-fit-content;
  height: fit-content;
}
header img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 3.5rem;
  width: auto;
}
@media screen and (min-width: 916px) {
  header img {
    height: 5rem;
  }
}

#CTA {
  position: relative;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 514px) {
  #CTA {
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 916px) {
  #CTA {
    padding: 1rem 1.5rem;
  }
}
#CTA.Quote {
  background-color: #cd006b;
  color: white;
}
#CTA.contact-CTA {
  background-color: #3396c0;
  color: white;
}
#CTA::after {
  content: "Write us";
  background-color: #246986;
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
#CTA.Quote::after {
  content: "Quote...";
  direction: ltr;
  background-color: #8f004b;
}
#CTA:hover::after {
  opacity: 1;
}

@keyframes slide-in-ltr {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide-in-rtl {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.banner {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
@media screen and (min-width: 916px) {
  .banner {
    height: 70vh;
  }
}
.banner:not(:hover) button {
  opacity: 0.5;
}
.banner img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.banner ul {
  position: relative;
}
.banner ul li {
  position: absolute;
  top: 0;
  left: 0;
  height: 50vh;
}
@media screen and (min-width: 916px) {
  .banner ul li {
    height: 70vh;
  }
}
.banner ul li:not(.active) {
  transform: translateX(100%);
}
.banner ul li.active {
  animation: slide-in-rtl 0.35s ease-in-out forwards;
}
.banner ul li.out {
  animation: slide-out-rtl 0.35s ease-in-out forwards;
}
.banner ul li.active.reverse {
  animation: slide-in-ltr 0.35s ease-in-out forwards;
}
.banner ul li.out.reverse {
  animation: slide-out-ltr 0.35s ease-in-out forwards;
}
.banner__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 60%;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.5);
}
.banner button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 10%;
  width: 5%;
  transition: opacity 0.4s ease-in-out;
}
@media screen and (min-width: 514px) {
  .banner button {
    width: auto;
  }
}
@media screen and (min-width: 916px) {
  .banner button {
    height: 15%;
  }
}
.banner__left-arrow {
  left: 1%;
}
.banner__right-arrow {
  right: 1%;
}

@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.about-and-products {
  position: relative;
}
.about-and-products ul li,
.about-and-products p {
  line-height: 160%;
}
.about-and-products > div {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media screen and (min-width: 916px) {
  .about-and-products > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.about-and-products > div:hover img {
  transform: scale(1.05);
}
.about-and-products > div:hover h2::after {
  transform: scaleX(1);
}
.about-and-products > div h2 {
  order: 1;
  position: relative;
  background-color: white;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  justify-self: left;
}
@media screen and (min-width: 916px) {
  .about-and-products > div h2 {
    background-color: transparent;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.about-and-products > div h2::after {
  content: "";
  width: 100%;
  height: 10%;
  position: absolute;
  background-color: #eee325;
  z-index: -1;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.21, 0.7);
}
.about-and-products > div img {
  order: 2;
  position: relative;
  top: -1rem;
  z-index: 0;
  transition: transform 0.3s ease-in-out 0.2s;
}
@media screen and (min-width: 514px) {
  .about-and-products > div img {
    top: -2rem;
    width: 80%;
  }
}
@media screen and (min-width: 916px) {
  .about-and-products > div img {
    width: 100%;
    top: 0;
    grid-row: span 2;
  }
}
.about-and-products__about {
  position: relative;
}
.about-and-products__about ul {
  order: 3;
  list-style-type: none;
}
@media screen and (min-width: 916px) {
  .about-and-products__about ul {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 4rem;
    padding-top: 1rem;
  }
}
.about-and-products__about ul > li {
  width: 100%;
  display: flex;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2rem;
}
.about-and-products__about ul > li::before {
  content: "";
  display: inline;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../assets/images/tricolor-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 916px) {
  .about-and-products__products {
    direction: rtl;
  }
}
.about-and-products__products p {
  order: 3;
  direction: ltr;
}
@media screen and (min-width: 916px) {
  .about-and-products__products p {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 4rem;
    padding-top: 1rem;
  }
}

.CTA-block {
  background-color: #eee325;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 916px) {
  .CTA-block {
    padding: 4rem 8rem !important;
  }
}
.CTA-block h2,
.CTA-block p {
  margin-bottom: 1rem;
}
.CTA-block h2 {
  line-height: 100%;
}

@keyframes proximity {
  0% {
    transform: translateY(0) scaleY(1);
  }
  25% {
    transform: translateY(-0.6rem) scaleY(1.05);
  }
  50% {
    transform: translateY(0) scaleY(0.95);
  }
  75% {
    transform: translateY(-0.3rem) scaleY(1.02);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}
@keyframes quality {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
@keyframes speedy {
  0%, 50% {
    transform: rotateZ(-10deg) translateX(0.05rem);
  }
  25% {
    transform: translateX(-0.1rem);
  }
  50%, 100% {
    transform: rotateZ(20deg) translateX(0.1rem);
  }
  75% {
    transform: translateX(-0.1rem);
  }
  100% {
    transform: rotateZ(-10deg) translateX(0.05rem);
  }
}
.points {
  position: relative;
}
@media screen and (min-width: 916px) {
  .points h3 {
    font-size: 1.575rem;
    margin-bottom: 1.5rem;
  }
}
.points h2 {
  margin-bottom: 1rem;
}
@media screen and (min-width: 916px) {
  .points h2 {
    text-align: center;
    margin-bottom: 2.7rem;
  }
}
.points p {
  line-height: 160%;
}
.points__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 916px) {
  .points__block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: dense;
  }
}
.points__point {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0.5rem;
  align-items: center;
}
@media screen and (min-width: 514px) {
  .points__point {
    display: flex;
    flex-direction: column;
  }
}
.points__point__icon {
  display: flex;
  justify-content: center;
}
.points__point--proximity:hover .points__point__icon {
  animation: proximity 0.5s;
}
.points__point--quality:hover .points__point__icon {
  animation: quality 0.5s;
}
.points__point--speedy:hover .points__point__icon {
  animation: speedy 0.15s linear 3;
}
.points__point__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 70%;
  height: auto;
}
@media screen and (min-width: 916px) {
  .points__point__icon img {
    width: 60%;
  }
}
.points__point__icon img[src*="proximity-icon.png"] {
  width: 60%;
}
@media screen and (min-width: 916px) {
  .points__point__icon img[src*="proximity-icon.png"] {
    width: 60%;
  }
}
.points__point__icon img[src*="quality-icon.png"] {
  width: 75%;
}
@media screen and (min-width: 916px) {
  .points__point__icon img[src*="quality-icon.png"] {
    width: 60%;
  }
}
@media screen and (min-width: 916px) {
  .points__point__icon img[src*="speedy-icon.png"] {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 514px) {
  .points__point__text {
    width: 70%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 916px) {
  .points__point__text {
    width: 80%;
    margin-bottom: 0;
  }
}

.contact {
  position: relative;
  background-image: url("../assets/images/magnifying-glass.jpg");
  background-size: cover;
}
@media screen and (min-width: 916px) {
  .contact {
    background-color: #e6f4fb;
    background-image: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px); /* Applique du flou */
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
@media screen and (min-width: 916px) {
  .contact::before {
    display: none;
  }
}
.contact h2,
.contact ul {
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 916px) {
  .contact h2,
  .contact ul {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 514px) {
  .contact h2 {
    margin-bottom: 1rem;
  }
  .contact p {
    line-height: 160%;
  }
}
@media screen and (min-width: 916px) {
  .contact h3 {
    font-size: 1.2rem;
  }
}
.contact img {
  display: none;
}
@media screen and (min-width: 916px) {
  .contact img {
    z-index: 2;
    position: relative;
    display: inline-block;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
}
.contact__way--mail {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 514px) {
  .contact__ways li {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: baseline;
  }
}
.contact__way--address > div p:last-child {
  display: flex;
  align-items: center;
}
.contact__way--address > div p:last-child .metro-icon {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../assets/images/metro.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
.contact__ways {
  list-style-type: none;
}
@media screen and (min-width: 916px) {
  .contact__ways {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}
.contact__ways li {
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2rem;
}
.contact__ways li::before {
  content: "";
  display: inline;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../assets/images/tricolor-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 916px) {
  .contact__ways li {
    display: flex;
    gap: 1rem;
  }
}

.footer {
  background-color: #28363d;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  color: white;
}
@media screen and (min-width: 916px) {
  .footer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 2rem 3rem;
    direction: rtl;
  }
}
.footer img {
  background-color: white;
  -o-object-fit: contain;
     object-fit: contain;
  height: 3.2rem;
  width: auto;
  padding: 0.5rem;
}
@media screen and (min-width: 916px) {
  .footer img {
    height: 4.7rem;
  }
}
.footer .CTAs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 916px) {
  .footer .CTAs {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.footer .CTAs button {
  font-size: 0.7rem;
}
.footer__contact {
  grid-column: 1/span 2;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media screen and (min-width: 916px) {
  .footer__contact {
    grid-column: 3/span 2;
    direction: ltr;
  }
}
.footer__contact h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer__contact ul {
  list-style-type: none;
  font-size: 0.8rem;
}
.footer__address__block > ul li:last-child {
  display: flex;
  align-items: center;
}
.footer__address__block > ul li:last-child .metro-icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../assets/images/metro.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 900;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

@media screen and (min-width: 916px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.25rem;
  }
}
button {
  font-family: "Inria Serif", serif;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1rem;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

section:not(.banner) {
  padding: 2rem 1rem;
}
@media screen and (min-width: 514px) {
  section:not(.banner) {
    padding: 2rem 4rem;
  }
}
@media screen and (min-width: 916px) {
  section:not(.banner) {
    padding: 6rem 8rem;
  }
}/*# sourceMappingURL=styles.css.map */