/* A & S */
.a-s {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .a-s {
    margin-bottom: 128px;
  }
}
.a-s .fond-color {
  background: url(../images/bg-fond.png), #e3f2f3;
}
.a-s .fond-color.light {
  background-color: var(--white);
  height: 48px;
}
@media screen and (min-width: 768px) {
  .a-s .fond-color.light {
    height: 245px;
  }
}
.a-s .container {
  position: relative;
  padding: 56px 16px 123px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .a-s .container {
    padding: 128px 16px 305px 16px;
    gap: 56px;
  }
}
@media screen and (min-width: 1281px) {
  .a-s .container {
    padding: 128px 80px 305px 80px;
  }
}
.a-s .container-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .a-s .container-text {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 56px;
  }
}
.a-s .container-text .uptitle {
  color: var(--sarcelle);
  border-color: var(--sarcelle);
}
@media screen and (min-width: 768px) {
  .a-s .container-text .uptitle {
    order: 1;
    grid-column: 1/13;
  }
}
.a-s .container-text h2 {
  color: var(--sarcelle);
}
@media screen and (min-width: 768px) {
  .a-s .container-text h2 {
    order: 2;
    max-width: 623px;
    width: 100%;
    grid-column: 1/11;
  }
}
.a-s .container-text p:not(.uptitle) {
  color: var(--greyDark);
}
.a-s .container-text p:not(.uptitle) strong {
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .a-s .container-text p:not(.uptitle):nth-of-type(2) {
    order: 4;
    grid-column: 1/7;
    max-width: 420px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .a-s .container-text p:not(.uptitle):nth-of-type(2) {
    grid-column: 1/5;
  }
}
@media screen and (min-width: 768px) {
  .a-s .container-text p:not(.uptitle):nth-of-type(3) {
    order: 5;
    grid-column: 7/13;
    margin-left: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .a-s .container-text p:not(.uptitle):nth-of-type(3) {
    grid-column: 5/13;
  }
}
@media screen and (min-width: 768px) {
  .a-s .container-text .link-container {
    order: 3;
    grid-column: 12/13;
    display: flex;
    align-items: flex-end;
  }
}
.a-s .img-bg {
  position: absolute;
  bottom: 32px;
  right: -80px;
  max-height: 872px;
  height: 100%;
  max-width: 1120px;
  width: 100%;
  z-index: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .a-s .img-bg {
    display: block;
  }
}
.a-s .img-bg::before {
  content: "";
  mask: url(../images/shape-A.svg) no-repeat;
  -webkit-mask: url(../images/shape-A.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: #fff;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  display: block;
}
.a-s .container-img {
  position: relative;
  height: 170px;
  width: calc(100% - 32px);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  z-index: 1;
  top: -122px;
}
@media screen and (min-width: 768px) {
  .a-s .container-img {
    height: 490px;
    max-width: 1280px;
    width: 100%;
    margin: auto;
    /* margin-top: calc(-305px + 56px); */
    top: calc(-305px + 56px);
  }
}
.a-s .container-img .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  position: absolute;
}
.a-s .container-img .blended {
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* END A & S */
