.layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media (max-width: 1199px) {
    .layout {
        flex-direction: column;
        margin: 0 20px;
    }
}

.layout .video-col img {
    max-width: 100%;
}

.layout .chat-col {
    width: 25%;
}

@media (max-width: 1199px) {
    .layout .chat-col {
        width: 100%;
    }
}

.socials {
    margin: 20px auto;
}

.socials-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.socials-wrap a {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    position: relative;
    display: block;
    margin: 0 65px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100%;
    z-index: 7;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
}

.socials-wrap a:hover {
    transform: scale(1.1);
}

.social-instagram {
    width: 46px;
    height: 46px;
    background-image: url("../images/insta_logo.png");
}

.social-telegram {
    width: 41px;
    height: 41px;
    background-image: url("../images/telegram.png");
    background-position: 50% 8px;
}

.social-facebook {
    width: 41px;
    height: 41px;
    background-image: url("../images/facebook.png");
    background-position: 50% 8px;
}

.social-linkedin {
    width: 50px;
    height: 50px;
    background-image: url("../images/linkedin.svg");
}

@media screen and (max-device-width: 1000px) {
    .socials {
        padding: 0px 10px;
        margin: 5px auto;
    }

    .social-instagram {
        width: 40px;
        height: 40px;
    }

    .social-telegram {
        width: 36px;
        height: 36px;
    }

    .social-facebook {
        width: 36px;
        height: 36px;
    }

    .social-linkedin {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-device-width: 500px) {
    .socials-wrap {
        flex-direction: column;
        align-items: center;
    }

    .socials-wrap a {
        margin: 0;
    }
}
