/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #ed8e0046;
}

html::-webkit-scrollbar-thumb {
    background-color: #D2B450;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 16px;
    font-family: 'Helvetica';
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #D2B450;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FilsonProRegular';
    font-weight: normal;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 70px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #15222B;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #15222B;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-50deg, #d2b450, #d2b4501c), url(../img/location-img3.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.right {
    padding: 30px;
    text-align: left;
    .title{
        font-size: 44px;
        margin-bottom: 10px;
    }
}
.fc{
    width: 47px;
    height: 47px;
    background: #D2B450;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px rgba(210, 180, 80, 0.507);
    img{
        animation: ring 1s infinite ease-in-out;
    }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}

.fixed-btn {
    position: fixed;
    right: 10px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 40px;
}
.fc,.fw{
    &:hover{
        transform: scale(1.1);
    }
}

/* Ultra Modern View Transitions Collection 2025 */
/* Choose any one animation set by uncommenting it */

/* Enable view transitions for navigation */
@media(prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

/* Basic settings for all animations */
::view-transition-group(*) {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}
/* ========================
   3. PARALLAX DEPTH TRANSITION (Uncomment to use)
   ======================== */

::view-transition-old(root) {
    animation: parallaxDepthOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::view-transition-new(root) {
    animation: parallaxDepthIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes parallaxDepthOut {
    0% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    50% {
        transform: perspective(1000px) translateZ(-300px) rotateX(-15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(0.7);
    }
    100% { 
        transform: perspective(1000px) translateZ(-600px) rotateX(-30deg);
        opacity: 0;
        filter: blur(15px) brightness(0.3);
    }
}

@keyframes parallaxDepthIn {
    0% { 
        transform: perspective(1000px) translateZ(600px) rotateX(30deg);
        opacity: 0;
        filter: blur(15px) brightness(1.5);
    }
    50% {
        transform: perspective(1000px) translateZ(300px) rotateX(15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(1.2);
    }
    100% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 80px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
p {
color: #212121;
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 161.111%;
strong{
    font-weight: normal;
    font-family: "Helvetica bold";
}

}
strong{
    font-weight: normal;
    font-family: "Helvetica bold";
}
.dec-italic{
    color: #2D2D2D;
    font-family: 'PlayfairDisplay Italic';
    font-size: 23px;
    font-style: italic;
    font-weight: normal;
    line-height: 173.913%;
}
.sub-title{
color: #D2B450;
font-family: "Helvetica bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 31px;
text-transform: uppercase;
display: inline-block;
position: relative;
margin-bottom: 20px;
&:after,
&:before{
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    background-color: #D2B450;
    left: -46px;
    top: 50%;
    transform: translateY(-50%);
}
&:after{
    left: auto;
    right: -46px;
}
}
.title-md{
color: #192741;
font-family: "Helvetica bold";
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 140.909%;
margin-bottom: 10px;
}  
.title {
    color: #1A1A1A;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 63px;
    margin-bottom: 45px;
    text-transform: uppercase;
}
.section-title {
    color: rgb(32, 32, 32);
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 106.667%;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}
  
.small-line {
    width: 68px;
    height: 2px;
    background-color: rgb(237, 143, 0);
    display: inline-block;
    margin-left: 6px;
    margin-top: 20px;
    margin-bottom: 24px;
}

  
.primary-btn {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    font-family: 'Helvetica Bold';
    padding: 20px 30px;
    border-radius: 0;
    border: 1px solid #D2B450;
    border-bottom: 4px solid #ffffff;
    background: #D2B450;
    transition: all 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
}

  
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    scale: 1 0;
    left: 0;
    background: #ffffff;
    z-index: -1;
    transition: all .35s;
    transform-origin: bottom;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #D2B450;
    border-radius: 1rem;
    border-bottom-color: #D2B450;
}

.primary-btn:focus {
    color: currentColor;
}
.dark-border{
    border-bottom-color: #1F2A44;
    &::after,
    &::before{
        background-color: #1F2A44;
    }

}
.container {
    max-width: 1400px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #D2B450;
}

form .btn-group {
    justify-content: center;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

/* Custom Cursor - Fixed Version */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #D2B450; /* Simplified gradient */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    mix-blend-mode: difference;
    will-change: transform; /* Performance optimization */
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(230, 157, 81, 0.8); /* Added alpha for better trail effect */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity; /* Performance optimization */
}

.cursor-glow {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(210, 180, 80, 0.6); /* Added alpha for subtle glow */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse 2s infinite;
    will-change: transform; /* Performance optimization */
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        opacity: 0.4; /* Slightly more visible */
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.15; 
    }
    100% { 
        transform: scale(1); 
        opacity: 0.4; 
    }
}

/* Enhanced Hover effects */
.cursor.hover {
    transform: scale(2.5);
    background: #D2B450;
    box-shadow: 0 0 15px rgba(210, 180, 80, 0.6); /* Added glow on hover */
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Faster hover response */
}

.cursor-glow.hover {
    transform: scale(2);
    border-color: rgba(210, 180, 80, 0.9);
    border-width: 3px; /* Thicker border on hover */
    animation-duration: 1s; /* Faster pulse on hover */
}

/* Enhanced Particle effect */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #E69D51;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    box-shadow: 0 0 6px rgba(230, 157, 81, 0.8); /* Added glow to particles */
    will-change: transform, opacity; /* Performance optimization */
}

/* Additional smooth animations */
.cursor,
.cursor-glow,
.cursor-trail {
    backface-visibility: hidden; /* Prevent flickering */
    transform-style: preserve-3d; /* Smoother 3D transforms */
}

/* Mobile fallback - hide cursor on touch devices */
/* @media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-glow,
    .cursor-trail,
    .particle {
        display: none !important;
    }
} */
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
.topbar{
    position: relative;
    &::after{
        content: '';
        content: '';
        width: 30%;
        height: 100%;
        background-color: #192741;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;

    }
}
.topbar a{
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar .container{
    display: flex;
    align-items: center;
    justify-content: end;
}
.call-email{
    background-color: #192741;
    font-size: 17px;
    color: rgb(255, 255, 255);
    line-height: inherit; 
    padding: 5px 0; 
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    &::before{
        content: '';
    width: 53px;
    height: 53px;
    border-bottom: solid 25px #80c54300;
    border-right: solid 26px #192741;
    border-left: solid 26px #80c54300;
    border-top: solid 27px #192741;
    position: absolute;
    left: -52px;
    bottom: 0;
    }
}
.top-social{
    display: flex;
    gap: 8px;
    a{
        width: 31px;
        height: 30px;
        border: 1px solid #8C8778;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .7s;
        &:hover{
            background-color: #D2B450;
            transform: scale(1.1);
        }

    }
}
.cal-btn {
    color: #1F2A44;
    font-family: 'Helvetica Bold';
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 90px;
}
.header-area {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area.sticky {
    background: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-menu {
    display: flex;
    align-items: center;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;

}

.main-menu {
    margin-left: auto;
}



.logo {}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;

}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 8px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 30px 6px;
    display: inline-block;
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

  
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 7px;
    width: 25px;
    height: 1px;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #D2B450;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}
#menu .main-menu ul li.current-menu-parent li.current-menu-item{
	background: #172540 !important;
} 
#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 34px;
    right: -8px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
}


#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
    display: block;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a {
    color: #fff;
    background-color: #D2B450;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }

    .logo {}

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);

    }

    #menu .main-menu ul li {
        width: 100%;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
       top: 25px;
        right: 27px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}


/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
}

.slider-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-item {
    position: relative;
    padding-block: 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content {
    width: 46%;
}

.banner-item .container {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
}

.banner-item:after {
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.banner-item h1 {
    font-size: 60px;
    line-height: 113%;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.banner-item p {
    color: #FFF;
font-family: "Helvetica Bold";
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 145%;
    margin-bottom: 22px;
}

  
.banner-item.slick-active h1{
    animation: slideInUp .6s both .6s;
}
.banner-item.slick-active p{
    animation: slideInDown .8s both .8s;
}
.banner-item.slick-active .btn-group{
    animation: slideInUp 1s both 1s;
}


.btn-group {
    display: flex;
    gap: 25px;
}

.slick-dots li button {
    padding: 5px;
    border: 0;
    background-color: #ffffff00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    outline-offset: 3px;
    margin:0;
}
.slick-dots li.slick-active button {
    background:#D2B450;
    border-color: #D2B450;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button:before {
    opacity: 0;
    color: white;
}

.slick-dots li button:before {
    opacity: 0;
    color: white;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 50px;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/*********** off ***********/
.credibility{
    background: #F6F6F6;
    padding-block: 20px;
    display: flex;
    align-items: center;
    gap: 35px;
    h2{
        clip-path: polygon( 0% 100%,84.026% 100%,100% 50%,84.026% 0%,0% 0%,0% 100% );
        background-color: #D2B450;
        padding-block: 20px;
        padding-left: 35px;
        padding-right: 83px;
        color: #FFF;
        text-align: center;
        font-family: 'Helvetica Bold';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: 33px;
        display: inline-block;
        margin: 0;
    }
}
  /* ***** About ***** */

.who-we-are-img {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.exp {
    position: absolute;
    top: 0;
    right: 0;
    width: 137px;
    height: 153px;
    background: #D2B450;
    padding: 10px;
    padding-top: 20px;
    h4{
        color: #FFF;
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        line-height: 63px;
    }
    p{
        color: #FFF;
font-family: "Helvetica Bold";
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 22px;
text-transform: uppercase;
    }
}
.who-we-are-img img {
    width: 100%;
}

.about-small {
    background: #FFF;
    padding: 13px;
    position: absolute;
    right: -10px;
    bottom: -50px;
    padding-right: 0px;
    overflow: hidden;
    padding-bottom: 0;

}

.about-small img {
    border-radius: 10px;
    width: 100%;
}

/* ***** Counter ***** */

.counter-item {
    position: relative;
    text-align: center;
    &:after{
        content: '';
        position: absolute;
        width: 100%;
        height: 9px;
        border: 1px solid #DEDEDE;
        bottom: -24px;
        left: 0;

    }
}

.counter-item h3 {
    color: #1F2A44;
font-family: "Helvetica Bold";
font-size: 54px;
font-style: normal;
font-weight: normal;
line-height: 33px;
margin-bottom: 14px;
}

.counter-item p {
color: #212121;
font-family: "Helvetica";
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 28px;
}

.counter {
    padding: 80px 0;
    padding-top: 20px;
}

.counter-item:hover .counter-icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
/* ***** Services ***** */
.services{
    background: #192741;
    .section-title{
        color: #fff;
    }
}
.service-box{
    border-radius: 6px;
    border: 1px solid rgba(229, 229, 229, 0.212);
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: all .5s;
    .card-title,p{
        color: #fff;
    }
    .btn-group{
        justify-content: center;
        .primary-btn{
            border-color:transparent;
            background: transparent;
            outline: 1px solid #fff;
            color: #fff;
            padding-inline: 40px;
            &:hover{
                background: #fff;
                color: #1F2A44;
                border-radius: 0;
            }
        }
    }
    &:hover{
        background: rgba(66, 81, 109, 0.219);
        .service-img{
            outline: 1px solid #D2B450;
        }
        .primary-btn{
            border: 1px solid #D2B450;
            background: #D2B450;
            border-bottom: 4px solid #fff;
            color: #fff;
            padding-inline: 40px;
        }
    }
}
.card-title{
color: #000;
font-family: "Helvetica Bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 33px;
margin-bottom: 7px;
}
.service-img {
    width: 243px;
    height: 243px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: 35px;
    outline: 1px dashed #fff;
    outline-offset: 5px;
    transition: all .5s;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;

    }
}

/* ***** Why Choose ***** */
.why-choose-us{
    position: relative;
    background-image: url(../img/why-choose-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .sub-title{
        &::before{
            opacity: 0;
        }
    }
    .section-title{
        margin-bottom: 20px;
    }
}
.feature-box {
    position: relative;
    margin-bottom: 20px;
    padding-left: 107px;
    margin-bottom: 24px;
    .icon-box {
        width: 86px;
        height: 86px;
        background: #192741;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        outline: 1px dashed #1F2A44;
        outline-offset: 5px;
        transition: all .5s;
    }
    p{
        border-bottom: 1px solid #C2C2C2;
        padding-bottom: 10px;
    }
    &:hover{
        .icon-box{
            background: #D2B450;
            outline-color: #D2B450;
            img{
                filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(3802%) hue-rotate(185deg) brightness(96%) contrast(92%);
                transform: rotateY(180deg);
            }
        }
        .card-title{
            color: #D2B450;
        }
        p{
            border-bottom-color: #D2B450;
        }
    }

}
/************************************
    Client
************************************/
img{
    transition: all .5s;
}
.discover{
    .container-fluid {
    padding: 0 94px;
    padding-right: 14%;
}
 .sub-title{
        &::before{
            opacity: 0;
        }
    }
}
.discover-content{
    padding-block: 50px;
}
.discover-img {
    position: relative;
    padding-right: 94px;
    .small {
            margin-left: auto;
        text-align: right;
        position: absolute;
        bottom: -94px;
        right: 0;
}
}
.other-service {
    border-top: 1px solid #717171;
    padding-top: 15px;
    h3{
        color: #C59D16;
        font-family: 'PlayfairDisplay Regular';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: 33px;
        margin-bottom: 8px;
    }
    ul{
        margin-bottom: 25px;
        margin-top: 10px;
        padding-left: 22px;
        li{
            color: #212121;
            font-size: 22px;
            font-style: normal;
            line-height: 39px;
            list-style-type: disc;
            &::marker{
                color: #D2B450;
            }

        }
    }
}
/************************************
    CTA
************************************/
.cta{
    background: rgba(25, 39, 65, 0.95);
    h2{
        color: #FFF;
        text-align: center;
        font-family: 'PlayfairDisplay Regular';
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 129.167%;
    }
}
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    background: #D2B450;
    flex-wrap: wrap;
    gap: 40px;
    width: 90%;
    margin-inline: auto;
    p{
        color: #FFF;
        font-family: "Helvetica Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 31px;
        margin: 0;
    }
    a{
        color: #FFF;
        font-family: "Helvetica Bold";
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        text-transform: uppercase;
        &:hover{
            color: #1F2A44;
        }
    }
    span{
       position: relative; 
       width: 70px;
       height: 70px;
       z-index: 1;
       &:after{
            content: '';
            inset: 0;
            background: #D2B450;
            position: absolute;
            z-index: -1;
            transform: scale(1.5);
            border-radius: 50%;
       }
       img{
        position: absolute;
        transform: scale(1.2);
       }
    }
}
.detective-agency {
    padding-left: 14%;
    .sub-title{
        &::before{
            opacity: 0;
        }
    }
    .discover-content {
       padding-block: 88px;
    }
    .detective-agency-img{
        height: 100%;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }
}
.questionnaire{
    background-image: url(../img/form-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;

    .form-section {
      flex: 2;
      background-color: #fff;
      padding: 30px;
      border-radius: 0;
    }

    .submit-btn {
      padding: 11px 55px;
    background: #D2B450;
    border: none;
    font-weight: normal;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    width: auto;
    font-size: 18px;
    color: #fff;
    }

    .submit-btn:hover {
      background-color: #dba92f;
    }
.flex-box{
        gap: 0;
        align-items: unset;
        h3 {
        margin-bottom: 20px;
        font-family: 'FilsonProRegular';
        font-size: 41px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    }
    .contact-box {
      flex: 1;
        background: #192741;
        color: #fff;
        padding: 20px;
        border-radius: 0;
    }

    .contact-box h3 {
        color: #FFF;
        margin-bottom: 26px;
    }

    .contact-box p {
      margin: 10px 0;
      line-height: 1.5;
      margin-bottom: 17px;
      color: #fff;
      clear: both;
      strong{
        color: #D2B450;
        font-size: 22px;
        line-height: 31px;
        display: block;
        margin-bottom: 16px;
      }
    }

    .contact-box a {
      color: #fff;
      text-decoration: none;
    }

    .contact-box .icon {
      margin-right: 10px;
        margin-right: 10px;
        float: left;
        height: 50px;
        margin-top: 5px;
    }

    .contact-img {
      width: 100%;
      margin-top: 20px;
      border-radius: 0px;
    }
    
    .form-group{
        margin-bottom: 0;
    }
    .form-control{
        border: 1px solid #DBDBDB;
        background: #F8F8F8;
    }
}
label {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    color: #000;
}
textarea{
    font-family: "Helvetica";
}
.get-in-touch{
    background-image: url(../img/get-in-touch-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 19%;
    .btn-group{
        margin-top: 30px;
    }
}
.testimonials{
    background: #151D2F;
    padding-top: 80px;
    padding-bottom: 150px;
    .section-title{
        color: #fff;
    }
}

.testi-box{
    border-radius: 19px;
    background: #262D3C;
    padding: 15px;
    
    p{
        color: #fff;
        margin-top: 10px;
    }
    .testi-info{
        border-top: 1px solid #DBDBDB;
        padding-top: 20px;
        position: relative;
        h4{
            color: #FFF;
            font-family: "Helvetica Bold";
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 18px;
        }
        img{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
        }
        p{
            margin: 0;
            color: #E2E2E2;
            font-size: 15px;
            line-height: 17px;
            font-style: italic;
            margin-top: 5px;
        }
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
    .slick-dots{
        bottom: -70px;
    }
}

.faq{
    background: #EEEDE8;
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border: 1px solid #C9C9C9;
    background: #FFF;
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 13px 90px 15px 13px;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: "Helvetica Bold";
    text-decoration: none;
    color: rgb(18, 18, 18);
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
}

  
.accordion__title::after {
    content: '';
    background-image: url(../img/faq-arrow.webp);
    background-repeat: no-repeat;
    position: absolute;
    width: 29px;
    height: 15px;
    right: 6px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
    filter: invert(1);
}
.accordion__item .accordion-active{
    background: #D2B450;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.accordion__item .accordion__title .accordion__arrow {
    position: absolute;
    top: 13px;
    right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    background-color: #c9c9c9;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}

.accordion__item .accordion__content {
    padding: 15px;
    font-size: 20.356px;
    color: #ffffff;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    background: #D2B450;
    padding-right: 3%;
}

.blog-card {
      border: 1px solid #DEDEDE;
        background: #FFF;
      transition: 0.5s;
      margin-top: 30px;
    }

    .blog-card:hover {
        transform: translateY(-5px);
      h3{
            color: #D2B450;
      }
    }

    .blog-card .image-wrapper {
      position: relative;
        width: 90%;
        margin-inline: auto;
        margin-top: -30px;
    }

    .blog-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .blog-card .date-box {
      position: absolute;
    right: 18px;
    bottom: -43px;
    background: #192741;
    color: #fff;
    text-align: center;
    }

    .date-box span {
      display: block;
      font-size: 21px;
      line-height: 1.2;
    }

    .date-box .day {
          font-size: 48px;
        font-weight: normal;
        line-height: 99%;
        padding-top: 2px;
    }

    .date-box .year {
        background: #F4B32A;
        color: #000;
        margin-top: 4px;
        padding: 6px 14px;
        font-size: 26px;
    }

    .blog-card .content {
      text-align: left;
      padding: 20px;
    }

    .content .tag {
      font-size: 18px;
      padding: 7px 18px;
      border-radius: 60px;
    background: #F2F2F2;
      display: inline-block;
      margin-bottom: 10px;
      color: #000;
    }

    .content h3 {
      color: #000;
    font-family: "Helvetica Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
      margin-bottom: 10px;
    }

.mt-40{
    margin-top: 40px;
}
.map iframe{
    width: 100%;
    border: 0;
    height: 600px;
}

/******************************/

footer {
    background: #151821;
    width: 100%;
    padding-top: 60px;

}
.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%;
}

.footer-title {
    font-size: 24px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    font-weight: normal;
    position: relative;
    margin-bottom: 15px;
    font-family: "Helvetica Bold";
}

.footer-title:after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #ed8f00;
    display: inherit;
    margin-top: -2px;
}
footer ul li a,
footer p a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 212%;
}
footer ul li a:hover,
.contact-info a {
    color: #ed8f00;
}
.footer-social {
    display: flex;
    gap: 9px;
}
.footer-social a:hover {
    transform: scale(1.2);
}
.copyright-section{
    background: #1A2032;
}
.copyright {
    border-top: 1px solid #363636;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    p{
        margin: 0;
    }
}

.copyright a {
    color: #F5990F;
    text-decoration: underline;
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.footer-contact p span{
    border-style: solid;
    border-width: 1px;
    border-color: rgb(237, 143, 0);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    left: 0px;
    top: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
/*******************************
  Inner Page
********************************/
.inner-banner{
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    }
    .banner-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -4px;
    }
    .container {
        position: absolute;
        z-index: 1;
        inset: 0;
        display: flex;
        align-items: center;
    }
    h1{
        color: #FFF;
        font-family: 'FilsonProRegular';
        font-size: 61px;
        font-style: normal;
        font-weight: 400;
        line-height: 69px; 
        margin-bottom: 19px;
    }
    p{
        color: #FFF;
        font-family: "Helvetica Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 145%;
    }
    .banner-content {
    width: 44%;
    }
}
.contact{
    .primary-btn:hover{
        color: #fff;
        background: #1F2A44;
    }
    .contact-box h3 {
        color: #000;
        font-family: 'FilsonProRegular';    
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .contact-box p {
      margin: 10px 0;
      line-height: 1.5;
      margin-bottom: 8px;
      color: #484848;
      clear: both;
      strong{
        color: #D2B450;
        font-size: 22px;
        line-height: 31px;
        display: block;
        margin-bottom: 16px;
      }
    }

    .contact-box a {
      color: #fff;
      text-decoration: none;
    }

    .contact-box .icon {
      margin-right: 10px;
        margin-right: 10px;
        float: left;
        height: 50px;
        margin-top: 5px;
    }
}
.follow{
    border-top: 1px solid #E2E0E0;
    margin-top: 30px;
    padding-top: 30px;
    .top-social a{
        background-color: #000;
        border-radius: 50%;
        width: 37px;
        height: 37px;
        &:hover{
            background-color: #D2B450;
            border-color: #D2B450;
        }
    }
}
.mt-30{
    margin-top: 30px;
}
.other-branches{
    padding-top: 30px;
}
.branch-card {
            border-radius: 6px;
            background: #FFF;
            box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.19);
            padding: 40px 20px;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            .location-icon{
                background: #1F2A44;
                img{
                    transform: rotateY(180deg);
                }
            }
        }

        .location-icon {
            width: 96px;
            height: 96px;
            background: #FFF;
            filter: drop-shadow(0 4px 19px rgba(0, 0, 0, 0.12));
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .5s;
        }

        .branch-title {
            color: #212121;
font-family: "Helvetica Bold";
font-size: 26px;
font-style: normal;
font-weight: normal;
line-height: 26px;
margin-bottom: 7px;
        }

        .service-title {
            color: #D2B450;
            font-size: 18px;
            font-family: "Helvetica Bold";
            font-weight: normal;
            margin-bottom: 1px;
        }

        .address {
            color: #484848;
            font-size: 18px;
            line-height: 155.556%;
            margin: 0;
        }
.blog-item{
    position: relative;
    &:hover{
        h3{
            color: #D2B450;
        }
        .blog-img{
        img{
            transform: scale(1.1);
        }
    }
    }
    
}
.blog-big-content{
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 50px;
    z-index: 2;
    h2{
        color: #FFF;
        font-family: 'FilsonProRegular';
        font-size: 52px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        margin-bottom: 11px;
        &:hover{
            color: #D2B450;
            text-shadow: 0 0 1px #000000;
        }
    }
    .blog-date{
        color: #fff;
    }
    p{
        color: #fff;
        margin-bottom: 0;
    }
    
}
.blog-img{
    border-radius: 14px;
    overflow: hidden;
    a{
        display: block;
        position: relative;
        z-index: 1;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -4px;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 36.06%, rgba(0, 0, 0, 0.00) 100%);
        border-radius: 14px;
    }
}
.blog-tags{
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    .tag{
        border-radius: 30px;
        background: rgba(217, 217, 217, 0.209);
        backdrop-filter: blur(35.5px);
        color: #FFF;
        padding: 17px 18px;
        font-family: "Helvetica Bold";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 16px;
        text-transform: uppercase;
        display: inline-block;
    }
}
.blogs{
    .col-lg-4 {
        .blog-img{
            &::after{
                display: none;
            }
        }
    }
}
.blog-content{
    padding: 14px 20px;
    border-left: 1px solid #ddd;
    .blog-tags{
        margin-bottom: 14px;
        gap: 7px;
        .tag{
            border-radius: 6px;
            background: #F3F3F3;
            padding: 5px 15px;
            font-size: 18px;
            color: #212121;
            text-transform: unset;
            font-family: "Helvetica";
        }
    }
    h3{
        color: #1A1A1A;
        font-family: 'FilsonProRegular';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.333%;
        margin-bottom: 16px;
    }
    p{
        margin-bottom: 15px;
    }
    .blog-date{
        color: #7D7B7A;
    }
    .primary-btn{
        padding: 16px 25px;
    }
}
.blog-details{
    .blog-title{
        color: #212121;
font-size: 56px;
line-height: 107.143%;
margin-bottom: 9px;
    }
.details-tag{
    color: #D2B450;
font-size: 22px;
line-height: 20px;
text-transform: uppercase;
margin-bottom: 9px;
}
.blog-date{
    color: #7D7B7A;
}
.blog-details-img {
    aspect-ratio: 3 / 1.25;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
h2{
color: #212121;
font-size: 36px;
line-height: 180.556%;
text-transform: capitalize;
margin-bottom: 16px;
}
ul{
    margin-bottom: 22px;
    list-style-type: disc;
    padding-left: 22px;
    font-size: 18px;
    line-height: 161.111%;
}
h3{
color: #212121;
font-size: 30px;
line-height: 65px;
text-transform: capitalize;
margin-bottom: 16px;
}
ol{
    margin-bottom: 22px;
    list-style-type: decimal;
    padding-left: 22px;
    font-size: 18px;
    line-height: 161.111%;
}
}
.sidebar-service{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    margin-bottom: 30px;
    h3{
        color: #212121;
        font-size: 26px;
        font-style: normal;
        line-height: 65px;
        text-transform: capitalize;
        margin: 0;
    }
}
.category-list{
font-family: Helvetica;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px;
padding-left: 0!important;
margin: 0 !important;

a{
    color: #454545;
}
li{
    margin-bottom: 6px;
    position: relative;
    list-style: none;
    transition: all .5s;
    &::before{
        content: '';
        background-image: url(../img/list-arrow.webp);
        width: 20px;
        height: 20px;
        transform: translateY(4px);
        display: inline-block;
    }
&:hover{
    transform: translateX(5px);
    &::before{
        filter: brightness(0) saturate(100%) invert(93%) sepia(51%) saturate(7037%) hue-rotate(315deg) brightness(87%) contrast(87%);
    }
        a{
            color: #D2B450;
        }
    }
}
}
.recent-post-list{
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 8px;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    &:hover{
        .recent-post-content{
        h4{
            color: #D2B450;
        }
    }
    }
    img{
        width: 119px;
        height: 116px;
        object-fit: cover;
        border-radius: 6px;
    }
    .recent-post-content{
        p{
        color: #76797B;
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 6px;
        }
        h4{
           color: #000;
            font-size: 18px;
            line-height: 144.444%;
            margin-bottom: 9px;
        }
        .read-more{
            color: #D2B450;
font-family: 'FilsonProRegular';
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
text-transform: uppercase;
        }
    }
}
.sidebar-form {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    h3{
        color: #212121;
font-size: 26px;
font-style: normal;
line-height: 65px;
text-transform: capitalize;
    }
    .form-control{
        border-radius: 10px;
border: 1px solid #E2E0E0;
    }
    .primary-btn{
        border: 0;
        padding: 12px 40px;
        text-transform: capitalize;
        font-family: "Helvetica";
        &:hover{
            border-radius: 12px;
            color: #000;
        }
    }
}
.pagination{
    border-top: 1px solid #E2E0E0;
    padding-top: 30px;
    margin-top: 30px;
    .row .col-md-6:last-child{
        text-align: right;
    }
h4{
    color: #212121;
font-family: "Helvetica Bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 26px;
margin-bottom: 12px;
}
a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #212121;
    font-size: 18px;
    line-height: 177.778%;
    &:hover{
        color:rgb(210, 180, 80);
    }
    img{
        width: 136px;
        height: 110px;
        object-fit: cover;
        border-radius: 6px;
    }
    span{
        width: 65%;
    }
}
}
.highlights{
    border: 2px solid #D2B450;
    background: #F6F6F6;
    padding: 18px 30px;
    margin-top: 40px;
}
.achievements{
    background-image: url(../img/achievment-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.achievement-box{
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.15));
    background: #FFF;
    height: 293.718px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.director-box{
    position: relative;
    z-index: 1;
        padding-left: 60px;
    padding-block: 40px;
    .section-title,p{
        color: #fff;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: #D2B450;
        z-index: -1;
        right: 16%;
    }
}
.title-30{
color: #000;
font-size: 30px;
line-height: 37px;
margin-bottom: 4px;
}
.our-mision {
    border: 1px solid #1F2A44;
    padding: 30px;
    padding-left: 135px;
    position: relative;
    height: 100%;
    transition: all .5s;
    &:hover{
        background: #D2B450;
        border-color: #D2B450;
        transform: translateY(-5px);
        img{
            transform: rotateY(180deg);
        }
    }

    img{
        position: absolute;
        top: 33px;
        left: 25px;
    }
}
.mision-vision{
    padding-top: 0;
}
.Philosophy{
    background: #1F2A44;
    .section-title,p{
        color: #fff;
    }
    p{
        color: #EDEDED;
        line-height: 177.778%; 
    }
}
.about-why-choose{
    .feature-box {
    border: 1px solid #7786A9;
    padding: 10px;
    padding-left: 17px;
    margin: 0;
    margin-top: 47px;
    min-height: 490px;
    p{
        border: 0;
        padding: 0;
    }
    .icon-box{
       position: relative;
            margin-bottom: 17px;
            top: unset;
            transform: unset;
            outline-style: solid;
            width: 108px;
            height: 108px;
            margin-top: -56px;
            margin-left: 10px;
    }
}
.card-title {
    color: #1F2A44;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 27px;
    margin-bottom: 9px;
}
}
.expertise{
    background: #F5F5F5;
    .card-title {
    color: #1F2A44;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 27px;
    margin-bottom: 9px;
}
ul{
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    li{
        color: #484848;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
    }
}
}
.team-section{
    position: relative;
    z-index: 1;
    .section-title{
        color: #fff;
    }
    .text-center p{
        color: #fff;
    }
    &::after{
                content: '';
        background: #1F2A44;
        width: 100%;
        top: 0;
        height: 47%;
        position: absolute;
        z-index: -1;
    }
}
.team-card{
    border-radius: 6px;
background: #FFF;
box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.11);
padding: 15px;
height: 100%;
transition: all .5s;
&:hover{
    background-color: #D2B450;
    transform: translateY(-5px);
    .icon-box{
        img{
            transform: rotateY(180deg);
        }
    }
}
    p{
        border: 0;
        padding: 0;
    }
    .icon-box{
       width: 80px;
    height: 80px;
    background: #EEF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all .5s;
    }
    .card-title{
        margin-bottom: 6px;
    }
    h4{
        color: #484848;
font-family: "Helvetica Bold";
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 28px;
margin-bottom: 6px;
    }
}
.awards{
    background: #1F2A44;
    .section-title,p{
        color: #fff;
    }
}
.award-box{
    position: relative;
    overflow: hidden;
    &:hover{
        a{
            opacity: 1;
            img{
            transform: scale(1);
        }
        }
    }
    img{
        width: 100%;
    }
    a{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.514);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        img{
            width: auto;
            height: auto;
            transform: scale(.6);
        }
    }
}
.award-slider{
    .slick-list{
        margin: 0 -10px;
    }
    .slick-slide{
        margin: 0 10px;
    }
    .slick-dots{
        bottom: -35px;
    }
    .slick-dots li button {
    width: 9px;
    height: 9px;
}
}
.about-aontact{
    background: #fff;
    .form-section {
        background: #F6F6F6;
    }
}
.locatopn-details{
    .sidebar-form{
        border-radius: 20px;
        background: #1F2A44;
        box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.16);
        h3{
            margin-bottom: 10px;
            line-height: normal;
        }
        h3,p{
            color: #fff;
        }
        label{
            color: #fff;
        }
    }
}
.widespread{
    background-image: url(../img/investigation-bg.webp);
    .col-lg-5{
        padding-right: 12px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .col-lg-7{
        padding-block: 70px;
        padding-left: 12px;
    }
    .icon-box{
        background: #D2B450;
    }
}
.services-in-bangalore{
    background: #1F2A44;
    .section-title,p{
        color: #fff;
    }
.col-lg-8{
    padding-block: 70px;
    padding-right: 50px;
}
.counter-item h3{
    color: #fff;
    font-size: 40px;
}
.counter-item {
    &:after {
        display: none;
    }
    p{
        color: #D2B450;
        font-family: "Helvetica Bold";
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 28px;
        margin: 0
    }
}
.counter{
    padding-bottom: 30px;
    padding-bottom: 0;
}
.col-lg-4{
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
}
.detective-agency-bangalore-img{
    text-align: left;
    position: relative;
    .small-img{
        position: absolute;
        right: -60px;
        bottom: -60px;
        border: 8px solid #fff;
        width: 54%;
    }

}
.agency-expertise{
    background: rgba(212, 236, 255, 0.20);
    ul{
        display: flex;
        flex-wrap: wrap;
        list-style-type: none;
        gap: 10px;
        padding: 0;
        margin: 0;
        li{
            border-radius: 2px;
            border: 1px solid #D2B450;
            background: rgba(255, 255, 255, 0.80);
            width: 48%;
            padding: 5px;
            position: relative;
            font-size: 17px;
            line-height: normal;
            padding-left: 27px;
            &::before{
                content: '';
                background-image: url(../img/check-mark.webp);
                width: 19px;
                height: 23px;
                display: inline-block;
                background-repeat: no-repeat;
                background-size: 16px;
                position: absolute;
                left: 5px;
                top: 6px;
            }
        }
    }
}
.technologies{
    background: url(../img/utilize-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    .col-lg-7{
        padding-right: 50px;
    }
}
.location-faq{
    background: rgba(210, 180, 80, 0.12);
    .accordion__item {
    margin: 0px auto;
    transition: .5s;
    border: 0px solid #C9C9C9;
    background: #ffffff00;
    border-bottom: 1px solid #D2B450;
}
.accordion__item .accordion-active {
    background: #d2b45000;
    color: #000000;
    border-bottom: 0;
}
.accordion__item .accordion__content {
    padding: 6px;
    font-size: 18px;
    color: #000000;
    background: #d2b45000;
    padding-right: 5%;
}
.accordion__title.accordion-active::after {
    transform: rotate(180deg);
    filter: unset;
}
}
.location-map{
    padding-top: 50px;
}
.service-banner{
    .container{
        justify-content: space-between;
    }
    .sidebar-form{
        h3{
            line-height: normal;
        }
        p{
            color: #000;
            font-family: "Helvetica";
        }
        .primary-btn{
            width: 100%;
            background: #1F2A44;
        }
        .form-control{
            border-radius: 6px;
            border: 1px solid #E0E0E0;
            background: #F2F6FF;
        }
    }
}
.thm-color{
    color: #192741;
}
.widespread{
    .other-service{
        border-top-color: #FFFFFF;
        ul{
            margin-bottom: 0;
        }
        li{
            color: #fff;
        }
    }
}
.integrity{
    background: #fff;
    .container-fluid{
        padding-left: 0;
        padding-right: 14%;
    }
    .feature-box {
    .icon-box {
        background: #19274100;
        outline: none;
    }
    p {
        border-bottom: 1px solid #D2B450;
    }
}
}
.service-why-choose{
    background: #1F2A44;
    .section-title,.card-title,p{
        color: #fff;
    }
    .left-content,.right-content{
        margin-bottom: 32px;
        &:hover{
            .card-title{
                color: #D2B450;
            }
            .icon-box{
                background: #d2b4508f;
                img{
                    transform: rotateY(360deg);

                }
            }
        }
        p{
            border-bottom: 1px solid #d2b45036;
            padding-bottom: 25px;
        }
    }

    .right-content{
        text-align: right;
        .icon-box{
            margin-left: auto;
        }
    }
    .center-img{
        width: 350px;
        height: 350px;
        border-radius: 50%;
        overflow: hidden;
        outline: 1px dashed #d2b450 ;
        outline-offset: 15px;
        margin-inline: auto;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    }
    .icon-box{
        width: 80px;
        height: 80px;
        background: #D2B450;
        box-shadow: 0 0 0 7px rgba(255, 246, 215, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 10px;
    }
}
.service-expertise{
    background: #FAFAFB;
    .container-fluid{
        padding-right: 14%;
        padding-left: 0;
    }
    ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        li{
            width: 48%;
            color: #1F2A44;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
            span{
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #F3F3F3;
                border-radius: 50%;
            }
        }
    }

}
.corporate{
    background: #F8F6E3;
    .corporate-img{
        border-radius: 20px 0;
		width: 100%;
    }
}
.service-faq{
    background: #1F2A44;
    .accordion__item {
    border-radius: 6px;
    border: 1px solid #D2B450;
}
.accordion__item .accordion-active {
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid #fff;
}
.accordion__item .accordion__content {
    color: #000000;
    background: #ffffff;
    padding-right: 3%;
    padding-top: 0;
}
.section-title{
    color: #fff;
}
.accordion__item .accordion__title{
color: #212121;
font-family: "Helvetica Bold";
font-style: normal;
font-weight: normal;
line-height: 33px;
}
.accordion__title.accordion-active::after {
    filter: unset;
}
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .title {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .credibility{
        padding-right: 7%;
        img{
            width: 76%;
        }
    }
    .discover {
    .container-fluid {
        padding: 0 94px;
        padding-right: 7%;
    }
}
.detective-agency {
    padding-left: 7%;
}
}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .title {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .container {
        max-width: 1200px;
    }
    
    #menu>.main-menu>ul>li {
        padding-inline: 12px;
    }
    .section-title {
        font-size: 46px;
    }

    p {
        font-size: 16px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 17px;
    }
    
    .popup .popup__content {
        width: 60%;
    }
   .banner-item h1 {
    font-size: 50px;
}
.banner-item p {
    font-size: 17px;
}
.primary-btn {
    font-size: 16px;
} 
.cal-btn {
    font-size: 28px;
    margin-left: 40px;
} 
.call-email {
    padding: 5px 0;
    padding-left: 34px;
    gap: 20px;
}
.credibility {
    h2 {
        padding-left: 35px;
        padding-right: 70px;
        font-size: 22px;
    }
}
.sub-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 14px;
}
.dec-italic {
    font-size: 19px;
    line-height: 173.913%;
}
.counter-item p {
    font-size: 20px;
}
.card-title {
    font-size: 22px;
}
.service-box {
    padding: 35px 12px;
    & .btn-group {
        .primary-btn {
            padding-inline: 40px;
            padding-block: 14px;
        }
    }
}
.discover-content {
    padding-block: 12px;
}
.other-service {
    & ul {
        li {
            font-size: 20px;
            line-height: 34px;
        }
    }
}
.cta {
    h2 {
        font-size: 38px;
    }
}
.cta-btn {
    p {
        font-size: 22px;
    }
    a {
        font-size: 44px;
    }
}
.accordion__item .accordion__title {
    font-size: 20px;
}
.content h3 {
    font-size: 20px;
}
.questionnaire {
    & .flex-box {
        h3 {
            margin-bottom: 20px;
            font-size: 32px;
        }
    }
}
.expertise {
    .card-title {
        font-size: 18px;
    }
    & ul {
        li {
            font-size: 16px;
            line-height: 28px;
        }
    }
}
.team-card {
    padding: 10px;
    .card-title {
        line-height: normal;
    }
    h4 {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 6px;
    }
    p {
        line-height: 150%;
        font-size: 14px;
    }
}
.team-section {
    &::after {
        height: 52%;
    }
}
.sec-gap {
    padding: 60px 0;
}
.inner-banner {
    h1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 19px;
    }
    p {
        font-size: 17px;
        line-height: 145%;
    }
}
.inner-banner {
    &::after {
        background: linear-gradient(90deg, rgb(0 0 0 / 86%) 0%, rgb(0 0 0 / 19%) 100%);
    }
}
.about-why-choose {
    .card-title {
        font-size: 20px;
    }
}
.branch-card {
    padding: 20px 10px;
}
.location-icon {
    margin: 0 auto 16px;
}
.branch-title {
    font-size: 18px;
}
.service-title {
    font-size: 14px;
    margin-bottom: 6px;
}
.address {
    font-size: 15px;
}
.blog-content {
    h3 {
        font-size: 24px;
        line-height: 123.333%;
        margin-bottom: 8px;
    }
}
.blog-tags {
    margin-bottom: 20px;
    .tag {
        padding: 12px 18px;
        font-size: 14px;
        line-height: 16px;
    }
}
.blog-content {
    & .blog-tags {
        margin-bottom: 15px;
        .tag {
            padding: 5px 15px;
            font-size: 15px;
        }
    }
}
.integrity{
    .card-title {
    line-height: 18px;
    margin-bottom: 7px;
}
}
.service-expertise {
    .container-fluid {
        padding-right: 7%;
        padding-left: 0;
    }
}
.service-expertise {
    & ul {
        li {
            font-size: 17px;
        }
    }
}
.widespread {
    .col-lg-7 {
        padding-block: 40px;
        padding-left: 12px;
    }
}
.blog-details {
    .blog-title {
        font-size: 46px;
    }
}
.pagination {
    a {
        font-size: 16px;
        line-height: 140.778%;
    }
}
.blog-details {
    ol,ul {
        font-size: 16px;
        line-height: 161.111%;
    }
}
.blog-details {
    h2 {
        font-size: 28px;
    }
}
.recent-post-list {
    & .recent-post-content {
        h4 {
            font-size: 16px;
            line-height: 120.444%;
        }
    }

}
.sidebar-form {
    padding-top: 6px;
}
.sidebar-service{
    a:last-child{
        .recent-post-list{
            border-bottom: 0;
        }
    }
}
.right {
    & .title {
        font-size: 37px;
        margin-bottom: 10px;
    }
}
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    .popup .popup__content {
        width: 70%;
    }
    .right{
        padding: 20px;
    }
    .cal-btn {
    font-size: 20px;
    margin-left: 14px;
}
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
.banner{
    .slick-dots {
    bottom: 20px;
    }
}
.credibility {
        img {
            width: 68%;
        }
    }
        .section-title {
        font-size: 38px;
    }
.why-choose-us {
    background-position: 40%;
}
.discover-img {
    .small {
        bottom: -147px;
        width: 60%;
    }
}
.sub-title {
        font-size: 16px;
}
    .cta {
        h2 {
            font-size: 30px;
        }
    }
    .cta-btn {
    gap: 30px;
    width: 90%;
            a {
            font-size: 35px;
        }
}
    .detective-agency {
        padding-left: 2%;
    }
    .banner-item h1 {
        font-size: 44px;
    }
    .sec-gap {
    padding: 50px 0;
}
.about-why-choose {
    .card-title {
        font-size: 17px;
    }
}
.about-why-choose {
    .feature-box {
        min-height: 505px;
    }
}
.expertise {
    .card-title {
        font-size: 16px;
    }
}
.other-branches{
    .container-fluid {
    padding: 0 0px;
}
}
.blog-big-content {
    h2 {
        font-size: 40px;
        margin-bottom: 11px;
    }
}
.blog-content {
    h3 {
        font-size: 22px;
    }
}
.blog-content {
    padding: 14px 7px;
}
.service-banner {
    height: 470px;
}
.service-why-choose {
    .center-img {
        width: 290px;
        height: 350px;
    }
}
.detective-agency-bangalore-img {
    .small-img {
        right: -10px;
    }
}
.right {
    & .title {
        font-size: 28px;
        margin-bottom: 10px;
    }
}
}

@media (max-width: 991.98px) {
    .left{
        background: #C59D16;
    }
    .title{
        text-align: center;
    }
    .director-box {
        padding-block: 30px;
    padding-inline: 18px;
    text-align: center;
    &::after {
        right: 0%;
    }
}
.Philosophy {
    text-align: center;
    .btn-group{
        justify-content: center;
    }
}
.about-why-choose {
    .feature-box {
        padding: 8px;
        padding-left: 12px;
        min-height: 500px;
    }
        .card-title {
        font-size: 18px;
    }
}
.expertise{
    .btn-group{
        justify-content: center;
    }

}
.team-section {
    &::after {
        height: 33%;
    }
}

    #menu {
        justify-content: start;
    }
   
    .logo {
        width: 170px;
        padding-block: 5px;
    }

    .hamburger {
        background: #192741;
        border-radius: 4px;
    }
    .hamburger:before {
        background: #D2B450;
    }
    .hamburger:after {
        border-top: 2px solid #D2B450;
        border-bottom: 2px solid #D2B450;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 110px;
        background-color: #1F2A44;
    }
    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #d2b4502e;
    }
    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }
    #menu>.main-menu>ul>li>a, #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }
    header .flex-box {
        margin-top: 20px;
    }
        
    #menu .submenu-button {
        height: 77px;
        width: 70px;
    }

    #menu .submenu-button:after {
        top: 28px;
        right: 30px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 34px;
    }
   .banner-item {
    height: 450px;
}
.banner-content {
    width: 64%;
}
    .cal-btn {
        font-size: 30px;
        margin-left: 0;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
    }
        .credibility {
        h2 {
            padding-left: 15px;
            padding-right: 50px;
            font-size: 20px;
        }
        img {
            width: 65%;
        }
    }
        .discover {
        .container-fluid {
            padding: 0 16px;
            padding-right: 5%;
        }
    }
        .discover-img {
        .small {
            bottom: unset;
            width: 60%;
            position: relative;
            margin-top: -245px;
            margin-left: 58%;
        }
    }
    .cta {
        h2 {
            font-size: 28px;
        }
    }
    .cta-btn {
    span {
        position: relative;
        width: 50px;
        height: 50px;
        z-index: 1;
    }
            p {
            font-size: 18px;
        }
                a {
            font-size: 26px;
        }
}
.detective-agency {
    .discover-content {
        padding-block: 50px;
    }
}
.questionnaire {
        & .flex-box {
            h3 {
                margin-bottom: 20px;
                font-size: 24px;
            }
        }
    }
.questionnaire {
    .contact-box {
        flex: 1.5;
        padding: 10px;
    }
}
.get-in-touch {
    padding-bottom: 19%;
}
.fixed-btn {
    bottom: 90px;
}
.other-branches {
        .container-fluid {
            padding: 0 15px;
        }
    }
    .contact {
    .contact-box .icon {
        height: 30px;
        margin-top: 0px;
    }
}
    .blog-big-content {
        h2 {
            font-size: 30px;
            margin-bottom: 11px;
        }
    }
.blog-big-content {
        position: relative;
        padding: 18px 10px;
        z-index: 2;
        background: #192741;
        border-radius: 0 0 10px 10px;
        margin-top: -14px;
        z-index: 0;
        padding-top: 25px;
    }
    .blog-tags {
        .tag {
            padding: 7px 12px;
            font-size: 10px;
            line-height: 16px;
        }
    }
    .widespread {
    .col-lg-7 {
        padding-block: 30px;
        padding-left: 12px;
    }

}
.services-in-bangalore {
    padding-top: 30px;
    .col-lg-8 {
        padding-block: 40px;
        padding-right: 0px;
        text-align: center;
    }
    .col-lg-4{
        order: -1;
    }
}
.detective-agency-bangalore{
    .col-lg-5{
        order: -1;
        margin-bottom: 50px;
    }
}
.detective-agency-bangalore-img {
    .small-img {
        position: absolute;
        right: -10px;
        bottom: -60px;
        width: 53%;
    }
}
.agency-expertise {
    & ul {
        li {
            width: 100%;
        }
    }
}
.locatopn-details {
    text-align: center;
    .sidebar-form {
        text-align: left;
    }
}
.technologies {
    .col-lg-7 {
        padding-right: 9px;
        text-align: center;
        padding-top: 0;
    }
}
.integrity {
    .container-fluid {
        padding-left: 1%;
        padding-right: 1%;
    }
}
.service-why-choose {
    .row .col-lg-4:nth-child(2) {
        display: none;
    }
}
.service-why-choose {
    .right-content,.left-content {
        text-align: center;
        .icon-box {
            margin-left: auto;
            margin-inline: auto;
        }
    }
}
.service-expertise {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.blog-details {
    .blog-title {
        font-size: 34px;
    }
}
.right {
    & .title {
        font-size: 28px;
        margin-bottom: 10px;
    }
}
}
@media (max-width: 575.98px) {
    .title {
        font-size: 25px;
        margin-bottom: 15px;
        line-height: 19px;
    }
    .topbar {
        font-size: 14px;
        padding: 4px 0;
        display: none;
    }
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
    .form-group {
        margin-bottom: 5px;
    }
    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    #menu {
        justify-content: start;
    }

    .logo {
        width: 170px;
        padding-block: 3px;
    }

    header {
        height: 60px;
    }

    .hamburger {
        top: 12px;
        width: 43px;
        height: 36px;
    }
    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }
    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }
    #menu .submenu-button {
        height: 51px;
        width: 70px;
        background: rgb(255 255 255 / 3%);
    }
    .banner-item {
        height: 320px;
    }
    .section-title {
        font-size: 26px;
        line-height: inherit;
    }
.mb-50 {
    margin-bottom: 20px;
}
.about-us{
    text-align: center;
    .title-md {
    font-size: 16px;
}
    .btn-group {
        justify-content: center;
    }
}
    .dec-italic {
        font-size: 16px;
        line-height: 150.913%;
    }
    p {
        font-size: 14px;
    }

    .sec-gap{
        padding: 30px 0;
    }

    .mb-20 {
        margin-bottom: 10px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    footer {
        padding-top: 30px;
        text-align: center;
    }

    .copyright {
        padding: 10px 0;
        padding-bottom: 0;
        justify-content: center;
    }

    .copyright p {
        margin-bottom: 5px;
    }

   
    #menu .main-menu {
        top: 60px;
        flex-direction: column;
        padding-right: 0;
        overflow-y: auto;
        padding-bottom: 100px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 16px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    #menu .submenu-button:after {
        top: 22px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(0deg);
        top: 22px;
    }

    #menu ul ul li a {
        padding-left: 15px;
    }

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .popup .popup__content {
        width: 90%;
    }


    .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .left {
        padding-block: 15px;
    }

    #menu .main-menu ul li.current-menu-item a::after{
        display: none;
    }
    
    .primary-btn{
        font-size: 14px;
        padding: 10px 15px;
    }
    .btn-group {
        display: flex;
        gap: 10px;
    }
    .banner-content {
        width: 92%;
    }
    
    .banner-slider .slick-dots {
        bottom: 10px;
    }
   
   
    .enq-btn {
        height: 30px;
        box-shadow: -2px -2px 0px #ffffff;
    }
    .enq-btn a {
        font-size: 14px;
        line-height: 30px;
    }
    .fixed-btn {
        top: unset;
        right: 5px;
        width: 50px;
    }
    .fc {
    width: 45px;
    height: 45px;
    margin-inline: auto;
}
       .banner-item h1 {
        font-size: 30px;
        margin-bottom: 4px;
    }
        .banner-item p {
        font-size: 14px;
    }
    .banner-item:after {
    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0 / 25%) 100%);
}
.credibility {
    background: #F6F6F6;
    padding-block: 4px;
    display: block;
    padding-right: 10px;
    h2 {
        padding-left: 15px;
        padding-right: 50px;
        font-size: 18px;
        padding-block: 1px;
        width: 100%;
        margin-bottom: 10px;
    }
    img {
            width: 100%;
    }
}
    .sub-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .counter-item h3 {
    font-size: 40px;
    line-height: 28px;
    margin-bottom: 10px;
}
    .counter-item p {
        font-size: 13px;
    }
    .counter-item {
    &:after {
        height: 6px;
        bottom: -10px;
        left: 0;
    }
}
.counter {
    padding: 30px 0;
    padding-top: 20px;
}
.service-img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}
.card-title {
    font-size: 18px;
    line-height: 24px;
}
.discover-img {
    position: relative;
    padding-right: 50px;
}
.other-service {
    h3 {
        font-size: 22px;
    }
    & ul {
        li {
            font-size: 16px;
            line-height: 28px;
        }
    }
}
    .cta {
        h2 {
            font-size: 22px;
        }
    }
        .cta-btn {
        span {
            position: absolute;
            width: 50px;
            height: 50px;
            z-index: 1;
            top: -20px;
        }
    }
    .cta-btn {
        gap: 11px;
        width: 98%;
        margin-top: 47px;
        padding-top: 44px;
        padding-bottom: 15px;
    }
    .detective-agency {
        .discover-content {
            padding-block: 30px;
        }
    }
    .questionnaire {
        .form-section {
        padding: 20px;
    }
            .contact-box {
            padding: 20px;
        }
        & .flex-box {
            display: block;
        }
    }
label {
    margin-bottom: 4px;
    font-size: 15px;
}
    .get-in-touch {
        padding-bottom: 80%;
    }
    .testimonials {
    padding-top: 30px;
    padding-bottom: 80px;
}
.testi-slider {
    .slick-dots {
        bottom: -50px;
    }
}
.accordion__item .accordion__title {
        font-size: 14px;
        padding-right: 34px;
    }
    .accordion__item .accordion__content {
    font-size: 14px;
}
.accordion__item {
    margin: 6px auto;
}
.blog-card .date-box {
    right: 12px;
    bottom: -33px;
}
.date-box span {
    font-size: 15px;
}
.date-box .day {
    font-size: 34px;
}
.date-box .year {
    font-size: 18px;
}
.content .tag {
    font-size: 14px;
}
    .content h3 {
        font-size: 18px;
        line-height: 130%;
    }
    .content p {
       margin: 0;
    }
    .map iframe {
    height: 300px;
}
.top-social {
    justify-content: center;
}
    .copyright {
        margin-top: 10px;
    }
    .footer-title {
    font-size: 18px;
    line-height: 53px;
}
.footer-title:after {
    margin-inline: auto;
}
    .about-why-choose {
        .feature-box {
            padding: 8px;
            padding-left: 12px;
            min-height: auto;
        }
    }
    .inner-banner {
        height: 200px;
    .banner-content {
        width: 88%;
    }
    h1 {
        font-size: 30px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    p {
    font-size: 14px;
    line-height: 145%;
    margin: 0;
}
}
.highlights {
    padding: 10px 10px;
    margin-top: 8px;
}
.achievements {
    text-align: center;
}
.our-mision {
    padding: 15px;
    text-align: center;
    img {
        position: relative;
        top: unset;
        left: unset;
    }
}
.team-section {
    &::after {
        height: 15%;
    }
}
.awards{
    padding-bottom: 70px;
}
.contact {
    .contact-box h3 {
        font-size: 24px;
    }
}
.contact {
    & .contact-box p {
        strong {
            font-size: 16px;
            line-height: 16px;
        }
    }
}
.follow{
    .card-title{
        text-align: center;
    }
}
    .branch-title {
        font-size: 16px;
        line-height: normal;
    }
        .service-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
        .address {
        font-size: 14px;
    }
        .location-icon {
        margin: 0 auto 11px;
        width: 70px;
        height: 70px;
    }
        .branch-card {
        padding: 12px 5px;
    }
.service-banner {
    height: auto;
    .banner-bg{
        position: absolute;
    height: 100%;
    width: 100vw;
    }
    .container{
            display: block;
    position: relative;
    padding-block: 30px;
    }
    .banner-content {
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
        }
}
    .service-why-choose {
        .right-content, .left-content {
            text-align: center;
            background: #ffffff0d;
            padding-top: 25px;
            margin-bottom: 0;
        }
    }
    .service-expertise {
        & ul {
            li {
                font-size: 17px;
                width: 100%;
                text-align: left;
            }
        }
    }
    .feature-box {
    position: relative;
    margin-bottom: 20px;
    padding-left: 0;
    margin-bottom: 24px;
    text-align: center;
    .icon-box {
        position: relative;
        top: unset;
        left: 0;
        transform: unset;
        outline: 1px dashed #1F2A44;
        outline-offset: 5px;
        margin-bottom: 20px;
        margin-inline: auto;
    }
}
.service-faq {
    .accordion__item .accordion__title {
        line-height: normal;
    }
}
section.sec-gap.integrity {
    text-align: center;
}
.why-choose-us {
    text-align: center;
}
.why-choose-us {
    & .sub-title {
        &::before {
            opacity: 1;
        }
    }
}
.team-card {
    padding: 10px;
    text-align: center;
    .icon-box {
        margin-inline: auto;
    }
}
.blog-details-banner{
    height: auto;
}
.blog-details {
    .blog-title {
        font-size: 22px;
    }
    .details-tag {
        font-size: 15px;
        line-height: 10px;
    }
}
.blog-details {
    h2 {
        font-size: 20px;
        line-height: 110%;
    }
}
.blog-details {
    ol, ul {
        font-size: 14px;
        line-height: 161.111%;
    }
}
.blog-details {
    h3 {
        font-size: 20px;
        line-height: 110%;
    }
}
.pagination {
    h4 {
        font-size: 16px;
        line-height: 10px;
        margin-bottom: 12px;
    }
    a {
    font-size: 14px;
    line-height: 130.778%;
    display: block;
}
}
.sidebar-form,.sidebar-service {
    h3 {
        line-height: 40px;
    }
}
.right {
    & .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}
}