@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/*
font-family: "Red Hat Display", sans-serif;
*/

:root {
    /*--theme-color: #312782;*/
    --black: #000;
    --white: #fff;
    --paragraph: #303030;

}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

h2, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p {
    font-size: 16px;
    padding: 0;
    margin: 0 0 15px;
    color: var(--paragraph);
    font-weight: 300;
}

.text-section p {
    opacity: 0;
    transform: translateY(20px);
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.title1 h1 {
    font-size: 70px;
    color: #fff;
    text-transform: uppercase;
    line-height: 85px;
    font-weight: 700;
}

.title2 h2 {
    font-size: 44px;
    color: #000;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.title3 h3 {
    font-size: 60px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.title4 h4 {
    font-size: 34px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.title5 h5 {
    font-size: 24px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    transition: 0.6s;
}

.btn01 {
    position: relative;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 30px;
    border: 1px solid #3a3a3a;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: #3a3a3a;
    transition: 0.6s;
    display: inline-block;
    margin-top: 20px;
}

.btn01:hover {
    background-color: #A99260;
    border-color: #A99260;
    color: #fff;
    transform: translateY(-5px);
}

/*// backToTop //*/
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; padding: 10px; background: linear-gradient(to bottom, #469fd8, #797bf9); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); border: 1px solid rgb(255 255 255 / 89%); transition: 0.6s; }
#backToTop .fa-arrow-up { font-size: 18px; color: #fff; top: -1px; position: relative; }
#backToTop:hover { background-color: #f15c5a; transform: scale(1.1); }
#backToTop:hover svg { transform: translateY(-3px); }
/*// backToTop //*/

.form-select:focus {
    box-shadow: none;
}

a {
    color: rgb(0 0 0);
    text-decoration: none;
}

/* ======================================================================= */
    /* header start */
/* ======================================================================= */

.headerarea {
    box-shadow: none;
    padding: 20px 0;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 11;
}

.headerarea .logo {
    width: 100%;
    max-width: 100px;
    position: relative;
    display: inline-block;
}

/*.footer_sec .logo img, .footer_sec .logo img {
    width: 100%;
    object-fit: cover;
    position: relative;
}*/

.headerarea .logo img {
    width: 100%;
    object-fit: cover;
    position: relative;
}

img.twentytwenty-after {
    filter: grayscale(1);
}

.headerarea .header-contact .call {
    width: 100%;
    min-width: 43px;
    max-width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F6F7FB;
    background-color: #F6F7FB;
    color: #000000;
    border-radius: 100%;
    margin-left: 10px;
    transition: 0.5s;
}

.headerarea .header-contact .call:hover {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    background-color: #10102A;
    /*padding: 5px 100px;*/
    z-index: 999;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.headerarea.fix .logo {
    max-width: 80px;
}

.headerarea.fix {
    background-color: #3a3a3a;
    padding: 10px 0;
}

.headerarea.fix .menu ul li a {
    color: var(--black);
}

.headerarea.fix .menu {
    margin-top: 0px;
    margin-right: 0;
}

.headerarea.fix .menu ul li a:hover, .headerarea.fix .menu ul li.active a {
    color: #1789ea;
}

/*.headerarea.fix .menu ul li.active a {
    color: #fff;
}*/


.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right .header-contact .btn {
    margin-right: 10px;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.headerarea .menu .active>a {
    color: #446CB4;
    background: transparent;
}

.headerarea .arrow {
    background-color: #fff !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin-top: 0px;
    border: none;
    margin-left: 5px;
}

.headerarea .arrow img {
    max-width: 25px;
    object-fit: contain;
}

/* ======================================================================= */
    /* banner_sec start */
/* ======================================================================= */
.banner_sec {
    width: 98%;
    max-width: 1920px;
    height: 930px;
    margin: 0 auto;
    padding-bottom: 80px;
    position: relative;
    border-radius: 20px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.banner_sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: #00000063;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bnr_content .title1 {
    padding-bottom: 50px;
}

.bnr_content {
    width: 100%;
    position: relative;
}

.bnr_content .title1 p {
    font-size: 20px;
    color: #fff;
    width: 60%;
}

.bnr_content .title1 h1 span {
    font-family: "Red Hat Display", sans-serif;
    font-size: 85px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: currentColor;
    -webkit-text-stroke-width: .012em;
    font-weight: 900;
}

.quote-form {
    width: 100%;
    max-width: 380px;
    position: relative;
    margin-top: 35px;
}

.quote-form input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #fff;
    padding: 0 70px 0 20px;
    font-size: 15px;
    color: #111;
    box-sizing: border-box;
}

.quote-form input::placeholder {
    color: #111;
    opacity: 1;
}

.quote-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.quote-form button:hover {
    transform: rotate(15deg);
    background-color: #A99260;
}

/**/
.service-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}

.service-content {
    flex: 1;
}

.service-number {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.service-number span {
    font-size: 28px;
    font-weight: 700;
    color: #0d1425;
    line-height: 1;
}

.service-number small {
    font-size: 13px;
    color: #9a9a9a;
    margin-left: 2px;
    margin-bottom: 3px;
}

.service-content p {
    font-size: 13px;
    line-height: normal;
    color: #333;
    max-width: 190px;
    margin: 0;
}

.service-image {
    width: 170px;
    height: 130px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 46px;
    height: 46px;
    background: rgb(255 255 255 / 52%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}

.play-btn svg {
    margin-left: 3px;
}

.play-btn:hover {
    transform: translate(-50%,-50%) scale(1.08);
}

@media (max-width:576px) {
    .service-box {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .service-content p {
        max-width: 100%;
    }
}


/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */
.about_sec {
    width: 100%;
}

.about_secPic {
    width: 95%;
    height: 600px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.about_secPic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.6s;
}

.center-text1 {
  text-align: center;
}

.right-text1 {
  text-align: right;
}

.right-line1:after {
    content:"";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid #8e8e8e;
}

.left-line1:before {
    content:"";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-left: -100%;
    margin-right: 10px;
    border-top: 1px solid #8e8e8e;
}

.custom-list {
    width: 100%;
    margin-top: 25px;
}

.custom-list ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 6px;
}

.custom-list ul li {
    position: relative;
    padding-left: 14px;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #222;
}

.custom-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #222;
}

/* ======================================================================= */
    /* highlight_sec start */
/* ======================================================================= */
.highlight_sec {
    width: 100%;
}

.highlight_sec .service-content p {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.5;
}

.highlight_sec .service-content {
    margin-top: 50px;
}

.highlightPic {
    height: 420px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.highlightPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.highlight_right {
    width: 95%;
    margin-left: auto;
}

/**/
.highlight_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center; pointer-events: none;}
.highlight_slide .owl-nav button.owl-prev, .highlight_slide .owl-nav button.owl-next { width: 40px; height: 40px; flex-basis: 40px; flex-shrink: 0; border: 1px solid #000; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all;}
.highlight_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.highlight_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.highlight_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.highlight_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.highlight_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.highlight_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.highlight_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.highlight_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.highlight_slide .owl-nav {
    position: absolute;
    display: inline-flex;
    top: -103px;
    align-items: center;
    justify-content: flex-end;
    width: 15%;
    background-color: #fff;
    margin-left: auto;
}
.highlight_slide .owl-nav button.owl-prev:hover, .highlight_slide .owl-nav button.owl-next:hover { background: #10102A; border: 1px solid #10102A; color: #fff; transition: all .3s ease-in-out;}
.highlight_slide .owl-nav { margin-top: 0; }
/**/

/* ======================================================================= */
    /* ancestors_sec start */
/* ======================================================================= */
.ancestors_sec {
    width: 100%;
}

.ancestors_sec .title3 p {
    width: 65%;
    margin: auto;
}

.ancestorsPic {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.ancestorsPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* ======================================================================= */
    /* archive_sec start */
/* ======================================================================= */
.archive_sec {
    width: 100%;
}

.archive_sec .title3 p {
    width: 65%;
    margin: auto;
}

.archive_sec .nav {
    justify-content: space-between;
    margin-bottom: 35px;
}

.archive_sec .nav-link {
    border: 1px solid #0000009e;
    color: #0000009e;
}

.archive_sec .nav-pills .nav-link.active, .archive_sec .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000;
}

.archive_right {
    width: 100%;
    margin-left: auto;
}

.archivePic {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.7);
    opacity: 0.4;
    transition: transform 0.9s ease, opacity 0.9s ease;
}

.archivePic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.archive-carousel .owl-item.active.center .archivePic {
    transform: scale(1);
    opacity: 1;
}

.archive-carousel .owl-item.active.center .archivePic img {
    transform: scale(1);
}

.pdfIcon {
    position: absolute;
    top: 10px;
    left: 10px;
}

.pdfIcon img {
    max-width: 38px;
    object-fit: contain;
}

.archiveBtm {
    width: 90%;
    position: absolute;
    left: 15px;
    bottom: 25px;
}

.archiveBtm h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.archiveBtm p {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: normal;
}

.archiveBtm .btn01 {
    font-size: 13px;
    padding: 5px 9px;
    border: 1px solid #fff;
    color: #000;
    font-weight: 400;
    background-color: #fff;
    margin-top: 0px;
    border-radius: 6px;
    margin-left: auto;
    display: table;
}

.archiveBtm .btn01:hover {
    transform: translateY(-3px);
    background-color: #A99260;
    color: #fff;
}

/**/
.archive-carousel .owl-nav button.owl-prev, .archive-carousel .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #fff; background-color: var(--theme-color); border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.archive-carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.archive-carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #fff !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.archive-carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.archive-carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.archive-carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #fff !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.archive-carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.archive-carousel .owl-nav button.owl-prev { left: 0px; position: relative;}
.archive-carousel .owl-nav button.owl-next { right: 0px; position: relative;}
.archive-carousel .owl-nav { position: absolute; display: inline-flex; bottom: 40px; left: -11%; align-items: center; justify-content: flex-start; width: auto; pointer-events: none; margin: 0 auto;}
.archive-carousel .owl-nav button.owl-prev:hover, .archive-carousel .owl-nav button.owl-next:hover { background-color: var(--black); border: 1px solid var(--black); color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
/**/

/* ======================================================================= */
    /* ourGallery start */
/* ======================================================================= */
.ourGallery {
    width: 100%;
    padding: 60px 0;
    position: relative;
    margin-bottom: 120px;
}

.ourGallery:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -6%);
    margin: 0 auto;
    background-color: #F2F2F2;
    border-radius: 25px;
    width: 700px;
    height: 105%;
    z-index: -1;
}

.ourGallery .container-fluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.ourGallery .title3 {
    width: 30%;
    margin: 0 auto;
}

.ourGallery .swiper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.ourGallery .swiper .swiper-wrapper {
    align-items: center;
}

.ourGallery .swiper .swiper-slide {
    height: 500px !important;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    filter: grayscale(100%);
}

.ourGallery .swiper .swiper-slide img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.ourGallery .swiper .swiper-slide.active {
    height: 550px !important;
    filter: grayscale(0);
}

.ourGallery .slider_nav {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ourGallery .slider_nav .prev,
.ourGallery .slider_nav .next {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid #A99260;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #A99260;
    background: #fff;
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.ourGallery .slider_nav .prev i,
.ourGallery .slider_nav .next i {
    font-size: 12px;
    line-height: 1;
}

.ourGallery .slider_nav .prev:hover,
.ourGallery .slider_nav .next:hover {
    background: #A99260;
    color: #fff;
}

.ourGallery .slider_nav .prev svg,
.ourGallery .slider_nav .next svg {
    width: 10px;
    height: 15px;
}

.ourGallery .slider_nav .prev svg path,
.ourGallery .slider_nav .next svg path {
    fill: #A99260;
}

.ourGallery .slider_nav .prev:active,
.ourGallery .slider_nav .next:active {
    transform: scale(0.94);
}

/* ======================================================================= */
    /* footer_sec start */
/* ======================================================================= */
.footer_sec {
    width: 100%;
    background-color: #000;
    border-radius: 25px;
    padding: 60px 0;
}

.footer_top {
    width: 100%;
    margin-bottom: 45px;
}

.footerGetInTouch-area {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
}

.footerGetInTouch-adddress h4 {
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.footerGetInTouch-adddress .address {
    margin-bottom: 12px;
    color: var(--paragraph);
    font-size: 18px;
    line-height: 26px;
}

.footerGetInTouch-adddress .address:last-child {
    margin-bottom: 0;
}

.footerGetInTouch-adddress .address h5 {
    color: var(--black);
    font-size: 20px;
    line-height: 30px;
}

.footerGetInTouch-adddress .address a {
    color: var(--paragraph);
    font-size: 18px;
    line-height: normal;
}

.footerGetInTouch-form {
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    border: 1px solid #eeeeee;
    background-color: #eeeeee;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    height: 50px;
    border-radius: 10px;
    transition: all 0.5s ease-out;
}

.form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.form-control:focus {
    border-color: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
    color: #000;
    font-weight: 400;
}

select.form-control {
    color: #000;
    font-size: 16px;
    background-image: url(../images/arrow-down.png);
    background-position: right center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-origin: content-box;
}

textarea.form-control {
    height: 140px;
    resize: none;
}

.btn-submit {
    position: relative;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 48px;
    border: 1px solid #3a3a3a;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: #3a3a3a;
    transition: 0.6s;
    display: inline-block;
    margin-top: 0;
}

.btn-submit {
    transform: translateY(-60px);
}

.btn-submit:hover {
    background-color: #A99260;
    border-color: #A99260;
}

.footer_mdl {
    width: 100%;
    padding-bottom: 35px;
    border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.footer_menu {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
}

.footer_menu_col {
    width: 100%;
}

.footer_menu_col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_menu_col ul li {
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.footer_menu_col ul li:last-child {
    margin-bottom: 0;
}

.footer_menu_col ul li a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer_menu_col ul li a:hover {
    color: #a99260;
}

.footer_menu_col ul li span {
    display: block;
    color: #aaa;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.15;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 575px) {
    .footer_menu {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }

    .footer_menu_col ul li a {
        font-size: 12px;
    }

    .footer_menu_col ul li span {
        font-size: 10px;
    }
}

.heritage_title {
    width: 100%;
    margin: 0;
    padding-left: 50px;
}

.heritage_title h2 {
    margin: 0;
    padding: 0;
    font-size: 100px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -4px;
    background: linear-gradient(90deg, #212121 0%, #b8b8b8 28%, #282828 75%, #777777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 991px) {
    .heritage_title h2 {
        font-size: 65px;
        letter-spacing: -3px;
    }
}

@media (max-width: 767px) {
    .heritage_title h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }
}

@media (max-width: 480px) {
    .heritage_title h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
}

.footer_btm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.social-link ul {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-link ul li a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.5s ease-out;
    fill: #fff;
}

.social-link ul li a:hover {
    background-color: var(--white);
    color: var(--black);
}

.footer_btm p {
    margin: 0;
    color: #a1a1a1;
}

.footer_btm .logo {
    width: 100%;
    max-width: 100px;
    position: relative;
    display: inline-block;
}

/* ======================================================================= */
    /* inner_ban start */
/* ======================================================================= */
.inner_ban {
    width: 98%;
    max-width: 1920px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_ban:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: #00000063;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.breadcrumb {
    font-size: 54px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 111;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.breadcrumb a, .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* ======================================================================= */
    /* history_sec start */
/* ======================================================================= */
.history_sec {
    width: 100%;
}

.history_secPic {
    height: 400px;
    position: relative;
    display: flex;
    border-radius: 15px;
    margin: 15px 0 25px;
    overflow: hidden;
}

.history_secPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.history_secPic:hover img {
    transform: scale(1.1);
}

.history_sec h4 {
    font-size: 40px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.history_sec p {
    width: 90%;
}

/* ======================================================================= */
    /* story_sec start */
/* ======================================================================= */
.story_sec {
    width: 100%;
}

.story_secPic {
    width: 95%;
    height: auto;
    position: relative;
    display: flex;
    overflow: hidden;
}

.story_secPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* ======================================================================= */
    /* document_sec start */
/* ======================================================================= */
.document_sec {
    width: 100%;
}

.document_sec .title3 {
    width: 75%;
    margin: 0 auto;
}

.traditions_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.traditions_card {
    width: 100%;
    min-height: auto;
    padding: 10px;
    background: #dcdcdc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.traditions_card:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.traditions_img {
    width: 100%;
    height: 150px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.traditions_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.traditions_content {
    width: 100%;
    padding: 9px 1px 0;
}

.traditions_title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.traditions_title h4 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #111;
}

.traditions_pdf {
    width: 17px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #747474;
    border-radius: 3px;
    background: #fff;
    color: #222;
    font-size: 5px;
    font-weight: 700;
    line-height: 1;
}

.traditions_pdf::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-left: 1px solid #747474;
    border-bottom: 1px solid #747474;
    border-bottom-left-radius: 2px;
}

.traditions_content p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    color: #3e3e3e;
}

@media (max-width: 991px) {

    .traditions_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .traditions_img {
        height: 110px;
    }

    .traditions_card {
        min-height: 185px;
    }
}

@media (max-width: 575px) {

    .traditions_sec {
        padding: 20px 0;
    }

    .traditions_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .traditions_card {
        min-height: auto;
        padding: 7px 7px 14px;
    }

    .traditions_img {
        height: 180px;
    }

    .traditions_content {
        padding-top: 10px;
    }

    .traditions_title h4 {
        font-size: 13px;
    }

    .traditions_content p {
        font-size: 11px;
    }
}

/* ======================================================================= */
    /* meeting_sec start */
/* ======================================================================= */
.meeting_sec {
    width: 100%;
}

.meeting_secPic {
    height: 100%;
    height: 450px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.meeting_secPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.meeting_secPic:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #00000063;
}

.meeting_sec .title4 {
    padding: 0 25px;
}

.meeting_secPicin {
    height: 100%;
    height: 100%;
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.meetingPdf {
    max-width: 38px;
    object-fit: contain;
}

.meeting_secPicin p {
    color: #fff;
}

.meeting_secPicin .btn01 {
    margin-top: 10px;
    margin-left: auto;
    display: table;
    background-color: #ffffff;
    color: #000;
}

.meeting_secPicin .btn01:hover {
    background-color: #A99260;
    color: #fff;
}

.meeting_reverse .row:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.meeting_reverse .row:last-child {
    margin-bottom: 0 !important;
}

/* ======================================================================= */
    /* celebration_sec start */
/* ======================================================================= */
.celebration_sec {
    width: 100%;
}

.celebration_sec .archivePic {
    width: 100%;
    height: 390px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
}

.celebration_sec .row > .col-lg-3:last-child p {
    padding-left: 25px;
}

.celebration_sec .row > .col-lg-3:last-child .btn01 {
    margin-top: 15px;
    margin-left: 25px;
}

.celebration_sec .row:last-child {
    margin-bottom: 0 !important;
}

.celebration_reverse .row:nth-of-type(2n) {
    flex-direction: row-reverse;
}

/* ======================================================================= */
    /* ourStory_sec start */
/* ======================================================================= */
.galleryStory_sec {
    width: 100%;
}

.galleryStory_sec .title3 p {
    width: 65%;
    margin: auto;
}

.galleryStory_pic {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
}

.galleryStory_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.galleryStory_pic:hover img {
    transform: scale(1.1);
}

.imgheight:nth-child(2) .galleryStory_pic {
    height: 340px;
}

.imgheight:nth-child(3) .galleryStory_pic {
    height: 300px;
}

.imgheight:nth-child(4) .galleryStory_pic {
    height: 130px;
}

.imgheight:nth-child(5) .galleryStory_pic {
    height: 130px;
}

.imgheight:nth-child(6) .galleryStory_pic {
    height: 300px;
}

.imgheight:nth-child(7) .galleryStory_pic {
    height: 240px;
}

.imgheight:nth-last-child(-n+4) {
    align-self: flex-start;
}

/*video-play-button start*/
/*.vdo_image {
    width: 350px;
    height: 220px;
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 35px;
}
.vdo_image img { width: 100%; height: 100%; object-fit: cover; }*/
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #8CC63A; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}
.video-play-button:before { content: ""; position: absolute; z-index: 0; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); display: block; width: 70px; height: 70px; background: rgb(255 255 255 / 74%); border-radius: 50%; animation: pulse-border 1100ms ease-out infinite; }
.video-play-button:after { content: ""; position: absolute; z-index: 1; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); display: flex; align-items: center; justify-content: center; width: 65px; height: 65px; background: #fff; border-radius: 50%; transition: all 200ms; }
.video-play-button span { display: block; position: relative; z-index: 3; width: 0; height: 0; border-left: 19px solid var(--black); border-top: 12px solid transparent; border-bottom: 12px solid transparent; top: 10px; left: 5px; }
/*.video-play-button .fa-play { font-size: 25px; color: #fff; position: relative; z-index: 2; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); }*/
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/*video-play-button end*/

.weAre {
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weAre article p {
    width: 650px;
}

/* ======================================================================= */
    /* our_legacy start */
/* ======================================================================= */
.our_legacy {
    width: 100%;
    position: relative;
}

.our_legacy:before {
    content: "";
    position: absolute;
    top: 270px;
    left: 0;
    right: 0;
    width: 100%;
    height: 700px;
    background-color: #F2F2F2;
    z-index: -1;
}

.our_legacy .title3 p {
    width: 65%;
    margin: auto;
}

.family_gallery {
    width: 92%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.family_gallery_col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.family_gallery_item {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
}

.family_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.family_gallery_col:nth-child(1) .family_gallery_item:nth-child(1) {
    height: 270px;
}

.family_gallery_col:nth-child(1) .family_gallery_item:nth-child(2) {
    height: 350px;
}

.family_gallery_col:nth-child(2) .family_gallery_item:nth-child(1) {
    height: 350px;
}

.family_gallery_col:nth-child(2) .family_gallery_item:nth-child(2) {
    height: 270px;
}

.family_gallery_item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .family_gallery {
        gap: 4px;
    }

    .family_gallery_col {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .family_gallery {
        gap: 3px;
    }

    .family_gallery_col {
        gap: 3px;
    }

    .family_gallery_item {
        border-radius: 6px;
    }
}

.legacyRow .row:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.legacyRow .row {
    margin-bottom: 80px !important;
}

.legacyRow .row:last-child {
    margin-bottom: 0 !important;
}

/* ======================================================================= */
    /* contactUs start */
/* ======================================================================= */
.contactUs {
    width: 100%;
}

.contactUs .footerGetInTouch-area, .contactUs .footerGetInTouch-form {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
}

.mapsec {
    width: 100%;
    margin-top: 50px;
}

.mapsec iframe {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    padding: 3px;
    border: 1px solid #ccc;
}







/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */






/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */




/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */





/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */




/* ======================================================================= */
    /* about_sec start */
/* ======================================================================= */






