@charset "UTF-8";
/* Variables */
/*
$width-pagination: calc($max-width / 10);
$col-width: calc($max-width / 10);
*/
/* $width-pagination: calc(100% / 10); */
.image.video {
  position: relative;
}
.image.video .before {
  position: relative;
  cursor: pointer;
}
.image.video img {
  width: 100%;
}
.image.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  background-color: #291d37;
  color: #fffefd;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 2s linear;
}
.image.video .play:hover {
  animation: spin 3s infinite linear;
}
.image.video .video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.image.video .video-iframe video {
  margin: auto;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(-25deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(335deg);
  }
}
.two-videos {
  color: #291d37;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .two-videos {
    flex-direction: column;
  }
}
.two-videos .one-video {
  width: calc(50% - 5px);
  overflow: hidden;
}
@media (max-width: 860px) {
  .two-videos .one-video {
    width: 100%;
    margin-bottom: 40px;
  }
}
.two-videos .one-video img {
  width: 100%;
}
.two-videos .one-video .legende {
  margin-top: 20px;
  margin-left: 50px;
  display: flex;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.7px;
}
@media (max-width: 860px) {
  .two-videos .one-video .legende {
    margin-left: 80px;
    margin-right: 80px;
    justify-content: start;
  }
}
@media (max-width: 560px) {
  .two-videos .one-video .legende {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.two-videos .one-video .legende h4 {
  margin-bottom: 7px;
  font-weight: 600;
}
.two-videos .one-video .legende .legende-content {
  width: 80%;
}
@media (max-width: 560px) {
  .two-videos .one-video .legende .legende-content {
    width: 100%;
  }
}
.two-videos .one-video:not(:last-child) {
  margin-right: 10px;
}
.two-videos .one-video:last-child .legende {
  margin-left: 0px;
  margin-right: 50px;
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 860px) {
  .two-videos .one-video:last-child .legende {
    justify-content: start;
    text-align: left;
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media (max-width: 560px) {
  .two-videos .one-video:last-child .legende {
    margin-right: 20px;
    margin-left: 20px;
  }
}

.one-video-module {
  width: calc(100% - 240px);
  margin: auto;
  color: #291d37;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .one-video-module {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 860px) {
  .one-video-module {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 768px) {
  .one-video-module {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 480px) {
  .one-video-module {
    width: 100%;
  }
}
.one-video-module .legende {
  margin-top: 25px;
  font-size: 12px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .one-video-module .legende {
    margin-top: 21px;
  }
}
@media screen and (max-width: 768px) {
  .one-video-module .legende {
    margin-top: 17px;
  }
}
@media screen and (max-width: 480px) {
  .one-video-module .legende {
    margin-top: 13px;
  }
}
.one-video-module .legende .legende-content {
  flex-direction: column;
  letter-spacing: 1.5px;
  width: 100%;
}
.one-video-module .legende .legende-content h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.5px;
}
.one-video-module .legende .legende-content h4 .nom {
  text-transform: uppercase;
}
.one-video-module .legende .legende-content h4 .nom:after {
  content: " — ";
}
.one-video-module .legende .legende-content h4 span {
  text-transform: none;
}
.one-video-module .legende .legende-content p {
  margin-top: 7px;
  line-height: 17px;
  letter-spacing: 0.7px;
}/*# sourceMappingURL=video.css.map */