/* default css */
:root {
	--thm-color: #0E59F2;
	--black-color: #1C1C25;
	--bg-color: #eff1f5;
	--body-color: #7B7E86;
	--white-color: #ffffff;
	--border-color: #E3E8F4;
	--footer-bg-color: #071A3E;
	--copyright-bg: #0B2048;
	--font-color: #8A99B4;
	--footer-bd-color: #152B54;
	--box-shedow: 0px 9px 75px rgba(8, 20, 44, 0.09);
	--grey-color: #7B7E86;
}

@font-face {
	font-family: 'Outfit';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Outfit-VariableFont_wght.ttf) format('truetype');
}

html {
	scroll-behavior: smooth;
}

::selection {
	background-color: var(--thm-color);
	color: white;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--white-color);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--footer-bg-color);
}

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: 'Outfit', sans-serif;
}

a {
	text-decoration: none !important;
}

.form-control:focus {
	box-shadow: none !important;
}

.btn:focus {
	box-shadow: none !important;
}

input:focus {
	border: none;
	outline: none;
}

input:focus::placeholder {
	color: transparent;
}

#btn-back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background-color: var(--thm-color);
	color: var(--white-color);
	z-index: 2;
}

#overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 1500;
}

#overlay.active {
	opacity: 1;
	visibility: visible;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../logo/spinner.svg') 50% 50% no-repeat rgba(249, 249, 249, 0.6);
	background-size: 10rem;
	z-index: 9999;
	opacity: 1;
	transition: opacity 1s ease-in-out;
}

#loader.fadeOut {
	opacity: 0;
	pointer-events: none;
}

.text-justify {
	text-align: justify;
}

/* header */
/* top-header */
.homePage {
	position: relative;
}

.homePage header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.homePage header #navbar.sticky {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--white-color);
	width: 100%;
	transition: .7s all ease;
	-webkit-transition: .7s all ease;
	-moz-transition: .7s all ease;
	-ms-transition: .7s all ease;
	-o-transition: .7s all ease;
	animation: slideDown 1s forwards;
	-webkit-animation: slideDown 1s forwards;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
	from {
		transform: translateY(-20vh);
		-webkit-transform: translateY(-20vh);
		-moz-transform: translateY(-20vh);
		-ms-transform: translateY(-20vh);
		-o-transform: translateY(-20vh);
	}

	to {
		transform: translateY(0vh);
		-webkit-transform: translateY(0vh);
		-moz-transform: translateY(0vh);
		-ms-transform: translateY(0vh);
		-o-transform: translateY(0vh);
	}
}

.homePage header #navbar.sticky .top-header,
.homePage header #navbar.sticky a {
	color: var(--black-color) !important;
}

.homePage header #navbar.sticky .nav-burger .burger-line-2 {
	width: 1.5rem;
	height: 2px;
	float: right;
	margin-top: 7px;
	background-color: var(--black-color);
}

.homePage header #navbar.sticky .nav-burger .burger-line-1 {
	width: 2rem;
	height: 2px;
	background-color: var(--black-color);
}

/* .homePage header.sticky hr {
	border: 1px solid var(--black-color);
} */

.homePage header hr {
	border-top: 1px solid var(--white-color) !important;
}

.homePage header .top-header,
.homePage header a {
	color: var(--white-color) !important;
}

.homePage header nav .nav-burger .burger-line-2 {
	width: 1.5rem;
	height: 2px;
	float: right;
	margin-top: 7px;
	background-color: var(--white-color);
}

.homePage header nav .nav-burger .burger-line-1 {
	width: 2rem;
	height: 2px;
	background-color: var(--white-color);
}

header .top-header .th-links a {
	color: var(--black-color);
}

/* navbar */
header nav .navlinks a {
	color: var(--black-color);
	box-shadow: var(--box-shedow);
}

header nav .nav-burger {
	display: none;
	cursor: pointer;
}

header nav .nav-burger .burger-line-1 {
	width: 2rem;
	height: 2px;
	background-color: black;
}

header nav .navlinks a::after {
	content: "";
	display: block;
	width: 0%;
	height: 2px;
	background-color: var(--thm-color);
	border-radius: 2px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	transition: .6s all ease;
}

header nav .navlinks a:hover {
	color: var(--thm-color);
}

header nav .navlinks a.active {
	color: var(--thm-color) !important;
}

header nav .navlinks a.active::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--thm-color);
	border-radius: 2px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	transition: .6s all ease;
}

header nav .navlinks a:hover::after {
	width: 100%;

}

header nav .nav-burger .burger-line-2 {
	width: 1.5rem;
	height: 2px;
	float: right;
	margin-top: 7px;
	background-color: black;
}

#main-header-menu {
	position: fixed;
	background: var(--white-color) !important;
	height: 100%;
	width: 15rem !important;
	top: 0;
	left: -25rem;
	z-index: 1700;
	text-align: left;
	justify-content: space-between;
	transition: 1s;
}

#main-header-menu .head {
	position: relative;
}

#main-header-menu .head i {
	position: absolute;
	background-color: var(--white-color);
	height: 2rem;
	width: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	right: -1rem;
	top: 40%;
	box-shadow: var(--box-shedow);
}

#main-header-menu ul {
	padding: 20px;
}

#main-header-menu ul li {
	padding: 10px 0px;
	border-bottom: 1px solid var(--border-color);
}

#main-header-menu ul li a {
	color: var(--black-color);
}

#main-header-menu ul li:hover {
	border-bottom: 1px solid var(--thm-color);
}

#main-header-menu ul li:hover a {
	color: var(--thm-color);
}

#main-header-menu .info {
	position: absolute;
	width: 100%;
	bottom: 0px;
	padding: 20px 0px;
}

#main-header-menu .info .mail,
#main-header-menu .info .call {
	text-align: center;
	justify-content: center;
	font-size: 0.9rem;
}

#main-header-menu .info .mail a,
#main-header-menu .info .call a {
	color: var(--black-color);
}

/* hero section */
.hero-section {
	position: relative;
	height: auto;
	padding: 12rem 0rem 5rem 0rem;
	overflow: hidden;
}

.hero-section video {
	width: 100%;
	object-fit: cover;
	position: absolute;
	height: 55rem;
	top: 0;
	left: 0;
	z-index: -1;
}

.hero-section .hero-content {
	position: relative;
	z-index: 1;
}

.hero-section .hero-content .container {
	position: relative;
	z-index: 4;
}

.hero-section .row .col-sm-12 {
	position: relative;
}

/* .hero-section .hero-content::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 90%;
	height: 100%;
	border: 1px solid var(--thm-color);
	border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
	will-change: border-radius, transform, opacity;
	animation: sliderShape 5s linear infinite;
	display: block;
	z-index: 1;
	-webkit-animation: sliderShape 5s linear infinite;
}

.hero-section .hero-content::after {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	width: 90%;
	height: 100%;
	border: 1px solid grey;
	border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
	will-change: border-radius, transform, opacity;
	animation: sliderShape2 5s linear infinite;
	display: block;
	z-index: 1;
	-webkit-animation: sliderShape2 5s linear infinite;
} */

.hero-section h6 {
	position: relative;
	align-items: center;
}

.hero-section h6::before {
	content: "";
	height: 8px;
	width: 8px;
	background: var(--thm-color);
	display: inline-block;
	margin-right: 1rem;
	border-radius: 2px;
	box-shadow: 0px 3px 11px rgba(14, 89, 242, 0.4)
}

.hero-section .sm-title {
	color: var(--white-color);
}

.hero-section h1 {
	font-size: 4rem;
	margin-top: 1rem;
	color: var(--white-color);
	font-weight: 800;
}

.hero-section h1 span {
	color: var(--thm-color);
	font-weight: 600;
}

.play-btn {
	width: 55px;
	height: 55px;
	border: none;
	background: var(--thm-color);
	border-radius: 50%;
	position: relative;
	display: flex;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	margin-left: 15px;
}

.play-btn::before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	animation-delay: 0s;
	animation: pulsate1 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	border-radius: 50%;
	border: 1px solid var(--thm-color);
}

@keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 1;
		box-shadow: inset 0px 0px 25px 3px #105AF2;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		box-shadow: none;
	}
}

.hero-img {
	position: relative;
}

.hero-img::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 90%;
	height: 100%;
	border: 1px solid var(--thm-color);
	border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
	will-change: border-radius, transform, opacity;
	animation: sliderShape 5s linear infinite;
	display: block;
	z-index: 1;
	-webkit-animation: sliderShape 5s linear infinite;
}

@keyframes sliderShape {

	0%,
	100% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	34% {
		border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
		transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
	}

	50% {
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	67% {
		border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
		transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
	}
}

.hero-img::after {
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	width: 90%;
	height: 100%;
	border: 1px solid grey;
	border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
	will-change: border-radius, transform, opacity;
	animation: sliderShape2 5s linear infinite;
	display: block;
	z-index: 1;
	-webkit-animation: sliderShape2 5s linear infinite;
}

@keyframes sliderShape2 {

	0%,
	100% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	34% {
		border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
		transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
	}

	50% {
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	67% {
		border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
		transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
	}
}

.hero-img img {
	clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
	height: 25rem;
	object-fit: cover;
}

/* inform */
.inform {
	padding: 3rem 0rem;
	/* background-color: var(--black-color); */
	background: rgb(0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(28, 28, 37, 1) 50%);
	color: var(--white-color);
}

.inform .heading {
	text-align: center;
	margin: auto;
	color: var(--white-color)
}


/* our services section */
.our-Services {
	padding: 5rem 0rem 5rem 0rem;
	/* background-color: ; */
	position: relative;
}

.sr-overlay {
	background-color: rgba(28, 28, 37, 0.9);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}


.our-Services .heading {
	margin: auto;
	text-align: center;
	color: var(--white-color);
	position: relative;
	z-index: 2;
	margin-bottom: 3rem;
	/* background-color: #10181f; */

}

.our-Services>.content {
	/* background-color: #10181f; */
	position: relative;
	z-index: 2;
}

.our-Services .content .sr-card .content {
	background-color: transparent;
}

.our-Services .content .sr-card {
	/* border-radius: 1rem; */
	background-color: transparent !important;
	background-size: 100% 100% !important;
	color: var(--white-color);
}

.our-Services .content .sr-card:hover {
	box-shadow: var(--box-shedow);
}

.our-Services .content .sr-card .title {
	min-height: 4rem;
}

.our-Services .content .sr-card:hover .title {
	color: var(--thm-color);
}

.our-Services .content .sr-card .head svg {
	margin-bottom: 40px;
	height: 75px;
	width: 75px;
	padding: 1rem;
	border-radius: 10px;
	color: var(--thm-color);
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	display: inline-flex;
	background: rgba(14, 89, 242, 0.1);
	justify-content: center;
	align-items: center;
}

.our-Services .content .sr-card .head img {
	margin-bottom: 40px;
	height: 75px;
	width: 75px;
	padding: 1rem;
	border-radius: 10px;
	color: var(--thm-color);
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	display: inline-flex;
	background: rgba(14, 89, 242, 0.1);
	justify-content: center;
	align-items: center;
}

.our-Services .content .sr-card .content {
	min-height: 16rem;
}


.our-Services .content .sr-card i {
	color: var(--white-color);
	font-size: 20px;
	transition: transform 0.5s;
}

.our-Services .content .sr-card:hover i {
	color: var(--thm-color);
	transform: rotate(325deg);
}

/* welcome section*/
.welcome .heading h6 {
	margin-bottom: 2rem;
}

.welcome .heading p {
	font-size: 2.5rem;
}

.welcome {
	position: relative;
}

.welcome .welcome-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}

.welcome .content,
.welcome .heading,
.welcome .btn-consultation {
	position: relative;
	color: white;
	z-index: 4;
}

.welcome .imgs {
	position: relative;
}

.welcome .imgs .person-img-2 {
	position: absolute;
	left: 0;
	bottom: 0;
	border: 3px solid var(--white-color);
	border-radius: 2rem;
	box-shadow: var(--box-shedow);
}

/* call to action */
.CTA .heading p {
	font-size: 3rem;
	line-height: 3.5rem;
	font-weight: 800;
	margin-bottom: 3rem;

}


/* consultation */
.btn-consultation {
	padding: 13px 35px;
	border-radius: 2rem;
	background-color: var(--thm-color);
	color: var(--white-color);
	font-size: 1.1rem;
	border: none;
	outline: none;
}

.btn-consultation:hover {
	background-color: var(--black-color);
}

/* quick projects */
.quick-projects {
	padding: 5rem 0rem;
}

.sm-title-1 {
	position: relative;
}

.sm-title-1::before {
	content: "";
	height: 8px;
	width: 8px;
	background: var(--thm-color);
	display: inline-block;
	margin-right: 1rem;
	border-radius: 2px;
	box-shadow: 0px 3px 11px rgba(14, 89, 242, 0.4)
}

.sm-title-2 {
	position: relative;
}

.sm-title-2::before {
	content: "";
	height: 8px;
	width: 8px;
	background: var(--white-color);
	display: inline-block;
	margin-right: 1rem;
	border-radius: 2px;
	box-shadow: 0px 3px 11px rgba(255, 255, 255, 1)
}

.quick-projects .slider-btns button {
	border: none;
	outline: none;
	padding: 10px 30px;
	background-color: var(--thm-color);
	border-radius: 2rem;
	color: var(--white-color);
}

.quick-projects .slider-btns button:hover {
	border: none;
	outline: none;
	padding: 10px 30px;
	background-color: var(--border-color);
	border-radius: 2rem;
	color: var(--thm-color);
}

.quick-projects .swiper .project {
	height: 27rem;
}

.quick-projects .swiper .project .content {
	background-color: rgba(255, 255, 255, 0.7);
	opacity: 0;
	border-radius: 1rem;
	height: 24rem;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	animation: zoom-out 1s backwards;

}

.quick-projects .swiper .project:hover .content {
	opacity: 1;
	animation: zoom-in 1s forwards;
}

.quick-projects .swiper .project .content a {
	color: var(--black-color);
	transition: transform 0.6s ease;
}

.quick-projects .swiper .project .content a i {
	font-size: 0.8rem;
}

.quick-projects .swiper .project .content a:hover {
	color: var(--thm-color);
	transform: translateX(10px);
}

@keyframes zoom-in {
	from {
		transform: scale(0.6);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-out {
	from {
		transform: scale(1);
		opacity: 1;
	}

	to {
		transform: scale(0.6);
		opacity: 0;
	}
}

/* brands section */
.sm-title {
	position: relative;
}

.sm-title::before {
	content: "";
	height: 8px;
	width: 8px;
	background: var(--thm-color);
	display: inline-block;
	margin-right: 1rem;
	border-radius: 2px;
	box-shadow: 0px 3px 11px rgba(14, 89, 242, 0.4)
}

.sm-title::after {
	content: "";
	height: 8px;
	width: 8px;
	background: var(--thm-color);
	display: inline-block;
	margin-left: 1rem;
	border-radius: 2px;
	box-shadow: 0px 3px 11px rgba(14, 89, 242, 0.4)
}

.brands .heading .title {
	font-size: 2rem;
	font-weight: 800;
}

.brands .slider {
	width: 100%;
	height: 50px;
	/* Adjust the height as needed */
	overflow: hidden;
	position: relative;
}

.brands .slides-container {
	display: flex;
	animation: slideShow 10s linear infinite;
	/* Adjust the duration as needed */
}

.brands .slides-container img {
	width: 100%;
	margin: 0px 3rem;
}

@keyframes slideShow {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}


/* internet service provider section */
.it-sp .title {
	font-size: 3rem;
	font-weight: 800;
}

.it-sp .title span {
	color: var(--thm-color);
}

.it-sp {
	position: relative;
	padding: 5rem 0rem;
}

.it-sp .cs-area {
	background-color: var(--thm-color);
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	color: var(--white-color);
	align-items: center;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	padding: 2rem;
}

.it-sp .cs-area .cs-seprator {
	height: 2px;
	width: 25%;
	background-color: var(--white-color);
}





/* contact page */
.contact-form .row {
	border-radius: 2rem;
}

.contact-form .row .heading h1 {
	font-size: 3rem;
	font-weight: 800;
}

.contact-form .row .your-benefits i {
	border: 1px solid var(--thm-color);
	color: var(--thm-color);
	height: 1.3rem;
	width: 1.3rem;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	font-size: 0.6rem;
	border-radius: 50%;
}

.contact-form .row .your-benefits .benefit {
	display: flex;
	gap: 0.7rem;
	margin-bottom: 1rem;
	align-items: center;
}

.contact-form form input,
.contact-form form textarea {
	border: none;
	background-color: var(--white-color);
	color: var(--black-color);
	width: 100%;
	margin: 0.7rem 0px;
	box-shadow: var(--box-shedow);
	padding: 1rem;
	border-radius: 1rem;

}

.contact-form form input:focus,
.contact-form form textarea:focus {
	border: none;
	outline: none;
}

.contact-form form input:focus::placeholder,
.contact-form form textarea:focus::placeholder {
	color: transparent;
}

.contact-info .row {
	border: 2px solid var(--border-color);
	padding: 4rem 2rem;
	border-radius: 2rem;
}

.contact-info .row .details i {
	background-color: var(--border-color);
	color: var(--thm-color);
	height: 4.5rem;
	width: 4.5rem;
	border-radius: 50%;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
}

.contact-info .row .details span {
	color: var(--grey-color);
	font-size: 0.9rem;
}

.contact-info .row .col-lg-4 {
	border-right: 1px solid var(--border-color);

	padding: 2rem;

}

.contact-info .row .col-lg-4:last-child {
	border-right: none;
}

.map iframe {
	border-radius: 2rem;
}


/* about page */
.flex-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.flex-item {
	flex-grow: 1;
	flex-basis: 400px;
}

/* 
.flex-item:nth-child(even) {
	margin-top: 4rem;
} */




.about .about-us,
.about .mission,
.about .approach,
.about .team {
	/*box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
	*/
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: .5s all ease;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	-ms-transition: .5s all ease;
	-o-transition: .5s all ease;
}

.about .about-us:hover,
.about .mission:hover,
.about .approach:hover,
.about .team:hover {
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
}

/* .about .mission,
.about .team {
	margin-top: 10rem;
} */

.quality {
	position: relative;
	padding: 10rem 0rem 5rem 0rem;
}

.quality .quality-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}

.quality .heading h1 {
	font-size: 3rem;
	font-weight: 800;
	position: relative;
	z-index: 2;
}

.quality .content {
	position: relative;
	z-index: 2;
}

.quality .best-agency {
	box-shadow: var(--box-shedow);
	padding: 2rem 1rem;
	border-radius: 2rem;
	position: relative;
	z-index: 2;
}

.quality .best-agency .main i {
	color: var(--thm-color);
	background-color: var(--border-color);
	height: 3rem;
	width: 9rem;
	border-radius: 50%;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.cta-btn i {
	background-color: var(--thm-color);
	height: 3rem;
	width: 3rem;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	color: var(--white-color);
	border-radius: 50%;
}

/* case studies */
.case-study .heading {
	width: 60%;
	margin: auto;
}

.case-study .heading .title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-top: 1rem;
}

.case-study .card {
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 1rem;
}

.case-study .card:hover {
	box-shadow: var(--box-shedow);
}

.case-study .card a {
	color: var(--black-color);
}

.case-study .card a i {
	font-size: 0.9rem;
	transition: transform .5s ease;
}

.case-study .card .head span {
	color: var(--grey-color);
}

.case-study .card .head h3 {
	font-weight: 800;
	margin: 1.3rem 0rem;
	min-height: 5rem;
}

.case-study .card:hover a {
	color: var(--thm-color);
}

.case-study .card:hover .content a>i {
	transform: rotate(325deg);
}

.case-study .card .content p {
	min-height: 11rem;
}

.our-team .heading .title {
	font-size: 2rem;
	font-weight: 800;
}

.our-team .team-m {
	position: relative;

}

.our-team .team-m img {
	border-radius: 1.5rem;
	z-index: 1;
}

.our-team .team-m .img-overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	border-radius: 1.5rem;
	z-index: 2;
	opacity: 0;
}

.our-team .team-m:hover .img-overlay {
	opacity: 1;
}

.our-team .team-m .content {
	background-color: var(--thm-color);
	color: var(--white-color);
	padding: 1rem;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	border-bottom-left-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
	animation: zoom-out 1s backwards;
	opacity: 0;
}

.our-team .team-m:hover .content {
	animation: zoom-in 1s forwards;
}

.our-team .team-m .content .position {
	font-size: 0.8rem;
}

.our-team .team-m .content .name p {
	font-size: 2rem;
	margin-bottom: .5rem;
}

.our-team .team-m .content .desc i {
	background-color: var(--white-color);
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	color: var(--thm-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.our-team .team-m .content .desc i:hover {
	background-color: var(--footer-bd-color);
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.discuss {
	position: relative;
	padding: 5rem 0rem;
	/* height: 60rem; */
	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.discuss video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;

}

.discuss .container {
	position: relative;
	z-index: 2;
}

.discuss .sm-title-1 {
	color: white;
}

.discuss .heading .title {
	margin: 1rem 0rem;
	font-size: 3rem;
	color: var(--white-color);
}

.discuss .social-links {
	border: 1px solid var(--border-color);
	border-radius: 1rem;
}

.discuss .social-links .heading p {
	font-weight: 800;
	color: var(--white-color);
}

.discuss .social-links i {
	background-color: var(--border-color);
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: var(--thm-color);
}

.discuss .social-links i:hover {
	color: var(--white-color);
	background-color: var(--thm-color);
}

.discuss .cf-bg {
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 1.5rem;
	padding: 3rem;
}

.discuss .cf-bg .heading p {
	font-size: 1.7rem;
	font-weight: 700;
}

.discuss .cf-bg form input,
.discuss .cf-bg form textarea {
	border: none;
	outline: none;
	background-color: transparent;
	padding: 1rem 0.8rem;
	width: 100%;
	border-bottom: 1px solid #2B3347;
	color: var(--white-color);
	margin-bottom: 1rem;
}

.discuss .cf-bg form input::placeholder,
.discuss .cf-bg form textarea::placeholder {
	color: var(--white-color);
}

.discuss .cf-bg form input:focus::placeholder,
.discuss .cf-bg form textarea:focus::placeholder {
	color: transparent;
}

.testimonial .main-img img {
	border-radius: 2rem;
}

.testimonial .heading p {
	font-size: 2.5rem;
	font-weight: 800;
}

.TestimonialSwiper {
	position: relative;
}

.TestimonialSwiper .swiper-pagination {
	position: absolute;
	text-align: right;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 9999
}

.TestimonialSwiper .person {
	border-radius: 1rem;
	box-shadow: var(--box-shedow);
	position: relative;
}

.TestimonialSwiper .person p {
	color: var(--thm-color);
}

.TestimonialSwiper .name-color {
	position: absolute;
	left: 0;
	width: 5px;
	height: 2rem;
	background-color: var(--thm-color);
	border-radius: 0.3rem;
}

.newsletter .row {
	border: 2px solid var(--border-color);
	align-items: center;
	border-radius: 1rem;
}

.newsletter .row .form-group {
	position: relative;
}

.newsletter .row .form-group input {
	background-color: var(--white-color);
	border-radius: 1rem;
	border: none;
	outline: none;
	width: 100%;
	box-shadow: var(--box-shedow);
	padding: 1rem;
}

.newsletter .row .form-group .subscriber-btn {
	border: none;
	outline: none;
	background-color: var(--thm-color);
	color: var(--white-color);
	padding: 1rem;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 1rem;
}

.newsletter .row .form-group .subscriber-btn:hover {
	background-color: var(--black-color);
}

.newsletter .row .heading p {
	font-size: 1.7rem;
}

.newsletter .row span {
	color: var(--grey-color);
}


/* services page */
/* availability */
.availability {
	height: auto;
	padding: 40px 0px;
	background-color: var(--white-color);
}

.availability .heading .title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-top: 1rem;
}

.availability .av-card {
	background-color: var(--white-color);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	position: relative;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.availability .av-logo img {
	position: absolute;
	top: 0;
	right: 0;
	height: 100px;
	width: 100px;
	z-index: 2;
}


.availability .av-icon i {
	background-color: var(--footer-bd-color);
	border-top-left-radius: 10px;
	box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
	height: 4.5rem;
	width: 4.5rem;
	font-size: 2rem;
	color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-right-radius: 20%;
}

.availability .av-content::before {
	content: "";
	width: 100%;
	height: 100px;
	box-shadow: 10px -40px 50px 10px rgba(0, 0, 0, 0.1);
	background-color: var(--footer-bd-color);
	position: absolute;
	left: 0;
	z-index: 0;
	top: -60px;
	display: block;
	-webkit-clip-path: ellipse(60% 80px at bottom center);
	clip-path: ellipse(60% 80px at bottom center);

}

.availability .av-content {
	background-color: var(--footer-bd-color);
	padding: 0rem 1rem 1rem 1rem;
	color: var(--white-color);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	position: relative;
	margin-top: 60px;
	z-index: 3;
}

.availability .av-content .heading {
	text-align: center;
	margin-top: 30px;
	position: relative;
	z-index: 3;
}

.availability .av-content .content {
	text-align: justify;
	margin-top: 25px;
	min-height: 19rem;
}




/* service page content */

.service-hs {
	background-size: cover;
	background-repeat: no-repeat;
	padding: 14rem 0rem 10rem 0rem;
	position: relative;
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	width: 100%;
	z-index: 0;
}

.service-hs img,
.service-hs span,
.service-hs button {
	position: relative;
	z-index: 2;
}

.service-hs .heading h1 {
	font-weight: 700;
	font-size: 2.5rem;
	margin: 1rem 0rem 2rem 0rem;
	position: relative;
	z-index: 1;
}

.service-hs .demo-vid button {
	border: none;
	outline: none;
	background-color: transparent;
	color: var(--white-color);
}

.service-hs .demo-vid button i {
	border: 1px solid var(--white-color);
	height: 3rem;
	width: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
}

.project-gallery .heading {
	text-align: center;
}

.project-gallery .heading p {
	font-size: 2rem;
	font-weight: 800;
}

.project-gallery .row img {
	width: 100%;
	border-radius: 2rem;
}

.project-gallery .gallery-item {
	position: relative;
}

.project-gallery .gallery-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 0%;
	border-radius: 2rem;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	opacity: 0;
	transition: .5s ease;
}

.project-gallery .gallery-item:hover .overlay {
	opacity: 1;
	height: 100%;
}

.project-gallery .gallery-item .overlay i {
	background-color: var(--white-color);
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.best-services .heading .title {
	font-size: 3rem;
	font-weight: 800;
	margin: 1rem 0rem 2rem 0rem;
}

.best-services .content p {
	color: var(--grey-color);
	text-align: justify;
}

.best-services .card {
	border-radius: 1rem;
}

.best-services .card .heading {
	min-height: 5rem;
}

.best-services .card .content p {
	min-height: 15rem;
}

.best-services a span>i {
	font-size: 0.8rem !important;
	transform: rotate(-45deg);
}

.quick-steps {
	margin: 7rem 0rem;
}

.quick-steps .heading .title {
	font-size: 2rem;
	font-weight: 800;
}

.quick-steps .heading-no {

	height: 12rem;
	border-right: 1px solid var(--border-color);
	position: relative;
}

.quick-steps .heading-no::after {
	content: '';
	height: 50px;
	width: 1px;
	right: -1px;
	background: var(--thm-color);
	bottom: 0px;
	border-radius: 50%;
	position: absolute;
}

.quick-steps .heading-no span {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--border-color);

}

.quick-steps .sub-content {
	font-weight: 100;
	color: var(--grey-color);
	font-size: 1rem;
}

.quick-steps [class*='col-']:nth-child(even) .heading-no:after {
	animation: MOVE-AB 3s linear infinite;
}

.quick-steps [class*='col-']:nth-child(odd) .heading-no:after {
	animation: MOVE-BA 3s linear infinite;
}

@keyframes MOVE-AB {
	from {
		-webkit-transform: translateY(-140px);
		transform: translateY(-140px);
	}

	to {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

/* ------------ */

@keyframes MOVE-BA {
	from {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	to {
		-webkit-transform: translateY(-140px);
		transform: translateY(-140px);
	}
}

.working-cycle {
	margin: 4rem 0rem 7rem 0rem;
}

.working-cycle .heading {
	margin-bottom: 5rem;
}

.working-cycle .heading .title {
	font-weight: 800;
	font-size: 2.5rem;
}

.working-cycle .row .head {
	background-color: var(--white-color);
	box-shadow: var(--box-shedow);
	height: 8rem;
	width: 8rem;
	border-radius: 50%;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	margin: 0rem auto 3rem auto;
	position: relative;
}

.working-cycle .row .head:hover {
	background-color: var(--thm-color);
}

.working-cycle .row .head .w-num {
	background-color: var(--thm-color);
	height: 2.5rem;
	width: 2.5rem;
	font-size: 0.8rem;
	color: var(--white-color);
	position: absolute;
	top: 0px;
	right: 0px;
	border: 5px solid var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 50%;
}

.working-cycle .row .head:hover svg path {
	fill: white;
}

.working-cycle .row .content p {
	color: var(--grey-color);
}

.working-cycle .row [class*='col-']:nth-child(even) {
	margin-top: 5rem;
}

.working-cycle .row [class*='col-'] {
	position: relative;
}

.working-cycle .row [class*='col-'] .w-arrow {
	position: absolute;
	top: 1.3rem;
	right: -4rem;
}

/* blog page */
.blog-articles {
	box-shadow: var(--box-shedow);
	margin-bottom: 2rem;
	border-radius: 1rem;
}

.blog-articles img {
	border-radius: 1rem;
}

.blog-articles .body {
	padding: 1rem;
}

.blog-articles .body .title a {
	color: var(--black-color);
}

.blog-articles .body .title a:hover {
	color: var(--thm-color);
}

.blog-articles .body .details i {
	color: var(--thm-color);
}

.blog-articles .body .content {
	color: var(--grey-color);
}

.blog-articles .readMore i {
	font-size: 0.8rem;
	margin-top: 0.3rem;
}


.blogs .search-box {
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 2rem;
}

.blogs .search-box .form-group {
	position: relative;
}

.blogs .search-box button {
	border: none;
	position: absolute;
	outline: none;
	top: 0;
	right: 0;
	background-color: var(--thm-color);
	color: var(--white-color);
	height: 100%;
	width: 3rem;
	border-radius: 1rem;
}

.blogs .search-box input {
	width: 100%;
	height: 3rem;
	border-radius: 1rem;
	border: 1px solid var(--border-color);
	padding: 0rem 1rem;
}

.blogs .blog-category {
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 2rem;
}

.blogs .blog-category ul {
	margin: 2rem 0rem;
}

.blogs .blog-category ul>li {
	padding: 1rem 0rem;
	border-bottom: 1px solid var(--border-color);
	color: var(--grey-color);
}

.blogs .blog-category ul>li:hover {
	border-bottom: 1px solid var(--thm-color);
	color: var(--thm-color);
}

.blogs .blog-category ul>li>a {
	color: var(--black-color);
}

.blogs .recent-post {
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 2rem;
}

.recent-p {
	margin: 1rem 0rem;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	padding: 1rem;
	border-radius: 1rem;
	margin-bottom: .5rem;
}

.recent-p:hover {
	box-shadow: var(--box-shedow);
}

.recent-p img {
	border-radius: 1rem;
}

.recent-p .title a {
	color: var(--black-color);
	font-size: 1.1rem;
}

.recent-p:hover .title a {
	color: var(--thm-color);
}

.recent-p .date {
	font-size: 0.9rem;
	margin-top: .5rem;
}

.recent-p .date i {
	color: var(--thm-color);
}

.blogs .popular-tags {
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.blogs .popular-tags .content {
	margin-top: 2rem;
}

.blogs .popular-tags button {
	padding: 10px 20px;
	border-radius: 0.7rem;
	border: 1px solid var(--border-color);
	outline: none;
	background-color: transparent;
	margin: .4rem;
}

.blogs .popular-tags button:hover {
	padding: 10px 20px;
	border-radius: 0.7rem;
	border: 1px solid var(--thm-color);
	color: var(--white-color);
	outline: none;
	background-color: var(--thm-color);
	margin: .4rem;
}

.blogs .blog-pagination button {
	border: none;
	outline: none;
	background-color: var(--border-color);
	height: 2.5rem;
	width: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black-color);
	border-radius: 50%;
}

.blogs .blog-pagination button.active {
	background-color: var(--thm-color);
	color: white;
}

.blogs .blog-pagination button:hover {
	background-color: var(--thm-color);
	color: white;
}



/* pricing page */
.pricing .heading .title {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0rem 0rem 4rem 0rem;
}

.pricing .pricing-card {
	box-shadow: var(--box-shedow);
	padding: 2rem;
	border-radius: 1rem;
}

.pricing .pricing-card:hover {
	border: 2px solid var(--thm-color);
}

.pricing .price {
	background-color: var(--border-color);
	height: 7rem;
	width: 7rem;
	display: flex;
	font-size: 2.5rem;
	align-items: center;
	justify-content: center;
	margin: auto;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.pricing .pricing-card p {
	color: var(--grey-color);
}

.pricing .pricing-card .p-feature {
	margin-bottom: 1.3rem;
}

.pricing .pricing-card .p-feature i {
	border: 2px solid var(--thm-color);
	color: var(--thm-color);
	height: 1.5rem;
	width: 1.5rem;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pricing .p-feature span {
	color: var(--grey-color);
}


/* article page */
.article blockquote {
	background-color: var(--bg-color);
	font-size: 19px;
	font-style: italic;
	line-height: 30px;
	color: var(--black-color);
	padding: 35px 25px;
	margin: 30px 0;
	border-radius: 0 10px 10px 0;
	position: relative;
	border-left: 5px solid;
}

.article blockquote::before {
	position: absolute;
	content: '\f10d';
	font-family: "Font Awesome 5 Free";
	font-size: 90px;
	font-weight: 900;
	opacity: .1;
	top: 55px;
	left: 30px;
}

.article .body .content p {
	text-align: justify;
}

.article .article-imgs img {
	border-radius: 1rem;
}

.article .tags span {
	color: var(--grey-color);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	padding: 10px 20px;
}

.article .tags span:hover {
	background-color: var(--thm-color);
	color: var(--white-color);
	border: 1px solid var(--thm-color);
}

.article .np-articles {
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin: 2rem 0rem;
}

.article .np-articles img {
	border-radius: 0.4rem;
}

.article .np-articles a {
	color: var(--black-color);
	font-size: 1.2rem;
}

.article .np-articles a:hover {
	color: var(--thm-color);
}

.article .cmnt-form {
	border-radius: 1rem;
}

.article .cmnt-form .head {
	padding: 2rem;
	border-bottom: 2px solid var(--border-color);
}

.article .cmnt-form .body {
	padding: 2rem;
}

.article .cmnt-form .body .form-group input[type="text"],
.article .cmnt-form .body .form-group input[type="email"],
.article .cmnt-form .body .form-group textarea {
	border: 1px solid var(--border-color);
	outline: none;
	width: 100%;
	border-radius: 1rem;
	color: var(--black-color);
	margin: 1rem 0rem;
	padding: 1rem 1rem;

}



/* footer */
footer {
	background-size: cover;
	background-repeat: no-repeat;
}

/* top footer */
footer .top-footer {
	padding: 5rem 0rem;
}

footer .heading {
	color: var(--white-color);
}

footer .content,
footer .content a {
	color: var(--font-color);
}

footer .icons i {
	color: var(--white-color);
	background-color: var(--footer-bg-color);
	border-radius: 50%;
	height: 3rem;
	width: 3rem;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
}

footer .icons i:hover {
	background-color: var(--white-color);
	color: var(--thm-color);
}

footer .footer-links li {
	margin-bottom: 8px;
}

footer .footer-links li a {
	color: var(--font-color);
}

footer .footer-links li a:hover {
	color: var(--white-color);
}

/* bottom footer */
footer .bottom-footer {
	border-top: 1px solid var(--footer-bd-color);
}

footer .bottom-footer .col-lg-4:nth-child(2) {
	border-left: 1px solid var(--footer-bd-color);
	border-right: 1px solid var(--footer-bd-color);
}

footer .bottom-footer .col-lg-4 i {
	background-color: var(--footer-bg-color);
	padding: 30px;
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white-color);
}

/* copyright section */
.copyright {
	height: auto;
	background: var(--footer-bg-color);
	padding: 1.5rem;
	text-align: center;
	color: var(--white-color);
}

.copyright p {
	font-size: 0.9rem;
	margin: 0;

}

.copyright p i {
	font-size: 0.7rem;
}