p {
     font-size: 16px;
    line-height: 24px; 
    margin: 0 0 15px;
}
.pt-5 {
    padding-top: 5px;
}
.ttm-page-title-row {
    background: url(/images/cta_banner.webp);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}
.ttm-page-title-row-inner {
    width: 100%;
    padding: 170px 0 100px;
    text-align: center;
        background: linear-gradient(to right, rgba(15, 8, 4, .90) 35%, rgba(15, 8, 4, .45) 65%, rgba(15, 8, 4, .15) 100%);
}
.page-title-heading h1 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 9px;
        color: #fff;
}
.breadcrumb-wrapper {
    display: flex;
    padding-top: 5px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb-wrapper span {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 25px;
    position: relative;
        color: #c89b4b;
}
.ttm-textcolor-skincolor {
    color: #c89b4b;
    text-decoration: none;
}
.breadcrumb-wrapper span:first-child a {
    color: #fff;
    text-decoration: none;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.our_gallery .gallery-item img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
        transform: scale(1.01);
    transition: all 700ms ease;
}
.our_gallery .gallery-item:hover img {
    transform: scale(1.07) rotate(0.5deg);
    filter: inherit;
}

.gallery-item.large{
    grid-column: span 2;
}
.search_img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .search_img::before {
    content: '';
    background-color: #121f38;
    opacity: .5;
    position: absolute;
    inset: 0;
}
.gallery-item .search_icon {
    display: none;
}
.gallery-item:hover .search_icon {
    background: #d7a95d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.our_gallery, .mv-gallery-area, .mnv-showcase-section, .mnv-video-section, .cta_section {
    padding: 80px 0;
}
.gallery-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.gallery-popup.active{
    opacity:1;
    visibility:visible;
}

.gallery-popup img{
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}
.popup-close {
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
}
.popup-prev, .popup-next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#121F38;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
        font-size: 18px;
    font-weight: 400;
}
.popup-prev:hover, .popup-next:hover {
    background: #d7a95d;
    color: #121F38;
}
.popup-prev {
    left:40px;
}
.popup-next {
    right:40px;
}
.mv-gallery-area {
    background: #faf8f5;
}
.mv-wrapper{
    width:90%;
    max-width:1320px;
    margin:auto;
}

.mv-gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.mv-subtitle{
    color:#c89a60;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.mv-gallery-heading h2{
    font-size:42px;
    color:#222;
    margin:0;
}

.mv-gallery-list{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.mv-gallery-item{
    background:#fff;
    overflow:hidden;
    box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
    transition:.4s;
}

.mv-gallery-item:hover{
    transform:translateY(-8px);
}

.mv-gallery-thumb{
    overflow:hidden;
}

.mv-gallery-thumb img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.5s;
}

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

.mv-gallery-info{
    padding:25px 15px;
    text-align:center;
    position:relative;
}

.mv-icon-box{
    width:58px;
    height:58px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:-55px auto 15px;
    color:#c89a60;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
    font-size:22px;
}
.mv-gallery-info h4 {
    font-size: 24px;
    line-height: 33px;
    text-transform: capitalize;
}


.mnv-showcase-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.mnv-showcase-card {
    position: relative;
    overflow: hidden;
}
.mnv-showcase-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.mnv-showcase-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25),
        rgba(0,0,0,.05));
    z-index:1;
}

.mnv-showcase-overlay{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:2;
    text-align:center;
}

.mnv-showcase-overlay h3{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
    font-family:"Cormorant Garamond",serif;
}

.mnv-showcase-overlay p{
    color:#e8e8e8;
    font-size:15px;
    line-height:24px;
}

.mnv-showcase-card:hover img{
    transform:scale(1.08);
}
.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: #fff;
    color: #555;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all .35s ease;
    outline: none;
    font-family: inherit;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #d7a95d;
    color: #121F38;
    border-color: #d7a95d;
}

.filter-btn.active {
    background: #d7a95d;
    color: #121F38;
    border-color: #d7a95d;
    box-shadow: 0 8px 20px rgba(211, 164, 76, .25);
}
.mnv-video-section {
    background: #edf5f7;
}
.mnv-filter-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.mnv-video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.mnv-video-card{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    background:#000;
}

.mnv-video-card img{
    width:100%;
    height: 500px;
    object-fit:cover;
    display:block;
    transition:all .5s ease;
}

.mnv-video-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.9) 5%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.15) 100%);
    z-index:1;
}

.mnv-video-card:hover img{
    transform:scale(1.08);
}

/* Play Button */

.mnv-video-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#c89b5b;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.mnv-video-play i{
    font-size:22px;
    margin-left:4px;
}

.mnv-video-play::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.6);
    animation:playRipple 2s infinite;
}

@keyframes playRipple{

0%{
    transform:scale(1);
    opacity:1;
}

100%{
    transform:scale(1.7);
    opacity:0;
}

}

.mnv-video-play:hover{
    background:#c89b5b;
    color:#fff;
    transform:translate(-50%,-50%) scale(1.08);
}
.mnv-video-info {
    position:absolute;
    left:20px;
    right:20px;
    bottom: 24px;
    z-index:2;
}
.mnv-video-info h4{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin:0;
    line-height:1.3;
    text-shadow:0 2px 8px rgba(0,0,0,.4);
    text-align: center;
}
/* ==========================
   Video Popup
========================== */

.mnv-video-popup{
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:99999;
    padding:20px;
}

.mnv-video-popup.active{
    opacity:1;
    visibility:visible;
}

/* Popup Box */

.mnv-video-popup-inner{
    position:relative;
    width:100%;
    max-width: 600px;
    transform:scale(.8);
    transition:.35s ease;
}

.mnv-video-popup.active .mnv-video-popup-inner{
    transform:scale(1);
}
#mnvVideoPlayer{
    width:100%;
    aspect-ratio:16 / 9;
    display:block;
    background:#000;
    object-fit:cover;
}
.mnv-video-close{
    position:absolute;
    top:-18px;
    right:-18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#d7a95d;
    color:#121F38;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    z-index:10;
}
.mnv-video-close:hover{
    background: #fff;
    color:#000;
    transform:rotate(90deg);
}
body.video-open{
    overflow:hidden;
}
.cta_section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #121F38;
    position: relative;
    color: #fff;
}
.cta_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #121f38ba;
}
.cta_section .page_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}
.cta_section .golden_icon {
    max-width: 190px;
    height: auto;
    margin: 0 auto 20px;
}
.cta_section span {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    display: block;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
.cta_section h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #fff;
}
.cta_section p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}









@media(max-width: 1439px) {
.mv-gallery-info h4 {
    font-size: 22px;
    line-height: 30px;
}
.page-title-heading h1 {
    font-size: 40px;
    line-height: 46px;
}
.cta_section span { 
    font-size: 14px;
}
.cta_section .golden_icon {
    max-width: 160px;
}
.cta_section h2 {
    font-size: 40px;
    line-height: 50px;
}
.cta_section p {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
}
}

@media(max-width:1200px) {
.breadcrumb-wrapper span {
    font-size: 14px;
    line-height: 20px;
}
}

@media(max-width:1199px){
.mv-gallery-list{
    grid-template-columns:repeat(3,1fr);
}
}

@media(max-width: 991px) {
.gallery-filter {
    gap: 10px;
}
.filter-btn {
    padding: 8px 18px;
    font-size: 13px;
}
.mnv-showcase-grid{
    grid-template-columns:repeat(2,1fr);
}
p {
    font-size: 14px;
}
.ttm-row.about-section_1 .ttm_row {
    flex-direction: column;
}
.ttm-row.about-section_1 .ttm_row > .half_box {
    width: 100%;
}
.ttm-row.about-section_1, .about_content, .team_section, .mv-gallery-area, .mnv-showcase-section, .mnv-video-section, .cta_section {
    padding: 60px 0;
}
.page-title-heading h1 {
    font-size: 30px;
    line-height: 36px;
}
.pt-50 {
    padding-top: 30px;
}
.featured-imagebox-portfolio .featured-title h5 {
    font-size: 22px;
}
.gallery-grid {
    grid-template-columns:repeat(2,1fr);
}
.gallery-item.large{
    grid-column:span 2;
}
.our_gallery {
    padding: 60px 0;
}
.mnv-video-grid{
    grid-template-columns:repeat(2,1fr);
}
.mnv-video-popup-inner{
     max-width:90%;
}
.cta_section p {
    font-size: 14px;
    line-height: 24px;
}
}



@media(max-width: 767px) { 
.gallery-grid{
    grid-template-columns:1fr;
}
.gallery-item.large{
    grid-column:span 1;
}
.our_gallery .gallery-item img{
    height: 100%;
}
.popup-prev{
  left:15px;
}
.popup-next{
  right:15px;
}
.popup-prev, .popup-next{
  width:40px;
  height:40px;
}
.popup-close{
   right:15px;
}
.gallery-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.gallery-filter::-webkit-scrollbar {
    display: none;
}
.filter-btn {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 8px 18px;
}
.mnv-showcase-grid {
    grid-template-columns: 1fr;
}
.mnv-showcase-title h2 {
    font-size: 32px;
}
.mnv-showcase-card img {
    height: 350px;
}
.mv-gallery-list {
    grid-template-columns:repeat(2,1fr);
}
.mnv-video-grid{
    grid-template-columns:1fr;
}
.mnv-video-card img{
    height:400px;
}
.mnv-video-info h4{
    font-size:20px;
}
.mnv-video-play{
    width:60px;
    height:60px;
}
.mnv-video-play i{
    font-size:18px;
}
.mnv-video-popup{
    padding:15px;
}
.mnv-video-popup-inner{
    max-width:100%;
}
.mnv-video-close{
    width:38px;
    height:38px;
    top:-15px;
    right:-5px;
    font-size:16px;
}
}

@media(max-width:575px) {
.mv-gallery-list{
    grid-template-columns:1fr;
}
.mv-gallery-heading h2{
    font-size:30px;
}
}



