.social-section {
    background: #1c1c1c;
}

.section-title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}

.underline {
    width: 70px;
    height: 3px;
    background: #f6963d;
    margin-top: 8px;
}

.image-box {
    position: relative;
    overflow: hidden;
}

.image-box img {
    transition: .4s;
}

.image-box:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.overlay i {
    font-size: 50px;
}

.image-box:hover .overlay {
    opacity: 1;
}

.fb-overlay i {
    color: #4267B2;
}

.yt-overlay i {
    color: #FF0000;
}
