/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Description: Twenty Twenty-One Child Theme
Author: the WordPress team
Author URI: https://wordpress.org/
Template: twentytwentyone
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentychild
Tags:two-columns, left-sidebar, right-sidebar, light, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/
.staff-card h5{
font-size: 16px;
    font-weight: bold;
    color: #1cce80;	
}

.gallery-section {
    padding: 80px 0;
}

.category-block {
    margin-bottom: 70px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
	color:#00394f;
}

.category-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #1cce80;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.tagline-content p{
	font-size: 20px;
    line-height: 37px;
}
.navbar-nav .menu-item {
    position: relative;
}
.navbar-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 9999;
	box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1);
}
.navbar-nav .menu-item:hover > .sub-menu {
    display: block;
}
.navbar-nav .sub-menu li {
    width: 100%;
}
.navbar-nav .sub-menu li a {
    display: block;
    padding: 10px 15px;
}
@media(max-width:767px){
    .gallery-item img {
        height: 220px;
    }

    .category-title {
        font-size: 26px;
    }
}