.video_ad {
    display: flex;
    justify-content: center;
}

.video_ad .video_ad_cont {
    width: 100%;
    background-color: var(--scheme-6);
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
}

.video_ad .video_ad_cont video {
    display: block;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


.video_ad .video_widget {
    position: absolute;
    color: var(--scheme-2);
    right: 5px;
    bottom: 5px;
}

.video_ad .volume {
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    border-radius: 5px;
}

.video_ad .volume:hover {
    background-color: rgba(255, 255, 255, 0.205);
}

.video_ad .volume i:last-of-type {
    display: none;
}

.video_ad .screen {
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    border-radius: 5px;
}

.video_ad .screen:hover {
    background-color: rgba(255, 255, 255, 0.205);
}

.video_ad .screen i:last-of-type {
    display: none;
}

.video_ad .ad_video_part {
    width: 100%;
    height: 100%;
    position: absolute;
}

.video_ad .ad_info_part {
    display: flex;
    position: absolute;
    width: 60%;
    right: 0;
    top: 0;
    padding: 25px 25px 0 0;
    height: calc(100% - 50px);
}

.video_ad .ad_info {
    color: #ffffff;
    padding-right: 20px;
}

.video_ad .ad_info h2 {
    text-align: right;
    margin-bottom: 7px;
    font-size: 200%;
}

.video_ad .ad_info p {
    text-align: right;
    font-size: 95%;
}

.video_ad .ad_img img {
    height: 170px;
    width: 150px;
}