
  .kodovaya-video {
    position: relative;
    width: 700px;
    height: 400px;
    border-radius: 75px 0 75px 0;
    overflow: hidden;
  }


  .kodovaya-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }


  @media (max-width: 960px) {
    .kodovaya-video {
      max-width: 540px;
      height: 280px; 
      border-radius: 60px 0 60px 0;
    }
  }

  @media (max-width: 640px) {
    .kodovaya-video {
      max-width: 480px;
      height: 240px; 
      border-radius: 50px 0 50px 0;
    }
  }


  @media (max-width: 480px) {
    .kodovaya-video {
      width: 100% !important;
      max-width: 100% !important;
      height: 40vw !important;         
      border-radius: 40px 0 40px 0;
    }

    .kodovaya-video video {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
    }
  }


  @media (max-width: 360px) {
    .kodovaya-video {
      height: 50vw !important;        
      border-radius: 32px 0 32px 0;
    }
  }
