@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Light.woff2') format('woff2'), url('../fonts/NeueMontreal-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.woff2') format('woff2'), url('../fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.woff2') format('woff2'), url('../fonts/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Bold.woff2') format('woff2'), url('../fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-LightItalic.woff2') format('woff2'), url('../fonts/NeueMontreal-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Italic.woff2') format('woff2'), url('../fonts/NeueMontreal-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-MediumItalic.woff2') format('woff2'), url('../fonts/NeueMontreal-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-BoldItalic.woff2') format('woff2'), url('../fonts/NeueMontreal-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Fonts */
    --instrument: "Instrument Sans", sans-serif;
    --neue: "Neue Montreal";
    /* Colors */
    --black: #1A1A1A;
    --white: #fff;
    --yellow: #F4CE01;
    --blue: #0158F4;
    --gray: #535353;
}


/* General CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-synthesis: none !important;
}

body {
    font-family: var(--instrument);
    font-weight: 400;
    color: var(--gray);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    touch-action: manipulation;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--neue);
    color: #1A1A1A;
    font-weight: 400;
}

h1 {
    font-size: clamp(32px, 4vw, 80px);
    font-weight: 400;
    line-height: 102%;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 400;
    line-height: 102%;
    letter-spacing: -0.03em;
}

p {
    color: var(--gray);
    line-height: 125%;
    letter-spacing: 0.02em;
    font-family: var(--instrument);
    font-size: 18px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.icon {
    width: 100%;
    height: auto;
}

.container {
    padding: 0px 60px;
}

.container-right {
    padding-right: 60px;
}

.container-left {
    padding-left: 60px;
}

p.custom-btn {
    background-color: var(--blue);
    font-family: var(--neue) !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    line-height: 100% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    font-weight: 400 !important;
    padding: 10px 10px;
    border: 1px solid var(--blue);
    cursor: pointer !important;
    transition: .4s ease all !important;
    border-radius: 7px !important;
    color: var(--white);
    display: inline-block !important;
    width: fit-content !important;
}

.primary-button-div {
    display: flex;
    gap: 3px;
    cursor: pointer;
}

.primary-button-div:hover .pb-right-block {
    transform: translateX(5px);
    transition: .4s ease all;
}

.pb-right-block {
    width: 32px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    transition: .4s ease all;
}

.spacer {
    height: 120px;
}

.black-block-bg {
    background-color: var(--black);
}

.blue-block-bg {
    background-color: var(--blue);
}

.yellow-block-bg {
    background-color: var(--yellow);
}

.parallax-img {
    position: relative;
    overflow: hidden;
}

.heading {
    margin-bottom: 50px;
}

.parallax-img img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.custom-slider-nav .custom-prev-btn,
.custom-slider-nav .custom-next-btn {
    background-color: var(--black);
    padding: 15px 14px;
}

.primary-button-div.for-mobile {
    display: none;
}

.for-mobile {
    display: none !important;
}

.sm-d-none {
    display: block;
}

.text-center {
    text-align: center;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.social-icon-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon-wrap a {
    width: 20px;
    height: 20px;
    transition: .4s ease all;
}

.social-icon-wrap a:hover {
    transform: translateY(-5px);
}

.moving-logo {
    width: 117px;
}


/* .custom-prev-btn.disabled,
.custom-next-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
} */


/* a-waves {
    --x: -0.5rem;
    --y: 50%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    svg {
        display: block;
        width: 100%;
        height: 100%;
        path {
            fill: none;
            stroke: #FFFFFF26;
            stroke-width: 2px;
        }
    }
} */

#banner-canvas{
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
#footer-canvas{
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: absolute;
    inset: 0;
}
#pps-canvas{
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: absolute;
    inset: 0;
}
#project-outer-banner-canvas{
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 4;
    position: absolute;
    inset: 0;
}
.line-parent {
  overflow: hidden;
}

.line-child {
  display: block;
  will-change: transform, opacity;
}
/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);  */
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-gif {
    width: 180px;
    height: auto;
}


@media screen and (max-width: 1200px) {
    .container {
        padding: 0px 40px;
    }
    .spacer {
        height: 100px;
    }
    .container-left {
        padding-left: 40px;
    }
}

@media screen and (max-width: 991px) {
    .spacer {
        height: 80px;
    }
    .heading {
        margin-bottom: 40px;
    }
    .container {
        padding: 0px 20px;
    }
    .moving-logo {
        width: 74px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0px 15px;
    }
    .container-left {
        padding: 20px;
    }
    .heading {
        margin-bottom: 20px !important;
    }
    .for-mobile {
        display: flex !important;
    }
    .for-desktop {
        display: none !important;
    }
    .sm-d-none {
        display: none;
    }
    .moving-logo {
        width: 54px;
    }
     .loader-gif {
       width: 100px;
    }
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* Hide wow elements initially */
.wow {
  visibility: hidden;
}

/* Make sure animated elements stay visible */
.wow.animate__animated {
  visibility: visible !important;
}