@import url(./global.css);

.section__aventure h2,
h3 {
    font-family: var(--font-family-bold);
    line-height: 1.1;
    margin-bottom: 0.8em;
}

.section__aventure h2 {
    font-size: 70px;
    text-align: center;
}

.section__aventure h3 {
    font-size: 50px;
}

.section__aventure p {
    font-size: 1.2em;
    margin-bottom: 1.2em;
}

.section__aventure__card {
    min-height: min-content;
    height: 560px;
    width:'100%';
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 44px 72px 0px rgba(23, 73, 40, 0.28);
    gap: 2em;
}

.section__aventure__card__content {
    width: 70%;
}
.section__aventure__card__video {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 30%;
    overflow: hidden;
}

.section__aventure__card .etiquette__container {
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .section__aventure__card__content {
        width: 60%;
    }
    .section__aventure__card__video {
        width: 40%;
    }
}
@media (max-width: 920px) {
  .section__aventure__card {
    height: min-content;
    flex-direction: column;
  }
  .section__aventure__card__video {
    width: 100%;
    min-height: 460px;
  }
  .section__aventure__card__video iframe {
    width: 60%;
  }
}

@media (max-width: 600px) {
  .section__aventure__card__video iframe {
    width: 100%;
  }
}
@media (max-width: 425px) {
    .section__aventure__card {
        margin-left: calc(var(--span) * -1);
        margin-right: calc(var(--span) * -1);
        border-radius: 0 !important;
        width: 100vw;
    }

    .section__aventure h2,
    .section__aventure h3 {
        font-size: 2.4em;
        text-align: center;
    }
}
