/*fonts*/
.generic-banner {
    position: relative;
    height: 440px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .generic-banner {
        height: auto;
    }
}

.generic-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.generic-banner .overlay-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

    .generic-banner .overlay-content h1, .generic-banner .overlay-content a {
        /*color: #fff;*/
    }

/*social sharing*/
.social-listing {
    position: relative;
    padding-left: 15px;
}

    .social-listing .share-icon {
        width: 40px;
        height: 40px;
        background: #000000;
        display: flex;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
        margin-left: auto;
    }

        .social-listing .share-icon img {
            width: 20px;
            height: 20px;
        }

        .social-listing .share-icon:hover img {
            transform: scale(0.8);
        }

    .social-listing .share-list {
        position: absolute;
        right: 50px;
        top: 6px;
        display: flex;
        background: #ccc;
        padding: 4px;
        display: none;
    }

        .social-listing .share-list:after {
            content: '';
            width: 0;
            height: 0;
            border-top: 0px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #ccc;
            position: absolute;
            right: -10px;
            top: 0;
        }

        .social-listing .share-list a {
            font-size: 0;
            margin: 4px 6px;
        }

            .social-listing .share-list a:hover {
                transform: scale(0.9);
            }

    .social-listing:hover .share-list {
        display: flex;
    }
