/* =========== */
/* Finance CSS */
/* =========== */
.video, .contenu, .finance {
  padding: 0 2em;
}
@media only screen and (min-width: 768px) {
  .video, .contenu, .finance {
    padding: 0 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .video, .contenu, .finance {
    padding: 0 6em;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  .video, .contenu, .finance {
    padding: 0 5em;
  }
}

.finance {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2em;
  padding-top: 4em;
  padding-bottom: 4em;
}
@media only screen and (min-width: 1024px) {
  .finance {
    padding-top: 8em;
  }
}
.finance__title {
  font-weight: 700;
  font-size: 2rem;
  color: #008F70;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media only screen and (min-width: 1024px) {
  .finance__title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1920px) {
  .finance__title {
    font-size: 3rem;
  }
}
.finance__text {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 1024px) {
  .finance__text {
    padding: 0 10em;
    line-height: 2;
  }
}
@media only screen and (min-width: 1920px) {
  .finance__text {
    padding: 0 34em;
  }
}

.contenu {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 4em;
  overflow: hidden;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .contenu {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: 40% 60%;
    grid-template-areas: "img title" "img text";
    padding: 30px 80px;
    text-align: left;
  }
}
@media only screen and (min-width: 1920px) {
  .contenu {
    grid-template-columns: 45% 45%;
    padding: 30px 190px;
    column-gap: 10%;
  }
}
.contenu__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #008F70;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .contenu__title {
    grid-area: title;
    align-self: end;
    text-align: left;
    padding-bottom: 1em;
  }
}
.contenu__img {
  width: 100%;
  margin: 2em 0;
}
@media only screen and (min-width: 1024px) {
  .contenu__img {
    grid-area: img;
    width: 90%;
    justify-self: start;
  }
}
.contenu__text {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .contenu__text {
    grid-area: text;
    align-self: start;
  }
}
@media only screen and (min-width: 1280px) {
  .contenu__text {
    padding-top: 3em;
    overflow: hidden;
  }
}
.contenu__text p {
  color: #01040D;
  font-size: 1.6rem;
  line-height: 1.6;
}
.contenu__text p:first-child {
  padding-bottom: 30px;
}
.contenu__text ul {
  text-align: left;
  list-style-position: outside;
  padding-left: 15px;
  list-style-image: url("../icons/bullet.svg");
}
.contenu__text ul li {
  padding-bottom: 20px;
  font-size: 1.6rem;
}

@media only screen and (min-width: 1024px) {
  .contenu.flipped {
    grid-template-columns: 55% 45%;
    grid-template-rows: 28% 72%;
    grid-template-areas: "title img" "text img";
  }
  .contenu.flipped .content__img {
    justify-self: end;
  }
}
@media only screen and (min-width: 1920px) {
  .contenu.flipped {
    grid-template-columns: 45% 45%;
    padding: 30px 190px;
    column-gap: 10%;
  }
}

.video {
  background: #F7F7F7;
  padding-top: 6em;
  padding-bottom: 6em;
}
@media only screen and (min-width: 1280px) {
  .video {
    display: grid;
    place-content: center;
  }
}
.video__container {
  height: 300px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .video__container {
    height: 542px;
  }
}
@media only screen and (min-width: 1280px) {
  .video__container {
    height: 649px;
    width: 1155px;
  }
}

/*# sourceMappingURL=finance.css.map */
