.product-video{
    background: linear-gradient(87deg, #C4E1FF 24.6%, #CBCFFC 98.4%), #FFF;
    border-radius: 24px;
    max-width: 944px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}
.product-video.video_played{
    background: transparent;
}
.product-video.video_played .product-img{
    visibility: hidden;
}
.product-video .product-img{
    display: block;
    margin-bottom: 0;
}
.product-video--info{
    text-align: center;
    margin-top: 20px;
    padding-right: 20px;
    width: 50%;
}
.product-video--logo{
    margin-bottom: 20px;
}
.product-video--info-title{
    margin-bottom: 0;
    color: #303030;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 54.5px;
}
.product-video .controls{
    position: absolute;
    display: flex;
    align-items: center;
    padding: 57px 0;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}
.product-video .play-new{
    width: 110px;
    height: 110px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: rgba(48, 48, 48, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-video .play-new:hover{
    background: rgba(48, 48, 48, 0.7);
}
.product-video .play-new::before{
    content: "";
    display: inline-block;
    position: relative;
    left: 5px;
    border-style: solid;
    border-width: 25px 0 25px 43px;
    border-color: transparent transparent transparent white;
}

@media (max-width:991px) {
  .product-video--info-title{
    font-size: calc( (100vw - 375px)/(991 - 375) * (40 - 14) + 14px) !important;
    line-height: normal !important;
  }
  .product-video .controls{
    padding: 20px 0;
  }
  .product-video--info{
    margin-left: 0;
  }
  .product-video--logo{
    margin-bottom: 9px;
  }
}
@media (max-width:991px) and (min-width: 576px){
    .product-video--logo{
        width: calc( (100vw - 576px)/(991 - 576) * (160 - 55) + 55px);
    }
}
@media (max-width: 767px) {
    .product-video .play-new{
        width: 38px;
        height: 38px;
    }    
    .product-video .play-new::before{
        border-width: 9px 0 9px 14px;
        left: 1px;
    }
}
@media (max-width: 576px) {
    .product-video--logo{
        max-width: 55px;
        min-width: 55px;
        width: 55px;
    }
}
@media (max-width:425px) {
    .product-video--info{
        padding-right: 10px;
        margin-left: -20px;
    }
}