.container-video {
    margin-left: 17%;
    height: 50px;
    width: 500px;

    border-style: solid;
    border-width: 3px;
    border-color: rgba(153, 153, 153);

    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;

    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    transition: height 1s, width 1s;
    z-index: 3005;
}

.container-video > .icon {
    height: 90%;
    width: 8.7%;

    background-color: rgb(33, 66, 89);
    border-style: solid;
    border-width: 3px;
    border-color: rgba(204, 204, 204);
    border-radius: 50px;

    margin-left: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-video > .icon > .sub-icon {
    height: 78%;
    width: 75%;

    background-color: white;
    
    border-style: solid;
    border-color: rgba(204, 204, 204);
    border-width: 3px;
    border-radius: 50px;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-video > .icon > .sub-icon > img {
    height: 79%;
    width: 59%;
    margin-left: 4px;
}

.container-video > label {
    width: 85%;
    color: rgb(33, 66, 89);
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
    transition: font-size 1s;
    cursor: pointer;
}

.link-container-video:hover > .container-video {
    height: 60px;
    width: 550px;

    transition: height 1s, width 1s;
} 

.link-container-video:hover > .container-video > label {
    font-size: 17px;

    transition: font-size 1s;
}

@media (max-width: 1602px) 
{
    .container-video {
        margin-left: 9% !important;
    }
}

@media (max-width: 1166px) 
{
    .container-video {
        margin-left: 0% !important;
    }
}

@media (max-width: 1001px) 
{
    .container-video {
        margin-left: 19% !important;
    }
}