/* Landscape phones and down */
/* Landscape phone to portrait tablet */
/* Portrait tablet to landscape and desktop */
/* Large desktop */
.education {
  grid-area: mediation;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}
.education::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: url(../img/iris.jpg) no-repeat center/cover;
  z-index: -10;
}
.education h3 {
  text-align: center;
}
@media (max-width: 767px) {
  .education h3 {
    font-size: 2rem;
  }
}
.education .education-presentation {
  display: grid;
  grid: "image1 image1" auto "image2 pres" auto "image3 image3" auto/350px auto;
  gap: 20px;
  justify-items: center;
  align-items: center;
  color: var(--text);
}
@media (max-width: 767px) {
  .education .education-presentation {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
  }
}
.education .education-presentation .image1 {
  grid-area: image1;
}
@media (max-width: 767px) {
  .education .education-presentation .image1 {
    display: flex;
    justify-content: center;
  }
}
.education .education-presentation .image2 {
  grid-area: image2;
}
@media (max-width: 767px) {
  .education .education-presentation .image2 {
    display: flex;
    justify-content: center;
  }
}
.education .education-presentation .image3 {
  grid-area: image3;
}
@media (max-width: 767px) {
  .education .education-presentation .image3 {
    display: flex;
    justify-content: center;
  }
}
.education .education-presentation img {
  grid-area: image;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 8px 22px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  max-width: 350px;
  transition: all 1s;
}
.education .education-presentation img:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .education .education-presentation img {
    max-width: 50%;
  }
}
.education .education-presentation .education-pres {
  grid-area: pres;
  line-height: 2em;
}
@media (max-width: 767px) {
  .education .education-presentation .education-pres {
    display: flex;
    flex-flow: 1;
    padding-top: 3rem;
    font-size: 2rem;
  }
}

/*# sourceMappingURL=leducation-assistee-par-lanimal.css.map */
