/* Imports */
@import url('https://fonts.cdnfonts.com/css/segoe-ui-4');


/* Vars */

:root {

	--yellow: #faa61a;
	--blue: #2879ba;
	--gray: #404040;
	--dark: #373435;
	--segoe: 'Segoe UI', sans-serif;
	--segoe: 'DM Sans', sans-serif;


}

/* Backgrounds */

.bg-1 {
	background-image: url(../images/bg-1.jpg);
}

.bg-strap {
	background-image: url(../images/bg-2.avif);
}

.bg-2 {
	background-image: url(../images/bg-2.jpg);
}

.bg-3 {
	background-image: url(../images/bg-3.jpg);
}

.bg-4 {
	background-image: url(../images/bg-4.jpg);
}

.bg-5 {
	background-image: url(../images/bg-5.jpg);
}

.bg-6 {
	background-image: url(../images/bg-6.jpg);
}


/* Generic styling */

.accordion {
	border-radius: 0;
}

.accordion-item,
.accordion-item .accordion-button {
	border-radius: 0 !important;
	outline: none;
	box-shadow: none;
}

.btn-hover {
	background-color: var(--blue);
}

section:not(#header-section, #header-section-empty) {
	padding: 5rem 4rem;
}

*:not(i) {
	font-family: var(--segoe) !important;
}

a {
	color: #151515;
	text-decoration: none;
	/* font-weight: 600; */
}

p {
	font-size: 19px;
}

.font-seoge {
	font-family: var(--segoe);
}


.bg-perfect {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-parallax {
	background-attachment: fixed;
}

.cta {
	border: none;
	padding: 10px 20px;
	color: #fff;
	font-size: 1.1rem;
	display: inline-block;
	text-transform: uppercase;
	width: auto;
}

.cta>i {
	margin-left: 5px;
	transition: all .3s;
}

.cta:hover>i {
	margin-left: 15px;
}

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

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

.text-yellow {
	color: var(--yellow);
}

.text-blue {
	color: var(--blue);
}


.text-transparent {
	color: transparent;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.overlay-dark {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 0;
}

.ls-1 {
	letter-spacing: 1px
}

.ls-2 {
	letter-spacing: 2px
}

.ls-3 {
	letter-spacing: 3px
}

.ls-4 {
	letter-spacing: 4px
}

.ls-5 {
	letter-spacing: 5px
}

.underline-half-center::before {
	content: '';
	position: absolute;
	border-bottom: 2px solid;
	width: 50%;
	left: 25%;
	bottom: -15px;
}

.heading {
	/*	font-weight: 650;*/
	font-size: 50px;
	margin-bottom: 25px;
	/*	text-transform: uppercase;*/
}

.sub-heading {
	display: block;
	font-size: 22px;
	margin-bottom: 17px;
}

.border-blue {
	border-color: var(--blue) !important;
}

.w-full {
	width: 100%;
}

.alter-icon {
	filter: brightness(0) invert(1);
}

.read-btn {
	display: inline-block;
	font-weight: 600;
	cursor: pointer;
}

@media screen and (max-width: 786px) {

	.heading {
		font-size: 30px;
	}

	section:not(#header-section, #header-section-empty, #home-numbers) {
		padding: 5rem 2rem;
	}

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

}


/* Modals */
.modal-content {
	border-radius: 0;
}


/* Specifc styling */

#header-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

#header-section-empty {
	height: 118px;
}

@media screen and (max-width: 1024px) {

	#header-section-empty {
		display: none;
	}

	#header-section {
		background-size: cover !important;
		min-height: 50vh;
	}

}


/* Header */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 99;
	border-bottom: 2px solid var(--blue);
	transition: all 1s;
}

header.drop {
	background-color: #fff;
	border-bottom: none;
}

nav {
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	gap: 20px;
}

nav>div>a {
	display: inline-block;
	position: relative;
	color: #151515;
	text-decoration: none;
	/* font-weight: 600; */
}


nav>div>a:before {
	content: '';
	position: absolute;
	opacity: 0;
	width: 100%;
	bottom: -2.5px;
	left: 0%;
	border-bottom: 3px solid var(--blue);
	transition: all .3s;
}

nav a:not(:last-child):hover:before {
	opacity: 1;
	bottom: -10px;
}

div.nav-btn {
	display: none;
}

nav div .mega-menu {
	visibility: hidden;
	max-height: 0vh;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	top: 86%;
	background-color: #fff;
	margin-top: 1rem;
	/*    border-top: 1px solid;*/
	border-bottom: 2px solid var(--blue);
	transition: max-height 1s, visibility 1s;
	z-index: 3;
}

nav div .mega-menu.active {
	visibility: visible;
	max-height: 60vh;
	z-index: 6;
}

nav div .mega-menu>.row {
	padding: 4em;
}

nav div .mega-menu a {
	position: relative;
	font-size: 20px;
	padding: 10px 20px;
	transition: .2s all;
	border-radius: 5px;
}

nav div .mega-menu a:hover {
	background-color: var(--blue);
	color: #fff;
}

nav div .mega-menu .sub-menu {
	margin-top: 20px;
	margin-left: 25px;
}



nav div .mega-menu .sub-menu>li {
	margin: 10px 0;
}

nav div .mega-menu .sub-menu>li a {
	transition: .3s all;
	font-size: 17px;
	padding: 0px;
	transition: none;
}

nav div .mega-menu .sub-menu>li:hover>a {
	background-color: #fff;
	color: var(--blue);
}


@media screen and (max-width: 1024px) {

	header {
		border-bottom: 2px solid var(--blue);
		background-color: #fff;
	}

	section.header-section {
		min-height: 50vh;
	}

	nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0%;
		background: #fff;
		padding: 20px 30px;
		width: 100% !important;
		border: 2px solid var(--blue);
		max-height: 70vh;
		/* overflow-y: scroll; */
	}

	nav.active {
		display: block !important;
	}

	nav a {
		position: relative;
		display: block;
		padding: 10px;
		font-size: 18px;
	}

	nav div .mega-menu>.row {
		padding: .5em;
	}


	nav>div>a>i {
		vertical-align: text-top;
	}

	nav a:before {
		display: none;
	}

	nav a:last-child {
		margin-top: 10px;
	}

	div.nav-btn {
		display: flex;
		justify-content: end;
		align-items: center;
	}

	div.nav-btn>button {
		font-size: 20px;
	}

	nav div .mega-menu {
		display: none;
		position: static;
		width: 100%;
		background-color: #f3f3f3;
		padding: 0.5em 2rem;
		margin-top: 0;
	}

	nav div .mega-menu.active {
		display: block;
		visibility: visible;
		max-height: 60vh;
		z-index: 6;
	}

	nav div .mega-menu a {
		padding: 10px;
		font-size: 18px;
	}

	nav div .mega-menu a:last-child {
		margin-top: 0;
	}

}

@media screen and (min-width: 1025px) {
	nav>div>a {
		font-size: 13px;
	}
}

@media screen and (min-width: 1150px) {
	nav>div>a {
		font-size: 16px;
	}
}


/* Footer */

footer {
	border-top: 2px solid var(--blue);
}

footer ul.ft-nav {
	padding-left: 0;
	margin-left: 1.6rem;
}

footer ul.ft-nav li {
	padding: 7px 0;
}

footer ul.ft-nav i {
	color: var(--blue);
}

footer ul.ft-nav a {
	transition: all .3s;
}

footer ul.ft-nav a:hover {
	margin-left: 7.5px;
}

footer #footer-foot {
	background-color: #414042;
	padding: 10px;
	line-height: 3;
}

footer #footer-foot img.logo {
	width: 40%;
}

/* Home Page Slider */

.swiper {
	width: 100%;
	height: 100vh;
}

.swiper-pagination-bullet {
	background: #fff;
	opacity: 1
}

.swiper-button-prev,
.swiper-button-next {
	color: #fff;
}

.fa-ul {
list-style-type: unset !important;
    margin-left: var(--fa-li-margin, 2.5em);
    padding-left: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--blue);
}

.swiper-slide {
	width: 100%;
	height: 100%;
}

.swiper-slide .slide-content {
	position: absolute;
	top: 40%;
	left: 5rem;
	color: #fff;
	overflow: hidden;
}

.slide-content>h2 {
	font-size: 36px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--yellow);
}

.slide-content>p {
	font-size: 20px;
	margin-bottom: 30px;
}

.swiper-pagination-bullet {
	border-radius: 0 !important;
}

@media screen and (max-width: 1024px) {

	.swiper {
		height: 65vh;
	}

	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}

	.swiper-slide .slide-content {
		top: 30%;
		width: 80%;
		left: 5%;
	}

	.slide-content br {
		display: none;
	}

	.slide-content>h2 {
		font-size: 25px;
	}

	.slide-content>p {
		font-size: 17px;
		margin-bottom: 30px;
		display: none;
	}
}

/* Home Page */

#home-numbers img {
	width: 40%;
}

#home-portfolio {
	padding: 150px 60px !important;
}

#home-section-one {
	background-color: #ebedee;
}


#service-grid>a>div:not(.overlay, .bg-perfect) {
	padding: 50% 20px 0;
}

#service-grid>a>div.bg-perfect {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	left: 0;
	top: 0;
	transition: .3s all;
}

#service-grid>a:hover>div.bg-perfect {
	transform: scale(1.1);
}

#service-grid>a:hover>div.overlay {
	background-color: #2879ba87 !important;
	color: blue;
}

#home-section-two {
	background-color: var(--bs-dark);
}

#home-section-two .icon-list .row img {
	width: 70%;
}

#recent-project .card img {
	width: 100%;
	height: 30vh;
	object-fit: cover;
}

#recent-project .card .cta {
	font-size: 14px;
}

#service-grid>a {
	overflow: hidden;
}

#partners-carousel .owl-theme .owl-dots .owl-dot span {
	border-radius: 0 !important;
}

@media screen and (max-width: 756px) {

	#home-portfolio {
		padding: 3rem 2rem !important;
	}

	#home-section-two .icon-list .col-md-3 img {
		width: 40%;
	}

	#home-section-two .icon-list .col-md-3 {
		margin-bottom: 10px;
	}

}


/* About Page */

/*section[page="about"]#header-section */

section[page="about"]#header-section {
	transition: all .3s;
	background-size: 100%;
}

section#header-section:hover {
	background-size: 115%;
}

section[page="about"]#header-section .content-box {
	position: absolute;
	width: 40%;
	height: auto;
	top: 25%;
	left: 5%;
	color: #fff;

}

section[page="about"]#header-section .shape-left-triangle {
	position: absolute;
	top: 0;
	height: 100%;
	width: 52%;
	right: 0;
}

section[page="about"]#header-section .shape-left-triangle img {
	position: absolute;
	bottom: 0;
	width: 70%;
	right: 0;
}

#mission-statement {
	background-color: var(--gray);
}

section#team .member-thumbnail {
	margin: 0 auto 10px;
	width: 70%;
	border-radius: 50%;
	overflow: hidden;
}

#award-carousel .owl-nav button span {
	font-size: 40px;
	padding: 5px 10px;
	line-height: 0.5;
	box-sizing: border-box;
	display: inline-block;
	height: auto;
}

#award-carousel .owl-nav button {
	position: absolute;
	top: 35%;
}

#award-carousel .owl-nav button.owl-prev {
	left: -5%
}

#award-carousel .owl-nav button.owl-next {
	right: -5%
}


/* Contact Page */

section[page="contact"]#header-section {
	background-size: 100%;
	transition: all .3s;
}

section[page="contact"]#header-section:hover {
	background-size: 120%;
}

section[page="contact"]#header-section .content-box {
	position: absolute;
	top: 40%;
	left: 5%;
}

/* Service Pages */

section#serivce-section-one .sub-section-3>div:first-child {
	border-top: 2px solid var(--blue);
}

section#serivce-section-one .sub-section-3>div {
	border-bottom: 2px solid var(--blue);
}

section#serivce-section-one .sub-section-3>div:hover>div:last-child {
	background-color: var(--blue);
	color: #fff;
}

section#serivce-section-one .sub-section-3>div:hover>div:last-child i {
	color: #fff;
}

section#service-icon-section .icon-list>div {
	padding: 2rem;
}

#service-icon-section .icon-list img {
	width: 90%;
}

section#other-services .thumbnail {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 350px;
	width: 100%;
}

section#other-services .service-list {
	gap: 4rem 3.5rem;
}

@media screen and (max-width: 756px) {
	#service-icon-section .icon-list img {
		width: 40%;
	}
}

/* Blog Page */

#recent-blogs ul>li>a:hover {
	text-decoration: underline;
}

#blog-category>a {
	border: 2px solid var(--blue);
	padding: 5px;
	transition: .3s all;
	font-size: 15px;
}

#blog-category>a:hover {
	background-color: var(--blue);
	color: #fff;
}

.blog-card .date-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--blue);
	color: #fff;
	padding: 2.5px 7.5px;
	font-size: 15px;
	border-radius: 99px;
}

/* Video Page */

#videos-listing .card .overlay-dark {
	transform: translateY(-100%);
	transition: .3s all;
}

#videos-listing .card:hover .overlay-dark {
	transform: translateY(0);
}

/* Events Page */

#events .event-card .col-md-6 {
	min-height: 250px;
}

#events .event-card .date-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--blue);
	color: #fff;
	padding: 2.5px 7.5px;
	font-size: 15px;
	border-radius: 99px;
}

/* Event Detail Page */

#event-gallery {
	background-color: #000;
	text-align: center;
}

#event-gallery>img {
	width: 49%;
	margin: 3px 1px;
	height: 300px;
	object-fit: cover;
}


/* Carrers */

#review-carousel .owl-nav button span {
	font-size: 40px;
	padding: 5px 10px;
	line-height: 0.5;
	box-sizing: border-box;
	display: inline-block;
	height: auto;
}

#review-carousel .owl-nav button {
	position: absolute;
	top: 35%;
}

#review-carousel .owl-nav button.owl-prev {
	left: -5%
}

#review-carousel .owl-nav button.owl-next {
	right: -5%
}

#review-carousel .slide>div:first-child>img {
	border-radius: 50%;
	border: 1px solid var(--blue);
	width: 90%;
	overflow: hidden;
	margin: 0 auto;
}

#carrers-perks .icon-list img {
	width: 30%;
	filter: invert(100%);
}

/* Solutions */

/*#solution-plus-section {

}*/

#solution-plus-section .icon-list img {
	width: 20%;
}

@media screen and (max-width: 756px) {

	#solution-plus-section .icon-list>div {
		border-left: none !important;
		border-right: none !important;
	}

}



.service-card {
	margin: 1em;
	transition: position 0.5s ease-out allow-discrete;
	padding-top: 5px;
	background-image: linear-gradient(to right, #00c6ff 0%, #0072ff 51%, #00c6ff 100%);
}

.service-card-bg {
	background-color: var(--bs-black);
	background-image: url(../images/service-hover-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	padding: 2em;
}

.service-card-img {
	height: 75px;
}

.service-card-img img {
	height: inherit;
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2%) hue-rotate(224deg) brightness(107%) contrast(100%);
}

.service-card-heading {
	padding: 1em 0 0 0;
	color: var(--blue);
}

.service-card-content {
	color: #fff;
	padding: 1em 0;
}

.service-card:hover {
	position: relative;
	top: -30px;
	left: -30px;
}

.service-card:hover .service-card-bg {
	background-image: unset;
}

.bg-i {
	background-image: url(../images/bg-i.jpg);
	background-size: cover;
}


.imsec {
	position: relative;
}

.comments-area a,
.page-content a {
	text-decoration: underline;
	color: #fef200;
}

.imgoverlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.5s ease-in-out;
	background: rgb(0, 0, 0);
	background: linear-gradient(357deg, rgba(0, 0, 0, 0.5383403361344538) 0%, rgba(0, 0, 0, 0) 100%);
}

.inertext {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	color: white;
}

.number {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.imsec:hover .imgoverlay {
	background: linear-gradient(to bottom, #133157, #13315757) !important;
	opacity: 0.8;
}

.imsec:hover .number {
	opacity: 1
}

.slider-item {
	padding: 0px 20px;
}

.slider-slide {
	position: relative;
	height: 100vh !important;
}

.slide-content {
	color: #fff;
	padding: 5em;
}

.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev {
	left: 45px !important;
}

.slick-next {
	right: 45px !important;
}

.slick-prev::before,
.slick-next::before {
	font-size: 30px !important;
}

.overlay {
	padding: 3em;
	align-content: center;
}

.slick-dots {
	bottom: 30px !important;
}

.slick-dotted.slick-slider {
	margin-bottom: unset !important;
}

.home-slider-video {
	position: relative;
	width: 100%;
	height: 100vh !important;
	overflow: hidden;
	
}

.home-slider-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.home-slider {
	position: relative;
	z-index: 1;
}

.cta {
	border-radius: 50px;
}

.services {
	border-radius: 3.375em 0px 3.375em 0px;
	padding: 1.5rem 1rem 1rem 1rem;
	margin: 1rem 0 1rem 0;
	align-items: center;
}

.heading {
	font-size: 40px;
}

p {
	font-size: 19px;
}
li {
    font-size: 17px;
}

.number-card {
	top: -9.5em;
	position: relative;
	border-radius: 30px;
	background-color: #fff;
	color: #fff;
}

.number-card-video-div {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	padding: 3em;
}

.number-card-video-content-div {
	position: relative;
	z-index: 1;
}

.number-card-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.icon-container-div {
	border-right: 1px solid #d7d7d78f;
	padding-right: 20px;
}

.icon-container {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	background-color: #f0f0f0;
	border-radius: 50%;
	overflow: hidden;
}

.icon-container img {
	width: 60% !important;
	position: relative;
	top: 20px;
}

.number-card-number {
	color: #E2E2E275;
	padding: 0.5rem 0 0.5rem 0;
	font-family: "Questrial", Sans-serif !important;
	font-size: 90px;
	font-weight: 500;
	position: relative;
	top: 15px;
}

.number-card-text {
	position: relative;
	top: -4.6rem;
	color: var(--white);
	font-size: 27px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Questrial', Sans-serif !important;
}

.service-card {
	height: 100%;
}

.service-card-bg {
	height: 100%;
}


.btn-grad {
	background-image: linear-gradient(to right, #24C6DC 0%, #514A9D 51%, #24C6DC 100%)
}

.btn-grad {
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;
	border-radius: 60px;
}

.btn-grad:hover {
	background-position: right center;
	color: #fff;
	text-decoration: none;
}

.heading {
	font-family: 'Barlow', sans-serif !important;
}

.premier-banner {
	background: url(../images/bg-transformer-edit.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.solution-banner {
	background: url(../images/new/15686684_31Z_0712.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	/* background-attachment: fixed; */
}

.breadcrumb-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.breadcrumb-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 400px;
	
}

.icon-list-items {
	border: 1px solid #59636d;
	border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.35) 3px 3px 6px 0px inset, rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset;
	padding: 1.5em 1em 1em 1em;
	height: 100%;
}

.icon-list-items:hover {
	background-color: #ffffff12;
}

.inner-page-header {
	padding: unset !important;
	background-image: url(../images/new/abt-control-info-bredcum-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}

.inner-page-section-left {
	background-image: url(../images/new/bg-cont-left.png);
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
}

.inner-page-section-right {
	background-image: url(../images/new/bg-cont-right.png);
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
}

.solution-slider {
	background-image: url(../images/new/bg-solution-slider.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.solution-listing {
	background-image: url(../images/bg-list-sec.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding: unset !important;
}

.solution-listing-div {
	background: #0006;
	padding: 5rem 4rem;
}

.br-40 {
	border-radius: 0 40px 0 40px;
}

.solution-section-two {
	background-image: url(../images/new/bg-service.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #fff;
}

.solution-section-two-div {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 2em;
}

.solution-section-two-div1 {
	border-radius: 2em 0 0 2em;
	background-color: var(--blue);
	color: #fff;
	padding: 1.5rem;
}

.solution-section-two-div2 {
	background-color: #2879ba2e;
	padding: 1.5rem;
}

.solution-section-two-div3 {
	padding: 1.5rem;
}

.solutions-banner {
	background-color: #024FA0;
	padding: 5rem 4rem;
	opacity: 0.83;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.solutions-banner-bg {
	background-image: url(../images/new/quality-pol-img-2.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.solution-listing img {
	width: 75% !important;
}

.p-10 {
	padding-bottom: 10em;
}

@media (max-width: 767px) {
	.solution-section-two-div1 {
		border-radius: 2em 2em 0 0;
	}

	.solution-listing img {
		width: 25% !important;
	}

	.solutions-banner {
		padding: 4rem 2rem;
	}
}

@media (max-width: 600px) {
	.solution-listing img {
		width: 75% !important;
	}
}

.dropdown-menu {
	padding: 15px 20px;
	border-bottom: 2px solid var(--blue);
	transition: max-height 1s, visibility 1s;
	border-radius: 0px;
	width: max-content;
}

.dropdown-menu a {
	position: relative;
	padding: 10px 20px;
	transition: .2s all;
	border-radius: 5px;
}

.dropdown-menu li {
	padding: 5px 0;
}

.dropdown-menu .list-item-img {
	padding: 0 10px 0 10px;
	align-content: center !important;
	border-right: 2px solid var(--blue);
	text-align: center;
}

.dropdown-menu img {
	width: 45px;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
	display: none;
}

.dropdown-menu .list-item:hover,
ul>.list-item:hover {
	box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	padding: 10px 0;
}

.dropdown-menu .list-item:hover>.list-item-img,
ul>.list-item:hover>.list-item-img {
	border-right: 2px solid var(--bs-black);
}

.dropdown-menu .list-item:hover>a,
ul>.list-item:hover>a {
	color: var(--blue);
}

.dropdown-menu .list-item:hover>.list-item-img>img,
ul>.list-item:hover>.list-item-img>img {
	filter: invert(100%) sepia(22%) saturate(0%) hue-rotate(78deg) brightness(115%) contrast(100%);
	filter: invert(22%) sepia(25%) saturate(35%) hue-rotate(314deg) brightness(94%) contrast(88%);
}

.dropdown-toggle::after {
	content: unset;
}

.nav-item {
	padding: 5px 4px;
	text-transform: uppercase;
}

.nav-link {
	color: #000;
}

.nav-link:hover {
	color: var(--blue);
}

#mobile-menu {
	display: none;
}

@media screen and (max-width: 1024px) {
	#desktop-menu {
		display: none;
	}

	#mobile-menu {
		display: block;
	}

	.home-slider-video {
		height: 50vh !important;
	}

	.slider-slide {
		height: 50vh !important;
	}

	.slide-content {
		padding: 3em;
	}

	.number-card-video-content-div .heading {
		font-size: 35px;
	}
}

@media (min-width: 992px) {
	.dropdown:hover>.dropdown-menu {
		display: block;
	}

	.dropdown-submenu:hover>.dropdown-menu {
		display: block;
	}

}

@media (max-width: 992px) {

	.icon-container-div {
		border-right: unset;
	}

}


@media (min-width: 1600px) {
	.col-xxxl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xxxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

.contact-icon-container {
	background: var(--blue);
	align-items: center;
	display: flex;
	justify-content: center;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}