.ico_line {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 1.5em;
}

.ico_line > img {
    width: 20px;
}

/* квадрат youtube */

.about_top_video {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    bottom: 85px;
    right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    z-index: 2;
    cursor: pointer;
    transition-duration: .3s;
    
}

.about_top_video > p {
    font-family: 'GothamProRegular';
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}

.about_top_video > p:last-child {
    text-align: right;
}

.about_top_video > .play {
    position: absolute;
    width: 0; 
    height: 0; 
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about_top_video:hover {
    border: 1px solid var(--hover-link);
    transition-duration: .5s;
}

.about_top_video:hover .play {
    border-left: 30px solid var(--hover-link);
    transition-duration: .5s;
}



/* квадрат youtube */