/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

* {
	font-family: 'DM Sans', sans-serif !important;
  }


  .loader__container {
	--dot-size: 15px;
	--bs-white-rgb: 255, 255, 255;
	position: fixed;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(1rem);
	z-index: 999999;
	display: flex;
	place-items: center;
	place-content: center;
	gap: calc(var(--dot-size) / 4);
}

.loader__dot {
   width: var(--dot-size);
   height: var(--dot-size);
   aspect-ratio: 1 / 1;
   border-radius: calc(var(--dot-size) / 2);
   background-color: var(--bs-primary);
   animation: slide 1.5s infinite;
}

.loader__dot:nth-child(1) {
   animation-delay: 0.1s;
   background: #00A1E9;
}

.loader__dot:nth-child(2) {
   animation-delay: 0.2s;
   background: #000000;
}

.loader__dot:nth-child(3) {
   animation-delay: 0.3s;
   background: #00A1E9;
}

.loader__dot:nth-child(4) {
   animation-delay: 0.4s;
   background: #000000;
}

.loader__dot:nth-child(5) {
   animation-delay: 0.5s;
   background: #00A1E9;
}

@keyframes slide {
   0% {
	   scale: 1;
   }
   50% {
	   scale: 2;
	   opacity: 0.3;
   }
   100% {
	   scale: 1;
   }
}

/* Hide the loader after 5 seconds */
.hidden {
   display: none;
}

  .submenu-colr{
	color: #00A1E9 !important;
}  

@media (min-width: 320px) and (max-width: 480px) {
.img-hed {
		width: 50% !important;
		height: 35% !important;
	}
  }

  .is-expanded-menu #header.full-header.transparent-header #header-wrap {
    border-bottom: transparent !important;
}

.is-expanded-menu .full-header #logo {
    padding-right: 30px;
    border-right: transparent;
}

.is-expanded-menu .full-header .primary-menu .menu-container {
    padding-right: 0.5rem;
    margin-right: 0.5rem;
    border-right: transparent;
}
.h-bg-light:hover {
	background:linear-gradient(90deg, rgba(71,71,71,1) 0%, rgba(34,34,34,1) 41%) !important;
}
.img-hed{
	width: 25% !important;
    height: 35% !important;
}


  .fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free" !important;
}

.bg-blackgradient{
	background: linear-gradient(90deg, rgba(71,71,71,1) 0%, rgba(34,34,34,1) 41%);
}

.gradient-ocean{
	background: linear-gradient(90deg, rgba(96,187,238,1) 0%, rgba(10,114,173,1) 100%) !important;
}

.highlightblue{
	color: #2387C0;
}

.text-space {
    letter-spacing: 2px; /* Adjust as needed */
  }

  .heading-section {
	text-align: center;
	position: relative;
}
.heading-section::before,
.heading-section::after {
	content: "";
	display: block;
	width: 100px; /* Adjust the width of the lines */
	height: 3px;  /* Adjust the height of the lines */
	background-color: #00a2ff; /* Customize the color */
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
}
.heading-section::before {
	left: -151px;
	margin-left: calc(50% - 325px); /* Adjust this value to position the line */
}
.heading-section::after {
	right: -151px;
	margin-right: calc(50% - 325px); /* Adjust this value to position the line */
}

.download-b{
	padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.owl-carousel .owl-dots .owl-dot{
	background-color: #000000 !important;
}

.bg-section-one{
	background-color: #E8EEF1 !important;
}

.bg-section-two{
	background-color: #F4FCFF !important;
}


.text-seo-font{
	font-size: calc(0.8vw + 0.7vh) !important;
}

.text-seo-heading{
	font-size: calc(1vw + 1vh) !important;
	line-height: 1.2 !important;
}




.heading-color{
	background-color: #ffffff;
	background-image: linear-gradient(135deg, #004580 20%, #00A1E9 80%);
	background-size: 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border: 1px solid transparent;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 1rem;
}



.iconlist li{
	flex-wrap: nowrap !important;
}
.parallax {
	--cnvs-parallax-ratio: 2;
	--cnvs-parallax-width: 100%;
	--cnvs-parallax-height: calc(1px * (var(--cnvs-scroll-height) + ((var(--cnvs-parallax-ratio) * 100))));
	--cnvs-parallax-factor: -1px;
	--cnvs-parallax-value: calc(var(--cnvs-parallax-factor) * var(--cnvs-parallax-ratio) * var(--cnvs-scroll-percent));
	overflow: hidden;
	will-change: transform;
	position: relative;
  }
  .parallax-bg {
	position: absolute !important;
	z-index: -1;
	left: 0;
	top: 0;
	max-width: none !important;
	width: var(--cnvs-parallax-width) !important;
	height: var(--cnvs-parallax-height) !important;
	-o-object-fit: cover;
	   object-fit: cover;
	transform: translate3d(0px, var(--cnvs-parallax-value), 0px);
	transition: transform 0.1s linear;
	will-change: transform;
  }
  .parallax[data-parallax-to=bottom] {
	--cnvs-parallax-factor: 1px;
  }
  .parallax[data-parallax-to=bottom] .parallax-bg {
	top: auto;
	bottom: 0;
  }
  .parallax[data-parallax-direction=horizontal] {
	--cnvs-parallax-width: calc(1px * (var(--cnvs-scroll-width) + ((var(--cnvs-parallax-ratio) * 100))));
	--cnvs-parallax-height: 100%;
  }
  .parallax[data-parallax-direction=horizontal] .parallax-bg {
	transform: translate3d(var(--cnvs-parallax-value), 0px, 0px);
  }
  .parallax[data-parallax-direction=horizontal][data-parallax-to=right] {
	--cnvs-parallax-factor: 1px;
  }
  .parallax[data-parallax-direction=horizontal][data-parallax-to=right] .parallax-bg {
	left: auto;
	right: 0;
  }
  
  .mobile-parallax,
  .video-placeholder {
	background-size: cover !important;
	background-attachment: scroll !important;
	background-position: center center !important;
  }