@charset "UTF-8";

.dko-video {
    display: flex;
    width: 100%;
    padding: 40px 5%;
    flex-direction: column;
}

.video-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
    max-width: 80%;
    color:var(--pmn--pink);
}

.video-text {
    margin-bottom: 20px;
    max-width: 80%;
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 960px;
}

.video-container {
  height: 0;
  overflow: hidden;
  width: 100%;
  padding-top: 56.2%;
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.dko-video a:not(.dko-video__cta) {
    color: var(--evo--orange);
}

@media screen and (min-width: 767px) {
    .dko-video {
      padding: 80px 100px;
      justify-content: center;
      text-align: center;
      align-items: center;
    }
    .video-container {
      border-radius: 40px;
    }

    .video-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 30px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
     .video-text {
        max-width: 770px;
        margin-left: auto;
        margin-right: auto;
     }
}

.dko-video__cta {
    margin-top: 35px;
}

/* === INTERLIGNE ENTRE TITRES === */

@media screen and (max-width: 767px) {
    .dko-video h2 {
        line-height:1.3 ;
    }
}
@media screen and (min-width: 768px) {
    .dko-video h2 {
        line-height:1.25 ;
    }
}