
/* --- video --- */

.video-section-container {
    position: relative;
  }
  
  .video-container {
    margin: 0 auto;
    top: 10px;
  }
  
  #video {
    z-index: 1;
    position: relative;
  }
  
  .video-preview-img {
    max-width: 900px;
    width: 80%;
    margin: 0 auto;
    margin-top: -32px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .video-preview-img {
      margin-top: -16px;
    }
  }
  
  .youtube {
    z-index: 2;
    opacity: 0;
    border-radius: 24px;
    transition: 0.25s ease-in-out;
  }
  
  .youtube.active {
    opacity: 1;
    width: 80vw;
    height: 45vw !important;
    box-shadow: 1px 17px 48px 24px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 17px 48px 24px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 17px 48px 24px rgba(0, 0, 0, 0.75);
  }
  
  @media (max-width: 768px) {
    #video > .startButton {
      display: none !important;
    }
  
    #video > .mobileStartButton {
      padding: 16px !important;
      display: unset !important;
    }
  }
  
  #video > .startButton {
    all: unset;
    cursor: pointer;
    /* padding: 48px */
  }
  
  #video > .mobileStartButton {
    all: unset;
    cursor: pointer;
    padding: 48px;
    display: none;
  }
  
  #modal {
    transition: 0.25s ease-in-out;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0px;
    opacity: 0;
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  #modal.active {
    opacity: 1;
    background-color: rgba(13, 21, 22, 0.64);
    display: flex;
  }
  
  .mod_close {
    background-color: #171924;
    color: #00ffd1;
    border: 1px solid #00ffd1;
    font-family: 'Sora';
    font-style: normal;
    position: absolute;
    top: 24px;
    right: 20px;
    border-radius: 10px;
    padding: 8px 13px;
    cursor: pointer;
  }
  
  .header-text {
    margin: 0 auto;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    text-align: center;
    color: #ffffff;
    margin-top: 120px;
  }
  
  @media (min-width: 767px) and (max-width: 1024px) {
    .header-text {
      font-size: 16px;
      margin-top: 72px;
    }
  }
  
  @media (max-width: 767px) {
    header {
      padding: 20px 40px;
    }
    .header-text {
      font-size: 14px;
      margin-top: 72px;
    }
  }
  
  .video {
    width: 768px;
    height: 432px;
    border-radius: 8px;
    filter: drop-shadow(0px 100px 100px rgba(0, 0, 0, 0.75));
  }
  
  @media (max-width: 767px) {
    .mocking {
      width: 300px;
      height: 110px;
    }
    .video {
      width: 256px;
      height: 144px;
      border: none;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .mocking {
      width: 500px;
      height: 110px;
    }
  }
  @media (min-width: 1025px) and (max-width: 1200px) {
    .mocking {
      width: 600px;
      height: 110px;
      top: 20px;
    }
  }
  