@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

ul.new-age li {
    text-align: justify;
    /* line-height: 23px; */
    margin-bottom: 20px;
}
.images-set-1 img {
    margin-top: 61px;
}.images-set img {
    margin-bottom: 45px;
}
.images-set img {
    margin-bottom: 45px;
    margin-top: 80px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.inptflds.btttn {
    background: #e6c133 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    margin: 0 auto;
    display: block;
}
.breadcromb-top-text h2 {
    position: relative;
    top: -52px;
}
/* .breadcromb-top {   
    padding: 135px 0px 61px 0px !important;
} */
.bgcillor {
    background: #f7f7f7;
}
 
.about-left h1 {
    color: #333;
    font-size: 20px;
    line-height: 35px;
    /* text-transform: ; */
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.site-heading h1 {
    color: #e6c133;
    font-family: "Figtree", sans-serif;
    margin-top: 10px;
    text-transform: uppercase;
}
.about-left.aito h1 {
    padding: 4px 0px 0px !important;
    color: #e6c133;
    font-weight: 600 !important;
    margin-bottom: 16px;
    text-align: left;
}

.contact-heading h1 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

/* / */

/* Display the menu when the toggle button is clicked */
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    z-index: 1000; /* Ensure it's above other content */
  
}

/* Adjust the top position when the menu is open */
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary.slide-down {
    top: 60px; /* Adjust this value based on your navbar height */
}


.single-gallery-img img{
    height: 250px;
    object-fit: cover;
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item{
    margin: 0 80px 0 0 !important;
}


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

.gallery-section .section-title{
    margin-bottom:50px;
}

.gallery-section .section-title span{
    color:#f4b400;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gallery-section .section-title h2{
    font-size:42px;
    margin:10px 0 15px;
}

.gallery-section .section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

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

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
    display:block;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-overlay i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f4b400;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transform:scale(.7);
    transition:.4s;
}

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

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-section .section-title h2{
        font-size:32px;
    }

    .gallery-item img{
        height:240px;
    }
}