.asptt-video-text{
    display: flex;
    align-items: center;

    --width-video: 597px;
}

.asptt-video-text__video-container,
.asptt-video-text .asptt-video{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.asptt-video-text__video-container {
    width: var(--width-video);
    height: max-content;
    aspect-ratio: 597/336;
    overflow: hidden;
}

.asptt-video-text__video-container:hover .asptt-video-thumbnail-img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transform-origin: center center;
}
.asptt-video-text .asptt-video{
    width: 100%;
    height: 100%;
}

.asptt-video-text iframe.asptt-video{
    width: 100%;
    height: 336px;
    padding: 0;
}

.asptt-video-thumbnail-img{
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    cursor: pointer;

    -webkit-transition: .4s transform;
    -moz-transition: .4s transform;
    -ms-transition: .4s transform;
    -o-transition: .4s transform;
    transition: .4s transform;
}
.asptt-video-text__content-container{
    width: calc(100% - var(--width-video));
    padding-left: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.asptt-video-text__content-header{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.asptt-video-text .asptt-title{
    color:var(--e-global-color-primary);
    font-size: 28px;
} 

.asptt-video-text .asptt-subtitle{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.asptt-video-text .asptt-button{
    margin-left: 12px;
}

.asptt-video-text .asptt-video-text__text{
    font-size: 14px;
    line-height: 2;
}

@media screen and (max-width: 1130px) {
    .asptt-video-text {
        --width-video: 520px;
    }
}

@media screen and (max-width: 1000px) {
    .asptt-video-text {
        --width-video: 450px;
    }
}

@media screen and (max-width: 900px) {
    .asptt-video-text {
        --width-video: 380px;
    }
}

@media screen and (max-width: 768px) {
    .asptt-video-text {
        flex-direction: column;
        gap: 25px;

        --width-video: calc(100% - 4px);
    }

    .asptt-video-text__video-container {
        align-self: flex-start;
    }

    .asptt-video-text__content-container{
        width: 100%;
        padding-left: 0;
    }
    .asptt-video-text .asptt-subtitle {
        margin-bottom: 10px;
    }
    .asptt-video-text .asptt-video-text__text {
        line-height: 1.35;
    }

    .asptt-video-text .asptt-subtitle {
        font-size: 16px;
    }
}