.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
img {
    max-width: 100%;
    display: block;
}
h2{
   color: #D4AF37;;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 36px;
}
.sec-space{
    padding: 40px 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
/* header css start */
nav.navbar.custom-nav{
    border-bottom: 1px solid #0000001a;
    padding:0;
}
nav.navbar.custom-nav .header-logo {
    padding: 0;
}
nav.navbar.custom-nav .navbar-nav .nav-item a.nav-link {
    margin: 0 10px;
    font-weight: 500;
    color: #000;
    padding: 20px 0;
}
nav.navbar.custom-nav .navbar-nav .nav-item a.nav-link.active, nav.navbar.custom-nav .navbar-nav .nav-item a.nav-link:hover {
    color: #D4AF37;
}
/* header css end */

/* banner sec css start */
.banner-sec .banner-inner-content {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.banner-sec .banner-inner-content .banner-inner-data h2 {
    margin-bottom: 20px;
}
.banner-sec .banner-inner-content .banner-inner-data p {
    max-width: 470px;
    font-size: 16px;
    line-height: 27px;
}
.banner-sec .banner-inner-content .banner-inner-img img {
    height: 613px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
/* banner sec css end */
/* stats sec css start */
.stats-sec .heading h2 {
    text-align: center;
    margin-bottom: 16px;
}
.stats-sec .stats-inner-content ul {
    padding: 0;
    display: flex;
    margin: 0;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    list-style-type: none;
}
.stats-sec .stats-inner-content ul li {
    flex: calc(25% - 20px);
    max-width: calc(25% - 20px);
    box-shadow: 1px 1px 11px #ddd;
    padding: 20px;
    border-radius: 6px;
}
.stats-sec .stats-inner-content ul li h4 {
    font-size: 18px;
    color: #55494b;
    font-weight: 700;
}
.stats-sec .stats-inner-content ul li h5{
    font-size: 14px;
    color: #55494b;
    font-weight: 400;
}
/* stats sec css end */
/* interests sec css start */
section.interests-sec {
    background: #c39974;
}
.interests-sec .interests-inner-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
}
.interests-sec .interests-inner-content .interests-inner-data h2 {
    color: #fff;
    margin-bottom: 40px;
}
.interests-sec .interests-inner-content .interests-inner-data ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
}
.interests-sec .interests-inner-content .interests-inner-data ul li {
    flex: calc(25% - 20px);
    max-width: calc(25% - 15px);
    color: #ffff;
}
.interests-sec .interests-inner-content .interests-inner-img img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.interests-sec.intersect-img .interests-inner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.interests-sec.intersect-img .interests-inner-content .interests-inner-data ul li {
    flex: calc(50% - 20px);
    max-width: calc(50% - 15px);
    color: #ffff;
}
/* interests sec css end*/
/* gallery sec css start */
.gallery-tab-sec .heading h2 {
    margin-bottom: 30px;
    text-align: center;
}
.gallery-tab-sec .nav-tabs {
    border-bottom: 0;
    justify-content: center;
    margin-bottom: 40px;
}
.gallery-tab-sec .nav-tabs .nav-link.active {
    color: #D4AF37;
}
.gallery-tab-sec .nav-tabs .nav-link {
    color: #999;
    font-size: 20px;
    border: 0;
    margin: 0;
}
/* .gallery-tab-sec .gallery-tab-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
} */
.gallery-tab-sec .gallery-tab-data .gallery-tab-item img {
    /* height: 500px; */
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    object-position: center;
}
.gallery-tab-sec .gallery-tab-item {
    box-shadow: 0px 0px 11px #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
#content-videos video {
    object-fit: cover;
}
.gallery-tab-data {
    column-count:4;
    gap:10px;
}
#lightboxModal .modal-body img {
    width: 100%;
}
/* gallery sec css end */

@media screen and (max-width:991px) {
    .banner-sec .banner-inner-content {
        grid-template-columns: 1fr;
    }
    .interests-sec .interests-inner-content {
       grid-template-columns: 1fr;
    }
    .gallery-tab-sec .gallery-tab-data{
        column-count: 3;
    }
}
@media screen and (max-width:767px) {

   .stats-sec .stats-inner-content ul li {
    flex: calc(50% - 20px);
    max-width: calc(50% - 20px);
}
h2 {
    font-size: 26px;
}
.gallery-tab-sec .gallery-tab-data{
    column-count: 2;
}
}
@media screen and (max-width:575px) {

    .stats-sec .stats-inner-content ul li {
        flex: 100%;
        max-width:  100%;
    }
    .gallery-tab-sec .gallery-tab-data{
        column-count: 1;
    }
}
