﻿


.galleryVid {
    display: inline-block;
    width: 300px;
    height: 300px;
    margin: 10px 0px 80px 0px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: var(--g-border-radius-3);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0);
    background-color: #FAF5F9;
    border-radius: 50%;
    border: 5px solid #932A85;
    padding: 15px;
}

    .galleryVid:before {
        content: '';
        background-image: url('../img/play_video_icon.svg');
        background-repeat: no-repeat;
        background-position: center center;
        color: white;
        font-size: 24px;
        position: absolute;
        width: 90px;
        height: 45px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -25px);
        border-radius: 40px;
        background-color: #FAF5F9;
        border: 4px solid rgba(255,255,255,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .galleryVid:after {
        content: '';
        background-repeat: no-repeat;
        background-position: center center;
        color: white;
        font-size: 24px;
        position: absolute;
        width: 120px;
        height: 120px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .galleryVid:hover {
        cursor: pointer;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    }

        .galleryVid:hover:before {
            background-color: #FAF5F9;
        }

/* .galleryVid:hover .desc {
            padding-bottom: 20px;
            cursor: pointer;
        }*/

.special_videos .galleryVid {
    height: 35vh !important;
}

div.gallery {
    /* float: left;
    width: 100%;*/
}

    div.gallery img {
        width: 100%;
    }


.galleryVid p.title {
    transition: all 0.3s ease;
    color: #353E56;
    box-sizing: border-box;
    width: 100%;
    margin-top: 0px;
    font-size: 16px;
    text-align: right;
    font-weight: 700;
    margin-bottom: 5px;
}

.galleryVid p.desc {
    transition: all 0.3s ease;
    color: #5F7289;
    box-sizing: border-box;
    width: 100%;
    margin-top: 0px;
    font-size: 13px;
    text-align: justify;
    font-weight: 500;
    line-height: 26px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videoTag {
    border-radius: 50%;
    object-fit: cover;
    object-position:center center;
}

.showvideo {
    display: none;
}

    .showvideo .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.76);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999999 !important;
    }

    .showvideo .vid-show {
        width: auto;
        height: auto;
        max-width: 93%;
        background: transparent;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        overflow: hidden;
        z-index: 9999999 !important;
    }

        .showvideo .vid-show video {
            width: 350px;
            max-height: 70vh;
        }

.vid-show img {
    height: 100%;
}

.showvideo .close {
    z-index: 99999;
    font-weight: bold;
    background-color: rgba(80, 80, 80, 0.611764705882353);
    color: white;
    padding: 7px;
    font-size: 20px;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .showvideo .close:hover {
        cursor: pointer;
        background-color: rgba(80, 80, 80, 0.8);
    }

.group_links {
    margin: 35px 0px;
}

    .group_links .gallery_group_link {
        color: var(--g-main-color);
        background-color: #F2F9FF;
        border-radius: 12px;
        padding: 10px 20px;
        margin: 4px 4px;
        -webkit-transition: background-color 300ms ease-in;
        -ms-transition: background-color 300ms ease-in;
        transition: background-color 300ms ease-in;
        display: inline-block;
    }

        .group_links .gallery_group_link:hover {
            color: #FFF;
            background-color: #2579BC;
            -webkit-transition: background-color 300ms ease-out;
            -ms-transition: background-color 300ms ease-out;
            transition: background-color 300ms ease-out;
        }

        .group_links .gallery_group_link.active {
            color: #FFF;
            background-color: #2579BC;
        }

@media (min-width: 360px) {
}

@media (min-width: 540px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {

    .video_section#first .first_img {
        padding: 70px 0px 40px 0px;
    }

    .video_section#first h1 {
        font-size: 66px;
    }

    .galleryVid {
        margin: 30px;
        width: 400px;
        height: 400px;
    }

    .showvideo .vid-show video {
        width: 100%;
        max-height: 70vh;
    }

}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}
