@font-face {
  font-family: gilroy;
  src: url(../fonts/Gilroy-Medium.woff2);
}
@font-face {
  font-family: gilroy-semibold;
  src: url(../fonts/Gilroy-Semibold.woff2);
}


 :root{
     --primary:#d51315;
     --black: #000000;
     --white: #ffffff;
     --gray:#f9f8f6;
     --light: #898989;
     --blackLight:#191919;
 }
 
 *{
     margin: 0;
     padding:0;
     box-sizing: border-box;
     font-family: gilroy;
     font-weight: 300;
  
 }
 html{

  overflow-x: hidden;
 }
 html, body{

  height: auto !important; /* Prevent Bootstrap from forcing 100% height */
  overflow: visible !important; /* Allow smooth scrolling */
  scroll-behavior: unset !important; /* Disable default smooth scrolling */
}

 h1, h2, h3, h4, h5, h6{

   color: var(--textColor);
 }
 
 body{
     font-size: 16px;
     color:var(--textColorLight);
 
 }
 body.no-scroll {
  overflow: hidden!important;
}

 img{
     max-width: 100%;
 }
 
 a{
     text-decoration: none;
 }

 sup{
  font-size: 7px!important;
 }
 
 .bgImg{
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center
 }
 .imgFlip{
  transform: scaleX(-1);
 }
 .tabImg img.imgSmall{
  max-width: 400px;
}
.tabLeft img.animImg, .keyImg img.animImg{
  width: 100%;
  display: block;
  animation: colorCycle 3s infinite ease-in-out;
}
@keyframes colorCycle {
  0% {
    filter: grayscale(100%); /* Gray */
  }
  50% {
    filter: grayscale(0%); /* Red (original color) */
  }
  100% {
    filter: grayscale(100%); /* Back to Gray */
  }
}

 .bgFixed{
   background-attachment: fixed;
 }
 .parallaxbg{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.fullHeight{
  min-height: 100vh;
}
 
 ul, ul li{
     list-style-type: none;
  
 }
 /* .custom-cursor  {
  width: 20px; 
  height: 20px;
  background-color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  position: fixed; 
  top: 0;
  left: 0;
  pointer-events: none; 
  z-index: 9999; 
  transition: transform 0.1s ease-out; 
} */
.progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: var(--primary); /* Your theme color */
  z-index: 999;
  transition: width 0.1s linear;
}



#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transform: translateY(0);
  transition: all 0.6s;
  background: var(--blackLight);
  opacity: 1;

}

.animation-container {
  position: relative;
  width: 300px;
  height: 150px;
}
.loadingImg {
  position: absolute;
  height: 150px; /* Ensure uniform height */
  width: auto; /* Maintain aspect ratio */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#loader.loaded{
  opacity: 0;
  pointer-events: none;
}
.spinner-box {
  width: 300px;
  height: 300px;
  display: flex
;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.leo-border-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgb(210 210 210) 100%);
  animation: spin3D 1.8s linear 0s infinite;
}
.leo-border-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(251, 91, 83);
  background: linear-gradient(0deg, rgba(251, 91, 83, 0.1) 33%, rgba(251, 91, 83, 1) 100%);
  animation: spin3D 2.2s linear 0s infinite;
}
.leo-core-1 {
  width: 100%;
  height: 100%;
  background-color: #37474faa;
  border-radius: 50%;
}


@keyframes spin3D{
  0% {
    transform: rotate3d(.5, .5, .5, 360deg);
  }
  100% {
    transform: rotate3d(0deg);
  }  
  
}





@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);};
}


#main {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
section{
  z-index: 1;
  position: relative;
  background: var(--white);
  
}
.section{
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0 clamp(4rem, 12vw, 20rem);
}
.section p {
  font-size: 4vw;
  line-height: 12vh;
}

.pinned-section {

 position: relative;
}

.pinned-section.overlap {

  z-index: 2;

}
.pinnedBottom{

  position: relative;
  margin-top: 100vh;
}



/****************************************
             * MARQUEE SECTION
  ****************************************/
.marquee-section {
  background: #222;
  color: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  /* hides text once it scrolls out of view */
  width: 100%;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: 1.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Main menu start */
.mainMenu ul{
  padding-left: 0;


}
.mainMenu >ul>li{
  margin-right: 20px;
  padding-right: 15px;
}
.mainMenu ul>li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.mainMenu ul>li>a{
  color:var(--white);
  font-size: 15px;
  padding: 18px 0;
  font-weight: 500;
}
.mainMenu ul>li>a>i{
  font-size: 13px;
}
.mainMenu ul>li>a.nav-link:focus{
  color: var(--white)!important;
}
.mainMenu ul>li>a:hover, .mainMenu ul>li>a.active, .mainMenu ul>li>a:focus{
  color:var(--primary)!important;
}
/* Show dropdown on hover */


/* Optional: smoother submenu appearance */
.mainMenu .dropdown-menu {
  transition: all 0.5s ease;
  border-radius: 0;
  background: var(--blackLight);
  min-width: 225px;
  border-radius: 0 0 8px 8px;
  display: block;
  top:110%;
  opacity: 0;
  pointer-events: none;
}
.mainMenu .dropdown:hover .dropdown-menu {
 top:100%;
 opacity: 1;
 pointer-events: all;
}
/* Style submenu items if needed */
.mainMenu .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 6px 20px;
  color:var(--white);
  display: block;
  white-space: normal;
  transition: color 0.3s ease;
}
.mainMenu .dropdown-menu .dropdown-item:hover, .mainMenu .dropdown-menu .dropdown-item.active, .mainMenu .dropdown-menu .dropdown-item:focus{

  color:var(--primary);
  background: transparent;
}

.dropdown-submenu {
  position: relative;
}
.dropdown-submenu a i{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right:10px;
}
.dropdown-submenu > .dropdown-menu {
  top: 20px;
  left: 100%;
  margin-left: 0.1rem;
  margin-top: -9px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
  border-radius: 0 0 8px 8px ;
}

.mainMenu .dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top:20px;
 

}

/* Mega Menu css Start*/
.mega-menu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 110%;
  border: none;
  border-radius: 0;
  margin: 0;
  position: absolute;
  height: calc(100vh - 60px);
  padding-top: 60px;
  padding-bottom: 60px;
  overflow-y: auto;

}
.mega-menu:hover .dropdown-menu{
    top: 100%;
    opacity: 1;
    pointer-events: all;
}
.menuTitle h1 {
    font-size: 48px;
     width: fit-content;
     line-height: 52px;
}
.menuTitle h1 a {
  color:var(--primary);
  position: relative;
  width: fit-content;
transition: all 0.3s ease;
}


.mega-menu-content .dropdown-header{
  margin-bottom: 10px;
}
.mega-menu-content .dropdown-header a, .dropdown-header {
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 0.5rem;
  white-space: normal;
  transition: all 0.3s ease;

}

.mega-menu-content .dropdown-header a:hover, .menuTitle h1 a:hover{
 text-decoration: underline;
 
}



.mainMenu .mega-menu-content .dropdown-item{
  font-size: 14px;
  line-height: normal;
  transition: all 0.3s ease;

}

/* Mega Menu css End*/

/* Sidebar Mobile menu */

.menuBtn{
  border: none;
  box-shadow: none;
  color:var(--white);
  font-size: 18px;
  position: relative;
}
.menuBtn:before{
  background-color: var(--white);
  bottom: -.7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width .2s ease-in;
  width: 0;
}
.menuBtn:hover:before{
 
  width: 100%;
}
.sidebar-overlay{
  background-color: #00000080;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1031;
  transition: all .6s ease;


}
.sidebar-overlay.show{
  visibility: visible;
  opacity: 1;
}
.sideBar {
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  z-index: 999;
  background: var(--white);
  height: 100dvh;
  width: 300px;
  display: flex;
  justify-content: center;
  transition: transform .6s ease;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .16);
  overflow-x: hidden;
  pointer-events: all
}
.sideBar.show {
transform: translateX(0);
  visibility: visible;
}
.sidebarHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid #d8d8d8;
  height: 48px;
  background: var(--white);
  z-index: 9999;
}
.sideBar .closeBtn {
  z-index: 1000;
  color: #000;
  backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
  display: inline-flex;
}
.sidebarLogo img{
  max-width: 120px;
}



.sidebarInner{
 width: 100%;
 padding: 48px 30px 48px;
 display: flex;
 height: 100%;
 flex-direction: column;
 overflow-y: auto;
 overflow-x: hidden;
}
.sideMenu{

  width: 100%;
  margin: auto 0;

}

.sideMenu ul, .sideMenu ul li{
  padding-left:0;
  list-style-type: disc;


}
.sideMenu ul>li{
  border-bottom: 1px solid #d8d8d8;
  padding: 8px 0;
}
.sideMenu ul.submenu> li{
  padding: 2px 0;
  border-bottom: none;
}
.sideMenu ul li a{
  color:var(--black);
  font-size: 14px;
  display: inline-block;

  transition: all 0.5s ease;
}
.sideMenu ul.submenu> li a{
  font-size: 13px;

}
.sideMenu ul li a:hover, .sideMenu a.active{
  color:var(--primary);
}
.has-submenu > a {
  position: relative;
  cursor: pointer;

}



.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 15px;


}
.submenu .submenu >li a{

color: #6d6d6d;
font-size: 12px;

}
.has-submenu.open>.submenu {
  max-height: fit-content; 
  margin-top: 8px;
}

.has-submenu {
  position: relative;
}

.submenuToggle {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.arrow-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.has-submenu.open > .submenuToggle >.arrow-icon {
  transform: rotate(-135deg);
}


.closeIcon {
  fill: none;
  stroke: currentColor;
  stroke-miterlimit: 10;
}

.sidebarFooter{
  position: absolute;
  bottom:0;
  left:0;
  width: 100%;
  height: 48px;
  border-top: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 9999;
}

.sidebarFooter .social{
  margin-top: 0;
  z-index: 9;
}
.sidebarFooter .social a{
  font-size: 14px;
}
.sidebarFooter .social a:hover{
  color:var(--primary);
} 
hr{
  margin: 20px 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 1;
  transition: border-color 0.3s ease;
}
.border-primary{
  border-color: var(--primary)!important;
}
.altFont{
  font-family: 'gilroy-semibold';
}

  /* ======= Video popup style Start ======= */
.videoPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 40px;
  box-sizing: border-box;

}
.videoContent {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;

}
.videoContent video {
  width: 100%;
  height: auto;
  display: block;
}
.videoCloseBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}


  /* ======= Video popup style End ======= */



  /* ======= Testimonial video popup style Start ======= */
.testimonialBox {
  border-radius: 10px;
  overflow: hidden;
  background: var(--blackLight);
  box-shadow: 0 5px 10px rgba(255,255,255,0.15);
}
.testimonialImg{
    position: relative;

  
    
}
.testimonialImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content{
  padding: 15px;
}
/* .playBtn {
    position: absolute;
    top:100%;
    left:50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--black);
    animation: shadowPulse 1.5s ease-in-out infinite;
    background: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 9999;
   
} */

.playBtn {
    position: relative;
    font-size: 24px;
    color: var(--black);
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 9999;

   
}
.playBtn:after{
  content:"";
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  transform: scale(1.2);
  border: 1px solid #fff;
  border-radius: 10px;
  transition: transform 0.5s ease;
  z-index: -1;
     
}
.playBtn:hover:after{
  transform: scale(1);
}
.playBtn i{
    display: inline-flex;
}
@keyframes shadowPulse {
  0%, 100% {
    box-shadow: 0 0 5px 5px rgba(255, 60, 60, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 15px rgba(255, 60, 60, 0.6);
  }
}

.clientInfo {
  padding-top: 15px;
  min-height: 100px;
 
}
.quoteTitle{
   position: relative;
   z-index: 1;
   margin-top:20px;
   font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 40px;
}

.testimonial-content p{
    font-size: 15px;
    line-height: 22px;
}
.clientInfo .clientName{
    font-size: 20px;
   color:var(--primary);
    font-weight: 600;
}

.testimonialSec .swiper-button-container .custom-arrow{
    background: var(--white);
    color:var(--black);
    width: 40px;
    height: 40px;
    font-weight: bold;
}
.testimonialSec .swiper-button-container .custom-arrow:hover{
    background: var(--primary);
     color:var(--white);
}

  /* ======= Testimonial video popup style End ======= */



  /* ======= Slick Slider style Start ======= */
 
  .slick-slider {
   position: relative;
   display: block;
   box-sizing: border-box;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   -webkit-touch-callout: none;
   -khtml-user-select: none;
   user-select: none;
   -ms-touch-action: pan-y;
   touch-action: pan-y;
   -webkit-tap-highlight-color: transparent;
 }
 
 .slick-list {
   position: relative;
   display: block;
   overflow: hidden;
 }
 .slick-list.dragging {
   cursor: pointer;
 }
 .slick-slider .slick-track,
 .slick-slider .slick-list {
   -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   -o-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
 }
 .slick-track {
   position: relative;
   top: 0;
   left: 0;
   display: block;
 }
 .slick-track:before,
 .slick-track:after {
   display: table;
   content: "";
 }
 .slick-track:after {
   clear: both;
 }
 .slick-loading .slick-track,
 .slick-loading .slick-slide {
   visibility: hidden;
 }
 .slick-slide {
   display: none;
   float: left;
   height: 100%;
   min-height: 1px;
 }
 [dir="rtl"] .slick-slide {
   float: right;
 }
 .regular .slick-slide img {
   display: block;
   width: 100%;
 }
 .slick-slide.slick-loading img {
   display: none;
 }
 .slick-slide.dragging img {
   pointer-events: none;
 }
 .slick-initialized .slick-slide {
   display: block;
 }
 .slick-vertical .slick-slide {
   display: block;
   height: auto;
   border: 1px solid transparent;
 }
 .slick-arrow.slick-hidden {
   display: none;
 }
 .slick-slide:focus,
 .slick-list:focus {
   outline: none;
 }
 
 .slick_main .slick-slide {
   height: inherit;
   position: relative;
   overflow: hidden;
   padding: 0 10px;
 }
 .slick_main .slick-prev:before,
 .slick_main .slick-next:before {
   content: "";
   border-bottom: 2px solid;
   border-left: 2px solid;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
   width: 20px;
   height: 20px;
   position: absolute;
   top: 50%;
   margin-top: -5px;
   left: 50%;
   margin-left: -5px;
 }
 .slick_main .slick-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: var(--theme-color2);
   border: none;
   font-size: 0px;
   color: #252525;
   z-index: 1;
   padding: 0px;
   cursor: pointer;
   width: 40px;
   height: 40px;
   transition: all 0.6s;
 
 }
 
 .slick_main .slick-arrow:hover,
 .slick_main .slick-arrow:focus {
   border-color: #000;
   outline: none;
 }
 .slick_main .slick-prev {
   left: 0px;
 }
 .slick_main .slick-next {
   right: 0;
 }
 .slick_main .slick-next:before {
   transform: rotate(-135deg);
 }
 
 .slick_main .slick-dots {
   position: absolute;
   bottom: -50px;
   margin: 0px;
   padding: 0px;
   width: 100%;
   text-align: center;
 }
 .slick_main .slick-dots > li {
   display: inline-block;
   margin: 0 6px;
   padding: 0;
   line-height: 8px;
 }
 .slick_main .slick-dots > li > button {
   width: 8px;
   height: 8px;
   padding: 0;
   border: 0;
   border-radius: 50%;
   text-indent: -9999px;
   -webkit-transition: background-color 0.3s;
   -moz-transition: background-color 0.3s;
   transition: background-color 0.3s;
   cursor: pointer;
   background: #999;
 }
 .slick_main .slick-dots > li > button:focus {
   outline: none;
 }
 .slick_main .slick-dots > li.slick-active > button {
   background-color: #3d7edb;
 }
 .slider-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
 
}
.slide-count {
  font-size: 14px;
  color: #8c857a;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  gap:20px
}
.slide-count .current-slide, .slide-count .total-slides{
  min-width: 30px;
}
.slide-count .divider{
  position: relative;

  
}
.slide-count .divider:before{
  content:"";
  border-left: 1px solid #8c857a;
  display: block;
  height: 30px;
  margin: auto;
 -webkit-transform: skewX(-30deg);
 transform: skewX(-30deg);

}
.custom-prev, .custom-next {
  background: transparent;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  color: white;
  border-radius: 50%;
  transition: 0.3s;
}
.custom-prev img{
  transform: rotate(-180deg);
}
.custom-prev img, .custom-next img{
  max-width: 45px;
}
.swiper {
  width: 100%;
  height: 100%;
}

/* .swiper-wrapper {
  width: 100vw;
} */
.swiper-slide {

  background-size: cover;
  background-position: center;
}


 /* ======= Slick Slider Style End ======= */


 .siteBtn {
   display: inline-block;
   position: relative;
   padding: 13px 30px;
   text-align: center;
   overflow: hidden;
   background: var(--primary);
   border: 1px solid var(--primary);
  color: var(--white);
   font-weight: 400;
   font-size: 12px;
   z-index: 1;
   border-radius: 2px;
   line-height: normal;
 }
 .siteBtn:before{
  content:"";
  position: absolute;
  left:0;
  bottom:0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  background:var(--black);
  transform: scale(0);
  z-index: -1;

  
 }
 .siteBtn:hover:before{
  transform: scale(1);

 }
 .siteBtn.outline{
  background: transparent;
  border:1px solid var(--white);
 }

 .siteLink{
   position: relative;

   font-size: 12px;
   display: flex;
   align-items: center;
   text-transform: uppercase;
   max-width: fit-content;
   border-bottom: 1px solid var(--blackLight);
   transition: color .4s ease-out;
   padding-bottom: 2px;
   margin-top: 20px;
 }
 .siteLink img{
  height: 8px;
  transform: translateZ(0);
  width: 12px;
 }

 .siteLink span{
  transition: padding-right .25s ease-in-out;
  padding-right: 7px;
  color:var(--black);
 
 }

 .siteLink:hover span{
    padding-right: 17px;
 }
 .bgBlack .siteLink, .siteLink.white{
  color:var(--white);
  border-bottom: 1px solid var(--white);
 }

 .bgBlack .siteLink span, .siteLink.white span{
  color:var(--white);
 }
 .siteLink.white img,  .bgBlack .siteLink img{
  filter: invert(1);
 }

 .bgBlackLight .custom-arrow, .achievmentSlider .custom-arrow{
  background: var(--primary);
  color: var(--white);
 }
 .bgBlackLight .custom-arrow:hover{
  background: var(--white);
  color:var(--black)
 }
 .achievmentSlider .custom-arrow:hover{
  background: var(--blackLight);
  color: var(--white);
 }
 .siteBtnOutline {
   background: transparent;
   border: 1px solid var(--white);
   color: var(--white);
   overflow: hidden;
   position: relative;
   z-index: 1;
   transition: all 0.5s ease;
 }
 
 .siteBtnOutline:hover{
     color:var(--textColor);
     background: var(--white);
 }


 .btnWhite{
     border:none;
     color:var(--black);
     background: var(--white);
 }
 .btnWhite:hover{
   color:var(--white);
 
 }
 .btnDark{
     border:none;
     background: #333;
     color:var(--white);
 
 }
 
 .siteInput{
     background-color: #f9f9f9;
     border: none;
     padding: 15px 20px;
     width: 100%;
     font-size: 14px;
     border-radius: 0;
 }
 .siteInput:focus{
     outline: none;
     box-shadow: none;
     border: 1px solid var(--primary);
     background:transparent
 }
 .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
 .form-check-input:focus{
  box-shadow: 0 0 0 .25rem rgba(213, 19, 21, .25);
 }
 .sectionPadding{
     padding-top: 80px;
     padding-bottom: 80px;
 }
 .sectionPadding-sm{
     padding-top: 60px;
     padding-bottom: 60px;
 }
 .sectionPadding-lg{
     padding-top: 100px;
     padding-bottom: 100px;
 }
 
 .sectionHeader h1{
   font-size: 40px;
 }
 .title{
  font-size: 36px;
  color:var(--textColor);
 
 }
 .titleBig{
  font-size: 150px;
 }
 .subTitle{
   font-size: 20px;
   font-style: italic;
   margin-top: 10px;
 
 }
 .sectionHeaderAlt .title{
  font-size: 36px;
  color: var(--textColor);

 }

 .withSep{
         position: relative;
 }
  .withSep:after{
     content:"";
     display: block;
     width: 50px;
     height: 4px;
     background: var(--primary);
     margin: 12px 0 20px;
 
 
 }
 
 .sectionHeader.text-center .withSep:after, .withSep.text-center:after{
     margin: 20px auto;
 }
 .sectionHeader .desc{
     font-size: 16px;
     color:#727272;
     
 }


 /* common section with black background */
 .sectionSubTitle{
  font-size: 18px;
  text-transform: uppercase;
 }
/* .sectionTitle h2{
  font-size: 45px;
  line-height: 48px;
} */
 .sectionTitle h2{
  font-size: 40px;
  line-height: 43px;
 }
.sectionTitle.big h2 {
  font-size: 66px;
  line-height: 70px;
}

.sectionTitle h3, .sectionContent h3{
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  font-family: 'gilroy-semibold';
}
.sectionTitle h4{
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  font-family: 'gilroy-semibold';
}

.sectionContent.small p{
  font-size: 14px;
  line-height: 18px;

}

.sectionHeader .sectionContent p {
  font-size: 17px;
  color: var(--white);
  line-height: 1.5;
}
.reveal-title{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.reveal-title .char{
  transform: translateY(115px);
  transition: transform 0.5s;
}


.aboutText h2{
  font-size: 28px;
  line-height: 38px;
}
.aboutText h3 {
  font-size: 24px;
  line-height: 30px;
}
.aboutText strong .word{
  font-weight: bold;
} 
 .fs11 {
   font-size: 11px !important;
 }

 .fs12 {
   font-size: 12px !important;
 }

 .fs13 {
   font-size: 13px !important;
 }

 .fs14 {
   font-size: 14px !important;
 }

 .fs15 {
   font-size: 15px !important;
 }

 .fs16 {
   font-size: 16px !important;
 }

 .fs17 {
   font-size: 17px !important;
 }

 .fs18 {
   font-size: 18px !important;
 }

 .fs19 {
   font-size: 19px !important;
 }

 .fs20 {
   font-size: 20px !important;
 }

 .fs21 {
   font-size: 21px !important;
 }

 .fs22 {
   font-size: 22px !important;
 }

 .fs23 {
   font-size: 23px !important;
 }

 .fs24 {
   font-size: 24px !important;
 }

 .fs30 {
   font-size: 30px !important;
 }
 .fs32 {
   font-size: 32px !important;
 }
 .fs36 {
   font-size: 36px !important;
 }

 .fs40 {
   font-size: 40px!important;
 }
 .fs42 {
   font-size: 42px!important;
 }

  .fs44 {
   font-size: 44px!important;
 }
  .fs48 {
   font-size: 48px!important;
 }
 .fs60 {
   font-size: 60px!important;
 }

  .lh14 {
   line-height: 14px !important;
 }
 .lh16 {
   line-height: 16px !important;
 }
 .lh18 {
   line-height: 18px !important;
 }

 .lh19 {
   line-height: 19px !important;
 }

 .lh20 {
   line-height: 20px !important;
 }

 .lh21 {
   line-height: 21px !important;
 }

 .lh22 {
   line-height: 22px !important;
 }

 .lh24 {
   line-height: 24px !important;
 }

 .lh30 {
   line-height: 30px !important;
 }

 .lh32 {
   line-height: 32px !important;
 }

 .lh34 {
   line-height: 34px !important;
 }

 .lh36 {
   line-height: 36px !important;
 }

 .lh38 {
   line-height: 38px !important;
 }

 .lh40 {
   line-height: 40px !important;
 }

 .lh42 {
   line-height: 42px !important;
 }

 .lh44 {
   line-height: 44px !important;
 }
 .lh48 {
   line-height: 48px !important;
 }

  .lh64 {
   line-height: 64px!important;
 }
.minh290{
  min-height: 290px;
}
.minh260{
  min-height: 260px;
}
.minh270{
  min-height: 270px;
}

.minh332{
  min-height: 332px!important;
}
.minh150{
  min-height: 150px!important;
}

.minh180{
  min-height: 180px!important;
}
.minh342{
  min-height: 342px!important;
}
.minh350{
  min-height: 350px!important;
}
.minhAuto{
  min-height: auto!important;
}
 .fw600{
  font-weight: 600;
 }
 .bgBlack {
    background-color: var(--black)!important;
    color:var(--white);
  }
  .bgBlackLight{
    background: var(--blackLight);
    color:var(--white);
  }
 .bgDarkBlue {
       background: var(--darkblue);
  }
 
  .bgNavyBlue {
   background: var(--navyBlue);
 }
 .bgTheme {
  background: var(--secondary)!important;
}
  .bgGray {
    background: #f5f5f5;
  }
   .primaryColor{
     color:var(--primary)!important;
   }  
   .secondaryColor{
     color:var(--secondary)!important;
   }  
 .textDark{

  color:var(--black)!important;
 }

 .siteA{
  color:var(--light);
  text-decoration: underline;
 }
  .siteA:hover{
    color:var(--primary);
  }
 .slideUpText,
 .heroText,
 .sectionHeader {
   overflow: hidden;
   display: block;
 
 }
 
 .fixedHeader {
   padding-top: 60px;
 }
 
 .extraPadding {
   padding: 15%;
 }
 .imgPaddingLeft{
  padding-left: calc((100vw - 1140px) / 2);
 }



 .bgOverlay, .imgOverlay {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
 
 }
 .vidOverlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.5);
 }
.navbar{
  height: 60px;
 
}
 .navFixed{
  background: var(--black);

 }
 .navbar-brand img{
  max-width: 140px;
  filter: brightness(0) invert(1);
 }
 .logo img{
  max-width: 200px;
 }


/*   Common hero Section    */

.heroSec{
  position: relative;
  overflow: hidden;
   margin: 0;
  padding-top: 60px;
  background-size: cover;
  background-position: center center;
}
.heroSubTitle{
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;

}

.heroSubTitle:before{
  content:"";
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  left:0;
  top:0;
  margin-right: 15px;
}
.heroTitle{
font-size: 66px;

  line-height: 1;
}
.heroFull .heroTitle {
  font-size: 48px;
  line-height: 52px;
  color: #fff;
  margin: 0px;
  margin-bottom: .2rem;
}
.heroFull h4{
  font-size: 34px;
  line-height: 39px;
}
/* full width Video section  */
.scrollimgzoomcontainer {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.videoText{
  position: absolute;
  bottom: 60px;
  right:0;
  padding: 0 60px;
  width: 40%;
  z-index: 1;
}
.videoText h2, .videoText p{
  color: var(--white);
}
.scrollimgzoom {
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.scrollimgzoom video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}


.scrollimgzoom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}



/* Featured Outcomes Counter section  */

.counter-box .number,  .counter h1{
  font-size: 60px;
  line-height: normal;
  font-weight: 500;
  color:var(--black);
}
.block .counter h1{
  font-size: 54px;
  min-height: 75px;
}
.block .counter h1.text{
  font-size: 42px;
   line-height: 42px;
   margin-bottom: 20px;
}
.counter h1 span{
  font-weight: 500;
}
.block .counter{
  padding: 30px;
 
}

.blockBorder{
  border-bottom: 1px solid rgba(255,255,255,0.5);
}



/* Blogs and Insights section with tabs  */


.myPills .nav-link {
  color: rgba(0,0,0,0.5);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  --line-width: 0%;

}

.myPills .nav-link:before {
  content: "";
  display: block;
  background-color: var(--black);
  height: 1.5px;
  margin-bottom: 10px;
  transform-origin: left;
  width: var(--underline-width, 0%); 
}

.myPills .nav-link.active {
  background: transparent;
  color: var(--primary);
}
.myPills .nav-link:hover{
  color:var(--primary);
}
.myPills .nav-link:hover:before{
  background-color: var(--primary);
}

.myPills .nav-link.active:before {
  background: var(--primary);
}


.page-item .page-link {
  background: transparent;
  box-shadow: none;
  color: var(--textColor);
  border: none;
  font-size: 14px;
  padding: 8px 15px;
}
.page-item .page-link.active, .page-item.active .page-link{
  background: var(--primary);
  color: var(--white);
}
.page-item .page-link.prev, .page-item .page-link.next{
  color:var(--primary)
}
.page-item:first-child .page-link, .page-item:last-child .page-link{
  border-radius: 0;
}
.bgBlack .myPills .nav-link{
  color:rgba(255,255,255,0.7);
}
.bgBlack .myPills .nav-link.active{
  color:var(--white)
}
.bgBlack .myPills .nav-link:before{
  background-color: #b3b3b3
}
.bgBlack .myPills .nav-link.active:before{
  background-color: var(--primary);
}
.postBox, .storyBox{
  position: relative;
}
.postImg, .storyImg{
  max-height: 305px;
  overflow: hidden;
}
.postImg.relatedPost{
  max-height: 200px;
}

.postImg img, .storyImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
 .storyImg:hover img{
  transform: scale(1.1) rotate(2deg);
}
.postConent, .storyContent{
  margin-top: 20px;
}
.postTitle, .storyTitle{
  font-size: 24px;
}
.postSec .postTitle{
  font-size: 18px;
}
.postSlider .postBox .postTitle{
  font-size: 20px;
}
.storiesSlider .storyBox .storyTitle{
  font-size: 21px;
  margin-bottom: 15px;
}
.storiesSlider .storyBox p{
  font-size: 16px;
}

.postBox .sep, .articleBox .sep{
  margin: 0 0 20px;
  height: 3px;
  width: 50px;
  background: var(--primary);
}

/* Article section css start */
.articleBox{
  display: flex;
  width: 100%;
  background: var(--black);
  overflow: hidden;
  margin: 0 0 30px;
  min-height: 320px; /* Set minimum height */
  align-items: stretch;
  min-height: 350px;
 
}
.articleBox:last-of-type{
  margin-bottom: 0;
}
.articleImg {
 position: relative;
}
.articleImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
 
}
.articleImg, .articleContent{
  width: 50%;
}
.articleContent{
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding: 40px;

}
/* Article section css End */

/* Collapsible toggle section css start */
.collapseBox{
 padding: 15px 15px 15px 0;
 background: transparent;
   
}
.collapseBox.bg-light{
  color:var(--black);
}
.collapseHeader {
    display: flex;
    justify-content: space-between;
   align-items: center;
}
.collapseBox .collapseTitle{
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.1px;
    margin-bottom: 4px;
    line-height: 1.6;
    width: fit-content;
}

.collapseIcon {
    width: 24px;
    height: 24px;
    position: relative;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.collapseDescription{
      max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: all 0.4s ease;
}

.collapseDescription ul li{
  list-style-type: disc;
}
.collapseBox.active .collapseDescription{
    max-height: 300px; 
    opacity: 1;
    padding-top: 5px;
  }
  .collapseSec .collapseBox.active .collapseDescription{
    max-height: 100%;
  }
/* Collapsible toggle section css end */



/* Tags for articles  */
    ul.tags {
      flex-wrap: wrap;
      margin: 0;
      width: auto;
      display: flex;
      gap: 1rem;
      padding-left: 0;
    }
    ul.tags li{
      display: flex;
    }
    ul.tags li a {
      border: 1px solid #969696;
      padding: .5rem 1rem;
      position: relative;
      white-space: nowrap;
      color: var(--white);
    }
 .footer{

  position: relative;


}


 .footer .footerCol{
    color:var(--white);
  }
  .footer .footerTitle{
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 20px;
    color:var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .footerLinks{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    padding-left: 0;
    gap:5px;

  }
  .serviceCol .footerLinks {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
  
  }

  .serviceCol .footerSubTitle {
    cursor: pointer;
    font-size: 15px;
    color:var(--light);
    margin-bottom: 10px;
    display: flex;
  
    gap: 8px;
  }
    .serviceCol .footerSubTitle > a{
    color:var(--light);
   }
  .toggle-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
  }

  .footerLinks li a{
    color:var(--light);
    transition: color .12s cubic-bezier(.455,.03,.515,.955);
    font-weight: 400;
    line-height: 1;
    font-size: 15px;
  }
  .serviceCol .footerLinks li a{
    font-size: 14px;
  }
  .footerLinks li a:hover, .footerSubTitle:hover{
    color:var(--white);
  }
  .footerBottom {
   border-top:1px solid #2b2b2b;

  }
 
  .footerBottom a,
  .footerBottom p {
    color: var(--light);
    font-size: 16px;
    transition: all 0.5s ease;
  }
  .footerBottom p.copyRight{
    margin-bottom: 0;
  }
  .footerLogo{
    display: flex;
    justify-content: center;
  }

    .footerLogo img {
      max-width: 60px;
    }

 .social {
   display: block;
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .social a {

   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: #54565a;
   border-radius: 50%;
   position: relative;
   transition: 0.5s;
   font-size: 18px;
 }
 
 .social a:hover {
   color: var(--white);

 }


 footer .social a{
   margin-right: 10px;
   width: auto;
   height: auto;
 }
 .twitter-icon img {
   width: 13px;
   display: block;
 }



 footer .address{
   font-size: 13px;
   line-height: 20px;
 }
 
 footer .phone a, footer .email a{
   color:#54565a;
   transition: 0.5s;
 }
 footer .phone a:hover, footer .email a:hover{
   color:var(--secondary);
 }
 
.scrollText {

  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;

}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marqueeText {
  font-size: 120px;
  gap: 2rem;
  color: var(--white);
}


@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.marqueeText:hover {
  color: transparent;
  -webkit-text-stroke: 1px white;
}


/* logo Carousel Section start here */
.logoSlider .swiper-slide{
  border: 1px solid #bdbdbd;

}

.logoSlide{
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 10px;
  height: 140px;

}

.logoSlide img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;


}

.logoSlider .swiper-slide:hover img{
  filter: grayscale(100%) brightness(120%)
}
.logoSlider .swiper-button-next{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
}
.logoSlider .swiper-button-next:after {
  font-size: 20px;
  color: var(--white);
}


/* Contact and get in touch section */

.joinUs{
  position: relative;

}

.joinContent h5{
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 3.5px;
 
  font-family: gilroy-semibold;
  margin-bottom: 15px;

}


.absImg{
  position: absolute;
  right:0;
  bottom:0;
  width: 100%;
  max-width: 500px;
  min-width: 500px;
}
.contactLeft p{
  color:var(--light);
}

/* Get in Touch section start */
.getinToch-content{
  padding-top: 60px;
  margin-bottom: 30px;


}
/* Customer Testimonil Section */
.testimonial-container{
  background: var(--white);
  max-width: 800px;
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:2rem;
  border-radius: 15px;
  padding: 50px 80px;
  margin: auto;
}

.testimonialBlock {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 600;
  height: 100%;
  line-height: 28px;
  margin: 0;
}
.user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.user .user-image {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  object-fit: cover;
}
.user .user-details {
  text-align: center;
}

.user .username {
  margin: 0;
  font-size: 14px;
}

.user .role {
  margin: 0;
  font-size: 12px;
}

.progress-dots {
  display: flex;
  gap: 5px;
}

.btnArrow{
   position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  font-size: 10px;
  cursor: pointer;
  transition: 0.1s ease;
}
.btnArrow:hover {
  background-color: #eee;
}
#btn-prev {
  left: 25px;
}

#btn-next {
  right: 25px;
}

.vDivider{
  width: 3px;
  height: 100%;
  background: var(--white);
  text-align: center;
  margin: 0 auto;
}


@media (min-width: 1360px){
  .imgPaddingLeft{
    padding-left:calc((100vw - 1360px) / 2);
  }

}
 @media (min-width: 1200px){
  

  .lb-nav a.lb-prev{
    top:0;
    left:-120px;
    position: absolute;
    width: 25%;
    height: 100%;
    z-index: 999;
    opacity: 1;
    background: url(../images/Arrow-left.png) left 48% no-repeat;
  
  }
  .lb-nav a.lb-next{
    top:0;
    right:-120px;
    position: absolute;
    width: 25%;
    height: 100%;
    z-index: 999;
    opacity: 1;
    background: url(../images/Arrow-right.png) right 48% no-repeat;
  
  
  }

  }
  

@media(max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
  }

  .topNav {
    opacity: 1;
    padding: 15px;
  }

  .logo img {
    max-width: 120px;
  }

  .mainHeader .sep {
    padding: 30px 0;
  }


  .menuBtn .bars {
    width: 25px;
  }

  .sideBar.show {
    width: 100%;
  }

  header .sectionHeader h1 {
    font-size: 30px;
  }

  .subTitle {
    margin-top: 15px;
  }

  .title {
    font-size: 30px;
  }

  .reveal-title .char {
    transform: none;
  }

  .aboutText h2 {
    font-size: 23px;
    line-height: 30px;
  }


  .footerTop.sectionPadding {
    padding: 60px 30px
  }

  .footerLinks {
    align-items: center;
  }

  .footerBottom {
    text-align: center;
  }

  .footerBottom p.copyRight {
    margin-bottom: 30px;
  }

  .footerCol {
    text-align: center;
    margin-bottom: 30px;
  }

  .serviceCol .footerSubTitle {
    justify-content: center;
  }

  .footerLogo {
    text-align: center;
    align-items: center !important;
  }

  .social {
    display: flex;
    justify-content: center !important;
    margin-top: 30px;

  }

  .custom-cursor {
    display: none;
  }

  .absImg {

    position: static;

  }

  .getinTouch.sectionPadding {
    padding-bottom: 0;
  }

  .navbar {
    background: var(--black);
  }

  .mainMenu {
    width: 100%;
    position: absolute;
    top: 60px;
    background: var(--blackLight);
    left: -100%;
    transition: all 0.5s ease;
    height: 100vh;
    padding-top: 15px;
    overflow-y: auto;
  }

  .mainMenu.show {
    left: 0
  }

  .mainMenu ul {
    flex-direction: column;
    background: var(--blackLight);
  }

  .mainMenu ul>li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mainMenu .dropdown-menu {
    position: static;
    opacity: 1 !important;
    pointer-events: auto;
    height: auto;
    top: auto;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mainMenu .dropdown.show .dropdown-menu {
    display: block;
  }

  .dropdown-submenu>.dropdown-menu {
    padding-top: 20px;
    margin-top: 20px;
  }

  .mega-menu .dropdown-menu {
    height: auto;
    position: static;
    padding-top: 20px;
  }

  .dropdown-menu {
    display: none;
    border: none;
  }

  li.open>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .mainMenu ul>li>a {
    width: fit-content;
  }

  li.nav-item.dropdown,
  li.nav-item.mega-menu {
    display: block;
    padding: 0 15px;
    position: relative;

  }

  .mainMenu ul>li>ul>li {
    border-bottom: none;
  }

  .mainMenu ul>li>ul.dropdown-menu>li>a.dropdown-item {
    padding-top: 0;
    padding-bottom: 0;
    color: var(--white);
  }

  .dropdownToggle {
    background: none;
    border: none;
    padding: 15px 10px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }

  .dropdownToggle i {
    color: var(--white);
  }

  .dropdown>.dropdownToggle,
  .dropdown-submenu>.dropdownToggle {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    color: var(--white);
  }

  .dropdown.open>.dropdownToggle {
    transform: rotate(180deg);
  }


  .dropdown-submenu.open>.dropdownToggle {
    transform: rotate(-90deg);
  }

  .mainMenu ul>li>a>i {
    display: none
  }

  .menuTitle h1 {
    font-size: 30px;
  }

  .mainMenu .mega-menu-content .dropdown-item {
    font-size: 14px;
  }

}
 /* ======= Responsive Css  End ======= */
