.tractor-video-block__video
{
    border-radius: 14px;
    width: 100%;
}

.tractor-video-block__container
{
    position: relative;    
}

.tractor-video-block__video_buttons
{
    position: absolute;
    z-index: 2;
    left: 120px;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tractor-video-block__video_controls
{
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.tractor-video-block__video_buttons span
{
    color: white;    
    font-size: 17px;
    /* transition opacity*/
    transition: opacity 0.3s;
}

.tractor-video-block__video_buttons svg
{
    cursor: pointer;
}

.tractor-video-block__video_pause-icon
{
    display: none;
}

.tractor-video-block__title
{
    font-weight: 600;
    letter-spacing: 0%;    
    transition: opacity 0.3s;
}

@media only screen and (max-width : 600px) 
{
    .tractor-video-block__video_buttons
    {
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
    }

    .tractor-video-block__video_buttons.has-title
    {
        top: 70px;
    }

    .tractor-video-block__title
    {
    }

    .tractor-video-block__description
    {
        margin-bottom: 1em;
    }


}

@media only screen and (min-width : 601px) and (max-width : 1024px) 
{
    /* Styles for tablet */
    .tractor-video-block__title
    {
        font-size: 36px;
        line-height: 44px;
        width: 60%;
        right: 5%;
        bottom: 8%;
        position: absolute;
    }

    .tractor-video-block__description
    {
        position: absolute;
        font-size: 16px;
        width: 70%;
        top: 8%;
        left: 5%;
        color: white;
    }

    .tractor-video-block__video_buttons
    {
        left: 40px;
        bottom: 30px;
    }
    
    .tractor-video-block__video_controls
    {
        width: 48px;
        height: 40px;
    }
    .tractor-video-block__video_buttons span
    {
        font-size: 15px;
    }

    .tractor-video-block__title
    {
        color: white;
    }
}

@media only screen and (min-width : 1025px) and (max-width : 1380px) 
{
    /* Styles for small desktop */
    .tractor-video-block__title
    {
        font-size: 48px;
        line-height: 56px;
        width: 50%;
        right: 8%;
        bottom: 9%;
        position: absolute;
    }
    .tractor-video-block__description
    {
        position: absolute;
        color: white;
        font-size: 18px;
        width: 60%;
        top: 9%;
        left: 7%;
    }
    .tractor-video-block__video_buttons
    {
        left: 80px;
        bottom: 40px;
    }
    .tractor-video-block__video_controls
    {
        width: 54px;
        height: 44px;
    }
    .tractor-video-block__video_buttons span
    {
        font-size: 16px;
    }

    .tractor-video-block__title
    {
        color: white;
    }
}


@media only screen and (min-width : 1381px) 
{
    .tractor-video-block__video_buttons
    {
        left: 120px;
        bottom: 50px;
    }

    .tractor-video-block__title
    {
        font-size: 60px;
        line-height: 70px;
        right: 10%;
        bottom: 10%;
        width: 40%;
        position: absolute;
    }

    .tractor-video-block__title
    {
        color: white;
    }

    .tractor-video-block__description
    {
        color: white;
        font-weight: 400;
        font-size: 20px;
        line-height: 148%;
        letter-spacing: 0%;
        position: absolute;
        top: 10%;
        left: 8%;
        width: 50%;
        transition: opacity 0.3s;
    }


}