/* =========================== */
/* !! USE TO WEB SITE COLOR !! -
01. #ee212b                 -
02. #393738                 -
*/
/* =========================== */
/* =========================== */
/* !! SITE PAGE USE !!       -
01. HOME                     -
*/
/* =========================== */
/* =========================== */
/* !! SITE OF CONTENT'S !!
01. Google Font               -
02. Generated Font            -
04. Site Global               -
03. Site Typography           -
05. Minify Transition         -
06. Cuttom Button             -
07. Form Input                -
08. Form Input Placeholder    -
09. Header ('Navbar')         -
10. Footer                    -
11. All Page's Modal Common   -
13. All Page's Common Content -
14. Hero Banner Wrapper       -
*/
/* =========================== */
/*==============================================*/
/*          !!! GOOGLE FONT IMPORT !!!          */
/*==============================================*/
/* --------------------------
+--------------+--------------+
| FONT-WEIGHT  | Value        |
+--------------+--------------+
| thin         | 100          |
| ex-light     | 200          |
| light        | 300          |
| regular      | 400          |
| medium       | 500          |
| semi-bold    | 600          |
| bold         | 700          |
| ex-bold      | 800          |
| black        | 900          |
+--------------+--------------+
--------------------------- */
/* ============================================== */
/*              !! GENERATED FONT !!              */
/* ============================================== */
@font-face {
    font-family: 'Circular Std';
    src: url('../fonts/CircularStd-Medium.eot');
    src: url('../fonts/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Medium.woff2') format('woff2'),
        url('../fonts/CircularStd-Medium.woff') format('woff'),
        url('../fonts/CircularStd-Medium.ttf') format('truetype'),
        url('../fonts/CircularStd-Medium.svg#CircularStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std Book';
    src: url('../fonts/CircularStd-Book.eot');
    src: url('../fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Book.woff2') format('woff2'),
        url('../fonts/CircularStd-Book.woff') format('woff'),
        url('../fonts/CircularStd-Book.ttf') format('truetype'),
        url('../fonts/CircularStd-Book.svg#CircularStd-Book') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN-Regular.eot');
    src: url('../fonts/DIN-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DIN-Regular.woff2') format('woff2'),
        url('../fonts/DIN-Regular.woff') format('woff'),
        url('../fonts/DIN-Regular.ttf') format('truetype'),
        url('../fonts/DIN-Regular.svg#DIN-Regular') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/CeraPro-Light.eot');
    src: url('../fonts/CeraPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CeraPro-Light.woff2') format('woff2'),
        url('../fonts/CeraPro-Light.woff') format('woff'),
        url('../fonts/CeraPro-Light.ttf') format('truetype'),
        url('../fonts/CeraPro-Light.svg#CeraPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */
:root {
    --bs-primary: #baa67a;
    --bs-light: #b7b7b7;
    --bs-gray: #707173;
    --bs-dark: #191818;
    --bs-primary-rgb: 186, 166, 122;
    --bs-light-rgb: 183, 183, 183;
    --bs-dark-rgb: 25, 24, 24;
    --bs-font-sans-serif: 'Circular Std Book', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 28px;
    --bs-body-color: var(--bs-white);
    --bs-body-bg: var(--bs-black);
    --bs-link-color: var(--bs-white);
    --bs-link-color-rgb: 255, 255, 255;
    --bs-link-hover-color: #ae8552;
    --bs-link-hover-color-rgb: 174, 133, 82;
    --bs-base-transition: all 0.3s ease-in-out;
    /* Infinite Scroll Brand */
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 26s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}
/* !! cursor !! */
/* body, body * {
    cursor: default;
} */

.cursor {
    position: absolute;
    background: transparent;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.75,-1.27,0.3,2.33) transform,
                0.5s cubic-bezier(0.75,-1.27,0.3,2.33) opacity;
    user-select: none;
    pointer-events: none;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
.cursor.active {
    opacity: 1;
    -webkit-transform: scale(8);
    transform: scale(8);
    /* background: rgba(0, 0, 0, 0.2); */
    word-wrap: normal;
    white-space: nowrap;
}

.cursor::after {
    content: '';
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.cursor.active::after {
    background: rgba(0, 0, 0, 0.2);
}
.cursor::before {
    content: attr(data-cursor-text);
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 20px;
    top: 0;
    left: 0;
    display: flex;
    border-radius: 100%;
    opacity: 0;
    color: var(--bs-white);
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    transform: scale(0.11);
}

.cursor.active::before {
    opacity: 1;
}
/* for safari */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .cursor {
      backdrop-filter: none !important;
      background: rgba(0, 0, 0, 0.2); /* fallback background */
    }
  }
}
/**/
.container,
.row {
  --bs-gutter-x: 50px;
}

@media (min-width: 768px) {
    .container,
    .row {
      --bs-gutter-x: 30px;
    }
}
@media (min-width: 992px) {
    .container,
    .row {
      --bs-gutter-x: 32px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1378px;
    }
}
@media (min-width: 1800px) {
    .container {
        /* max-width: 1725px; */
        max-width: 1450px;
    }
}

/* !!! Allow percentage-based heights in the application !!! */
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
/* no scroll on load */
html.no-scroll, body.no-scroll {
  height: 100%;
  overflow-y: scroll;            /* Enables scroll */
  scrollbar-width: none;        /* Firefox */
  scroll-behavior: smooth;       /* Smooth scroll on anchor links */
}

html.no-scroll::-webkit-scrollbar,
body.no-scroll::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari, Edge */
}
/* end no scroll on load */
/* !!! Typographic tweaks! ( Add accessible line-height & Improve text rendering ) !!! */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    scroll-behavior: auto;
}
/* !!! Improve media defaults !!! */
img, picture, video, canvas, svg {
    max-width: 100%;
}
/* !!! Remove built-in form typography styles !!! */
input, button, textarea, select {
    font: inherit;
}
/* !!! Avoid text overflows !!! */
p, h1, h2, h3, h4, h5, h6, label, a, li {
    overflow-wrap: break-word;
    word-break: break-word;
}
/* !!! Set core root defaults !!! */
html:focus-within {
    scroll-behavior: smooth;
}
/* !!! A elements that don't have a class get default styles !!! */
a:not([class]) {
    text-decoration-skip-ink: auto;
}
a, .btn, button {
    cursor: pointer;
}
:focus, :active, .active {
    outline: 0 none;
}
a, a:hover, a:focus, a:active, button, button:hover, button:focus, input, input:hover, input:focus, select, select:hover, select:focus, textarea, textarea:hover, textarea:focus, .btn, .btn:hover, .btn:focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control:focus, [type="text"]:focus, [type="email"]:focus, [type="checkbox"]:focus, [type="password"]:focus, [type="file"]:focus, [type="radio"]:focus, [type="submit"]:focus, [type="date"]:focus, [type="time"]:focus, [type="tel"]:focus, [type="search"]:focus, [type="button"]:focus, [type="number"]:focus, [type="reset"]:focus, textarea:focus, select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
button::-moz-focus-inner, [type="submit"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="button"]::-moz-focus-inner {
    border: none;
    padding: 0;
}
select, select:hover, select:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select::-ms-expand {
    display: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="search"i]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p, li {
    font-family: 'Circular Std Book';
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--bs-white);
    margin: 0 0 10px 0;
}
p:empty {
    display: none;
}
p:last-child , li:last-child {
    margin-bottom: 0;
}
ul, ol {
    font-weight: 500;
    margin: 0 0 16px 0;
    padding: 0 0 0 20px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5,.h6 {
    font-family: 'Circular Std Book';
    font-weight: 500;
    color: var(--bs-white);
    margin: 0 0 20px 0;
}
h1, .h1 {font-size: 60px; letter-spacing: -2px; line-height: 50px;}
h2, .h2 {font-size: 40px; letter-spacing: -1px; line-height: 40px;}
h3, .h3 {font-size: 30px;line-height: 38px;}
h4, .h4 {font-size: 24px;line-height: 32px;}
h5, .h5 {font-size: 20px;line-height: 28px;}
h6, .h6 {font-size: 18px;line-height: 30px;}

@media (min-width: 1400px) {
    h1, .h1 {font-size: 70px; line-height: 60px;}
    h2, .h2 {font-size: 50px; line-height: 50px;}
}
@media (max-width: 424px) {
    h1, .h1 {font-size: 45px; line-height: 40px;}
    h2, .h2 {font-size: 30px; line-height: 30px;}
}
/* ============================================= */
/* !!!!       All MINIFY CSS                !!!! */
/* ============================================= */
.bg_cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.bg_contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
/* ============================================= */
/* !!!!        COMMON BUTTON STYLE          !!!! */
/* ============================================= */
.btn {
    --bs-btn-padding-x: 26px;
    --bs-btn-padding-y: 10px;
    --bs-btn-font-size: 14px;
    --bs-btn-font-weight: 300;
    --bs-btn-line-height: normal;
    --bs-btn-border-width: 1px;
    --bs-btn-border-radius: 0;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-box-shadow: none;
    -webkit-box-shadow: var(--bs-btn-box-shadow);
    box-shadow: var(--bs-btn-box-shadow);
    transition: var(--bs-base-transition);
    letter-spacing: 2px;
}

.btn-primary {
    --bs-btn-bg: #ae8552;
    --bs-btn-border-color: #ae8552;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #ae8552;
    --bs-btn-active-bg: #ae8552;
    --bs-btn-active-border-color: #ae8552;
    --bs-btn-disabled-bg: #ae8552;
    --bs-btn-disabled-border-color: #ae8552;
    --bs-btn-color: #fefefe;
}
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-secondary {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-black);
    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-disabled-bg: var(--bs-secondary);
    --bs-btn-disabled-border-color: var(--bs-secondary);
}
.btn-outline-secondary {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-black);
    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-disabled-bg: var(--bs-light);
    --bs-btn-disabled-border-color: var(--bs-secondary);
}
.link {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--bs-base-transition);
}
.svg_left {
    margin-right: 10px;
}
.svg_right {
    margin-left: 10px;
}
.link svg {
    margin-bottom: -3px;
}
.link-primary:hover, .link-primary:focus {
    color: var(--bs-dark)!important;
}
.link-secondary:hover, .link-secondary:focus {
    color: var(--bs-primary)!important;
}
.link-dark:hover, .link-dark:focus {
    color: var(--bs-primary)!important;
}
/* !!! 404 Page !!! */
.opss_head h1 {
    font-weight: 700;
    margin: 0;
}
.opps_orange_triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media (min-width: 768px) {
    .opss_head h1 {
        font-size: 200px;
        line-height: 180px;
    }
}

/* ============================================= */
/* !!!!         COMMON FORM STYLE           !!!! */
/* ============================================= */
.form_group {
    margin: 0 0 24px;
}
label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ae8552;
    margin: 0 0 8px;
}
.form-control, .form-select {
    background-color: transparent;
    padding: 10px 18px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: "Cera Pro";
    color: #ffff;
    border: 1px solid #ae8552;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    line-height: normal;
}
.form-control:focus, .form-select:focus {
    background-color: transparent;
    border-color: #ae8552;
    box-shadow: none;
}
.form-select option {
    color: black;
}
textarea.form-control {
    height: 84px;
    resize: none;
}
/* !!! Wordpress Form Common style css !!! */
.wpcf7-form {
    position: relative;
}

.wpcf7-form .wpcf7-spinner {
    position: absolute;
    margin: auto 0;
    bottom: 0;
    right: 10px;
    top: 0;
}
.form-group p {
    margin-bottom: 0;
}
.wpcf7-not-valid-tip, .wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: normal;
}
/* ============================================= */
/* !!!!       FORM INPUT PLACEHOLDER        !!!! */
/* ============================================= */
.form-control::-webkit-input-placeholder {color: #808080;-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control::-moz-placeholder {color: #808080;-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control:-ms-input-placeholder {color: #808080;-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control::-ms-input-placeholder {color: #808080;-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control:-moz-placeholder {color: #808080;-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
/* !! field focus !! */
.form-control:focus::-webkit-input-placeholder {color: transparent;}
.form-control:focus::-moz-placeholder {color: transparent;}
.form-control:focus:-ms-input-placeholder {color: transparent;}
.form-control:focus::-ms-input-placeholder {color: transparent;}
.form-control:focus:-moz-placeholder {color: transparent;}
/* ============================================= */
/* !!!!              HEADER                 !!!! */
/* ============================================= */
.main_wrapper {
    overflow: hidden;
}
.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 30px;
    --bs-navbar-color: var(--bs-light);
    --bs-navbar-hover-color: var(--bs-white);
    --bs-navbar-disabled-color: var(--bs-light);
    --bs-navbar-active-color: var(--bs-white);
    --bs-navbar-brand-padding-y: 0;
    --bs-navbar-brand-margin-end: 0;
    --bs-navbar-nav-link-padding-x: 0;
    --bs-navbar-toggler-font-size: 15px;
    --bs-navbar-toggler-padding-y: 0;
    --bs-navbar-toggler-padding-x: 0;
    --bs-navbar-toggler-icon-bg: url("/wp-content/uploads/2025/07/menu-icon.png");
    --bs-navbar-toggler-expanded-icon-bg: url("/wp-content/uploads/2025/07/close-icon.png");
    --bs-navbar-toggler-border-color: transparent;
    --bs-navbar-toggler-border-radius: 0;
    --bs-navbar-toggler-focus-width: 0;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    z-index: 1024;
    background-color: transparent;
}
nav.navbar.navbar-expand-lg.sticky_navbar {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.10);
}
.navbar-toggler {
    border: 0;
    outline: 0;
    box-shadow: none;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 11;
    /* opacity: 0; */
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-expanded-icon-bg);
}
.navbar-collapse {
    flex-grow: 0;
}
.navbar-nav > .nav-item {
    position: relative;
}
.home  .navbar-brand, .page-template-home-template .navbar-brand {
    visibility: hidden;
}
.navbar-brand svg {
    width: 55px;
    height: 55px;
}
.navbar-collapse {
    background: rgba(0, 0, 0, 0.72);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    min-height: calc(100vh - 0px);
    max-width: 450px;
    width: 100%;
    margin: 0 0 0 auto;
    padding: 30px 58px 30px;
}
.navbar-close {
    background-color: transparent;
    border: 0;
    width: 44px;
    padding: 0;
    margin: 0 0 110px;
}
.navbar-toggler p {
    margin: 0 0 10px;
}

.navbar-toggler.open p {
    display: none;
}
span.navbar-toggler-icon {
    width: 41px;
}
button.navbar-toggler.open {
    max-width: 336px;
    width: 100%;
    align-items: start;
    justify-content: start;
    padding: 0 20px;
}
body.navbar_open {
    overflow: hidden;
}
.nav-link {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #b7b7b7;
    padding: 0;
}
@media (min-width: 992px) {
    a.navbar-brand {
        max-width: 55px;
        width: 100%;
        max-height: 55px;
        height: 100%;
    }
    .navbar-nav > .nav-item {
        margin: 0 0 20px 0;
    }
    .navbar.navbar-expand-lg .navbar-collapse {
        gap: 20px;
    }
    .nav-link {
        font-size: 30px;
        line-height: 50px;
    }
}
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        max-width: 200px;
        width: 100%;
    }
    .navbar-nav > .nav-item {
        justify-content: space-between;
    }

    .navbar-collapse .btn {
        margin: 24px 16px;
    }
    .navbar {
        --bs-navbar-padding-x: 0;
        --bs-navbar-padding-y: 30px;
    }
    .navbar-nav.responsive-menu {
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0;
    }
    .navbar-nav > .nav-item:not(:last-child) {
        margin:  0 0 20px;
    }
    ul.sub_menu_inner {
        margin: 0;
    }
    /* !!! Sub Menu !!!*/
    .sub-menu {
        display: none;
        width: 100%;
        padding: 0 16px 16px;
    }
    .navbar-nav > .nav-item {
        width: 100%;
    }
    .navbar-nav .nav-item .nav-link {
        width: calc(100% - 24px);
    }
    .sub_menu_inner li:not(:last-child) {
        margin: 0 0 12px;
    }
    .navbar-collapse {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.89);
    }
}
@media (max-width: 375px) {
    .navbar .navbar-brand {
        max-width: 150px;
        width: 100%;
    }
}
/* ============================================= */
/* !!!!              FOOTER                 !!!! */
/* ============================================= */
.previous_section {
  position: relative;
  z-index: 1;
}
footer {
    background-color: var(--bs-black);
    overflow: hidden;
}
.footer_top_inner {
    display: flex;
    justify-content: end;
}
.footer_top {
    padding: 100px 0 200px;
    background-color: var(--bs-black);
}
.footer_top_content {
    max-width: 928px;
    width: 100%;
}
.footer_top_content p {
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 50px;
    /* color: #000000; */
    margin: 0 0 55px;
}
.footer_top_content a {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 27px;
    text-decoration: underline;
    color: #fff;
}
.footer_top_content a:hover {
    color: var(--bs-primary);
}
.footer_bottom {
    background-color: var(--bs-black);
    padding: 60px 0;
}
.footer_bottom_inner {
    max-width: 1254px;
    width: 100%;
    margin: 0 auto;
}
.footer_bottom_top {
    display: flex;
    justify-content: space-between;
    padding: 0 0 115px;
}
.bottom_top_content {
    max-width: 556px;
    width: 100%;
}
.bottom_top_content h2 {
    margin: 0;
}
.footer_bottom_inner hr {
  color: rgb( 58, 58, 58 );
  margin: 0;
  opacity: 1;
  width: 100%;
}
.footer_bottom_middle {
    margin: 50px 0 0;
}
.bottom_middle_content {
    display: flex;
    justify-content: space-between;
    max-width: 506px;
    width: 100%;
}
.bottom_middle_content ul li a {
    font-size: 15px;
    line-height: 22px;
    color: #a0a0a0;
}
.bottom_middle_content ul li a:hover {
    color: var(--bs-primary);
}
.bottom_middle_content ul li, .bottom_middle_content ul  {
    margin: 0;
    padding: 0;
}
.footer_contact_details {
    max-width: 336px;
    width: 100%;
}
.footer_bottom_middle {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer_contact_details h6 {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 10px;
}
.company_menu h6 {
    margin: 0 0 12px;
}

.footer_contact_info {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
}
.footer_contact_details a {
  font-size: 18px;
  line-height: 1.667;
    color: #a0a0a0;
}
.footer_contact_details a:hover {
    color: var(--bs-primary);
}
.footer_bottom_last {
    margin: 256px 0 0;
}
.go_top_btn {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0 0 0 auto;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 30px;
}
.go_top_btn:hover {
    text-decoration: underline;
}
.bottom_last_inner {
    display: flex;
    justify-content: start;
    align-items: center;
}

.social_icons, .social_icons ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 75px;
    width: 100%;
    margin: 0;
    padding: 0;
}
.social_icons ul li a:hover img {
    opacity: 0.6;
}
.social_icons ul li {
    margin: 0;
}
.social_icons {
    margin: 0 0 0 110px;
}
.social_icons ul li a {
    display: block;
    width: 22px;
}

.bottom_last_inner p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 30px;
}
.bottom_last_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 476px;
    width: 100%;
}
@media (min-width: 768px) {
    .footer_bottom {
        padding: 145px 0 60px;
    }
}
@media (min-width: 992px) {
    .footer_bottom_middle hr {
        display: none;
    }
}
@media (min-width: 1400px) {
    .footer_top .container {
        max-width: 1398px;
    }
}
@media (min-width: 1800px) {
    .footer_top .container {
        max-width: 1478px;
    }
}
@media (max-width: 1199px) {
    .footer_top_content p {
        font-size: 30px;
        line-height: 38px;
    }
}
@media (max-width: 991.98px) {
    .bottom_top_content {
        max-width: 400px;
    }
    .bottom_middle_content {
        max-width: 100%;
    }

    .footer_bottom_middle {
        flex-direction: column;
        row-gap: 50px;
    }
}
@media (max-width: 767px) {
    .bottom_top_content {
        max-width: 100%;
    }
    .footer_bottom_top {
        row-gap: 50px;
        column-gap: 20px;
        padding: 0 0 50px;
    }
    .bottom_top_content h2 {
        font-size: 20px;
        line-height: 22px;
    }

    .bottom_top_logo a {
        display:block;
        max-width: 100px;
        width: 100%;
    }
    .bottom_last_content {
        max-width: 100%;
    }

    .bottom_last_inner {
        flex-direction: column;
        row-gap: 30px;
    }
    .bottom_middle_content .learn_menu {
        display: none;
    }
    .bottom_middle_content {
        row-gap: 20px;
        column-gap: 40px;
        justify-content: start;
    }
    .footer_contact_details h6 {
        font-size: 16px;
        line-height: 24px;
    }
    .footer_contact_details a {
        font-size: 16px;
        line-height: 28px;
    }
    .footer_bottom_last {
        margin: 100px 0 0;
    }
    .go_top_btn {
        display: none !important;
    }
    .footer_top_content p {
        font-size: 24px;
        line-height: 30px;
    }
    .footer_top {
        padding: 130px 0 100px;
    }
}
@media (max-width: 575px) {
    .bottom_last_content {
        flex-direction: column-reverse;
        justify-content: start;
        align-items: start;
    }
    .social_icons {
        margin: 0 0 20px;
    }
    .bottom_last_inner p {
        font-size: 12px;
        line-height: 12px;
    }
}
/* ======================================= */
/* !!!!    HERO BANNER WRAPPER CSS    !!!! */
/* ======================================= */
.banner_wrapper {
    overflow: hidden;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* new */
.banner-new.banner_wrapper {
  position: relative;
  height: 1033px;
  overflow: hidden;
}

.banner-new .banner_bg {
  inset: 0;
  background: url('/wp-content/uploads/2025/07/MelbNight-banner-img.png') center/cover no-repeat;
  /* will-change: transform; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Always stays at the back */
}
.banner-new .banner_reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* or #fff depending on your design */
  z-index: 1;
  transform-origin: top;
}
.banner-new .banner_inner {
  position: relative;
  z-index: 5;
}

.banner-new .banner_logo {
  position: relative;
  z-index: 6;
}

.banner-new .container_title {
  position: relative;
  z-index: 6;
}
.banner-new .banner_inner {
  position: relative;
  z-index: 3;
}

.banner-new .container_title h1 .line-child {
  display: inline-block;
  transform: translateY(0%);
  will-change: transform;
}

/* Logo */
.banner-new .banner_logo {
  position: relative;
  z-index: 4;
  display: inline-block;
  margin-top: 20px;
}

.banner-new .split,
.banner-new .banner_logo {
  opacity: 0;
  visibility: visible;
  position: relative;
  z-index: 10;
}

/* end new */
.banner_wrapper {
    will-change: transform;
    /* height: 132vh; */
}
.hero_img, .project_hero_img, .about_hero_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: all;
}
.home .hero_img img {
    -o-object-position: bottom;
    object-position: bottom;
}
.hero_img img, .project_hero_img img, .about_hero_img img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -o-object-position: center top;
    object-position: center top;
    will-change: transform;
    height: 1500px;
}
/* .home .hero_img video {
    height: 2600px;
    height: 100%;
} */
 .hero_video_block {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    max-width: 100% !important;
    min-width: 100% !important;
    overflow: hidden;
    pointer-events: all;
}
.hero_video_block video  {
    height: 1300px;
}
.hero_video_block video {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; */

    display: block;
    /* height: 100%; */
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -o-object-position: center top;
    object-position: center top;
    will-change: transform;
}
.about_hero_img img {
    height: 100% !important;
}
.banner_inner {
    max-width: 1378px;
    width: 100%;
    margin: 0 auto;
    padding: 408px 0 252px;
    z-index: 11;
    position: relative;
    overflow: hidden;
}
/* .banner_logo {
    opacity: 0;
} */
.banner_logo img {
    height: 140px;
    max-width: 139px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.banner_inner h1 {
    margin: 0 0 55px;
}

.hero_video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 9;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: inherit;
}
.scroll_mouse {
    position: absolute;
    bottom: 57px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .banner_inner {
        padding: 300px 20px 200px;
    }
}
@media (max-width: 575px) {
    .banner_inner {
        padding: 300px 5px 200px;
    }
    .scroll_mouse {
        bottom: 25px;
    }
}
/* ======================================= */
/* !!!!    WHY SECTION WRAPPER CSS    !!!! */
/* ======================================= */
.why_section {
    height: 1600px;
    padding: 130px 0 105px;
    /* background-attachment: scroll; */
    background-position: top center;
}
.why_inner {
    max-width: 1378px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 11;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.why_top_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.title {
    max-width: 150px;
    width: 100%;
}
.title h2 {
    color: var(--bs-black);
}
.content {
    max-width: 450px;
    width: 100%;
}
.content p {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 30px;
    color: var(--bs-black);
}
.content p:not(:last-child) {
    margin: 0 0 85px;
}
.content .author_name {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    text-decoration: underline;
    color: #000000;
}
.why_bottom_content {
    max-width: 900px;
    width: 100%;
    align-self: flex-end;
}
.bottom_content {
    max-width: 826px;
    width: 100%;
}
.bottom_content p {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 30px;
    margin: 0 0 44px;
}
.bottom_content a {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 18px;
    text-decoration: underline;
    color: #fefefe;
}
.bottom_content a:hover {
    color: var(--bs-primary);
}
@media (min-width: 1200px) {
    .content {
        max-width: 750px;
        width: 100%;
    }
}
@media (min-width: 1600px) {
    .why_section {
        height: 2150px;
    }
    .content {
        max-width: 800px;
        width: 100%;
    }
    .content .author_name {
        font-size: 20px;
        line-height: 27px;
    }
    .content p {
        font-size: 40px;
        line-height: 45px;
    }
    .bottom_content p {
        font-size: 30px;
        letter-spacing: -1px;
        line-height: 40px;
         margin: 0 0 54px;
    }
}
@media (min-width: 2000px) {
    .why_section {
        height: 2800px;
    }
}
@media (max-width: 767px) {
    .why_top_content {
        flex-direction: column;
    }
    .content p {
        font-size: 20px;
        line-height: 26px;
    }
    .content .author_name {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 22px;
    }
    .bottom_content {
        padding: 60px 0 0;
    }
    .bottom_content p,
    .bottom_content a {
        color: var(--bs-black);
    }
    .bottom_content a {
        font-size: 16px;
        line-height: 18px;
    }
    .why_section {
        height: 100%;
        padding: 60px 0 100px;
        background-position: 34% 50%;
        background-size: cover;
    }
    .why_bottom_content {
        display: none;
    }

    .why_section::after {
        position: absolute;
        top: 0;
        background-color: var(--bs-white);
        content: '';
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.9;
    }
}

/* PROJECT CSS */
.project-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.project-title {
    opacity: 1;
}
.project-item  a {
    display: block;
}
.project-image {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); /* Change as needed */
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: translate(0, 0);
}
.project-title {
    opacity: 1;
}
.project-image img {
  opacity: 1 !important;
}
.hidden-project {
  display: none;
}

.show-project {
  display: block;
}

.view-more-wrap {
    text-align: center;
    margin-top: 70px;
}
.project_wrapper {
    padding: 197px 0 100px;
    /* background-color: var(--bs-white); */
}
.project-title {
    padding: 20px 30px 0;
}
.project-title h3, .project-title p {
    font-size: 16px;
    letter-spacing: -1px;
    line-height: 16px;
    color: #656565;
    font-weight: 500;
}
.project-title h3 {
    margin: 0 0 5px;
    text-transform: uppercase;
}
.project-item a:hover h3 {
    color: var(--bs-primary);
}
.view_btn {
    background-color: #ebebeb;
    border: 0;
    width: 219px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 50px;
    color: #000000;
    text-align: center;
}
.view_btn:hover {
    background-color: var(--bs-primary);
    color: #ebebeb;
}
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.project-item {
    grid-column: 1;
}
.project-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 768px) {

    .project-item {
        grid-column: span 6;
    }
    .projects-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .project-item:nth-child(10n+2),
    .project-item:nth-child(10n+3),
    .project-item:nth-child(10n+6),
    .project-item:nth-child(10n+7),
    .project-item:nth-child(10n+10) {
        grid-column: span 6;
    }
}
@media (min-width: 992px) {

    .project_wrapper .container {
        max-width: 768px;
    }
    .project-item {
        grid-column: span 4;
    }
    .project-item:nth-child(10n+2),
    .project-item:nth-child(10n+3),
    .project-item:nth-child(10n+6),
    .project-item:nth-child(10n+7),
    .project-item:nth-child(10n+10) {
        grid-column: span 8;
    }
}
@media (min-width: 1200px) {
    .project_wrapper .container {
        max-width: 992px;
    }
}
@media (min-width: 1400px) {
    .project_wrapper .container {
        max-width: 1140px;
    }
    .project-image {
        height: 511px;
    }
}
@media (min-width: 1600px) {
    .project_wrapper .container {
        max-width: 1374px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .project_wrapper {
        padding: 197px 0 0;
    }
    .footer_top {
        padding: 250px 0 200px;
    }
}
@media (max-width: 767px) {
    .project_block {
        position: relative;
        z-index: 1;
    }
    .project_block::after {
        content: '';
        position: absolute;
        top: 0;
        z-index: -1;
        left: 0;
        height: 1010px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.6);
    }
}
@media (max-width: 767px) {
    .view_btn {
        font-size: 16px;
    }
    .project_wrapper {
        padding: 100px 0 0;
    }
    .project-image {
        height: 300px;
    }
}
/* animation css */
.banner_reveal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000; /* matches Exoape's overlay style */
  z-index: 1025;
  transform: translateY(0%);
will-change: transform, scale;
inset: 0;
}
.split, .split_text {
  opacity: 0;
  will-change: transform;
}
.split *, .split_text * {
  will-change: transform;
}
.split .line-mask, .split_text .line-mask {
    overflow: visible !important;
}
.image_wrapper {
  position: relative;
  overflow: hidden; /* Important for parallax effect */
}
.animated_image {
  display: block;
  width: 100%;
  will-change: transform, opacity;
}
/* ============================ */
/* !!!!    ABOUT US CSS    !!!! */
/* ============================ */
/* !!! Banner !!! */
.about_banner {
    background-color: #000;
    padding: 200px 0 250px;
    overflow: hidden;
}
.about_banner .about_hero_img {
    opacity: 0.16;
}
.about_inner {
    z-index: 11;
    position: relative;
}
.about_content {
    max-width: 525px;
    width: 100%;
}
.about_image {
    max-width: 843px;
    width: 100%;
}
.about_content h6 {
  font-size: 17.57px;
  line-height: 1.8;
  margin: 0 0 52px;
}
.about_content h1 {
  font-size: 50px;
  max-width: 371px;
  width: 100%;
  height: 83px;
  margin: 0 0 442px;
}
.about_content  a {
  font-size: 23.427px;
  text-decoration: underline;
  line-height: 1.35;
  margin: 0 0 105px;
  display: block;
}
.about_description_block {
    max-width: 489px;
    width: 100%;
}
.about_description_block p {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.3px;
}
.about_description_block p:not(:last-child) {
    margin: 0 0 30px;
}
@media (min-width: 992px) {
    .success_collab_content .container,
    .mission_vision_section .container  {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
    .about_banner {
        padding: 200px 0 350px;
    }
    .about_content h6 {
        font-size: 17.57px;
        line-height: 1.8;
        margin: 0 0 62px;
    }
    .about_content h1 {
        font-size: 50px;
        line-height: 0.9;
        margin: 0 0 662px;
    }
    .about_content  a {
        font-size: 23.427px;
        line-height: 1.35;
        margin: 0 0 225px;
    }
    .about_description_block p {
        font-size: 40px;
        line-height: 1;
    }
    .about_description_block p:not(:last-child) {
        margin: 0 0 40px;
    }
    .success_collab_content .container,
    .mission_vision_section .container {
        max-width: 1024px;
    }


}
@media (min-width: 1400px) {
    .success_collab_content .container,
    .mission_vision_section .container {
        max-width: 1200px;
    }
}
@media (min-width: 1600px) {
    .success_collab_content .container,
    .mission_vision_section .container {
        max-width: 1350px;
    }
}
@media (min-width: 1800px) {

    .success_collab_content .container,
    .mission_vision_section .container {
        max-width: 1450px;
    }
    .page-template-about-template .navbar .container,
    .about_banner .container {
        max-width: 1750px;
    }
}
@media (max-width: 1199px) {
    .about_content, .about_image {
        width: 48%;
    }
}
@media (max-width: 991.98px) {
    .about_content a {
        font-size: 20px;
    }
    .about_description_block p {
        font-size: 24px;
    }
    .about_content h1 {
        font-size: 46px;
        margin: 0 0 350px;
    }
}
@media (max-width: 767px) {
    .about_content, .about_image {
        width: 100%;
    }
    .about_content {
        margin: 0 0 100px;
    }
    .about_content h1 {
        margin: 0 0 150px;
    }
    .about_content a {
        margin: 0 0 55px;
    }
}
/* !!! Success Collab Section !!! */
.success_collab_content {
    padding: 200px 0;
}
.success_collab_content_inner {
    max-width: 1421px;
    width: 100%;
}
.success_collab_content h2 {
  font-size: 23.427px;
  text-decoration: underline;
  line-height: 1.35;
  max-width: 280px;
  width: 100%;
  margin: 0;
}
.success_collab_description {
    max-width: 833px;
    width: 100%;
}
.success_collab_description p {
    font-size: 30px;
    line-height: 30px;
    /* color: #231f20; */
}
.success_collab_description p:not(:last-child) {
    margin: 0 0 20px;
}
.success_collab_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.mission_vision_section {
    padding: 210px 0 190px;
    background-color: var(--bs-black);
}
.mission_vision_block {
    max-width: 1400px;
    width: 100%;
}
.mission_vision_block:not(:last-child) {
    margin: 0 0 180px;
}
.mission_vision_block h3 {
  font-size: 30px;
  max-width: 200px;
  width: 100%;
  line-height: 1.667;
  margin: 0;
}
.mission_vision_description p {
  font-size: 20px;
  line-height: 1.35;
  max-width: 791px;
  width: 100%;
}
.mission_vision_description p:last-child {
    margin: 0;
}
@media (min-width: 992px) {
    .success_collab_image {
        height: 2291px;
    }
}
@media (min-width: 1400px) {
    .mission_vision_section {
        padding: 200px 0;
    }
    .success_collab_description p {
        font-size: 40px;
        line-height: 40px;
    }
    .mission_vision_block h3 {
        max-width: 120px;
    }
}
@media (max-width: 991.98px) {
    .mission_vision_block h3 {
        max-width: 200px;
    }
    .success_collab_description p {
        font-size: 30px;
        line-height: 30px;
    }
    .success_collab_content {
        padding: 100px 0;
    }
    .mission_vision_section {
        padding: 150px 0 100px;
    }
    .mission_vision_block:not(:last-child) {
        margin: 0 0 80px;
    }
}
@media (max-width: 767px) {
    .success_collab_content h2 {
        margin: 0 0 50px;
    }
    .mission_vision_block h3 {
        margin: 0 0 20px;
    }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}
/* ============================ */
/* !!!!    SERVICES CSS    !!!! */
/* ============================ */
/* !!! BANNER CSS !!! */
.service_banner  {
    background-color: var(--bs-black);
}
.service_banner_inner {
    padding: 215px 0 300px;
    z-index: 11;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.service_banner_inner h1 {
    max-width: 379px;
    width: 100%;
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 35px;
    color: #ffffff;
    margin: 0 0 220px;
}
.service_banner_inner h6 {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 27px;
    color: #ffffff;
    margin: 0 0 120px;
}
.service_banner_image {
    max-width: 746px;
    width: 100%;
}
.service_banner_image p, .service_banner_text p {
    max-width: 722px;
    width: 100%;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 30px;
    color: #f4f4f4;
    margin: 0 0 118px;
}
.service_banner_description {
    max-width: 531px;
    width: 100%;
}
.service_detail_list {
    margin: 0 0 605px auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    text-align: right;
    max-width: 290px;
    width: 100%;
}
.service_banner_description p {
    max-width: 531px;
    width: 100%;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 30px;
    /* color: #000000; */
}
.service_detail_list h3 {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 35px;
    color: #ffffff;
    margin: 0 0 10px;
}
.service_detail_list p {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}
.service_detail_list li:not(:last-child) {
    margin: 0 0 35px;
}
.service_banner_content {
    gap: 30px;
}
.service_banner .hero_img img {
    /* height: 1744px; */
    height: 1600px;
}
.service_banner_bottom_content {
    margin: auto 0 125px;
}
.service_banner_description {
    display: flex;
}
@media (min-width: 1200px) {
    .service_banner_inner h1, .service_detail_list h3  {
        font-size: 50px;
        line-height: 45px;
    }
    .service_banner_image p,  .service_banner_description p, .service_banner_text p {
        font-size: 40px;
        line-height: 40px;
    }
    .service_detail_list p {
        font-size: 20px;
        line-height: 27px;
    }
    .service_banner .hero_img img {
        /* height: 1744px; */
        height: 1900px;
    }
}
@media (max-width: 1199px) {
    .service_banner_inner h1 {
        margin: 0 0 110px;
    }
    .service_detail_list {
        margin: 0 0 305px auto;
    }
}
@media (max-width: 991.98px) {
    .service_detail_list {
        margin: 0 0 205px auto;
    }
    .service_banner_inner {
         padding: 180px 0 150px;
    }
    .service_banner_description p {
        font-size: 22px;
        line-height: 22px;
    }
    .service_banner_bottom_content {
        margin: auto 0 80px;
    }
}
@media (max-width: 767px) {
    .service_banner_description {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner_service_detail {
        display: none;
    }

    .service_banner_description p {
        font-size: 14px;
        line-height: normal;
    }

    .service_banner_image p, .service_banner_text p {
        font-size: 16px;
        line-height: normal;
        margin: 0 0 40px;
    }
    .service_banner_text p {
        margin: 0 0 80px;
    }
    .service_banner .hero_img img {
        height: 650px;
    }
    .service_banner_inner {
        display: flex;
        flex-direction: column;
        padding: 150px 0 100px;
    }
    .service_banner_inner h1 {order: 2; font-size: 34px; line-height: 34px; margin: 0 0 60px; max-width: 280px;}
    .service_banner_inner h6 {order: 1;margin: 0 0 40px;}
    .service_banner_text {order: 3;}
    .service_banner_content {order: 4;gap: 20px;}

    .service_banner_image img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-height: 400px;
        min-height: 400px;
    }
}
/* SERVICE BLOCK */
.services_wrapper {
    background-color: var(--bs-black);
    overflow: hidden;
    padding: 70px 0 0;
}
.services_wrapper .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}
.service_block {
    z-index: 11;
    height: 100%;
    width: 100%;
    padding: 40px 32px 50px 42px;
    /* max-height: 500px; */
    height: 100%;
    /* min-height: 500px; */
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    transition: all 0.5s ease;
    /* overflow: hidden; */
    background-color: #292929;
}
.service_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -1;
}
.service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service_title {
    margin: 0 0 50px 14px;
}
.short_description {
    min-height: 82px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    margin: 0 0 0 14px;
}
.long_description {
    opacity: 0;
    visibility: hidden;
    /* max-height: 0; */
    overflow: auto;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease, transform 0.5s ease;
    /* scrollbar-width: none; */
}
 /* !! scrollbar !! */
.long_description::-webkit-scrollbar-track {
    background-color: transparent;
}
.long_description::-webkit-scrollbar {
    width: 2px;
    /* height: 0; */
    background-color: var(--bs-light);
}
.long_description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--bs-white);
}
.service_close {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateX(-30px);
    overflow: hidden;
}
.side_title {
    margin: auto 0 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    bottom: 50px;
    left: 42px;
}
.service_link  {
    margin: auto 0 0;
}
/* font size */
.side_title a {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    text-decoration: underline;
    color: #d7d7d7;
}
 .service_block .service_title h3 {
    font-size: 22px;
    letter-spacing: -1px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
}
.service_block  .short_description p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 18px;
    color: #ffffff;
}
.service_block .long_description p {
    /* font-size: 16px; */
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    /* line-height: 18px; */
    color: #ffffff;
}
@media (min-width: 768px) {
    /* hover animation */

    .service_block:hover .service_image {
        opacity: 0;
        transform: translateY(-20px);
    }
    .service_block:hover .service_title {
        margin: 0 0 40px 14px;
    }
    .service_block:hover .short_description {
        opacity: 0;
        display: none;
    }
    .long_description {
        height: 350px;
    }
    .service_block:hover .long_description {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        transform: translateX(0);
        margin: 0 0 0 54px;
    }
}
@media (min-width: 1200px) {
    /* hover animation */
    .service_block:hover .service_title {
        margin: 0 0 40px 14px;
    }
    .service_title {
        margin: 0 0 50px 14px;
    }

    .service_block  .short_description p {
        font-size: 18px;
        line-height: 24px;
    }
    .service_block .long_description p {
        font-size: 16px;
        line-height: 20px;
    }
    .side_title a {
        font-size: 18px;
        line-height: 22px;
    }

}
@media (min-width: 1400px) {
     /* hover animation */
    .service_block:hover .service_title {
        margin: 0 0 60px 14px;
    }
    .service_title {
        margin: 0 0 80px 14px;
    }
}
@media (min-width: 1600px) {
    .service_block .service_title h3 {
        font-size: 32px;
        line-height: 32px;
    }
    .service_block  .short_description p {
        font-size: 22px;
        line-height: 27px;
    }
    .long_description {
        height: 570px;
    }
    .service_block .long_description p {
        font-size: 18px;
        line-height: 26px;
    }
    .side_title a {
        font-size: 20px;
        line-height: 27px;
    }
}
@media (max-width: 991.98px) {
    .services_wrapper {
        padding: 150px 0 0;
    }
}
@media (max-width: 767px) {
    .service_block {
        padding: 40px 20px;
    }
    .service_title, .short_description, .service_block.active .long_description,  .service_block.active .service_title {
        margin: 0 0 30px 0;
    }
    .service_block .long_description p, .service_block .short_description p {
        font-size: 12px;
    }
    .service_link a {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 20px;
        text-decoration: underline;
        color: #fff;
    }

    .service_block {
        transition: background-color 0.5s ease;
    }
    .service_block .short_description,
    .service_block .long_description,
    .service_block .service_title {
        transition: all 0.5s ease;
    }

    .service_block.active {
        background-image: none !important;
        background-color: #292929;
    }

    .service_block.active::after {
        display: none;
    }

    .service_block.active .service_image {
        opacity: 0;
        transform: translateY(-20px);
    }

    .service_block.active .short_description {
        opacity: 0;
        display: none;
    }

    .service_block.active .long_description, .service_block.active .service_close {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .service_close {
        display: none;
        transition: all 0.5s ease;
    }
    .service_block.active .service_link {
        display: none;
    }
    .service_block.active .service_close {
        display: flex;
        width: 40px;
        height: 40px !important;
        min-height: 40px;
        max-height: 40px;
        justify-content: center;
        align-items: center;
    }

}
/* service_only_content_wrapper css */
.service_only_content_wrapper {
    background-color: var(--bs-black);
}
.service_only_content_inner {
    padding: 100px 0 130px;
}
.service_content_block h2 {
    max-width: 726px;
    width: 100%;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 30px;
    /* color: #000000; */
    margin: 0 0 35px;
}
.service_content_logo {
    margin: 50px 0 45px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.service_content_logo img {
    max-width: 60px;
    width: 100%;
    max-height: 60px;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.service_content_block p {
    max-width: 636px;
    width: 100%;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    /* color: #121212; */
    margin: 0;
}
.service_content_block:not(:last-child) {
    margin: 0 0 80px;
}
.service_content_block:last-child h2.text_title {
    max-width: 450px;
}
@media (min-width: 992px) {
    .service_only_content_inner {
        padding: 200px 0 230px;
    }
    .service_only_content_wrapper .container {
        max-width: 850px;
    }
}
@media (min-width: 1200px) {
    .service_only_content_wrapper .container {
        max-width: 950px;
    }
    .service_content_block h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .service_content_block p {
        font-size: 20px;
        line-height: 30px;
    }
    .service_content_block:not(:last-child) {
        margin: 0 0 140px;
    }
    .service_content_logo img {
        max-width: 120px;
        max-height: 120px;
    }
}
@media (min-width: 1500px) {
    .service_only_content_wrapper .container {
        max-width: 1230px;
    }
    .service_content_block h2 {
        font-size: 50px;
        line-height: 50px;
    }
    .service_content_block p {
        font-size: 22px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    .service_content_block h2 {
        font-size: 24px;
        line-height: 26px;
    }
    .service_content_block p {
        max-width: 636px;
        width: 100%;
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 20px;
    }
}
/* !!! PROJECT LANDING CSS !!! */
.project_hero_img img {
    /* height: 2080px; */
    height: 2400px;
}
.project_page_wrapper {
    background-color: var(--bs-black);
}
.project_block {
    padding: 662px 0 218px;
}
.project_inner {
    z-index: 11;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.project_content {
    gap: 30px;
    margin: 0 0 375px;
}
.single_project_content_inner .project_content {
    margin: 0 0 80px;
}
.project_detail {
    max-width: 722px;
    width: 100%;
}
.project_banner_description {
    max-width: 531px;
    width: 100%;
}
.project_detail_list {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    text-align: right;
    max-width: 290px;
    width: 100%;
    margin: 0;
}
.project_detail h1 {
    font-size: 26px;
    letter-spacing: -1px;
    line-height: 26px;
    color: #f4f4f4;
}
.project_inner h6 {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 27px;
    color: #ffffff;
    margin: 0 0 95px;
}
.project_detail_list p {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 40px;
    color: #ffffff;
    margin: 0;
}
.banner_project_details {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.project_filter {
    gap: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.filter-btn {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 50px;
    color: #535353;
    border: 1px solid #686868;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px !important;
    margin: 0;
    background-color: transparent;
    cursor: pointer;
    transition: background 0.3s;
    /* height: 69px; */
    color: #535353;
    padding: 0 20px;
}
.filter-btn:hover,
.filter-btn.active {
    background-color: #fff;
    border-color: #fff;
    color: #000000;
}
.filter-btn:not(:last-child) {
    border-right: 0;
}
.project-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.project_hero_img {
    z-index: -1;
}
.project_lp_wrapper  {
    padding: 100px 0 0;
    background-color: transparent;
}
@media (min-width: 1200px) {
    .project_detail h1 {
        font-size: 30px;
        line-height: 30px;
    }
}
@media (min-width: 1600px) {
    .project_detail h1 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (min-width: 1800px) {
    .page-template-project-template .navbar .container,
    .project_page_wrapper .container {
        max-width: 1750px;
    }
}
@media (max-width: 767px) {
    .project_block {
        padding: 300px 0 100px;
    }

    .project_hero_img img {
        height: 2000px;
    }

    .project_inner h6 {
        margin: 0 0 65px;
    }
    .project_content {
        margin: 0 0 100px;
    }
    .filter-btn {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 22px;
    }
    .project_detail h1{
        font-size: 24px;
        line-height: 28px;
    }
    .project_detail_list {
        align-items: start;
        text-align: left;
    }
    .banner_project_details {
        justify-content: start;
        align-items: start;
    }

}
/* ================================== */
/* !!!!    SINGLE PROJECT CSS    !!!! */
/* ================================== */
.single_project_banner_inner .project_content {
    margin: 0 0 60px;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 27px;
    color: #000000;
    max-width: 170px;
    width: 100%;
}
.single_project_banner_inner .project_content:last-child {
    margin: 0;
}
.single_project_banner_inner h1 {
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 45px;
    color: #000000;
    margin: 0 0 225px;
    max-width: 290px;
    width: 100%;
    text-transform: capitalize;
}
.split.project_date {
  max-width: 200px;
  width: 100%;
}
.project-date {
    font-family: 'Circular Std Book';
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 45px;
    color: #000000;
    display: flex;
    justify-content: end;
    align-items: start;
}

.project-date span.year {
    font-size: 26px;
    line-height: normal;
    padding: 0 0 0 10px;
}

.project-date span.month {
    padding: 0 10px 0 0;
}
.single_project_banner .project_hero_img img {
    height: 1100px;
}
.single_project_banner_inner {
    padding: 130px 0 100px;
}
.single_project_content_inner {
    padding: 150px 0 315px;
}
.single_project_content_inner h6 {
    font-family: 'Circular Std Book';
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 27px;
    text-decoration: underline;
    margin: 0 0 76px;
}
.project_content_details .project_content p {
    font-family: 'Circular Std Book';
    max-width: 914px;
    width: 100%;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 30px;
}
.stats_list {
    max-width: 290px;
    width: 100%;
}
.stats_list li h3 {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 35px;
    text-align: right;
    margin: 0 0 14px;
}
.stats_list li p {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 27px;
    text-align: right;
    margin: 0;
}
.stats_list li:not(:last-child) {
    margin: 0 0 36px;
}
.single_project_content_inner .project_details p {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 25px;
    margin: 0;
}
.project_content_details {
    margin: 0 0 100px;
}
@media (min-width: 992px) {
     .single_project_content_wrapper .container,
     .image_gallery_block  .container {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
     .single_project_content_wrapper .container,
     .image_gallery_block  .container {
        max-width: 1024px;
    }
    .white_content.project-date {
        color: var(--bs-white);
    }
}
@media (min-width: 1400px) {
    .project_content_details .project_content p {
        font-size: 40px;
        line-height: 40px;
    }
    .stats_list li h3 {
        font-size: 50px;
        line-height: 45px;
    }
    .stats_list li p {
        font-size: 20px;
        line-height: 27px;
    }
    .single_project_banner_inner {
        padding: 200px 0 135px;
    }
    .single_project_content_wrapper .container,
    .image_gallery_block  .container {
        max-width: 1200px;
    }
}
@media (min-width: 1800px) {
    .banner_content_block .container {
        max-width: 1562px;
    }
    .single-project .navbar .container,
    .single_project_banner .banner_content_block .container,
    .single_project_content_wrapper .container,
    .image_gallery_block  .container {
        max-width: 1750px;
    }
}
@media (max-width: 1199px) {
    .project_content_details .project_content p {
        font-size: 24px;
        line-height: 24px;
    }
    .project_content_details .project_content p {
        max-width: 600px;
    }
    .single_project_banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        opacity: 0.6;
        z-index: -1;
    }
    .project-date {
        justify-content: start;
    }
}
@media (max-width: 991.98px) {
    .stats_list li h3 {
        font-size: 30px;
        line-height: 25px;
    }
    .stats_list li p {
        font-size: 16px;
        line-height: 24px;
    }
    .project_content_details .project_content p {
        max-width: 450px;
    }
    .single_project_content_inner {
        padding: 100px 0 200px;
    }
}
@media (max-width: 767px) {
    .project_content_details .project_content p {
        max-width: 100%;
    }
    .stats_list {
        max-width: 100%;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        text-align: center !important;
    }
    .single_project_banner_inner h1 {
        margin: 0 0 30px;
    }
    .stats_list li h3 {
        text-align: center;
    }
    .project_date {
        margin: 0 0 100px;
    }
    .stats_list li:not(:last-child) {
        margin: 0;
    }
    .project-date {
        font-size: 30px;
        line-height: 25px;
    }
    .project-date span.year {
        font-size: 16px;
    }
}
/* HEADER ANIMATION */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
}
header {
  transition: background-color 0.5s ease, color 0.5s ease;
}
/* Project Navigation */
.project-navigation {
    margin: 345px 0 60px;
}
.project-navigation-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.next-project a,
.prev-project a  {
  font-family: 'Circular Std Book';
  font-size: 23.427px;
  color: rgba( 255, 255, 255, 0.702 );
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
  line-height: 1.35;
  text-align: left;
}
.prev-project a span,
.next-project a span {
    font-family: 'DIN';
}
@media (max-width: 991.98px) {
    .project-navigation {
        margin: 150px 0 60px;
    }
}
@media (max-width: 767px) {
    .project-navigation-inner {
        gap: 20px;
    }

    .project-navigation-inner .prev-project a {
        font-size: 16px;
    }

    .project-navigation-inner .next-project a {
        font-size: 16px;
    }
}
/* updated code */
.footer_wrapper {
  will-change: transform;
  overflow: hidden;
}
/* Single Project Gallery */
.gallery-item, .gallery-item img {
    width: 100%;
    height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}
.inner_image > .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.gallery-group:not(:last-child),
.inner_image > .row > .col-12:not(:last-child)  {
    margin: 0 0 20px;
}
@media (min-width: 768px) {
    .inner_2_image .row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 0;
    }
}
@media (max-width: 767px) {
    .gallery-item img {
        max-height: 250px;
        min-height: 250px;
    }
}

/* MODAL CSS */
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.851;
}

.contact_modal {
    --bs-modal-width: 675px;
    --bs-modal-padding: 0;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: var(--bs-white);
    --bs-modal-bg: transparent;
    --bs-modal-border-color: transparent;
    --bs-modal-border-width: 0;
    --bs-modal-border-radius: 0;
    --bs-modal-box-shadow: none;
    --bs-modal-inner-border-radius: 0;
    --bs-modal-header-padding-x: 0;
    --bs-modal-header-padding-y: 0;
    --bs-modal-header-padding: 0;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
}
.contact_modal .modal-footer .close_modal_btn {
    padding: 5px;
    box-shadow: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-size: 15px;
    line-height: 22px;
    color: #a0a0a0;
    gap: 8px;
    margin: 0;
}
.contact_modal .modal-footer {
    border: 0;
    justify-content: center;
    align-items: center;
}
.contact_modal .modal_title {
    border: 0;
    margin: 74px 0 0;
}
.contact_modal .modal_title h2 {
    max-width: 320px;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    margin: 70px 0 0;
    width: 100%;
}
.contact_modal .modal_contact_details {
    margin: 56px 0 0;
}
.modal_contact_details *, .modal_location_detail * {
    max-width: 564px;
    font-size: 18px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    width: 100%;
}
.modal_contact_details p, .modal_location_detail p {
    color: #ae8552;
    margin: 0;
}
.modal_contact_details a:hover, .modal_location_detail a:hover {
    color: #ae8552;
}
.modal_location_detail {
    margin: 30px 0 0;
}
.contact_modal .modal-dialog {
    padding: 76px 20px !important;
}
.modal_contact_form .row {
    --bs-gutter-y: 16px;
    --bs-gutter-x: 30px;
}
.modal_form_block {
    margin: 30px 0 0;
}
.submit_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'Cera Pro';
    font-weight:  300;
}
@media (max-width: 767px) {
    .modal_logo {
        width: 100px;
    }
}
/*
.hero_img img,
.banner_wrapper,
.why_section {
  will-change: transform, opacity;
}

.why_section.in-view {
  transition: opacity 0.6s ease, transform 0.6s ease;
} */

/* 404 Page css */
.banner__wrapper {
    padding: 200px 0 100px;
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.banner_content_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero_title {
    text-align: center;
    font-size: 50px;
    line-height: normal;
}
/* DEFAULT CSS */
.page-template-default .main_wrapper, .post-template-default .main_wrapper, .archive  .main_wrapper {
    background-color: black;
    padding: 150px 0 0;
}

.page-template-default .main_wrapper #content, .post-template-default .main_wrapper #content,
.archive  .main_wrapper #content {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.page-template-default .main_wrapper #sidebar, .post-template-default .main_wrapper #sidebar,
.archive  .main_wrapper #sidebar  {
    padding: 0 20px;
    margin: 60px auto;
    max-width: 1240px;
    width: 100%;
}
.page-template-default p + h2, .post-template-default p + h2, .archive  p + h2 {
    margin-top: 50px;
}
.post-template-default footer.entry-footer,
.post-template-default nav#nav-below,
.post-template-default .wp-block-latest-comments li footer,
.archive  footer.entry-footer,
.archive  nav#nav-below,
.archive  .wp-block-latest-comments li footer {
    background-color: black;
}
/* 03-09-2025 */
/* CUSTOM HEADER */
/* !-- white --!  */
.custom-white-header .navbar svg .s0 {
    fill: white;
}
.custom-white-header .navbar-toggler p {
    color: white;
}
.custom-white-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/menu-icon.png);
}
/* !-- black --!  */
.custom-black-header .navbar svg .s0  {
    fill: black;
}
.custom-black-header .navbar-toggler p  {
    color: black;
}
.custom-black-header .navbar  {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/black_menu.png);
}
/* !-- gold --!  */
.custom-gold-header .navbar svg .s0 {
    fill: #baa67a;
}
.custom-gold-header .navbar-toggler p {
    color: #baa67a;
}
.custom-gold-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/about_toggle.png);
}

/* !-- Only logos --! */
.white-logo .navbar svg .s0 {fill: white;}
.black-logo .navbar svg .s0 {fill: black;}
.gold-logo .navbar svg .s0 {fill: #baa67a;}

/* !-- Only Menu Toggle --! */
/* -- for menu -- */
.white-menu-toggle .navbar-toggler p {color: white;}
.black-menu-toggle .navbar-toggler p {color: black;}
.gold-menu-toggle .navbar-toggler p {color: #baa67a;}

/* -- for toggle -- */
.white-menu-toggle .navbar {--bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/menu-icon.png);}
.black-menu-toggle .navbar {--bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/black_menu.png);}
.gold-menu-toggle .navbar {--bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/about_toggle.png);}
@media (min-width: 768px) {
.home .black-header .navbar-toggler p {
    color: white;
}
.home .black-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/menu-icon.png);
}
}
@media (max-width: 1199px) {
    .single-project .navbar-toggler p {
        color: #000;
    }
    .single-project .navbar {
         --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/black_menu.png);
    }
}
/* HEADER COLOR */
/* white Header */
.white-header .navbar svg .s0 {
    fill: white;
}
.white-header .navbar-toggler p {
    color: white;
}
.white-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/menu-icon.png);
}
/* Black Header */
.black-header .navbar svg .s0  {
    fill: black;
}
.black-header .navbar-toggler p  {
    color: black;
}
.black-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/black_menu.png);
}
/* Gold Header */
.gold-header .navbar svg .s0 {
    fill: #baa67a;
}
.gold-header .navbar-toggler p {
    color: #baa67a;
}
.gold-header .navbar {
    --bs-navbar-toggler-icon-bg: url(/wp-content/uploads/2025/07/about_toggle.png);
}
/* 15-09-2025 */
@media (max-width: 991px) {
    .hero_video_block video {
        height: 1200px;
    }
}