.section__home {
  display: flex;
  height: calc(100dvh - 77px + 140px);
}
.section__home .home__bloc {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.section__home .home__bloc-image {
  width: 100%;
  height: 100%;
  position: absolute;
}
.section__home .home__bloc-image::before {
  z-index: 2;
  content: '';
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0);
  backdrop-filter: blur(10px) brightness(90%);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.section__home .home__bloc-image::after {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}
.section__home .home__bloc-logos {
  z-index: 3;
  margin-top: auto;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: rgba(255,255,255,0.69);
  min-height: 140px;
}
.section__home .home__bloc-logos img {
  width: auto;
  height: 100%;
  max-height: 120px;
  margin: 0 10px;
}
.section__home .home__bloc-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  height: 100%;
}
.section__home .home__bloc-content .home__bloc-logo {
  height: 145px;
  width: auto;
}
.section__home .home__bloc-texte {
  margin-top: 35px;
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.55s ease;
  text-align: center;
  color: #ffffff;
}
.section__home .home__bloc-texte .icon {
  display: inline-flex;
  color: #CB1030;
  font-size: 2.3rem;
  margin-bottom: 8px;
}
.section__home .home__bloc-texte p {
  max-width: 430px;
}
.section__home .home__bloc-texte .bouton1 {
  border-color: #ffffff;
  color: #ffffff;
}
.section__home .home__bloc-texte .bouton1 i.icon-fleche {
  color: #ffffff;
}
.section__home .home__bloc:hover .home__bloc-image::before {
  opacity: 1;
}
.section__home .home__bloc:hover .home__bloc-texte {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  .section__home {
    height: calc(100dvh - 77px + 100px);
  }
  .section__home .home__bloc-logos {
    min-height: 100px;
  }
  .section__home .home__bloc-logos img {
    max-height: 40px !important;
  }
}
@media (max-width: 991px) {
  .section__home {
    flex-direction: column;
    height: calc(100dvh - 77px);
  }
  .section__home .home__bloc {
    width: 100%;
    height: 50%;
  }
  .section__home .home__bloc-content .home__bloc-logo {
    height: 110px;
    position: absolute;
    opacity: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .section__home .home__bloc-texte {
    margin-top: 20px;
  }
  .section__home .home__bloc-texte p {
    font-size: 1.4rem;
  }
  .section__home .home__bloc-logos {
    min-height: 65px;
  }
  .section__home .home__bloc:hover .home__bloc-content .home__bloc-logo {
    opacity: 0;
  }
}
@media (max-width: 575px) {
  .section__home .home__bloc-texte p {
    font-size: 1.2rem;
  }
  .section__home .home__bloc-logos img {
    max-height: 35px;
  }
}
