@import url(fonts.css);
:root {
    --white:#ffffff;
    --black:#000000;
    --primary:#000000;
    --secondary:#252C47;
    --text:#000000;
    --gray-1:#f3f3f3;
    --gray-2:#8F8F8F;

    --black-1:#1E1E1E;

    --blue-1:#D6E1E8;
    --blue-2: #141C3B;
  
    --accent:#0F60DD;
    --accent-l:#BED8FF;
    --sl-body-font-size: 1rem;


    /* Bg */
    --sl-body-bg: #0F162F;
    --sl-text-color:#000000;

    --gap: 1em;
    --global-max-width: 1320px;

    --global-radius:8px;

    /* Brand Color*/
    --brand-color-1: #000000;

} 
*, ::after, ::before {
    box-sizing: border-box;
}
*, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monumentGroteskRegular;
    text-decoration: none;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--sl-text-color);
    -webkit-text-size-adjust: 100%;
    font-size: var(--sl-body-font-size);
}
.sec{
    padding: 70px 0;
}
.sec-2{
    padding: 140px 0;
}

.img-fluid {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.container {
    max-width: var(--global-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0px 10px;
}

h6, h5, h4, h3, h2, h1 {
    margin: 0;
    padding: 0;
    margin-bottom:20px;
    color: var(--sl-text-color);
}
h1{
    font-size: 4.625rem;
    font-family: ppSupplyRegular;
    text-transform: uppercase;
}
h2{
    font-size: 4rem;
    font-family: ppSupplyRegular;
    text-transform: uppercase;
}

h3{
    font-size: 3rem;
    font-family: ppSupplyRegular;
    text-transform: uppercase;
}
h4{
    font-size: 1.375rem;
    font-family: ppSupplyRegular;

}
.h4{
    font-size: 2rem;
    font-family: ppSupplyRegular;

}
p {
    font-size: 1.125rem;
    font-family: monumentGroteskRegular;
    margin: 0;
    padding: 0;
    margin-bottom: 1.25rem;
    line-height: 130%;
    letter-spacing: -1%;
}
.label{
    font-size: .875rem;
    font-family: monumentGroteskRegular;
    line-height: 130%;
    letter-spacing: -2%;
}
.font-normal{
    font-weight: 300;
}
.font-bold{
    font-weight: 600;
}
.xs-show{
    display: none;
}
.mb-0{
    margin-bottom: 0;
}
.mb-0-1{
    margin-bottom: 8px;
}
.mb-1{
    margin-bottom: 16px;
}
.mb-2{
    margin-bottom: 32px;
}
.mb-3{
    margin-bottom: 48px;
}
.mb-4{
    margin-bottom: 64px;
}
.mt-1{
    margin-top: 16px;
}
.mt-2{
    margin-top: 32px;
}
.mt-3{
    margin-top: 48px;
}
.mt-4{
    margin-top: 64px;
}
.mr-3{
    margin-right: 30px;
}

.pt-0{
    padding-top: 0;
}
.pt-1 {
    padding-top: 16px;
}
.pb-1{
    padding-bottom: 16px;
}
.pb-0{
    padding-bottom: 0;
}
.pl-2{
    padding-left: 20px;
}
.font-sm{
    font-size: .875rem;
}
.font-lg{
    font-size: 1.25rem;
}
.font-xl{
    font-size: 1.5rem;
}
.font-xxl{
    font-size: 2rem;
}
.head-xxl{
    font-size: 4.5rem;
}
.bold-text{
    font-weight: 600;
    font-size: inherit;
}
.white-text{
    color: var(--white);
}
.text-center{
    text-align: center;
}
.blue-text{
    color: var(--accent);
    font-size: inherit;
    font-family: ppSupplyRegular;
}
.blue-text2{
    color: var(--accent-l);
    font-size: inherit;
    font-family: ppSupplyRegular;
}
.black-bg{
    background: var(--primary);
}
.img-radius{
    border-radius: 8px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-family: ppSupplyRegular;
    letter-spacing: 1px;
    line-height: 1.715;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    color: var(--white);
    background-color: var(--black);
    transition: all 0.2s ease-in-out;;
    text-transform: uppercase;
}
.btn-primary {
    color: var(--white);
    background-color: var(--primary);
}
.btn-primary:hover {
    color: var(--white);
    background-color: var(--secondary);
}
.btn-secondary {
    color: var(--white);
    background-color: var(--secondary);
}
.btn-secondary:hover {
    color: var(--white);
    background-color: var(--primary);
}
.btn-white {
    color: var(--primary);
    background-color: var(--white);
    border:1px solid var(--primary);
}
.btn-white:hover {
    color: var(--white);
    background-color: var(--secondary);
}
.margin-auto{
    margin: auto;
}
.btn-big{
    display: flex;
    font-size: 4rem;
    color: var(--white);
    font-family: ppSupplyRegular;
    gap: 20px;
    align-items: center;
}
.btn-xl{
    font-size: 1.375rem; 
}
.list-item{
    margin: 0 0 20px 25px;
}
.list-item li{
    font-size: 1.25rem ;
    margin: 0 0 10px;
}

/* Header */
.header {
    margin: 25px 0;
    position: fixed;
    width: 100%;
    z-index: 9;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(243 243 243 / 88%) ;
    padding: 20px;
    border-radius: 10px;
    z-index: 8;
    backdrop-filter: blur(5px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo-ui {
    max-width: 172px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-nav-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.ham-menu {
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    z-index: 4;
  }
  .ham-menu .ham-line {
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
  }
  .ham-menu.active .line-2{
    display: none;
  }
  .ham-menu.active .line-1{
    rotate: 45deg;
    transform: translate(7px, 7px);
    background: var(--white);
  }
  .ham-menu.active .line-3{
    rotate: -45deg;
    transform: translate(8px, -8.5px);
    background: var(--white);
  }

body.nav-open{
    overflow: hidden;
}
.mega-menu-wrap{
    overflow: hidden;
    height: 0px;
    padding: 0px;
    position: absolute;
    top: 0;
    right: auto;
    left: -10px;
    width: calc(100% + 20px);
    transition: all 0.3s ease-in-out;
  }
  .mega-menu-wrap.open{
    height: calc(100vh - 50px);
    padding: 0px 0px;
    overflow: auto;
  }
.mega-menu{
    background: var(--primary);
    border-radius: 8px;
    z-index: 9;
    padding: 20px;
}
.mega-menu-header{
    display: flex;
    justify-content: space-between;
}
.menu-logo{
    max-width: 144px;
    padding: 20px 0 4px 14px;
}
.mega-menu-container{
    padding: 26px;
}
.nav-title{
    text-transform: uppercase;
    font-family: ppSupplyRegular;
    font-size: 1.23rem;
    color: var(--white);
}
.mega-nav,
.mega-sub-nav{
    list-style-type: none;
}
.mega-nav{
    position: relative;
}
.mega-nav-item a,
.mega-sub-nav-item a,
.mega-nav-item .nav-item{
    color: var(--white);
    text-transform: uppercase;
    font-family: ppSupplyRegular;
}
.mega-nav-item a,
.mega-nav-item .nav-item{
    font-size: 3rem;
}
.mega-sub-nav-item a{
    font-size: 1.25rem;
}
.mega-sub-nav{
    position: absolute;
    left: 34%;
    top: 0;
    display: none;
}
.sub-menu{
    background: url(../images/nav-arrow-open.svg) no-repeat;
    background-position: right center;
    padding-right: 27px;
    display: inline-block;
}
.sub-nav:hover .mega-sub-nav{
    display: block;
}
.mega-nav-item:hover > .menu-link,
.mega-nav-item.active > .menu-link,
.mega-sub-nav-item:hover .menu-link{
    text-decoration: underline;
    cursor: pointer;
}
.mega-nav-item{
    margin-bottom: 40px;
}
.mega-sub-nav-item{
    padding: 20px 0;
}
.mega-menu-flex{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.mega-menu-flex .mega-sub-nav-item{
    flex: 0 0 44%;
}

.primary-btn-arrow {
    display: flex;
    width: 25px;
    height: 16px;
    justify-content: center;
    align-items: center;
    
}

/*Home */
.banner-wrpr{
    display: flex;
    gap: 8%;
    align-items: center;
    justify-content: space-between;
}
.banner-wrap {
    display: flex;
    gap: 8%;
    align-items: center;
    justify-content: space-between;
}
.banner-item {
    flex: 0 0 44%;
}
.banner-item.iframe-wrpr{
    flex: 0 0 50%;
    max-height: 730px;
    overflow: hidden;
}
.top-pad{
    padding-top: 150px;
}
.service-tab-wrap {
    display: flex;
    gap: 20px;
    background: var(--gray-1);
    justify-self: start;
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: -55px;
}
.service-btn {
    padding: 12px 10px 10px;
    border: none;
    background: none;
    font-family: ppSupplyRegular;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 100%;
    color: var(--primary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.service-btn:hover,.service-btn.active{
    background-color: var(--secondary);
    color: var(--white);
}
.home-icon{
    width: 48px;
    height: 48px;
    display: block;
}
.home-tab-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-icon .on-icon,
.home-icon.active:hover .on-icon{
    opacity: 0;
    width: 0;
}
.home-icon .off-icon, 
.home-icon.active .on-icon{
    opacity: 1;
    width: auto;
}
.home-icon.active .off-icon{
    opacity: 0;
    width: 0;
}
.home-icon:not(:active):hover .off-icon{
    opacity: 0;
    width: 0;
}
.home-icon:not(:active):hover .on-icon{
    opacity: 1;
    width: auto;
}

.banner-tab-content{
    display: none;
    transition: ease-in-out;
    animation: services 1.2s;
}
@keyframes services {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Marquee */

.scrolling-image-container {
    overflow: hidden;
    position: relative;
}
.scrolling-image-inner {
    display: flex;
    white-space: nowrap;
}
.scrolling-image {
    display: flex;
}
.scrolling-image-item {
    padding: 0 30px;
    position: relative;
    cursor: pointer;
}
.overlay-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    padding: 0 10px;
    transition: .5s ease;
}
.scrolling-image-item:hover .overlay-img {
    opacity: 1;
}
.scrolling-image-inner>div {
    animation: scroll-left 80s linear infinite;
}
.scrolling-image-container:hover .scrolling-image-inner>div {
    animation-play-state: paused;
}
.marquee-item {
    width: 100%;
    overflow: hidden;

  }
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
.scroller-gradient {
    z-index: 5;
    background-image: linear-gradient(to right, #fff, #fff0);
    width: 10%;
    position: absolute;
    inset: 0% auto 0% 0%;
}
.scroller-gradient.is-right {
    inset: 0% 0% 0% auto;
    transform: rotate(180deg);
}

.case-row{
    border-top: 1px solid var(--blue-1);
    border-bottom: 1px solid var(--blue-1);
}
.service-border{
    border-bottom: 1px solid var(--blue-1);
    padding: 17px 0;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.top-boder{
    border-top: 1px solid var(--blue-1);
}

.service-list-box {
    position: relative;
    height: auto;
}
.service-list-box .front-side{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 2;
    height: auto;
    transition: all 0.2s;
}
.service-list-box .front-side .container{
    height: 100%;
}
.btn-pad{
    padding-left: 40px;
    padding-right: 40px;
}
.service-list-box .service-content{
    padding: 18px 24px;
    background: var(--blue-1);
    transition: all 0.2s;
}
.service-list-box:hover .front-side{
    opacity: 0;
    pointer-events: none;
}
.service-list-box:hover .service-content{
    z-index: 3;
    opacity: 1;
}
.grid-item {
    display: grid;
    gap: 2%;
    grid-template-columns: 17% 41% 0% 36%;
}
.grid-item-one {
    grid-column: 1 / span 1;
    position: relative;
}
.grid-item-two {
    grid-column: 2 / span 2;
}
.grid-item-three {
    grid-column: 4 / span 1;
    position: relative;
}
.grid-item-three p{
    margin-bottom: 0px;    
}
.service-arrow{
    width: 110px;
}
.service-content h3{
    font-size: 2rem;
}

.blue-bg{
    background: var(--blue-2);
}
.blue-bg1{
    background: var(--blue-1);
}
.service-detail-tab{
    border-bottom: 1px solid var(--white);
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 62px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center;
    padding: 0px 16px;
}
.service-detail-btn{
    color: var(--white);
    font-family: monumentGroteskRegular;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 20px 10px 10px;
    font-weight: 300;
}
.service-detail-btn:hover,.service-detail-btn.active{
    font-weight: 600;
    border-bottom: 3px solid var(--white);
}

.service-detail-wrap{
    display: none;
    gap: 75px;
    align-items: center;
    transition: ease-in-out;
    animation: services 1.2s;
    /* max-width: 1154px; */
    padding: 60px 0;
}
.max-auto{
    max-width: none;
}

.service-tab-content {
    flex-basis: 100%;
    color: var(--white);
}
.flex-box{
    display: flex;
    gap: 30px;
}
.flex-box-item{
    flex-basis: 100%;
}
.v-center{
    align-items: center;
}

.flex-w3{
    flex: 0 0 calc(30% - 30px);
}
.flex-w4{
    flex: 0 0 calc(40% - 30px);
}
.flex-w6{
    flex: 0 0 60%;
}
.flex-w7{
    flex: 0 0 69%;
}
.gap100{
    gap: 100px;
}

#globe-holder,
#grid-holder {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  touch-action: none;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#globe-holder canvas, #grid-holder canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
  touch-action: none;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Footer */
.footer-sec{
    padding: 70px 0 40px;
    background: var(--primary);
    color: var(--white);
}
.footer-top-sec {
    display: flex;
    justify-content: space-between;
}
.footer-col-1 {
    flex:0 0 30%;
}
.logo-footer{
    max-width: 100%;
}
.footer-col-2{
    flex:0 0 55%;
}
.footer-text{
    color: var(--white);
}
.logo-sec{
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 30px 0;
    margin: 0 0 40px 0;
}
.text-upr{
    text-transform: uppercase;
}
.footer-social{
    margin-bottom: 34px;
    display: flex;
    gap: 20px;
}
.footer-nav-box{
    display: flex;
    gap: 4%;
}
.footer-nav-col{
    flex: 0 0 22%;
}
.footer-nav-title{
    font-size: 1.25rem;
    color: var(--white);
    font-family: ppSupplyRegular;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-nav-list {
    list-style-type: none;
}
.footer-nav-item {
    padding: 0 0 10px 0;
}
.footer-nav-item, .footer-nav-item a {
    color: var(--white);
    font-size: 1rem;
}
.footer-nav-item a:hover{
    text-decoration: underline;
}
.footer-copy{
    color: var(--white);
    font-size: .625rem;
    margin-top: 32px;
}
.border-top{
    border-top: 1px solid var(--blue-1);
    padding-top: 50px;
}

/*About Us*/
.border-both{
    border-top: 1px solid var(--blue-1);
    border-bottom: 1px solid var(--blue-1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.scrolling-item {
    width: 400px;
    
}
.scroll-item{
    min-height: 470px;
    background: var(--blue-1);
    border-radius: var(--global-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
}
.gap-3 {
    gap: 30px;
}
.over-hidn{
    overflow: hidden;
}
.grid-box{
    display: grid;
    gap: 18px 18px;
    grid-template-columns: 48% 48% 
}
.grid-box-one{
    grid-column: 1 / span 1;
}
.grid-box-two{
    grid-column: 2 / span 2;
}
.grid-box-row{
    grid-column: 2 / span 2;
    grid-row: 1 / span 2;
}
.blue-box{
    background: var(--blue-1);
    border-radius: var(--global-radius);
    padding: 20px;
}
.min-high-2{
    min-height: 220px;
}

.global-ofc{
    background: url(../images/add-bg.jpg) repeat 0 0;
    padding: 150px 0;
}
.global-ofc-container{
    max-width: 66%;
    margin: 0 auto;
}
.ofc-pb-1{
    padding-bottom: 100px;
}
.ofc-pb-2{
    padding-bottom: 60px;
}
.ofc-pl-1{
    padding-left: 60px;
}
.arrow-w1 {
    width: 40px;
}

/*Contact Us */
.body-bg{
    background: linear-gradient(to right, var(--blue-2) 50%, var(--white) 50%); 
}
.cap-list{
    list-style-type: none;
}
.cap-list-item{
    margin-bottom: 30px;
}
.cap-list-item a{
    color: var(--white);
    font-family: ppSupplyRegular;
    font-size: 1.25rem;
    text-transform: uppercase;
    
    text-decoration: underline;
}
.cap-list-item a:hover{
    text-decoration: none;
}
.contact-form{
    padding-left: 30px;
}

.get-form{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.input-wrap{
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 0 0 calc(51% - 32px);
}
.full-wrap{
    flex: 0 0 98%;
}
.contact-name {
    display: flex;
    gap: 32px;
}
.f-label{
    font-size: 1.25rem;
    padding-bottom: 8px;
    color: var(--black);
}
.f-in{
    padding: 10px 0;
    border-radius: 0px;
    border: none;
    
    border-bottom: 1px solid var(--blue-1);
    font-size: 1.25rem;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}
.textarea{
    resize:none; 
    height: 60px;
}
::placeholder{
    color: var(--blue-1);
}
.f-error{
    font-weight: 400;
    font-size: .875rem ;
    color: #d92d20;
    position: absolute;
    top: auto;
    bottom:-20px;
    left: 0;
    width: 100%;
    display: none;
  }
  .error .f-error{
    display: flex;
  }
  .error .f-in{
    border-color: #fda29b;
  }
  .success-message {
    display: none;
    color: green;
    padding: 8px 16px;
    border-radius: 10px;
    background: #daffda;
    margin-top: 20px;
  }
  .success-message.show{
    display: block;
  }
  .g-recaptcha-box{
    flex: 0 0 100%
  }

/*Services */
.ver-line{
    margin: 10px auto;
    height: 200px;
    width: 1px;
    background: var(--primary);
}
.sub-title-upr{
    font-size: 2rem;
    text-transform: uppercase;
}

/* Case studies */
.cs-list {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}
.cs-list-card {
    flex: 0 0 calc(50% - 28px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    border: 1px solid var(--white);
    border-radius: 25px;
    padding: 40px;
}
.cs-list-title{
    max-width: 70%;
    font-size: 2.250rem ;
    font-family: ppSupplyRegular;
    color: var(--white);
    text-transform: uppercase;
}
.cs-list-text{
    display: flex;
    color: var(--white);
    gap: 14px;  
}
.cs-list-one{
    flex: 0 0 70%;
}
.cs-list-two {
    align-content: baseline;
}
.cs-action,
.cs-action a{
    display: flex;
    gap: 16px;
    font-size: 1.25rem;
    color: var(--white);
    align-items: center;
}
.cs-text{
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0;
}
.cs-action a:hover{
    text-decoration: underline;
}
.rotate-img {
    transition: transform 0.5s ease;
}
.cs-action a:hover .rotate-img {
    transform: rotate(-40deg);
}
.cs-list-card:hover{
    background: var(--blue-1);
}
.cs-list-card:hover .cs-list-title,
.cs-list-card:hover .cs-text,
.cs-list-card:hover .cs-action a{
    color: var(--black);
}

.grid-black{
    border-radius: 8px;
    padding: 24px;
    background: var(--black);
}

.result-box{
    display: flex;
    flex-wrap: wrap;
    gap:24px;
}
.result-box-item{
    flex: 0 0 calc(50% - 24px);
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.result-w3{
    flex: 0 0 calc(33% - 24px);
}
.case-grid-item{
    display: grid;
    grid-template-columns: 40% 30% 30%;
    padding: 10px;
    cursor: pointer;
}
.case-row{
    padding: 16px 0;
}
.case-text{
    opacity: 0;
    height: 0;
}
.case-grid-item:hover{
    background: var(--blue-1);
    transition: transform 0.5s ease-in;
}
.case-grid-item:hover .case-text{
    opacity: 1;
    transition: transform 0.5s ease-in;
    height: auto;
}

.case-flex{
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
}
.case-flex-item {
    flex: 0 0 calc(26% - 2%);
    margin-bottom: 20px;
}
.case-inner{
    padding: 20px 8px;
    border-top: 3px solid var(--blue-1);
}
.case-title{
    font-size: 1.750rem;
    font-weight: normal;
    margin-bottom: 12px;
}

/* Privacy Policy */
.privacy-content-wrpr {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.privacy-content {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 40px;
    padding-right: 90px;
}
.privacy-content-head {
    font-weight: 600;
    font-size: 1.5rem;
}
.service-point {
    font-weight: 400;
    font-size: 1.125rem;
}
.privacy-content .service-point {
    margin-bottom: 6px;
}
.service-list {
    margin: 12px 0px;
    padding-left: 26px;
}
/* 
@media(hover: hover) and (pointer: fine) {
    .service-row:hover {
        min-height: 160px;
    }
    .service-list-box:hover .service-content{
        padding: 18px 24px;
        background: var(--blue-1);
        opacity: 1;
        height: 150px;
        font-size: 1.25rem;
       transition: font-size .25s, margin .25s, padding .25s, opacity .5s .25s;
    }

    .case-grid-item:hover .case-text{
        opacity: 1;
        transition: transform 0.5s ease-in;
    }
} */

/* Lazy loading styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

/* Optional: Loading placeholder */
.lazy:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 1;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.lazy:not(.loaded).img-fluid{
    width: auto;
    display: flex;
    margin:  0 auto;
}

@media all and (max-width: 1400px) {
    .banner-wrpr{
        gap: 5%;    
    }
    .banner-item.iframe-wrpr{
        flex: 0 0 45%;
    }
    .footer-col-2{
        flex: 1;
    }
    .service-detail-tab{
        justify-content: flex-start;
    }

    .mega-sub-nav{
        left: 40%;
    }
}

@media all and (max-width:1025px){
    .mega-sub-nav{
        display: block;
        position: relative;
        left: 0;
    }
    .mega-menu-flex .mega-sub-nav-item {
        flex: 100%;
    }
}

@media all and (max-width:991px){
    .nav-list{
        flex-direction: column;
        padding-left: 10px;
        align-items: flex-start;
        width: 100%;
    }
    .nav-btn{
        padding: 10px 10px;
        display: flex;
        justify-content: space-between;
    } 
    .nav-list-item{
        width: 100%;
    }
    .nav-wrapper{
        overflow: hidden;
        height: 0px;
        padding: 0px;
        position: absolute;
        top: 48px;
        right: 0px;
        width: 100vw;
        background-color: var(--white);
        transition: all 0.3s ease-in-out;
    }
    .nav-wrapper.open{
        height: calc(100vh - 50px);
        padding: 24px 0px;
        overflow: auto;
    }
    .header-btn{
        display: none;
    }
    .nav-list-item:last-child{
        display: block;
    }
    .header-btn {
        display: none;
    }

    .banner-tab-content,
    .banner-wrap, .banner-wrpr{
        flex-direction: column-reverse;
    }
    .service-tab-wrap{
        margin-top: 0px;    
    }
    .hide-tab{
        display: none;
    }
}

@media all and (max-width:767px){
    h1{
        font-size: 2.25rem;
    }
    h2{
        font-size: 2rem;
    }
    h3{
        font-size: 1.625rem;
    }
    h4{
        font-size: 1.625rem;
    }
    .head-xxl {
        font-size: 2.5rem;
    }
    .font-xxl {
        font-size: 1rem;
    }
    p{
        font-size: 1rem;
    }
    .sec {
        padding: 40px 0;
    }
    .sec-2 {
        padding: 80px 0;
    }
    .sec.pb-0{
        padding-bottom: 0;
    }
    .sec.pt-0{
        padding-top: 0;
    }
    .pb-xs-0{
        padding-bottom: 0;
    }
    .hide-mob{
        display: none;
    }
    .flex-box,
    .case-flex{
        flex-direction: column;
    }
    .gap100 {
        gap: 20px;
    }
    .header{
        margin: 10px 0;
    }
    .btn-big{
        font-size: 3rem;
    }

    .mega-nav-item {
        margin-bottom: 20px;
    }
    .mega-nav-item a,
    .mega-nav-item .nav-item{
        font-size: 2rem;
    }
    .mega-sub-nav {
        position: relative;
        left: 0;
    }
    .mega-sub-nav-item {
        padding: 10px 0;
    }
    .mega-sub-nav-item a{
        font-size: 1rem;
    }
    .sub-menu{
        background-position: right center;
    }
    .service-border{
        background: url(../images/big-arrow.svg) no-repeat;
        background-position: right;
        background-size: 66px 42px;
        height: auto;
        max-height: 97px;
    }
    .service-list-box .front-side, .service-list-box .front-side .container{
        height: fit-content;
    }
    .service-detail-wrap{
        flex-direction: column;
    }
    .top-pad {
        padding-top: 70px;
    }
    .banner-item.top-pad{
        padding-top: 20px;
    }
    .service-content .grid-item{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .service-detail-tab{
        margin-bottom: 10px;
        justify-content: left;
    }
    .service-detail-wrap{
        padding: 20px 0;
        gap: 20px;
    }
    .service-tab-wrap{
        gap: 10px;
        margin-top: 10px;
        max-width: calc(100vw - 20px);
        overflow: auto;
    }
    .service-btn{
        padding: 12px 8px 10px;
        font-size: .875rem;
    }
    .service-list-box{
        padding: 0;
        height: 97px;
        overflow: hidden;
    }
    .service-list-box:hover{
        height: auto;
    }
    .service-arrow{
        width: 60px;
    }
    .footer-sec {
        padding: 30px 0;
    }
    .footer-top-sec,
    .footer-nav-box{
        flex-direction: column;
    }
    .footer-nav-list{
        display: none;
    }
    .footer-nav-col.active .footer-nav-list{
        display: block;
        margin-bottom: 15px;
    }
    .footer-nav-title {
        background: url(../images/nav-arrow-down.svg) no-repeat;
        background-position: right;
    }
    .footer-nav-col.active .footer-nav-title {
        background: url(../images/nav-arrow-open.svg) no-repeat;
        background-position: right;
    }
    .footer-copy{
        margin-top: 16px;
    }

    .scrolling-item {
        width: 300px;
    }
  
    .scrolling-image-container.mt-3{
        margin-top: 15px;
    }
    .grid-box{
        gap: 10px 10px;
    }
    .grid-box.pl-2{
        padding-left: 0;
    }
    .min-high-2 {
        min-height: auto;
    }
    .arrow-w1 {
        width: 22px;
    }
    .global-ofc{
        padding: 60px 0;
    }
    .global-ofc-container {
        max-width: 100%;
    }
    .ofc-pb-1 {
        padding-bottom: 40px;
    }
    .ofc-pb-2 {
        padding-bottom: 20px;
    }
    .ofc-pl-1 {
        padding-left: 0px;
    }

    .body-bg{
        background: var(--blue-2);
    }
    .input-wrap {
        flex: 100%;
    }
    .contact-form{
        background: var(--white);
        padding: 20px 20px 40px;
        margin: 0 -10px;
    }

    .ver-line{
        height: 100px;
    }
    
    .cs-list,
    .cs-list-text{
        flex-direction: column;
    }
    .cs-list-card{
        padding: 20px;
    }
    .cs-list-title{
        max-width: 100%;
    }

    .mob-flex,
    .case-grid-item{
        display: flex;
        flex-direction: column;
    }
    .result-box-item{
        flex: 100%;
    }

    .case-text{
        height: 0;
    }

    .privacy-content-wrpr {
        gap: 32px;
    }
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .privacy-content {
        padding-right: 0px;
    }
    .banner-item.iframe-wrpr {
        max-height: 400px;
    }
}

@media all and (min-width:768px){
    .show-mob{
        display: none;
    }
    .result-box-item{
        min-height: 250px;
    }
    .footer-col-2{
        padding-left: 40px;
    }
}
@media (min-width: 1200px) {
    
    .max-w7{
        max-width: 70%;
    }
}
.hexCode-iframe{
    border: none;
    box-shadow:none;
    outline: none;
    width: 580px;
    max-width: 100%;
    height: 723px;
    background-color: var(--primary);
}
@media all and (max-width:436px) {
    .hexCode-iframe{
        height: 498px;
        width: 100vw;
        overflow: hidden;
    }
}

.grayscale-video {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}