.rg-logo {
    width: 113px !important;
}
.bottom-footer {
    border-top: 1px solid #000;
}
.copyright-text {
    margin: 20px auto;
}
.home-pic img {
    width: 100%;
    height: 100vh;
}
.gallery-title {
    text-align: center;
    margin: 40px 0;
    font-weight: 600;
}

.gallery-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-tabs ul {
    padding: 0;
    margin: 0;
}

.gallery-tabs li {
    display: inline-block;
    /* margin: 0 15px; */
    cursor: pointer;
}

.gallery-tabs li a {
    color: #000;
    text-decoration: none;
}

.gallery-tabs li a::after {
    content: "\f111";
    font-family: FontAwesome;
    font-size: 8px;
    padding: 0 15px;
}

/* CARD */

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .4s;
}

.gallery-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: .4s;
    pointer-events: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: .4s;
    pointer-events: none;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card:hover::after {
    background: rgba(0, 0, 0, .35);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    margin-bottom: 30px;
}

/* Fancybox thumbnail size */

.fancybox__thumbs .carousel__slide {
    width: 90px;
    height: 70px;
}

.gallery-tabs li:last-child::after{
    display:none;
}
.wpcf7-spinner {
    display: none !important;
}