/* TEXTE IMAGE */
.text-image {
  background: url(../images/bg-fond.png), #fff;
  margin-top: 56px;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .text-image {
    margin-top: 99px;
    margin-bottom: 128px;
  }
}
.text-image .container {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .text-image .container {
    gap: 64px;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  }
}
@media screen and (min-width: 1281px) {
  .text-image .container {
    padding: 0 80px;
  }
}
.text-image .container-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .text-image .container-text {
    padding: 40px 0;
  }
}
.text-image .container-text .uptitle {
  color: var(--electricBlue);
  border-color: var(--electricBlue);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .text-image .container-text .uptitle {
    margin-bottom: 40px;
  }
}
.text-image .container-text h2 {
  color: var(--electricBlue);
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .text-image .container-text h2 {
    margin-bottom: 40px;
    font-size: 3rem;
  }
}
.text-image .container-text h2 strong {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .text-image .container-text h2 strong {
    font-size: 3.5rem;
  }
}
.text-image .container-text h3 {
  color: var(--electricBlue);
  font-family: var(--merriweather);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .text-image .container-text h3 {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}
.text-image .container-text h3 strong {
  font-family: var(--albert);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .text-image .container-text h3 strong {
    font-size: 2.5rem;
  }
}
.text-image .container-text p {
  color: var(--greyDark);
}
.text-image .container-text p strong {
  color: var(--black);
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .text-image .container-text p strong {
    font-size: 1.25rem;
  }
}
.text-image .container-img {
  height: 350px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .text-image .container-img {
    height: 100%;
  }
}
.text-image .container-img .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}
.text-image .container-img .blended {
  mix-blend-mode: darken;
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .text-image.reverse .container-text {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .text-image.reverse .container-img {
    order: 1;
  }
}

/* END TEXTE IMAGE */
