* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');

body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	color: #333;

	/*	font-family: "Open Sans", sans-serif;*/
}

.icon-center {
	display: flex;
	justify-content: center;
}

.icon-center .imgg {
	height: 40px;
	margin-top: 35px;
}

#Dserv {
	margin-bottom: 120px;
	margin-top: 50px;
}

.dblock {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#mapmsg {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.mmap {
	display: flex;
	align-items: center;
}

@media (max-width:768px) {

	#mapmsg .row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#mapmsg .col-7 .col-5 {
		border: 2px solid black;
	}
}

.bmnav {
	margin-top: 45px;
	margin-bottom: 35px;
}

.bmnav li a :active {
	color: #3d2970;
}

.bmnav li a :hover {
	color: #9BBA2F;
}

.bmimg {
	display: flex;
	justify-content: center;
}

.bmtxt {
	display: flex;
	align-items: center;
	color: #3d2970;
}

#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 25px;
	z-index: 99;
	/* font-size: 18px; */
	border: none;
	outline: none;
	background: none;
	/* color: white; */
	cursor: pointer;
	/* padding: 15px; */
	border-radius: 4px;
}



/*website color*/

:root {
	--theme-black: #494F69;
	--theme-blue: #3d2970;
	--theme-red: #fe3136;
	--theme-black-light: #2a2a2a;
}

a {
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
ul,
li,
a,
p {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif !important;
}



html {
	overflow-x: hidden;
}

@media (max-width: 991px) {

	html {
		overflow-x: hidden;
	}
}

@media (max-width: 280px) {

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl,
	.container-icon {
		padding-left: var(--bs-gutter-x, .55rem);
		padding-right: var(--bs-gutter-x, .55rem);
	}
}

@media (min-width: 281px) and (max-width: 320px) {

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl,
	.container-icon {
		padding-left: var(--bs-gutter-x, .85rem);
		padding-right: var(--bs-gutter-x, .85rem);
	}
}

@media (min-width: 321px) and (max-width: 380px) {

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl,
	.container-icon {
		padding-left: var(--bs-gutter-x, 1.25rem);
		padding-right: var(--bs-gutter-x, 1.25rem);
	}
}

@media (min-width: 381px) and (max-width: 420px) {

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl,
	.container-icon {
		padding-left: var(--bs-gutter-x, 1.55rem);
		padding-right: var(--bs-gutter-x, 1.55rem);
	}
}

@media (min-width: 421px) and (max-width: 468px) {

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl,
	.container-icon {
		padding-left: var(--bs-gutter-x, 1.75rem);
		padding-right: var(--bs-gutter-x, 1.75rem);
	}
}





/*preloader*/

#preloader {
	height: 100%;
	width: 100%;
	background: #fff;
	position: fixed;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#preloader .snippet {
	position: relative;
	width: 100%;
}

#preloader .snippet .stage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#preloader .snippet .stage .dot-collision {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: var(--theme-blue);
	color: var(--theme-blue);
}

#preloader .snippet .stage .dot-collision::before,

#preloader .snippet .stage .dot-collision::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
}

#preloader .snippet .stage .dot-collision::before {
	left: -30px;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: var(--theme-blue);
	color: var(--theme-blue);
	-webkit-animation: dotCollisionBefore 2s infinite ease-in;
	animation: dotCollisionBefore 2s infinite ease-in;
}

#preloader .snippet .stage .dot-collision::after {
	left: 30px;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: var(--theme-blue);
	color: var(--theme-blue);
	-webkit-animation: dotCollisionAfter 2s infinite ease-in;
	animation: dotCollisionAfter 2s infinite ease-in;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

@-webkit-keyframes dotCollisionBefore {

	0%,
	50%,
	75%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	25% {
		-webkit-transform: translateX(-15px);
		transform: translateX(-15px);
	}
}

@keyframes dotCollisionBefore {

	0%,
	50%,
	75%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	25% {
		-webkit-transform: translateX(-15px);
		transform: translateX(-15px);
	}
}

@-webkit-keyframes dotCollisionAfter {

	0%,
	50%,
	75%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	25% {
		-webkit-transform: translateX(15px);
		transform: translateX(15px);
	}
}

@keyframes dotCollisionAfter {

	0%,
	50%,
	75%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	25% {
		-webkit-transform: translateX(15px);
		transform: translateX(15px);
	}
}







/*border hover effect*/

.hoverBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	top: -1px;
	left: 0;
	z-index: -1;
}

.hoverBtn:before {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 1px var(--theme-blue);
	border-left: solid 1px var(--theme-blue);
	-moz-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
	right: 50%;
	z-index: -1;
}

.hoverBtn:after {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	border-top: solid 1px var(--theme-blue);
	border-right: solid 1px var(--theme-blue);
	-moz-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
	left: 50%;
	z-index: -1;
}

.hoverBtn-bottom {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

.hoverBtn-bottom:before {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	height: 100%;
	border-bottom: solid 1px var(--theme-blue);
	-moz-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
	right: 0;
}

.hoverBtn-bottom:after {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	display: block;
	opacity: 0;
	height: 100%;
	border-bottom: solid 1px var(--theme-blue);
	-moz-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
	left: 0;
}

@-webkit-keyframes open {

	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 50%;
		height: 0;
	}

	100% {
		width: 50%;
		height: 100%;
	}
}

@keyframes open {

	0% {
		width: 0;
		height: 0;
	}

	50% {
		width: 50%;
		height: 0;
	}

	100% {
		width: 50%;
		height: 100%;
	}
}

@-webkit-keyframes openB {

	0% {
		width: 0px;
	}

	100% {
		width: 50%;
	}
}

@keyframes openB {

	0% {
		width: 0px;
	}

	100% {
		width: 50%;
	}
}

.home-slider .carousel-caption .content h2 {
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
}

.home-slider .carousel-caption .content p {
	margin-top: 16px;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	color: #333;
}

.home-slider .carousel-caption .content .buttons {
	margin-top: 40px;
}

.home-slider .carousel-caption .content .btn1 {
	background: var(--theme-red);
	color: #fff;
}

.home-slider .carousel-caption .content .btn {
	border: 1px solid #fe3136;
	border-radius: 5px;
	width: 171px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}



/* Arrows */

.slick-prev,

.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: #e94d65;
	border-radius: 33px;
	z-index: 1;
}

.slick-prev {
	left: 25px;
}

.slick-next {
	right: 25px;
}

.slick-prev:before {
	content: "\f104";
	color: #fff;
	font-size: 22px;
	font-family: 'FontAwesome';
	line-height: 25px;
}

.slick-next:before {
	content: "\f105";
	color: #fff;
	font-size: 22px;
	font-family: 'FontAwesome';
	line-height: 25px;
}

@media (min-width:1400px) {

	#navbar .container-fluid {
		padding: 0 4%;
	}
}

@media (min-width:1200px) {
	.home-slider .slick-slide img {
		width: 100%;
	}

	.home-slider .carousel-caption {
		position: absolute;
		right: 10%;
		bottom: inherit;
		left: 10%;
		color: #333;
		text-align: left;
		top: 50%;
		transform: translate(0px, -50%);
	}
}



/*navbar*/

#navbar {
	padding: 15px 0;
	/*	position: fixed;*/
	position: sticky;
	width: 100%;
	z-index: 9;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background: #fff;
	-webkit-box-shadow: 0px 0px 11px rgb(21 101 154 / 26%);
	box-shadow: 0px 0px 11px rgb(21 101 154 / 26%);
}

#navbar.navbar-fixed {
	background: #fff;
	padding: 15px 0;
	margin-top: 0;
	top: 0;
	z-index: 99;
	-webkit-box-shadow: 0px 0px 11px rgb(21 101 154 / 26%);
	box-shadow: 0px 0px 11px rgb(21 101 154 / 26%);
}

#navbar.navbar-fixed .right .btn {
	background: var(--theme-red);
	color: #fff;
}

.header-logo a.brand img {
	width: 160px;
}

#navbar .nav-menu ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#navbar .nav-menu ul li {
	margin-right: 20px;
}

#navbar .nav-menu ul li:last-child {
	margin-right: 0;
}

/*#navbar .nav-menu ul li a {
	color: #333;
	font-weight:600;
	font-size: 16px;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	white-space: nowrap;
}*/

/*#navbar .nav-menu ul li a {
	  position: relative;
  display: block;
  font-size:20px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
*/


#navbar .nav-menu ul li a {
	position: relative;
	display: block;
	font-size: 18px;
	color: #333;
	padding-top: 18px;
	padding-bottom: 18px;
	font-weight: 700;
	line-height: 14px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	border: 1px solid #dfdfdf;
	padding-left: 15px;
	padding-right: 15px;
	white-space: nowrap;
	border-radius: 5px;
	/*    box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);*/
	border-radius: 5px;
	background: #fff;
}

#navbar .nav-menu ul li a:hover {
	background: var(--theme-red);
	color: #fff !important;
	background: var(--theme-red);

}




#navbar .nav-menu ul li a:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	width: auto;
	background: transparent;
	display: block;
	height: 5px;

	border-top: 1px solid #FE3136;
	border-bottom: 1px solid #FE3136;
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}


/*#navbar .nav-menu ul li:hover>a:before,
#navbar .nav-menu ul li a.active:before{
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}*/


#navbar .nav-menu ul li .dropdown-menu a {
	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	margin: 0;
	border: 0;
    border-bottom:1px solid black;
    border-radius:0px;
}
.nav-menu .dropdown-menu.show {
    padding: 0;
}
#navbar .nav-menu ul li a.active {
	color: var(--theme-red);
	font-weight: 600;
}

#navbar .nav-menu ul li a:hover {
	color: var(--theme-red);
}

#navbar .nav-menu ul li a.active:before {
	width: 100%;
}

/*#navbar .nav-menu ul li a:before {
	content: '';
	position: absolute;
	height: 1px;
	width: 0;
	left: 0;
	bottom: -4px;
	background: var(--theme-red);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}*/

#navbar .right .btn {
	border: 1px solid var(--theme-red);
	background: #fff;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	width: 170px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--theme-red);
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#navbar .right .btn:hover {
	background: var(--theme-red);
	color: #fff;
}

#navbar .right .bar {
	display: none;
}

#navbar .mobile-menu {
	display: none;
}

@media (max-width: 991px) {

	#navbar .right .bar {
		display: block;
		color: var(--theme-blue);
		font-size: 25px;
	}

	#navbar .right .btn {
		display: none;
	}

	#navbar .nav-menu {
		display: none;
	}

	#navbar .mobile-menu {
		position: fixed;
		background: var(--theme-black-light);
		width: 100%;
		top: 0;
		left: 0;
		height: 100%;
		overflow-y: auto;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		display: block;
	}

	#navbar .mobile-menu.open {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	#navbar .mobile-menu .top {
		border-bottom: 1px solid #3d2970;
		padding: 5px 15px;
	}

	#navbar .mobile-menu .top i {
		font-size: 30px;
		color: #fff;
	}

	#navbar .mobile-menu .menu {
		padding: 40px 15px;
		border-bottom: 1px solid #3d2970;
	}

	#navbar .mobile-menu .menu ul {
		list-style: none;
	}

	#navbar .mobile-menu .menu ul li:first-child {
		margin-top: 0;
	}

	#navbar .mobile-menu .menu ul li {
		margin-top: 16px;
	}

	#navbar .mobile-menu .menu ul li a {
		color: #fff;
		font-weight: 400;
		font-size: 16px;
		line-height: 17px;
	}

	#navbar .mobile-menu .menu ul li .dropdown-menu a {
		color: #fff;
		font-weight: 400;
		font-size: 16px;
		line-height: 17px;
		border-bottom: 1px solid white;
		padding: 10px;
	}

	#navbar .mobile-menu .contact {
		padding: 40px 15px;
	}

	#navbar .mobile-menu .contact h4 {
		color: #fff;
		font-weight: 600;
		font-size: 24px;
		line-height: 29px;
		margin-bottom: 25px;
	}

	#navbar .mobile-menu .contact ul li i {
		color: #fff;
		margin-right: 12px;
	}

	#navbar .mobile-menu .contact ul li {
		margin-top: 16px;
	}

	#navbar .mobile-menu .contact ul li:first-child {
		margin-top: 0;
	}

	#navbar .mobile-menu .contact ul li a {
		color: #fff;
		font-size: 14px;
		font-weight: 500;
	}

	#navbar .mobile-menu .contact .social-media {
		margin-top: 25px;
		margin-left: 12px;
	}

	#navbar .mobile-menu .contact .social-media a {
		height: 32px;
		width: 32px;
		border-radius: 100%;
		background: #Fff;
		color: var(--theme-blue);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-left: 12px;
	}

	#navbar .mobile-menu .contact .social-media a i {
		font-size: 18px;
	}

	#navbar,

	#navbar.navbar-fixed {
		padding: 10px 0;
	}

	#navbar .container-fluid {
		padding: 0 0 0 20px;
	}

	#navbar .brand img {
		width: 100px;
		background: white;
		padding: 5px;
		border-radius: 5px;
	}
}

@media (min-width: 992px) and (max-width: 1400px) {

	#navbar .right .btn {
		font-size: 14px;
	}

	#navbar .brand img {
		width: 120px;
	}
}







/*header*/

#homepage #header {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#homepage #header:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: url('../images/header-bg.png');
	right: 0;
	background-position: top right;
	background-repeat: no-repeat;
	top: 0;
	z-index: -1;
}

#homepage #header .content h2 {
	font-weight: bold;
	font-size: 65px;
	line-height: 88px;
	color: #404756;
}

#homepage #header .content h2 span {
	color: var(--theme-blue);
}

#homepage #header .content p {
	margin-top: 16px;
	color: #9EA3B7;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
}

#homepage #header .content .buttons {
	margin-top: 40px;
}

#homepage #header .content .buttons .btn {
	border: 1px solid #fe3136;
	border-radius: 5px;
	width: 171px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #header .content .buttons .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#homepage #header .content .buttons .btn1 {
	background: var(--theme-red);
	color: #fff;
}

#homepage #header .content .buttons .btn2 {
	background: #fff;
	color: var(--theme-blue);
	margin-left: 29px;
}

#homepage #header .stroke {
	font-weight: 900;
	font-size: 121px;
	line-height: 147px;
	letter-spacing: 0.1em;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-text-stroke: 0.5px #C5E4FF;
	-webkit-text-fill-color: transparent;
	position: absolute;
	left: -130px;
	display: flex;
}

#homepage #header .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
}

#homepage #header .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
}

#homepage #header .circle.cricle1 {
	width: 69.89px;
	height: 69.89px;
	top: 10%;
	left: -30px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #header .circle.cricle1:before {
	width: 54px;
	height: 54px;
}

#homepage #header .circle.cricle2 {
	width: 26px;
	height: 26px;
	bottom: -0;
	left: 30%;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

#homepage #header .circle.cricle2:before {
	height: 20px;
	width: 20px;
}

#homepage #header .circle.cricle3 {
	width: 78px;
	height: 78px;
	top: 80px;
	right: 0%;
	z-index: -1;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

#homepage #header .circle.cricle3:before {
	height: 60px;
	width: 60px;
}

#homepage #header .circle.cricle4 {
	width: 123px;
	height: 123px;
	bottom: 30px;
	right: -50px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #header .circle.cricle4:before {
	height: 95px;
	width: 95px;
}

@-webkit-keyframes mover {

	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@keyframes mover {

	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@-webkit-keyframes animation1 {

	0% {
		-webkit-transform: translate(10px, -30px);
		transform: translate(10px, -30px);
	}

	50% {
		transform: translate(-15px, 10px);
	}

	100% {
		-webkit-transform: translate(-60px, 23px);
		transform: translate(-60px, 23px);
	}
}

@keyframes animation1 {

	0% {
		-webkit-transform: translate(10px, -30px);
		transform: translate(10px, -30px);
	}

	50% {
		transform: translate(-15px, 10px);
	}

	100% {
		-webkit-transform: translate(-60px, 23px);
		transform: translate(-60px, 23px);
	}
}

@media (max-width: 767px) {

	#homepage #header {
		padding-bottom: 100px;
	}

	#homepage #header .stroke {
		display: none;
	}

	#homepage #header .content {
		margin-top: 135px;
		text-align: center;
	}

	#homepage #header .content p br {
		display: none;
	}

	#homepage #header img {
		max-width: 100%;
	}

	#homepage #header {
		height: auto;
	}

	#homepage #header:before {
		right: 0;
	}

	#homepage #header .circle.cricle1 {
		height: 23.89px;
		width: 23.89px;
		left: -10px;
	}

	#homepage #header .circle.cricle1:before {
		height: 17px;
		width: 17px;
	}

	#homepage #header .circle.cricle4 {
		height: 46px;
		width: 46px;
	}

	#homepage #header .circle.cricle4:before {
		height: 36px;
		width: 36px;
	}

	#homepage #header .content .buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#homepage #header .content .buttons .btn {
		width: 117px;
		height: 35px;
		font-size: 12px;
	}

	#homepage #header .content .buttons {
		margin-top: 16px;
	}

	#homepage #header .content .buttons .btn2 {
		margin-left: 6px;
	}

	#homepage #header img {
		margin-top: 40px;
	}

	#homepage #header .circle.cricle2 {
		height: 14px;
		width: 14px;
	}

	#homepage #header .circle.cricle2:before {
		height: 10px;
		width: 10px;
	}

	#homepage #header .circle.cricle4 {
		height: 46px;
		width: 46px;
		right: -20px;
		bottom: 10px;
	}

	#homepage #header .circle.cricle3 {
		height: 42px;
		width: 42px;
		right: 16%;
	}

	#homepage #header .circle.cricle3:before {
		height: 33px;
		width: 33px;
	}

	#homepage #header:before {
		background-position: right;
	}
}

@media (max-width: 320px) {

	#homepage #header .content h2 {
		font-size: 36px;
		line-height: 40px;
	}

	#homepage #header .content p {
		font-size: 10px;
		line-height: 14px;
		padding: 0 20px;
	}
}

@media (min-width: 321px) and (max-width: 480px) {

	#homepage #header .content h2 {
		font-size: 40px;
		line-height: 48px;
	}

	#homepage #header .content p {
		font-size: 12px;
		line-height: 17px;
		padding: 0 30px;
	}
}

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

	#homepage #header {
		/* height: 70vh; */
		top: 80px;
	}

	#homepage #header .content h2 {
		font-size: 48px;
		line-height: 55px;
	}

	#homepage #header .content p {
		font-size: 12px;
		line-height: 22px;
	}

	#homepage #header .content p br {
		display: none;
	}

	#homepage #header .content .buttons {
		margin-top: 20px;
	}

	#homepage #header .stroke {
		display: none;
	}

	#homepage #header img {
		max-width: 100%;
	}

	#homepage #header .content .buttons .btn {
		font-size: 14px;
		width: 140px;
	}

	#homepage #header .content .buttons .btn2 {
		margin-left: 15px;
	}

	#homepage #header:before {
		right: 0;
	}
}

@media (min-width: 992px) and (max-width: 1400px) {

	#homepage #header .stroke {
		font-size: 59px;
	}
}

@media (min-width: 1401px) and (max-width: 1600px) {

	#homepage #header .stroke {
		font-size: 90px;
		left: -195px;
	}
}

@media (min-width: 1601px) and (max-width: 1700px) {

	#homepage #header .stroke {
		left: -195px;
	}
}





/*services*/

.clearcc {
	text-align: center;
	margin: 1em;
}

#homepage #services {
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

#homepage #services .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	bottom: 40px;
	left: -40px;
	top: 25%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	z-index: -1;
}

#homepage #services .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#homepage #services .heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
}

#homepage #services .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: capitalize;
}

#homepage #services .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#homepage #services .heading h2 {
	margin-top: 16px;
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	font-weight: bold;
	color: #404756;
}

.client-slider-section .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#homepage #services .heading h2 span {
	color: var(--theme-blue);
}

#homepage #services .heading p {
	margin-top: 16px;
	color: #9EA3B7;
	font-size: 16px;
	line-height: 23px;
}

#homepage #services .services-middle {
	margin-top: 20px;
}

#homepage #services .services-middle .item {
	padding: 0 15px 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 22rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: ease-out 0.5s;
	-o-transition: ease-out 0.5s;
	transition: ease-out 0.5s;
	border-radius: 10px;
	margin-top: 40px;
	position: relative;
	-webkit-box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
	box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
	border: #ebebeb 1px solid;
}

#homepage #services .services-middle .item:hover .hoverBtn:before,

#homepage #services .services-middle .item:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#homepage #services .services-middle .item:hover .hoverBtn-bottom:before,

#homepage #services .services-middle .item:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#homepage #services .services-middle .item:hover {
	-webkit-box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
	box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
}

#homepage #services .services-middle .item:hover .icon {
	background: var(--theme-blue);
}

#homepage #services .services-middle .item:hover .icon svg path {
	fill: #fff !important;
}

#homepage #services .services-middle .item:hover .img-sub {
	filter: invert(1);
}

#homepage #services .services-middle .item .icon {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 8px 12px rgba(21, 101, 154, 0.08);
	box-shadow: 0px 8px 12px rgba(21, 101, 154, 0.08);
	border-radius: 0px 0px 50px 50px;
	width: 97px;
	height: 107px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #services .services-middle .item .icon svg path {
	fill: var(--theme-blue) !important;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #services .services-middle .item h2 {
	margin-top: 35px;
	color: #333;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}


#homepage #services .services-middle .item p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 24px;
	min-height: 125px;
}

.technologies-section {
	padding: 50px 0 100px;
}

.small-container {
	max-width: 94em;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 65em;
}

.small-header {
	text-align: center;
	max-width: 50em;
	margin: 0 auto;
	margin-bottom: 2.5em;
}

.small-header h2 {
	font-size: 40px;
	font-weight: 700;
	color: #1a3758;
	margin-bottom: .8em;
	text-transform: uppercase;
}

.small-header p {
	font-size: 1em;
}

.client-slider-section {
	padding: 60px 0px 0px;
	background: rgb(255, 255, 255);
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.client-slider-section .small-header h2 {
	font-size: 24px;
}

/*.images-item {
	background: #fff;
	margin: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 10px 8px;
	border: #ededed 1px solid;
	border-radius: 5px;
	box-shadow: 0px 0px 8px rgba(0,0,142,.1098039216);
}*/


.client-slider-section .slick-slider .slick-list {
	padding: 15px 0;
}

.images-item {
	box-shadow: 0px 5px 4px #bfbfbf;
	background-color: #fff;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	margin: 0 15px;
	overflow: hidden;
	height: 135px !important;
	box-sizing: border-box;
}

.images-item:hover img {
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.brand-area-box {
	box-shadow: 0px 5px 4px #bfbfbf;
	background-color: #fff;
	padding: 20px;
	display: flex;
	height: 150px;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
}

.brand-area-box img {
	width: 100%;
	margin: 0 auto;
}

.containerup {
	position: relative;
	display: flex;
	max-width: 75%;
	margin: 0 auto;
	justify-content: space-between;
	flex-wrap: wrap;
}




.containerup .card {
	position: relative;
	border-radius: 10px;
	border: none;
}

.containerup .card .icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #9BBA2F;
	transition: 0.7s;
	z-index: 1;
	display: flex;
	align-items: center;
	text-align: center;
}

.containerup .card:nth-child(1) .icons {
	background: #9bba2f;
}

.containerup .card:nth-child(2) .icons {
	background: #9BBA2F;
}

.containerup .card:nth-child(3) .icons {
	background: #9bba2f;
}

.containerup .card .icons .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 80px;
	transition: 0.7s;
	color: #fff;
}

.containerup .card .face {
	width: 300px;
	height: 200px;
	transition: 0.5s;
}

.containerup .card .face.face1 {
	position: relative;
	/* background: #333; */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	transform: translateY(100px);
}

.containerup .card:hover .face.face1 {
	background: #3d2979;
	transform: translateY(0px);
}

.containerup .card .face.face1 .content {
	opacity: 1;
	transition: 0.5s;
}

.containerup .card:hover .face.face1 .content {
	opacity: 1;
}

.containerup .card .face.face2 {
	position: relative;
	background: #3d2979;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
	transform: translateY(-100px);
}

.containerup .card:hover .face.face2 {
	transform: translateY(0);
}

.containerup .card .face.face2 .content p {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #fff;
}

.containerup .card .face.face2 .content h3 {
	margin: 0 0 10px 0;
	padding: 0;
	color: #fff;
	font-size: 24px;
	text-align: center;
}


.latest-blog-section .containerup .card .face.face2 .content h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latest-blog-section .containerup .card .face.face2 .content p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}




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

.contuptxt {
	text-align: center;
	margin-top: 25px;
	margin-bottom: 55px;
	color: #3d2979;
}

.latest-blog-section {
	padding: 100px 0 50px;
}

.industries-item-list ul {
	margin: 4em -1em 0;
	padding: 0;
	list-style: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.industries-item-list ul li {
	width: calc(100% / 6 - 2em);
	text-align: center;
	margin: 0 1em 1.667em;
	background: #fff;
	border: .056em solid rgba(0, 0, 0, 0.05);
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.industries-item-list ul li:hover {
	box-shadow: 0 0 3em rgba(0, 0, 0, 0.1);
}

.industries-item-list ul li a img {
	margin-bottom: .4em;
	display: inline-block;
}

.industries-item-list ul li a {
	text-decoration: none;
	display: block;
	padding: 1em 1.5em;
}

.industries-item-list ul li a {
	color: #0f003a;
	margin: 0;
	line-height: normal;
	font-size: 16px;
	font-weight: 600;
	min-height: 50px;
}





/*



.industries-item {

    text-align: center;

    margin: 0 1em 1.667em;

    background: #fff;

    border: .056em solid rgba(0, 0, 0, 0.05);

    -webkit-transition: all 250ms ease-in-out;

    -moz-transition: all 250ms ease-in-out;

    transition: all 250ms ease-in-out;

}





.industries-item:hover {

    box-shadow: 0 0 3em rgba(0, 0, 0, 0.1);

}



.industries-item a {

    text-decoration: none;

    display: block;

    padding: 1em 1.5em;

}



.industries-item a img {

    margin-bottom: .4em;

    display: inline-block;

}



.industries-item a p {

    color: #0f003a;

    margin: 0;

    line-height: normal;

    font-size: 16px;

    font-weight: 600;

    min-height: 50px;

}

*/









@media (max-width: 1600px) {

	.containerup {
		max-width: 90%;
		align-items: center;
	}
}

@media (max-width: 767px) {

	#homepage #services .heading h6 .dot {
		height: 4px;
		width: 4px;
		margin-right: 7px;
	}

	#homepage #services .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#homepage #services .heading h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
	}

	#homepage #services .heading p {
		font-size: 12px;
		line-height: 17px;
	}

	#homepage #services .heading p br {
		display: none;
	}

	#homepage #services .services-middle {
		margin-top: 0px;
	}

	#homepage #services .services-middle .col-lg-4:nth-child(1) .item .icon svg {
		width: 49px !important;
		height: 38px !important;
	}

	#homepage #services .services-middle .item {
		-webkit-box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.1);
		box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.1);
		border-radius: 7.14696px;
	}

	#homepage #services .services-middle .item:before {
		display: none;
	}

	#homepage #services .services-middle .item .icon {
		background: #EEF7FF;
		-webkit-box-shadow: none;
		box-shadow: none;
		width: 75px;
		height: 76px;
		padding: 16px 17px;
	}

	#homepage #services .services-middle .item .icon svg {
		width: 100%;
	}

	#homepage #services .services-middle .item h2 {
		margin-top: 24px;
		font-size: 16px;
		line-height: 20px;
	}

	#homepage #services .services-middle .item p {
		margin-top: 8px;
		font-size: 14px;
		line-height: 17px;
		color: #333;
	}

	#homepage #services {
		padding-top: 53px;
		padding-bottom: 50px;
	}

	#homepage #services .circle {
		height: 46px;
		width: 46px;
		left: -25px;
		top: 2%;
	}

	#homepage #services .circle:before {
		width: 36px;
		height: 36px;
	}

	.containerup {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.industries-item-list ul li a {
		color: #333;
		font-size: 13px;
		font-weight: 600;
	}


}

@media (min-width: 768px) and (max-width: 991px) {

	#homepage #services {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	#homepage #services .heading h6 {
		font-size: 16px;
	}

	#homepage #services .heading h2 {
		margin-top: 8px;
		font-size: 32px;
		line-height: 38px;
	}

	#homepage #services .heading p br {
		display: none;
	}

	#homepage #services .heading p {
		margin-top: 8px;
		font-size: 14px;
	}

	#homepage #services .services-middle .item h2 {
		margin-top: 25px;
		font-size: 18px;
	}

	#homepage #services .services-middle .item p {
		margin-top: 8px;
		font-size: 11px;
	}

	#homepage #services .services-middle .item .icon {
		width: 90px;
		height: 100px;
	}

	#homepage #services .services-middle .item .icon svg {
		width: 42px;
	}

	#homepage #services .services-middle .item:hover:before {
		background-size: 200% 1px, 1px 400%, 1px 400%, 50% 1px, 50% 1px;
	}

	#homepage #services .circle {
		height: 50px;
		width: 50px;
		left: -15px;
		top: 10%;
	}

	#homepage #services .circle:before {
		width: 37px;
		height: 37px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#homepage #services .services-middle .item {
		padding-left: 20px;
		padding-right: 20px;
	}

	#homepage #services .services-middle .item h2 {
		margin-top: 30px;
		font-size: 20px;
	}

	#homepage #services .services-middle .item p {
		margin-top: 10px;
		font-size: 13px;
	}

	#homepage #services .services-middle .item:hover:before {
		background-size: 200% 1px, 1px 400%, 1px 400%, 50% 1px, 49.8% 1px;
	}
}











/*slanted-icon*/

#homepage #slanted-icon {
	margin-top: 88px;
	position: relative;
	height: 299px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#homepage #slanted-icon.slanted-icon-right {
	-webkit-transform: rotate(8deg);
	-ms-transform: rotate(8deg);
	transform: rotate(8deg);
}

#homepage #slanted-icon.slanted-icon-right .container-fluid .item {
	-webkit-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	transform: rotate(-8deg);
}

#homepage #slanted-icon:before {
	content: '';
	position: absolute;
	height: 2px;
	background: rgba(21, 101, 154, 0.05);
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: -1;
}

#homepage #slanted-icon .container-fluid {
	padding: 0 130px;
}

#animation {
	opacity: 1;
	transform: translateX(0);
}

#animation2 {
	opacity: 1;
	transform: translateX(0);
}

#animation3 {
	opacity: 1;
	transform: translateX(0);
}

#homepage #slanted-icon .container-fluid .item {
	height: 92px;
	width: 92px;
	-webkit-box-shadow: 0px 4px 12px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 4px 12px rgba(13, 118, 209, 0.12);
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
}

@media (max-width: 767px) {

	#homepage #slanted-icon .container-fluid {
		padding: 0 47px;
	}

	#homepage #slanted-icon .container-fluid .item:nth-child(1),

	#homepage #slanted-icon .container-fluid .item:nth-child(5) {
		display: none;
	}

	#homepage #slanted-icon .container-fluid .item {
		height: 48px;
		width: 48px;
	}

	#homepage #slanted-icon .container-fluid .item img {
		max-width: 20px;
	}

	#homepage #slanted-icon {
		margin-top: 50px;
		height: 84px;
	}
}

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

	#homepage #slanted-icon .container-fluid {
		padding: 0 70px;
	}

	#homepage #slanted-icon {
		margin-top: 70px;
		height: 200px;
	}

	#homepage #slanted-icon .container-fluid .item {
		height: 70px;
		width: 70px;
	}

	#homepage #slanted-icon .container-fluid .item img {
		max-width: 30px;
	}
}







/*about*/

#homepage #about {
	margin-top: 0px;
	position: relative;
}

.about-section {
	padding: 80px 0px;
}

#homepage #about .img {
	position: relative;
	border-radius: 100%;
	padding-right: 10px;
}

#homepage #about .img .rotate {
	/*height: 486px;

	width: 486px;*/
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: circle 10s infinite linear;
}

#homepage #about .img .trust {
	height: 146px;
	width: 146px;
	border-radius: 100%;
	-webkit-box-shadow: 0px 0px 11px rgba(21, 101, 154, 0.26);
	box-shadow: 0px 0px 11px rgba(21, 101, 154, 0.26);
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	right: 70px;
	z-index: 2;
	/*-webkit-animation: ccircle 10s infinite linear;*/
	animation: animation1 5s infinite linear;
	animation-direction: alternate;
}

@keyframes animation1 {

	0% {
		-webkit-transform: translate(30px, -80px);
		transform: translate(30px, -80px);
	}

	50% {
		transform: translate(-15px, 10px);
	}

	100% {
		-webkit-transform: translate(-120px, 35px);
		transform: translate(-120px, 35px);
	}
}



/*@-webkit-keyframes circle {

    from {

        -webkit-transform: rotateZ(0deg);

    }

    to {

        -webkit-transform: rotateZ(360deg);

    }

}



@-webkit-keyframes ccircle {

    from {

        -webkit-transform: rotateZ(360deg);

    }

    to {

        -webkit-transform: rotateZ(0deg);

    }

}

@keyframes circle {

    from {

    	-webkit-transform: rotateZ(0deg);

    }

    to {

    	-webkit-transform: rotateZ(360deg);

    }

}*/

@keyframes rotate {

	/*0%{

		bottom: 0;

		right: -70px;

	}*/

	10% {
		bottom: -20px;
		right: 270px;
	}

	20% {
		bottom: 40px;
		right: 409px;
	}

	30% {
		bottom: 190px;
		right: 470px;
	}

	40% {
		bottom: 280px;
		right: 430px;
	}

	50% {
		bottom: 369px;
		right: 346px;
	}

	60% {
		bottom: 382px;
		right: 147px;
	}

	70% {
		bottom: 290px;
		right: 40px;
	}

	80% {
		bottom: 220px;
		right: 20px;
	}

	90% {
		bottom: 150px;
		right: 10px;
	}

	100% {
		bottom: 50px;
		right: 30px;
	}
}

#homepage #about .img .trust:before {
	content: '';
	position: absolute;
	height: 130px;
	width: 130px;
	border: 1px dashed #404756;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 100%;
	z-index: -1;
}

#homepage #about .img .trust p {
	color: #A0A0A0;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.13em;
}

#homepage #about .img .trust h4 {
	color: var(--theme-blue);
	font-weight: 500;
	font-size: 28px;
	line-height: 34px;
	margin-top: 4px;
}

#homepage #about .content h6 {
	font-weight: 500;
	font-size: 18px;
	color: #333;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#homepage #about .content h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#homepage #about .content h2 {
	color: #404756;
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	margin-top: 16px;
}

#homepage #about .content h2 span {
	color: var(--theme-blue);
}

#homepage #about .content p {
	margin-top: 24px;
	font-weight: normal;
	font-size: 16px;
	line-height: 23px;
}

#homepage #about .content .row {
	margin-top: 16px;
}

#homepage #about .content .row .col-6 img {
	margin-right: 15px;
}

#homepage #about .content .row .col-6 {
	color: #A5ABBD;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}

#homepage #about .content .row .col-6:nth-child(3),

#homepage #about .content .row .col-6:nth-child(4) {
	margin-top: 21px;
}

#homepage #about .content .btn {
	width: 171px;
	height: 54px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--theme-red);
	border: 1px solid var(--theme-red);
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	margin-top: 43px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #about .content .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#homepage #about .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	top: 50%;
	left: -30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #about .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

@media (max-width: 767px) {

	#homepage #about .img {
		padding-right: 0;
	}

	#homepage #about .img img {
		max-width: 100%;
	}

	#homepage #about .img .trust {
		right: 0;
		bottom: 20px;
		height: 95px;
		width: 95px;
	}

	#homepage #about .img .trust:before {
		height: 86px;
		width: 86px;
	}

	#homepage #about .img .trust p {
		font-size: 8px;
		line-height: 12px;
	}

	#homepage #about .img .trust h4 {
		margin-top: 3px;
		font-size: 15px;
		line-height: 18px;
	}

	#homepage #about {
		margin-top: 0px;
		padding: 20px 0px;
	}

	#homepage #about .content {
		margin-top: 40px;
	}

	#homepage #about .content h6 {
		font-size: 14px;
		line-height: 17px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#homepage #about .content h2 {
		font-size: 22px;
		line-height: 27px;
		text-align: center;
		margin-top: 8px;
	}

	#homepage #about .content p {
		margin-top: 16px;
		text-align: center;
		font-size: 14px;
		line-height: 1.5;
		color: #333;
	}


	.row.about-middle-content {
		flex-direction: column-reverse;
	}

	#homepage #about .content .row .col-6 {
		font-size: 12px;
		line-height: 15px;
	}

	#homepage #about .content .row .col-6 img {
		margin-right: 10px;
	}

	#homepage #about .content .row .col-6:nth-child(3),

	#homepage #about .content .row .col-6:nth-child(4) {
		margin-top: 10px;
	}

	#homepage #about .content .btn {
		margin-left: auto;
		margin-right: auto;
		margin-top: 26px;
		width: 117px;
		height: 35px;
		font-weight: 600;
		font-size: 12px;
	}

	#homepage #about .circle {
		top: 0;
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translate(0);
		height: 46px;
		width: 46px;
		left: -20px;
	}

	#homepage #about .circle:before {
		height: 36px;
		width: 36px;
	}
}

@media (max-width: 320px) {

	#homepage #about .content h2 {
		font-size: 18px;
		line-height: 22px;
	}

	#homepage #about .content h6 {
		font-size: 12px;
	}

	#homepage #about .content p {
		font-size: 10px;
		line-height: 13px;
	}

	#homepage #about .content .row .col-6 {
		font-size: 9px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#homepage #about .img img {
		max-width: 100%;
	}

	#homepage #about .circle {
		height: 70px;
		width: 70px;
		top: 30%;
	}

	#homepage #about .circle:before {
		height: 50px;
		width: 50px;
	}

	#homepage #about .img .trust {
		height: 120px;
		width: 120px;
		right: 0;
	}

	#homepage #about .img .trust:before {
		height: 100px;
		width: 100px;
	}

	#homepage #about .img .trust p {
		font-size: 10px;
	}

	#homepage #about .img .trust h4 {
		font-size: 24px;
		margin-top: 0;
	}

	#homepage #about .content h6 {
		font-size: 15px;
	}

	#homepage #about .content h2 {
		font-size: 22px;
		line-height: 34px;
		margin-top: 10px;
	}

	#homepage #about .content p {
		margin-top: 10px;
		font-size: 12px;
		line-height: 21px;
	}

	#homepage #about .content .row .col-6 {
		font-size: 11px;
	}

	#homepage #about .content .row .col-6:nth-child(3),
	#homepage #about .content .row .col-6:nth-child(4) {
		margin-top: 11px;
	}

	#homepage #about .content .row {
		margin-top: 10px;
	}

	#homepage #about .content .btn {
		margin-top: 23px;
	}

	#homepage #about {
		margin-top: 60px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#homepage #about .content h2 {
		font-size: 32px;
	}

	#homepage #about .content p {
		margin-top: 18px;
	}

	#homepage #about .img .trust {
		right: 0;
	}
}







/*slanted-icon*/

#homepage #slanted-icon.slanted-icon-left {
	-webkit-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	transform: rotate(-8deg);
}

#homepage #slanted-icon.slanted-icon-left .container-fluid .item {
	-webkit-transform: rotate(8deg);
	-ms-transform: rotate(8deg);
	transform: rotate(8deg);
}



/* icon */

#homepage #tech-icon {
	justify-content: center;
	margin-top: 5em;
}

/*portfolio*/

#homepage #portfolio {
	margin-top: 0px;
	position: relative;
}

#homepage #portfolio .heading {
	text-align: center;
}

#homepage #portfolio .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#homepage #portfolio .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#homepage #portfolio .heading h1 {
	margin-top: 16px;
	font-size: 40px;
	line-height: 49px;
	font-weight: bold;
	color: #404756;
}

#homepage #portfolio .heading h1 span {
	color: var(--theme-blue);
}

#homepage #portfolio .body {
	margin-top: 50px;
}

#homepage #portfolio .body .item {
	position: relative;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

#homepage #portfolio .body .item:hover .content {
	opacity: 1;
	visibility: visible;
}

#homepage #portfolio .body .item .content {
	position: absolute;
	border: 2px solid #FFFFFF;
	-webkit-box-shadow: 0px 0px 17px rgba(13, 118, 209, 0.8);
	box-shadow: 0px 0px 17px rgba(13, 118, 209, 0.8);
	border-radius: 5px;
	height: 90%;
	width: 90%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 33px;
	color: #fff;
	opacity: 0;
	z-index: 4;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-backdrop-filter: blur(11px);
	backdrop-filter: blur(11px);
	visibility: hidden;
}

#homepage #portfolio .body .item .content:before {
	content: '';
	background: rgba(13, 118, 209, 1);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.7;
}

#homepage #portfolio .body .item .content h6 {
	text-transform: uppercase;
	font-size: 22px;
	line-height: 27px;
	font-weight: 600;
}

#homepage #portfolio .body .item .content p {
	margin-top: 15px;
	font-size: 14px;
	line-height: 20px;
}

#homepage #portfolio .body .item .content h5 {
	margin-top: 15px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}

#homepage #portfolio .body .item .img {
	position: relative;
}

/*#homepage #portfolio .body .item .img:before{

	content: '';

	position: absolute;

	height: 100%;

	width: 100%;

	backdrop-filter: blur(1.5px);

	background: rgba(13, 118, 209, 0.1);

	left: 0;

	top: 0;

	border-radius: 10px;

}*/

#homepage #portfolio .body .item .content .buttons {
	margin-top: 30px;
}

#homepage #portfolio .body .item .content .buttons .btn {
	background: #fff;
	border-radius: 3px;
	width: 104px;
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#homepage #portfolio .body .item .content .buttons .btn2 {
	margin-left: 10px;
}

#homepage #portfolio .body .item .content .buttons .btn .text {
	color: #3d2970;
	font-size: 9px;
	font-weight: 600;
	margin-left: 5px;
}

#homepage #portfolio .body .item .content .buttons .btn .text2 {
	margin-left: 5px;
}

#homepage #portfolio .body .item .content .buttons .btn .text2 .small {
	font-size: 6px;
	color: #3d2970;
}

#homepage #portfolio .body .item .content .buttons .btn .text2 span:last-child {
	color: #3d2970;
	font-size: 9px;
	font-weight: 600;
	margin-top: -4px;
}

#homepage #portfolio .body .item .content.website .buttons a {
	padding: 0;
}

#homepage #portfolio .body .item .content.website .buttons a .text {
	font-size: 12px !important;
}

#homepage #portfolio .body .button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 50px;
}

#homepage #portfolio .body .button .btn {
	width: 147px;
	height: 54px;
	background: var(--theme-blue);
	color: #fff;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	border: 1px solid #3d2970;
	font-weight: 600;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #portfolio .body .button .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#homepage #portfolio .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 76px;
	height: 76px;
	top: -30px;
	left: -30px;
	z-index: -1;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #portfolio .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid #9BBA2F;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 59px;
	height: 59px;
}

#homepage #portfolio .circle2 {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 105px;
	height: 105px;
	top: 50%;
	right: -30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #portfolio .circle2:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid #9BBA2F;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 81px;
	height: 81px;
}

@media (max-width: 767px) {

	#homepage #portfolio .circle,

	#homepage #portfolio .circle2 {
		height: 46px;
		width: 46px;
	}

	#homepage #portfolio .circle:before,

	#homepage #portfolio .circle2:before {
		height: 36px;
		width: 36px;
	}

	#homepage #portfolio .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#homepage #portfolio .heading h1 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
		text-transform: capitalize;
	}

	#homepage #portfolio .body {
		margin-top: 12px;
	}

	#homepage #portfolio .body .item {
		margin-top: 20px;
	}

	#homepage #portfolio {
		margin-top: 0px;
	}

	#homepage #portfolio .body .button {
		margin-top: 24px;
	}

	#homepage #portfolio .body .button .btn {
		width: 117px;
		height: 34px;
		font-size: 12px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#homepage #portfolio .heading h1 {
		margin-top: 8px;
		font-size: 36px;
		line-height: 40px;
	}

	#homepage #portfolio .heading h6 {
		font-size: 16px;
	}

	#homepage #portfolio .body {
		margin-top: 25px;
	}

	#homepage #portfolio .body .button {
		margin-top: 30px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#homepage #portfolio .body .item .content h6 {
		font-size: 16px;
	}

	#homepage #portfolio .body .item .content p {
		font-size: 11px;
		margin-top: 10px;
	}

	#homepage #portfolio .body .item .content h5 {
		margin-top: 10px;
		font-size: 12px;
	}

	#homepage #portfolio .body .item .content {
		width: 95%;
		height: 95%;
	}

	#homepage #portfolio .body .item img.img-fluid {
		height: 100%;
		width: 100%;
	}
}





/*Testimonial*/

#homepage #testimonial {
	margin-top: 86px;
	position: relative;
}

#homepage #testimonial .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 97px;
	height: 97px;
	top: 50%;
	left: -30px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#homepage #testimonial .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid #9BBA2F;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 75px;
	height: 75px;
}

#homepage #testimonial .content h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#homepage #testimonial .content h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#homepage #testimonial .content h2 {
	margin-top: 16px;
	text-transform: uppercase;
	color: #404756;
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
}

#homepage #testimonial .content h2 span {
	color: var(--theme-blue);
}

#homepage #testimonial .content p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 23px;
	color: #9EA3B7;
}

#homepage #testimonial .content .buttons {
	margin-top: 36px;
}

#homepage #testimonial .content .buttons .next {
	margin-left: 10px;
}

#homepage #testimonial .content .buttons div {
	cursor: pointer;
}

#homepage #testimonial .content .buttons .slick-disabled {
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0.6;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#homepage #testimonial .item {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.13);
	box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.13);
	border-radius: 5px;
	padding: 21px 25px;
	position: relative;
	transition: all 0.3s;
}

#homepage #testimonial .item.second-item {
	margin-top: 82px;
}

#homepage #testimonial .item:hover {
	background: #3d2970;
	-webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}

#homepage #testimonial .item:hover h3 {
	color: #FFFFFF;
}

#homepage #testimonial .item:hover p {
	color: #FFFFFF;
}

#homepage #testimonial .item:hover svg path {
	fill: #3d2970;
}

#homepage #testimonial .padding-left {
	padding-left: 15px !important;
}

#homepage #testimonial .padding-right {
	padding-left: 5px !important;
	padding-right: 15px;
}

#homepage #testimonial .item-2 {
	padding-top: 60px;
	padding-bottom: 10px;
	padding-left: 8px;
	padding-right: 8px;
}

#homepage #testimonial .item-2 .row {
	position: relative;
}

#homepage #testimonial .item-2 .row:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: url('../images/vector-2.png');
	background-repeat: no-repeat;
	top: 0;
	left: -8px;
}

#homepage #testimonial .item ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 5px;
}

#homepage #testimonial .item ul li {
	margin-right: 3px;
}

#homepage #testimonial .item ul li:last-child {
	margin-right: 0;
}

#homepage #testimonial .item h3 {
	margin-top: 16px;
	color: var(--theme-blue);
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
}

#homepage #testimonial .item p {
	color: #9EA3B7;
	font-size: 15px;
	line-height: 21px;
	margin-top: 15px;
}

#homepage #testimonial .item svg {
	position: absolute;
	left: 14px;
	top: 19px;
}

#homepage #testimonial .item .profile {
	-webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
	border-radius: 100%;
	height: 105px;
	width: 105px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: -70px;
	background: #fff;
}

@media (max-width: 767px) {

	#homepage #testimonial .container {
		padding: 0 5px !important;
	}

	#homepage #testimonial .circle {
		height: 39.19px;
		width: 39.19px;
		top: 0;
		left: -10px;
	}

	#homepage #testimonial .circle:before {
		height: 30.27px;
		width: 30.27px;
	}

	#homepage #testimonial {
		margin-top: 69px;
	}

	#homepage #testimonial .container {
		padding-left: var(--bs-gutter-x, 0.65rem);
		padding-right: var(--bs-gutter-x, 0.65rem);
	}

	#homepage #testimonial .content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}

	#homepage #testimonial .content h6 {
		font-size: 13px;
		line-height: 16px;
	}

	#homepage #testimonial .content h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
	}

	#homepage #testimonial .content p {
		margin-top: 16px;
		font-size: 12px;
		line-height: 17px;
	}

	#homepage #testimonial .content .buttons {
		margin-top: 16px;
	}

	#homepage #testimonial .content .buttons img {
		max-width: 26px;
	}

	#homepage #testimonial .item.active {
		background: #fff;
		-webkit-box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.13);
		box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.13);
	}

	#homepage #testimonial .item.active h3 {
		color: var(--theme-blue);
	}

	#homepage #testimonial .item.active p {
		color: #9EA3B7;
	}

	#homepage #testimonial .item svg {
		width: 29px;
		left: 8px;
		top: 5px;
	}

	#homepage #testimonial .item.active svg path {
		fill: #F1F1F1;
		;
	}

	#homepage #testimonial .padding-left {
		padding-left: 10px !important;
	}

	#homepage #testimonial .padding-right {
		padding-left: 0 !important;
		padding-right: 10px !important;
	}

	#homepage #testimonial .item p {
		font-size: 10px;
		line-height: 14px;
	}

	#homepage #testimonial .item {
		padding: 10px 16px 21px 16px;
	}

	#homepage #testimonial .item-2 .row:before {
		background: url('../images/vector2.png');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
	}

	#homepage #testimonial .item h3 {
		font-size: 13px;
		line-height: 16px;
		margin-top: 9px;
	}

	#homepage #testimonial .item .profile {
		height: 63px;
		width: 63px;
		margin-top: -50px;
	}

	#homepage #testimonial .item .profile img {
		height: 56px;
		width: 56px;
	}

	#homepage #testimonial .item-2 .row:before {
		background-position: top left;
	}

	#homepage #testimonial .circle2 {
		position: absolute;
		border-radius: 100%;
		border: 1px solid #3d2970;
		-webkit-animation: mover 1s infinite alternate;
		animation: mover 1s infinite alternate;
		width: 39px;
		height: 39px;
		bottom: -50px;
		right: -20px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-animation-delay: 0.2s;
		animation-delay: 0.2s;
	}

	#homepage #testimonial .circle2:before {
		position: absolute;
		background: #3d2970;
		border: 1px solid #9BBA2F;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		content: '';
		border-radius: 100%;
		-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
		box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 320px) {

	#homepage #testimonial .item {
		padding: 21px 10px;
	}

	#homepage #testimonial .item p {
		font-size: 8px;
		line-height: 12px;
	}

	#homepage #testimonial .item svg {
		width: 15px;
	}

	#homepage #testimonial .item h3 {
		font-size: 10px;
	}

	#homepage #testimonial .item .profile {
		width: 40px;
		height: 40px;
		margin-top: -40px;
	}

	#homepage #testimonial .item .profile img {
		height: 36px;
		width: 36px;
	}
}

@media (max-width: 320px) {

	#homepage #testimonial .content p {
		font-size: 9px;
		line-height: 13px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#homepage #testimonial .circle {
		height: 39.19px;
		width: 39.19px;
		top: 0;
		left: -10px;
	}

	#homepage #testimonial .circle:before {
		height: 30.27px;
		width: 30.27px;
	}

	#homepage #testimonial .content h6 {
		font-size: 16px;
		line-height: 18px;
	}

	#homepage #testimonial .content h2 {
		font-size: 24px;
		line-height: 26px;
		margin-top: 10px;
	}

	#homepage #testimonial .content p {
		font-size: 12px;
		margin-top: 10px;
		line-height: 18px;
	}

	#homepage #testimonial .content .buttons {
		margin-top: 20px;
	}

	#homepage #testimonial .padding-left {
		padding-left: 5px !important;
	}

	#homepage #testimonial .padding-right {
		padding-right: 5px !important;
	}

	#homepage #testimonial .item p {
		font-size: 9px;
		line-height: 15px;
		margin-top: 10px;
	}

	#homepage #testimonial .item h3 {
		margin-top: 8px;
		font-size: 14px;
	}

	#homepage #testimonial .item .profile {
		height: 70px;
		width: 70px;
		margin-top: -60px;
	}

	#homepage #testimonial .item .profile img {
		max-width: 100%;
		height: 60px;
		width: 60px;
	}

	#homepage #testimonial .item svg {
		width: 29px;
		top: 5px;
		left: 5px;
	}

	#homepage #testimonial {
		margin-top: 50px;
	}
}







/*get in touch*/

#get-touch {
	margin-top: 100px;
	background: #F1F9FF;
	padding: 157px 0;
}


#get-touch .content h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: capitalize;
}

#get-touch .content h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#get-touch .content h2 {
	margin-top: 16px;
	color: var(--theme-blue);
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	font-weight: bold;
}

#get-touch .content h2 span {
	color: #404756;
}

#get-touch .form {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	border-radius: 10px;
	border: 1px solid #afafaf;
	padding: 10px 20px;
	position: absolute;
	top: -123%;
}

#get-touch .form .row {
	margin-top: 25px;
}

#get-touch .form .row:first-child {
	margin-top: 0;
}

#get-touch .form .form-group {
	position: relative;
}

#get-touch .form .form-group input.form-control {
	height: 48px;
}

#get-touch .form .form-group input.red {
	color: #FF1010 !important;
	border-color: #FF1010 !important;
}

#get-touch .form .form-group textarea.form-control {
	height: 107px;
	padding-top: 10px;
	resize: none;
}

#get-touch .form .form-group .form-control {
	background: #f7f7f7;
	border-radius: 3px;
	border: 1px solid #cfcfcf;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 15px;
	font-weight: 500;
	font-size: 14px;
	color: #9EA3B7 !important;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#get-touch .form .form-group .form-control:focus {
	border-color: var(--theme-blue);
	background: #f7f7f76b;
	color: var(--theme-blue) !important;
	border: 1px solid #cfcfcf;
}

#get-touch .form .form-group span {
	background: #f7f7f76b;
	border-radius: 3px;
	padding: 0px 10px;
	height: 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #404756;
	font-size: 14px;
	position: absolute;
	left: 5px;
	top: -10px;


}

#get-touch .form .form-group label.error {
	background: transparent;
	padding: 0px;
	color: red;
	font-size: 11px;
	position: absolute;
	text-transform: capitalize;
}


#get-touch .form .btn {
	width: 100%;
	background: #3d2970;
	border: 1px solid #3d2970;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	height: 49px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#get-touch .form .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#get-touch .form .popup-inner {
	background: #F1F9FF;
	border-radius: 5px;
	height: calc(100% - 47px);
	width: calc(100% - 47px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

#get-touch .form .popup-inner.active {
	opacity: 1;
	visibility: visible;
}

#get-touch .form .popup-inner h4 {
	margin-top: 37px;
	color: var(--theme-blue);
	font-size: 30px;
	line-height: 37px;
	font-weight: bold;
}

#get-touch .form .popup-inner p {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--theme-blue);
}

@media (max-width: 767px) {

	#get-touch .content {
		text-align: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#get-touch .content h6 {
		font-size: 14px;
	}

	#get-touch .content h2 {
		font-size: 20px;
		line-height: 24px;
		margin-top: 8px;
	}

	#get-touch {
		padding: 33px 0;
		margin-top: 113px;
	}

	#get-touch .form {
		margin: 28px 0;
		padding: 12px;
		position: relative;
		top: 0;
		margin-bottom: 0px;
	}

	#get-touch .form .row {
		margin-top: 25px;
	}

	#get-touch .form .form-group label {
		font-size: 10px;
		left: 0px;
		height: 11px;
	}

	#get-touch .form .form-group textarea.form-control {
		height: 64px;
	}

	#get-touch .form .btn {
		height: 29px;
		font-size: 11px;
		border-radius: 1.8px;
	}

	#get-touch .form .form-group .form-control {
		padding-left: 14px;
		font-size: 10px;
	}

	#get-touch .form .form-group input.form-control {
		height: 29px;
	}

	#get-touch .form .popup-inner h4 {
		margin-top: 25px;
		font-size: 25px;
		line-height: 25px;
	}

	#get-touch .form .popup-inner p {
		font-size: 11px;
	}

	#get-touch .form .popup-inner {
		height: calc(100% - 20px);
		width: calc(100% - 20px);
	}
}

@media (max-width: 320px) {

	#get-touch .form {
		padding: 28px 15px;
	}

	#get-touch .form .form-group label {
		font-size: 8px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#youtube {
		display: none;
	}

	#get-touch .content h6 {
		font-size: 16px;
	}

	#get-touch .content h2 {
		font-size: 22px;
		line-height: 30px;
		margin-top: 8px;
	}

	#get-touch .form {
		padding: 30px 20px;
		top: -115px;
		/* padding-top: -250px; */
		;
	}

	#get-touch .form .form-group label {
		height: 15px;
		font-size: 12px;
		left: 15px;
	}

	#get-touch .form .form-group input.form-control {
		height: 35px;
	}

	#get-touch .form .form-group .form-control {
		padding-left: 15px;
	}

	#get-touch .form .btn {
		height: 35px;
		font-size: 14px;
	}

	#get-touch .form .row {
		margin-top: 20px;
	}

	#get-touch {
		margin-top: 70px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#get-touch .content h2 {
		font-size: 32px;
		line-height: 38px;
		margin-top: 12px;
	}

	#get-touch .content h6 {
		font-size: 16px;
	}
}







/*footer*/

#footer {
	padding: 60px 0 35px 0;
	background: var(--theme-black-light);
}

.ft-brand {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	width: 150px;
}

#footer p {
	margin-top: 31px;
	font-size: 15px;
	line-height: 26px;
	color: #fff;
}

#footer ul {
	list-style: none;
}

#footer .heading {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #FFFFFF;
	margin-top: 10px;
	text-transform: uppercase;
}

#footer ul {
	margin-top: 34px;
}

#footer ul li {
	margin-top: 5px;
}

#footer ul li a {
	color: #fff;
	font-size: 15px;
	line-height: 20px;
}

#footer ul li i {
	color: #fff;
	margin-right: 15px;
}

#footer .social-media {
	margin-left: 15px;
	margin-top: 18px;
}

#footer .social-media a {
	height: 40px;
	width: 40px;
	border-radius: 100%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: 10px;
	color: #333;
}

.hideee {
	display: none;
}




/*inner page*/

.inner-page #navbar {
	top: 0;
	margin-top: 0;
	padding: 25px 0;
	background: #fff;
}


.inner-page {
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.inner-page:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: radial-gradient(42.2% 42.2% at 50% 57.8%, rgb(0 0 0 / 58%) 0%, rgb(0 0 0 / 56%) 100%);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	z-index: 2;
}

.inner-page .container {
	z-index: 8;
}

.inner-page .content h2 {
	color: #fff;
	font-size: 30px;
	line-height: 60px;
	font-weight: 600;
}

.inner-page .content .breadcumb {
	margin-top: 11px;
}

.inner-page .content .breadcumb h6 {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
}

.inner-page .content .breadcumb .fa {
	margin-left: 18px;
	margin-right: 18px;
	color: white;
}

.client-col-card {
	background-color: #fff;
	padding: 1rem;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 142, .1098039216);
	box-shadow: 0px 0px 8px rgba(0, 0, 142, .1098039216);
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	margin-bottom: 20px;
	align-items: center;
}

/* .client-col {
	width: 175px;
	text-align: center;
	padding-right: 20px;
}

.client-col-content {
	width: 85%;
}

.client-col-card img {
	height: 100px;
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: .2s ease;
	transition: .2s ease;
} */
.client-col {
	width: 220px;
	box-shadow: 0px 5px 4px #bfbfbf;
	background-color: #fff;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	margin: 0 15px;
	overflow: hidden;
	height: 135px !important;
	box-sizing: border-box;
}

.client-col-content {
	width: 85%;
}

.client-col-card img {
	/* height: 100px; */
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	max-width: 100%;
	height: auto;
	-webkit-transition: .2s ease;
	transition: .2s ease;
}

.client-col-card:hover.client-col-card img {
	filter: grayscale(1);
}

.opening-popup {
	padding: 0 15px;
}

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

.opening-popup .apply-now p {
	font-size: 18px;
	color: #3a3a3a;
}

.opening-popup .apply-now a {
	color: #f14d4e;
}

.urgent-opening-section .heading h2 {
	margin-top: 16px;
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	font-weight: bold;
	color: #404756;
}




/*copyright*/

#copyright {
	background: var(--theme-red);
	padding: 10px 0;
}

#copyright p {
	color: #fff;
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
}

#copyright p a {
	color: #fbfbfb;
	font-weight: 500;
	text-decoration: underline !important;
	font-size: 12px;
	padding-left: 0px;
}

.icon-center {
	text-align: center;
	padding-bottom: 1em;
}


@media (max-width: 767px) {

	.hideee {
		display: block;
	}

	#footer .item .brand img {
		width: 128px;
	}

	#footer p {
		font-size: 12px;
		line-height: 19px;
		margin-top: 16px;
	}

	#footer .center {
		margin-top: 10px;
	}

	#footer ul {
		margin-top: 16px;
	}

	#footer .right {
		margin-top: 10px;
	}

	#footer ul {
		margin-top: 0;
	}

	#footer ul li a {
		font-size: 12px;
		line-height: 15px;
	}

	#footer {
		padding-bottom: 20px;
		padding-top: 40px;
	}

	#footer .heading {
		margin-bottom: 11px;
	}

	#footer .social-media a {
		height: 26px;
		width: 26px;
		font-size: 12px;
	}



	.home-slider .slick-prev,
	.home-slider .slick-next {
		display: none !important;
	}


}

@media (min-width: 768px) and (max-width: 991px) {

	#footer p {
		font-size: 9px;
		line-height: 16px;
		margin-top: 20px;
	}

	#footer ul li a {
		font-size: 9px;
	}

	#footer .brand img {
		width: 160px;
	}

	#footer .heading {
		font-size: 12px;
	}

	#footer ul {
		margin-top: 0px;
	}

	#footer ul li {
		margin-top: 7px;
	}

	#footer {
		padding-bottom: 50px;
		padding-top: 70px;
	}
}



@media (max-width: 767px) {

	#copyright {
		padding: 8px 0;
	}

	#copyright p {
		font-size: 10px;
		line-height: initial;
	}

}

@media (min-width: 768px) and (max-width: 991px) {

	#copyright p {
		font-size: 14px;
	}
}











@media (max-width: 767px) {

	.inner-page #navbar {
		padding: 7px 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	.inner-page #navbar {
		padding: 16px 0;
	}
}



@media (max-width: 767px) {

	.inner-page #inner-header .content h2 {
		font-size: 40px;
		line-height: 49px;
	}

	.inner-page #inner-header .content .breadcumb {
		margin-top: 8px;
	}

	.inner-page #inner-header .content .breadcumb h6 {
		font-size: 10px;
		line-height: 12px;
	}

	.inner-page #inner-header .content .breadcumb img {
		max-width: 4px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.inner-page #inner-header {
		height: 355px;
		padding-top: 55px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	.inner-page #inner-header {
		height: 500px;
	}

	.inner-page #inner-header .content h2 {
		font-size: 50px;
		line-height: 52px;
	}

	.inner-page #inner-header .content .breadcumb h6 {
		font-size: 16px;
	}

	.inner-page #inner-header .content .breadcumb img {
		max-width: 6px;
		margin: 0 12px;
	}
}













/*about page*/

/*benefit*/

#benefits {
	padding: 60px 0 120px 0;
}

#benefits .heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#benefits .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: capitalize;
}

#benefits .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#benefits .heading h2 {
	margin-top: 16px;
	color: var(--theme-blue);
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	font-weight: bold;
}

#benefits .heading h2 span {
	color: #404756;
}

#benefits .body {
	margin-top: 50px;
}

#benefits .body .img .vector {
	position: absolute;
	top: -10px;
	right: 10px;
	z-index: -1;
}

#benefits .body .content h3 {
	color: var(--theme-blue);
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
}

#benefits .body .content p {
	margin-top: 21px;
	color: #9EA3B7;
	font-size: 16px;
	line-height: 23px;
}

#benefits .body .content ul {
	margin-top: 10px;
}

#benefits .body .content ul li {
	margin-top: 22px;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
}

#benefits .body .content ul li img {
	margin-right: 9px;
}

#benefits .body .content .btn {
	margin-top: 40px;
	background: #3d2970;
	border: 1px solid #3d2970;
	border-radius: 5px;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	height: 45px;
	width: 205px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#benefits .body .content .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#benefits .img .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 71px;
	height: 71px;
	bottom: -34px;
	right: -28px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	z-index: -1;
}

#benefits .img .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 54px;
	height: 54px;
}

@media (max-width: 767px) {

	#benefits {
		padding: 50px 0 32px 0;
	}

	#benefits .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#benefits .heading h2 {
		margin-top: 8px;
		font-size: 20px;
		line-height: initial;
		text-align: center;
		margin-bottom: 0px !important;
	}

	#benefits .img img:last-child {
		max-width: 90%;
	}

	#benefits .img .vector {
		right: 0 !important;
		max-width: 70%;
	}

	#benefits .body .content {
		margin-top: 40px;
	}

	#benefits .body .content h3 {
		font-size: 14px;
		line-height: 21px;
	}

	#benefits .body .content h3 br {
		display: none;
	}

	#benefits .body .content p {
		margin-top: 16px;
		font-size: 12px;
		line-height: 17px;
	}

	#benefits .body .content ul {
		margin-top: 4px;
	}

	#benefits .body .content ul li {
		margin-top: 12px;
		font-size: 12px;
		line-height: 15px;
	}

	#benefits .body .content .btn {
		margin-top: 26px;
		margin: 26px auto 0 auto;
		width: 135px;
		height: 36px;
		font-size: 12px;
	}

	#benefits .img .circle {
		height: 29px;
		width: 29px;
		left: 0px;
	}

	#benefits .img .circle {
		bottom: 30px;
	}

	#benefits .img .circle:before {
		height: 22.58px;
		width: 22.58px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#benefits {
		padding: 70px 0 30px 0;
	}

	#benefits .heading h6 {
		font-size: 16px;
	}

	#benefits .heading h2 {
		font-size: 28px;
		line-height: 22px;
	}

	#benefits .body .content h3 {
		font-size: 13px;
		line-height: 20px;
	}

	#benefits .body .content h3 br {
		display: none;
	}

	#benefits .body .content p {
		margin-top: 11px;
		font-size: 13px;
		line-height: 17px;
	}

	#benefits .body .content ul {
		margin-top: 5px;
	}

	#benefits .body .content ul li {
		font-size: 11px;
		line-height: 14px;
		margin-top: 11px;
	}

	#benefits .body .content .btn {
		margin-top: 20px;
		width: 180px;
		height: 40px;
		font-size: 14px;
	}

	#benefits .img img:last-child {
		max-width: 90%;
	}

	#benefits .img .vector {
		right: 0 !important;
		max-width: 70%;
	}

	#benefits .img .circle {
		height: 35px;
		width: 35px;
		left: -10px;
		bottom: 30px;
	}

	#benefits .img .circle:before {
		height: 27.58px;
		width: 27.58px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#benefits .img img:last-child {
		max-width: 90%;
	}

	#benefits .img .vector {
		right: 0 !important;
		max-width: 70%;
	}
}







/*supporter*/

@media (max-width: 767px) {

	#supporter .item img {
		width: 88px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#supporter .item img {
		width: 99px;
	}
}



/*Tech-icon*/

@media (max-width: 767px) {

	#homepage #tech-icon .item img {
		/* width: 88px; */
		;
	}
}

#homepage #tech-icon {
	display: block;
}

@media (min-width: 768px) and (max-width: 991px) {

	#homepage #tech-icon .item img {
		/* width: 99px; */
		;
	}
}

#homepage #tech-icon {
	display: block;
}

@media (max-width: 767px) {

	#homepage .heading h2 {
		margin-bottom: 45px;
	}
}

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

	#homepage .heading h2 {
		margin-bottom: 45px;
	}
}

@media (min-width: 1024px) {

	#homepage #tech-icon {
		/* display: flex; */
		justify-content: center;
		margin-top: 5em;
	}
}



/*skills*/

#skills {
	margin-top: 120px;
	/* background: url('../images/skills-bg.png'); */
	background-size: cover;
	padding: 56px 0;
}

#skills .content h2 {
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	color: #3d2970;
}

#skills .content p {
	font-size: 16px;
	line-height: 23px;
	color: #3d2970;
	margin-top: 16px;
}

#skills .item-parent .item .clearfix {
	clear: both;
}

#skills .item-parent .item .clearfix .float-left {
	float: left;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #3d2970;
	text-transform: capitalize;
}

#skills .item-parent .item .clearfix .float-right {
	float: right;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #3d2970;
	margin-top: 15px;
}

#skills .item-parent .item {
	margin-top: 40px;
}

#skills .item-parent .item:first-child {
	margin-top: 0;
}

#skills .item-parent .item .line {
	margin-top: 2px;
	border-radius: 11px;
	width: 100%;
	height: 11px;
	background: #9BBA2F;
	-webkit-box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
	position: relative;
}

#skills .item-parent .item:nth-child(1) .line.scrolled:before {
	width: 85%;
}

#skills .item-parent .item:nth-child(2) .line.scrolled:before {
	width: 90%;
}

#skills .item-parent .item:nth-child(3) .line.scrolled:before {
	width: 93%;
}

#skills .item-parent .item:nth-child(4) .line.scrolled:before {
	width: 85%;
}

#skills .item-parent .item:nth-child(5) .line.scrolled:before {
	width: 80%;
}

#skills .item-parent .item:nth-child(6) .line.scrolled:before {
	width: 83%;
}

#skills .item-parent .item .line:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 50%;
	-webkit-transform: translateY(-57%);
	-ms-transform: translateY(-57%);
	transform: translateY(-57%);
	height: 7px;
	width: 0;
	background: #3d2970;
	-webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
	border-radius: 11px;
	transition: all 0.5s;
}

#skills .item-parent .item:nth-child(1) .line:before {
	/*width: 0%;*/
	;
}

#skills .item-parent .item:nth-child(2) .line:before {
	/*width: 90%;*/
	;
}

#skills .item-parent .item:nth-child(3) .line:before {
	/*width: 93%;*/
	;
}

#skills .item-parent .item:nth-child(4) .line:before {
	/*width: 85%;*/
	;
}

@media (max-width: 767px) {

	#skills {
		/*background: url('../images/skills-bg-2.png');*/
		background-size: cover;
		background-repeat: no-repeat;
		margin-top: 50px;
		padding: 40px 0;
		position: relative;
	}

	#skills .content h2 {
		text-align: center;
		font-size: 22px;
		line-height: 27px;
	}

	#skills .content p {
		margin-top: 8px;
		font-size: 12px;
		line-height: 17px;
		text-align: center;
	}

	#skills .item-parent {
		margin-top: 24px;
	}

	#skills .item-parent .item {
		margin-top: 24px;
	}

	#skills .item-parent .item .clearfix .float-left {
		font-size: 12px;
	}

	#skills .item-parent .item .clearfix .float-right {
		font-size: 12px;
	}

	#skills .item-parent .item .clearfix .float-right {
		margin-top: 10px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#skills .content h2 {
		font-size: 26px;
		line-height: 30px;
	}

	#skills .content h2 br {
		display: none;
	}

	#skills .content p {
		margin-top: 8px;
		font-size: 10px;
		line-height: 17px;
	}

	#skills .item-parent .item .clearfix .float-right {
		font-size: 12px;
		margin-top: 8px;
	}

	#skills .item-parent .item .clearfix .float-left {
		font-size: 12px;
	}

	#skills .item-parent .item {
		margin-top: 20px;
	}

	#skills {
		margin-top: 60px;
		padding: 40px 0;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#skills .content h2 {
		font-size: 35px;
	}
}







/*mission vision*/

#mission-vision {
	margin-top: 120px;
	position: relative;
}

#mission-vision ul li button {
	color: #3d2970;
	font-weight: bold;
	font-size: 40px;
	width: 227px;
	height: 76px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#mission-vision ul li button.active {
	background: #f7fbfe;
	border-radius: 5px 5px 0px 0px;
	color: #9BBA2F;
	-webkit-box-shadow: inset 0px -1px 6px rgba(21, 101, 154, 0.23);
	box-shadow: inset 0px -1px 6px rgba(21, 101, 154, 0.23);
	position: relative;
	z-index: 6;
}

#mission-vision ul li button.active:before {
	display: block;
}

#mission-vision ul li button:before {
	content: '';
	position: absolute;
	height: 25px;
	width: 98%;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #f7fbfe;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: none;
}

#mission-vision .body .tab-content {
	background: #f7fbfe;
	border-radius: 10px;
	-webkit-box-shadow: inset 0px -1px 6px rgba(21, 101, 154, 0.23);
	box-shadow: inset 0px -1px 6px rgba(21, 101, 154, 0.23);
	padding: 75px 160px;
	position: relative;
}

#mission-vision .body .content p {
	font-weight: 500;
	font-size: 20px;
	line-height: 35px;
	color: #9EA3B7;
	text-transform: capitalize;
	text-align: center;
}

#mission-vision .body .content .quote {
	width: 100px;
	position: absolute;
	left: 90px;
	top: 48px;
}

#mission-vision .body .content .mission-icon {
	width: 75px;
	position: absolute;
	bottom: 33px;
	right: 32px;
}

#mission-vision .body .content .mission-icons {
	width: 60px;
	position: absolute;
	bottom: 33px;
	right: 32px;
}

#mission-vision .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	bottom: 40px;
	left: -40px;
	top: 25%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	z-index: -1;
}

#mission-vision .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

@media (max-width: 767px) {

	#mission-vision {
		margin-top: 50px;
	}

	#mission-vision ul li button {
		height: 30px;
		font-size: 12px;
		width: 90px;
	}

	#mission-vision ul li button:before {
		height: 10px;
		bottom: -4px;
	}

	#mission-vision ul li button.active {
		-webkit-box-shadow: inset 0px -0.298291px 1.78974px rgba(21, 101, 154, 0.23);
		box-shadow: inset 0px -0.298291px 1.78974px rgba(21, 101, 154, 0.23);
	}

	#mission-vision .body .content {
		-webkit-box-shadow: inset 0px -0.298291px 1.78974px rgba(21, 101, 154, 0.23);
		box-shadow: inset 0px -0.298291px 1.78974px rgba(21, 101, 154, 0.23);
		padding: 30px 45px;
	}

	#mission-vision .body .content p {
		font-weight: 500;
		font-size: 12px;
		line-height: 22px;
	}

	#mission-vision .body .content .quote {
		left: 13px;
		top: 17px;
		width: 28px;
	}

	#mission-vision .body .content .mission-icon {
		width: 36px;
		bottom: 9px;
		right: 9px;
	}

	#mission-vision .circle {
		height: 35px;
		width: 35px;
		left: -15px;
		top: -35px;
	}

	#mission-vision .circle:before {
		width: 27px;
		height: 27px;
	}

	#mission-vision .body .tab-content {
		padding: 0 !important;
	}

	#mission-vision .body .content {
		border-radius: 10px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#mission-vision ul li button {
		width: 220px;
		height: 60px;
		font-size: 31px;
	}

	#mission-vision .body .content {
		padding: 40px 80px;
	}

	#mission-vision .body .content p {
		font-size: 16px;
		line-height: 30px;
	}

	#mission-vision .body .content .quote {
		left: 45px;
		top: 20px;
	}

	#mission-vision .body .content .mission-icon {
		bottom: 20px;
		right: 15px;
		width: 45px;
	}

	#mission-vision {
		margin-top: 60px;
	}

	#mission-vision .circle {
		height: 80px;
		width: 80px;
		top: 0;
	}

	#mission-vision .circle:before {
		height: 60px;
		width: 60px;
	}
}







/*stats*/

#stats {
	padding: 35px 0;
	position: relative;
	margin-top: 110px;
}

#stats h3 {
	color: var(--theme-blue);
	font-size: 90px;
	line-height: 110px;
	font-weight: bold;
}

#stats p {
	color: #9EA3B7;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	margin-top: 8px;
	text-transform: uppercase;
}

#stats h2 {
	font-weight: 900;
	font-size: 300px;
	line-height: 417px;
	-webkit-text-stroke: 1px rgba(13, 118, 209, 0.12);
	-webkit-text-fill-color: transparent;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-transform: uppercase;
	z-index: -1;
}

@media (max-width: 767px) {

	#stats h2 {
		display: none;
	}

	#stats h3 {
		font-size: 24px;
		line-height: 29px;
	}

	#stats p {
		margin-top: 14px;
		font-size: 12px;
		line-height: 15px;
	}

	#stats .row .col-lg-3 {
		padding-top: 0;
		margin-top: 36px;
	}

	#stats {
		margin-top: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#stats h2 {
		font-size: 110px;
	}

	#stats h3 {
		font-size: 60px;
		line-height: 65px;
	}

	#stats {
		margin-top: 50px;
	}

	#stats .row .col-lg-3 {
		padding: 0;
	}

	#stats p {
		font-size: 11px;
	}
}

@media (min-width: 992px) and (max-width: 1204px) {

	#stats h2 {
		font-size: 150px;
		line-height: 0;
	}

	#stats h3 {
		font-size: 80px;
		line-height: 100px;
	}

	#stats {
		margin-top: 50px;
	}

	#stats .row .col-lg-3 {
		padding-top: 0;
	}

	#stats p {
		font-size: 14px;
	}
}

@media (min-width: 1025px) and (max-width: 1200px) {

	#stats h2 {
		font-size: 180px;
	}
}

@media (min-width: 1201px) and (max-width: 1400px) {

	#stats h2 {
		font-size: 190px;
	}
}

@media (min-width: 1401px) and (max-width: 1600px) {

	#stats h2 {
		font-size: 210px;
	}
}

@media (min-width: 1601px) and (max-width: 1800px) {

	#stats h2 {
		font-size: 240px;
	}
}







/*get-in-touch-2*/

#get-in-touch2 {
	background: url('../images/conbg.png');
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	margin-top: 100px;
	padding: 113px 0;
}

#get-in-touch2 .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
}

#get-in-touch2 .content h2 {
	font-size: 40px;
	line-height: 55px;
	color: #3d2970;
	text-transform: uppercase;
	font-weight: 400;
}

#get-in-touch2 .content h2 span {
	font-weight: bold;
}

#get-in-touch2 .content .btn {
	margin-top: 31px;
	border: 1px solid #3d2970;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	background: #FFFFFF;
	width: 229px;
	height: 54px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--theme-blue);
	font-weight: 600;
	font-size: 16px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#get-in-touch2 .content .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media (max-width: 767px) {

	#get-in-touch2 {
		padding: 32px 0;
	}

	#get-in-touch2 .content h2 {
		font-size: 14px;
		line-height: 20px;
	}

	#get-in-touch2 .content .btn {
		margin-top: 16px;
		width: 135px;
		height: 32px;
		font-size: 12px;
		padding: 0;
	}

	#get-in-touch2 {
		margin-top: 18px;
		background: url('../images/conbg.png') !important;
		background-size: cover;
		background-repeat: no-repeat;
	}

	#get-touch {
		margin-top: 50px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#get-in-touch2 {
		margin-top: 70px;
		padding: 60px 0;
	}

	#get-in-touch2 .content h2 {
		font-size: 30px;
		line-height: 40px;
	}

	#get-in-touch2 .content .btn {
		margin-top: 15px;
		font-size: 14px;
		width: 200px;
		height: 48px;
	}

	#get-in-touch2 {
		background: url('../images/conbg.png') !important;
		background-repeat: no-repeat;
		background-size: cover;
	}
}















/*service page*/

/*services*/

#service-page #services {
	padding-top: 111px;
	padding-bottom: 120px;
	position: relative;
}

#service-page #services .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	bottom: 40px;
	left: -40px;
	top: 25%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	z-index: -1;
}

#service-page #services .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#service-page #services .heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
}

#service-page #services .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: capitalize;
}

#service-page #services .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#service-page #services .heading h2 {
	margin-top: 16px;
	font-size: 40px;
	line-height: 49px;
	text-transform: uppercase;
	font-weight: bold;
	color: #404756;
}

#service-page #services .heading h2 span {
	color: var(--theme-blue);
}

#service-page #services .heading p {
	margin-top: 16px;
	color: #9EA3B7;
	font-size: 16px;
	line-height: 23px;
}

#service-page #services .body {
	margin-top: 20px;
}

#service-page #services .body .item {
	padding: 0 44px 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: ease-out 0.5s;
	-o-transition: ease-out 0.5s;
	transition: ease-out 0.5s;
	border-radius: 10px;
	margin-top: 30px;
	position: relative;
}

/*#service-page #services .body .item:before{

	content: '';

	position: absolute;

	width: 100%;

	height: 100%;

	top: 0;

	left: 0;

	background: linear-gradient(to right, #0D76D1 0%, #0D76D1 100%), linear-gradient(to top, #0D76D1 50%, transparent 50%), linear-gradient(to top, #0D76D1 50%, transparent 50%), linear-gradient(to right, #0D76D1 0%, #0D76D1 100%), linear-gradient(to left, #0D76D1 0%, #0D76D1 100%);

	background-size: 100% 1px, 1px 200%, 1px 200%, 0% 1px, 0% 1px;

	background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;

	background-repeat: no-repeat, no-repeat;

	transition: transform 0.2s ease-in-out, background-position 0.2s ease-in-out, background-size 0.2s ease-in-out;

	transform: scaleX(0) rotate(180deg);

	transition-delay: 0.4s, 0.2s, 0s;

	background-origin: border-box;

    background-clip: padding-box, border-box;

}

#service-page #services .body .item:hover:before{

	background-size: 200% 1px, 1px 400%, 1px 400%, 55% 1px, 55% 1px;

	background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;

	transform: scaleX(1) rotate(180deg);

	transition-delay: 0s, 0.2s, 0.4s;

}*/

#service-page #services .body .item:hover .hoverBtn:before,

#service-page #services .body .item:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#service-page #services .body .item:hover .hoverBtn-bottom:before,

#service-page #services .body .item:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#service-page #services .body .item:hover {
	-webkit-box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
	box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
}

#service-page #services .body .item:hover .icon {
	background: var(--theme-blue);
}

#service-page #services .body .item:hover .icon svg path {
	fill: #fff !important;
}

#service-page #services .body .item .icon {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 8px 12px rgba(21, 101, 154, 0.08);
	box-shadow: 0px 8px 12px rgba(21, 101, 154, 0.08);
	border-radius: 0px 0px 50px 50px;
	width: 97px;
	height: 107px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#service-page #services .body .item .icon svg path {
	fill: var(--theme-blue) !important;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#service-page #services .body .item h2 {
	margin-top: 35px;
	color: var(--theme-blue);
	font-weight: bold;
	font-size: 23px;
	line-height: 28px;
	text-transform: uppercase;
}

#service-page #services .body .item p {
	margin-top: 16px;
	color: #9EA3B7;
	font-size: 15px;
	line-height: 21px;
}

@media (max-width: 767px) {

	#service-page #services .heading h6 .dot {
		height: 4px;
		width: 4px;
		margin-right: 7px;
	}

	#service-page #services .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#service-page #services .heading h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
	}

	#service-page #services .heading p {
		font-size: 12px;
		line-height: 17px;
	}

	#service-page #services .heading p br {
		display: none;
	}

	#service-page #services .body {
		margin-top: 0px;
	}

	#service-page #services .body .col-lg-4:nth-child(1) .item .icon svg {
		width: 49px !important;
		height: 38px !important;
	}

	#service-page #services .body .item {
		-webkit-box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.1);
		box-shadow: 0px 3px 10px rgba(13, 118, 209, 0.1);
		border-radius: 7.14696px;
	}

	#service-page #services .body .item:before {
		display: none;
	}

	#service-page #services .body .item .icon {
		background: #EEF7FF;
		-webkit-box-shadow: none;
		box-shadow: none;
		width: 75px;
		height: 76px;
		padding: 16px 17px;
	}

	#service-page #services .body .item .icon svg {
		width: 100%;
	}

	#service-page #services .body .item h2 {
		margin-top: 24px;
		font-size: 16px;
		line-height: 20px;
	}

	#service-page #services .body .item p {
		margin-top: 8px;
		font-size: 12px;
		line-height: 17px;
	}

	#service-page #services {
		padding-top: 53px;
		padding-bottom: 50px;
	}

	#service-page #services .circle {
		height: 46px;
		width: 46px;
		left: -25px;
		top: 2%;
	}

	#service-page #services .circle:before {
		width: 36px;
		height: 36px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#service-page #services {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	#service-page #services .heading h6 {
		font-size: 16px;
	}

	#service-page #services .heading h2 {
		margin-top: 8px;
		font-size: 32px;
		line-height: 38px;
	}

	#service-page #services .heading p br {
		display: none;
	}

	#service-page #services .heading p {
		margin-top: 8px;
		font-size: 14px;
	}

	#service-page #services .body .item h2 {
		margin-top: 25px;
		font-size: 18px;
	}

	#service-page #services .body .item p {
		margin-top: 8px;
		font-size: 11px;
	}

	#service-page #services .body .item .icon {
		width: 90px;
		height: 100px;
	}

	#service-page #services .body .item .icon svg {
		width: 42px;
	}

	#service-page #services .body .item:hover:before {
		background-size: 200% 1px, 1px 400%, 1px 400%, 50% 1px, 50% 1px;
	}

	#service-page #services .circle {
		height: 50px;
		width: 50px;
		left: -15px;
		top: 10%;
	}

	#service-page #services .circle:before {
		width: 37px;
		height: 37px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#service-page #services .body .item {
		padding-left: 20px;
		padding-right: 20px;
	}

	#service-page #services .body .item h2 {
		margin-top: 30px;
		font-size: 20px;
	}

	#service-page #services .body .item p {
		margin-top: 10px;
		font-size: 13px;
	}

	#service-page #services .body .item:hover:before {
		background-size: 200% 1px, 1px 400%, 1px 400%, 50% 1px, 49.8% 1px;
	}
}







/*consultancy*/

#service-page #consultancy {
	background: url('../images/conbg.png');
	padding: 114px 0;
	background-size: cover;
	position: relative;
	z-index: 3;
}

#service-page #consultancy:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: var(--theme-blue);
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0.6;
}

#service-page #consultancy .img {
	position: absolute;
	bottom: 0;
}

#service-page #consultancy .content h2 {
	font-size: 40px;
	line-height: 49px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
}

#service-page #consultancy .content h2 span {
	font-weight: bold;
}

#service-page #consultancy .content p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 23px;
	color: #FFFFFF;
}

#service-page #consultancy .content .btn {
	margin-top: 46px;
	width: 170px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	color: var(--theme-blue);
	font-weight: 600;
	font-size: 18px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#service-page #consultancy .content .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media (max-width: 767px) {

	#service-page #consultancy .img {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 37px;
	}

	#service-page #consultancy .img img {
		width: 124px;
	}

	#service-page #consultancy {
		padding-top: 32px;
		padding-bottom: 0;
	}

	#service-page #consultancy .content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}

	#service-page #consultancy .content h2 {
		font-size: 22px;
		line-height: 27px;
	}

	#service-page #consultancy .content p {
		margin-top: 8px;
		font-size: 12px;
		line-height: 17px;
		padding: 0 10px;
	}

	#service-page #consultancy .content .btn {
		margin-top: 16px;
		width: 93px;
		height: 29px;
		font-size: 11px;
		border-radius: 1.7px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#service-page #consultancy .img img {
		max-width: 80%;
	}

	#service-page #consultancy .content h2 {
		font-size: 22px;
		line-height: 32px;
	}

	#service-page #consultancy .content p {
		margin-top: 10px;
		font-size: 13px;
		line-height: 18px;
	}

	#service-page #consultancy .content .btn {
		margin-top: 20px;
		width: 150px;
		height: 45px;
		font-size: 16px;
	}

	#service-page #consultancy {
		padding: 70px 0;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#service-page #consultancy .content h2 {
		font-size: 32px;
		line-height: 40px;
	}
}





/*tools*/

#service-page #tools {
	padding-top: 118px;
	position: relative;
}

#service-page #tools .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	bottom: 40px;
	right: -30px;
	top: 25%;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	z-index: -1;
}

#service-page #tools .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#service-page #tools .heading h2 {
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
}

#service-page #tools .heading h2 span {
	color: var(--theme-blue);
}

#service-page #tools .body ul {
	background: #0D76D1;
	padding-bottom: 11px;
	padding-left: 54px;
	padding-right: 54px;
	margin-top: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border-radius: 5px;
}

#service-page #tools .body ul li button {
	padding: 10px 27px;
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 0px 0px 5px 5px;
	padding-top: 15px;
}

#service-page #tools .body ul li button:before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background: #fff;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	border-radius: 0px 0px 5px 5px;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}

#service-page #tools .body ul li button.active {
	color: var(--theme-blue);
	font-weight: 600;
	box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
}

#service-page #tools .body ul li button.active:before {
	height: 100%;
}

#service-page #tools .body ul li button:hover {
	/*color: var(--theme-blue);*/
	;
}

#service-page #tools .body .tab-content .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 11px rgba(13, 118, 209, 0.13);
	box-shadow: 0px 4px 11px rgba(13, 118, 209, 0.13);
	border-radius: 10px;
	width: 170px;
	height: 170px;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}

#service-page #tools .body .tab-content .item img {
	width: 71px;
}

#service-page #tools .body .tab-content .item a {
	color: var(--theme-blue);
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#service-page #tools .body .tab-content .item a img {
	margin-left: 13px;
	width: 20px;
}

#service-page #tools .body .tab-content .item:hover .hoverBtn:before,

#service-page #tools .body .tab-content .item:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#service-page #tools .body .tab-content .item:hover .hoverBtn-bottom:before,

#service-page #tools .body .tab-content .item:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#service-page #tools .body .tab-content .item:hover {
	-webkit-box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
	box-shadow: 0px 5px 11px rgba(13, 118, 209, 0.15);
}

@media (max-width: 767px) {

	#service-page #tools .body .tab-content .col-6:nth-child(odd) {
		padding-left: 0;
		padding-right: 7.5px;
	}

	#service-page #tools .body .tab-content .row {
		margin-top: 15px;
	}

	#service-page #tools .body .tab-content .col-6:nth-child(even) {
		padding-right: 0;
		padding-left: 7.5px;
	}

	#service-page #tools .body .tab-content .item {
		max-width: 165px;
		height: 165px;
		width: 100%;
		margin-top: 15px;
		margin-left: auto;
		margin-right: auto;
	}

	#service-page #tools .body .tab-content .item img {
		width: 55px;
	}

	#service-page #tools .body .tab-content .item:hover:before {
		display: none;
	}

	#service-page #tools .body ul li button {
		padding-left: 12px;
		padding-right: 12px;
		padding-top: 10px !important;
		height: 33px;
		font-size: 13px;
		border-radius: 0 0 2px 2px;
		padding-top: 8px;
	}

	#service-page #tools .body ul li:first-child button {
		width: 107px;
	}

	#service-page #tools .body ul li button.active {
		font-weight: bold;
	}

	#service-page #tools .body ul {
		padding-left: 18px;
		padding-right: 18px;
		margin-top: 26px;
		overflow-x: auto;
		display: inline-flex;
		width: 100%;
		flex-wrap: initial !important;
		justify-content: center;
		overflow-x: auto;
		border-radius: 2.3px;
	}

	#service-page #tools .body .tab-content .item a {
		font-size: 14px;
	}

	#service-page #tools .body .tab-content .item a img {
		max-width: 20px;
		margin-left: 10px;
	}

	#service-page #tools {
		padding-top: 50px;
	}

	#service-page #tools .heading h2 {
		font-size: 22px;
		line-height: 27px;
	}

	#service-page #tools .circle {
		top: 40px;
		left: -20px;
		height: 46px;
		width: 46px;
	}

	#service-page #tools .circle:before {
		height: 36px;
		width: 36px;
	}
}

@media (max-width: 320px) {

	#service-page #tools .body ul li button {
		font-size: 11px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#service-page #tools .body .tab-content .item {
		height: 200px;
		width: 200px;
		margin-top: 25px;
	}

	#service-page #tools .body .tab-content .item img {
		width: 70px;
	}

	#service-page #tools .body .tab-content .item a {
		font-size: 20px;
	}

	#service-page #tools .body .tab-content .item a img {
		max-width: 25px;
		margin-left: 12px;
	}

	#service-page #tools .body ul li button {
		padding: 5px 17px;
		font-size: 18px;
	}

	#service-page #tools .body ul {
		margin-top: 20px;
	}

	#service-page #tools {
		padding-top: 60px;
	}

	#service-page #tools .heading h2 {
		font-size: 35px;
	}

	#service-page #tools .circle {
		top: 40px;
		left: -20px;
		height: 46px;
		width: 46px;
	}

	#service-page #tools .circle:before {
		height: 36px;
		width: 36px;
	}
}











/*portfolio page*/

/*portfolio*/

#portfolio-page #portfolio {
	margin-top: 80px;
	position: relative;
}

#portfolio-page #portfolio .heading {
	text-align: center;
}

#portfolio-page #portfolio .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#portfolio-page #portfolio .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#portfolio-page #portfolio .heading h2 {
	margin-top: 16px;
	font-size: 40px;
	line-height: 49px;
	font-weight: bold;
	color: #404756;
}

#portfolio-page #portfolio .heading h2 span {
	color: var(--theme-blue);
}

#portfolio-page #portfolio .heading p {
	margin-top: 16px;
	color: #9EA3B7;
	font-size: 16px;
	line-height: 23px;
}

#portfolio-page #portfolio .body {
	margin-top: 40px;
}

#portfolio-page #portfolio .body .item {
	position: relative;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin-top: 40px;
}

#portfolio-page #portfolio .body .item:hover .content {
	opacity: 1;
	visibility: visible;
}

#portfolio-page #portfolio .body .item .content {
	position: absolute;
	border: 2px solid #FFFFFF;
	-webkit-box-shadow: 0px 0px 17px rgba(13, 118, 209, 0.8);
	box-shadow: 0px 0px 17px rgba(13, 118, 209, 0.8);
	border-radius: 5px;
	height: 90%;
	width: 90%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 33px;
	color: #fff;
	opacity: 0;
	z-index: 4;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-backdrop-filter: blur(11px);
	backdrop-filter: blur(11px);
	visibility: hidden;
}

#portfolio-page #portfolio .body .item .content:before {
	content: '';
	background: rgba(13, 118, 209, 1);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.7;
}

#portfolio-page #portfolio .body .item {
	position: relative;
}

#portfolio-page #portfolio .body .item .content h6 {
	text-transform: uppercase;
	font-size: 22px;
	line-height: 27px;
	font-weight: 600;
}

#portfolio-page #portfolio .body .item .content p {
	margin-top: 15px;
	font-size: 14px;
	line-height: 20px;
}

#portfolio-page #portfolio .body .item .content h5 {
	margin-top: 15px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}

#portfolio-page #portfolio .body .item .content .buttons {
	margin-top: 30px;
}

#portfolio-page #portfolio .body .item .content .buttons .btn {
	background: #fff;
	border-radius: 3px;
	width: 104px;
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#portfolio-page #portfolio .body .item .content .buttons .btn2 {
	margin-left: 10px;
}

#portfolio-page #portfolio .body .item .content .buttons .btn .text {
	color: #3d2970;
	font-size: 9px;
	font-weight: 600;
	margin-left: 5px;
}

#portfolio-page #portfolio .body .item .content .buttons .btn .text2 {
	margin-left: 5px;
}

#portfolio-page #portfolio .body .item .content .buttons .btn .text2 .small {
	font-size: 6px;
	color: #3d2970;
}

#portfolio-page #portfolio .body .item .content .buttons .btn .text2 span:last-child {
	color: #3d2970;
	font-size: 9px;
	font-weight: 600;
	margin-top: -4px;
}

#portfolio-page #portfolio .body .item .content.website .buttons a {
	padding: 0;
}

#portfolio-page #portfolio .body .item .content.website .buttons a .text {
	font-size: 12px !important;
}

#portfolio-page #portfolio .body .button .btn {
	width: 147px;
	height: 54px;
	background: var(--theme-blue);
	color: #fff;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	border: 1px solid #0D76D1;
	font-weight: 600;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-top: 50px;
}

#portfolio-page #portfolio .body .button .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

#portfolio-page #portfolio .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	top: 20%;
	left: -40px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#portfolio-page #portfolio .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#portfolio-page #portfolio .body .tabs-option {
	margin-bottom: 10px;
}

#portfolio-page #portfolio .body ul {
	background: #0D76D1;
	padding-bottom: 11px;
	padding-left: 54px;
	padding-right: 54px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border-radius: 5px;
	list-style: none;
}

#portfolio-page #portfolio .body ul li button {
	padding: 10px 27px;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 0px 0px 5px 5px;
	background: none;
	border: none;
	z-index: 4;
	padding-top: 15px;
	font-weight: 500;
}

#portfolio-page #portfolio .body ul li button:before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background: #fff;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
	border-radius: 0px 0px 5px 5px;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}

#portfolio-page #portfolio .body ul li button.is-checked {
	color: var(--theme-blue);
	font-weight: 600;
	box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.12);
}

#portfolio-page #portfolio .body ul li button.is-checked:before {
	height: 100%;
}

@media (max-width: 767px) {

	#portfolio-page #get-touch {
		margin-top: 50px;
	}

	#portfolio-page #portfolio .body ul li button {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 12px;
		height: 30px;
		padding-top: 10px;
		padding-bottom: 5px;
		border-radius: 0 0 2px 2px;
		margin-right: 10px;
	}

	#portfolio-page #portfolio .body ul li button.small {
		max-width: 100%;
	}

	#portfolio-page #portfolio .body ul li button.medium {
		width: 100%;
	}

	#portfolio-page #portfolio .body ul li button.large {
		width: 100%;
	}

	#portfolio-page #portfolio .body .tabs-option {
		width: 100%;
		overflow-x: auto;
	}

	#portfolio-page #portfolio .body ul {
		padding-left: 18px;
		padding-right: 18px;
		margin-top: 26px;
		overflow-x: auto;
		overflow-y: hidden;
		margin-bottom: 26px;
	}

	#portfolio-page #portfolio .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#portfolio-page #portfolio .heading h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
		text-transform: capitalize;
	}

	#portfolio-page #portfolio .body {
		margin-top: 12px;
	}

	#portfolio-page #portfolio .body .item {
		margin-top: 20px;
	}

	#portfolio-page #portfolio {
		margin-top: 50px;
	}

	#portfolio-page #portfolio .body .button .btn {
		width: 117px;
		height: 34px;
		border-radius: 5.10408px;
		font-size: 12px;
	}

	#portfolio-page #portfolio .circle {
		height: 46px;
		width: 46px;
		top: -20px;
		left: -20px;
	}

	#portfolio-page #portfolio .heading h6 .dot {
		height: 4px;
		width: 4px;
		margin-right: 7px;
	}

	#portfolio-page #portfolio .circle:before {
		height: 36px;
		width: 36px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#portfolio-page #portfolio .heading h2 {
		margin-top: 8px;
		font-size: 36px;
		line-height: 40px;
	}

	#portfolio-page #portfolio .heading h6 {
		font-size: 16px;
	}

	#portfolio-page #portfolio .body {
		margin-top: 25px;
	}

	#portfolio-page #portfolio .body .button {
		font-size: 12px;
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	#portfolio-page #portfolio .body ul {
		padding-left: 30px;
		padding-right: 30px;
	}

	#portfolio-page #portfolio .circle {
		height: 90px;
		width: 90px;
	}

	#portfolio-page #portfolio .circle:before {
		width: 70px;
		height: 70px;
	}
}

@media (min-width: 992px) and (max-width: 1300px) {

	#portfolio-page #portfolio .body .item .content h6 {
		font-size: 16px;
	}

	#portfolio-page #portfolio .body .item .content p {
		font-size: 11px;
		margin-top: 10px;
	}

	#portfolio-page #portfolio .body .item .content h5 {
		margin-top: 10px;
		font-size: 12px;
	}

	#portfolio-page #portfolio .body .item .content {
		width: 95%;
		height: 95%;
	}

	#portfolio-page #portfolio .body .item img.img-fluid {
		height: 100%;
		width: 100%;
	}
}











/*carer page*/

#career {
	padding-top: 120px;
	position: relative;
}

#career .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	top: 20%;
	left: -40px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#career .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#career .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#career .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#career .heading h2 {
	margin-top: 16px;
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	color: #404756;
}

#career .heading h2 span {
	color: var(--theme-blue);
}

#career .heading p {
	margin-top: 16px;
	font-size: 16px;
	color: #9EA3B7;
	line-height: 23px;
}

#career .body {
	margin-top: 20px;
}

#career .body .item {
	margin-top: 30px;
	padding-bottom: 20px;
	-webkit-box-shadow: 0px 4px 11px rgb(0 0 0 / 36%);
	box-shadow: 0px 4px 11px rgb(0 0 0 / 36%);
	border-radius: 10px;
	padding-left: 25px;
	padding-right: 25px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
	margin-left: 20px;
}

#career .body .item:hover .icon {
	background: var(--theme-blue);
}

#career .body .item:hover .hoverBtn:before,

#career .body .item:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#career .body .item:hover .hoverBtn-bottom:before,

#career .body .item:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#career .body .item .icon {
	height: 120px;
	width: 130px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-shadow: 0px 3px 4px rgba(13, 118, 209, 0.17);
	box-shadow: 0px 3px 4px rgba(13, 118, 209, 0.17);
	border-radius: 0px 0px 70px 70px;
	position: relative;
	transition: all 0.3s;
}

#career .body .item:hover .icon img:nth-child(2) {
	opacity: 1;
}

#career .body .item .icon img:nth-child(2) {
	opacity: 0;
}

#career .body .item .icon img:nth-child(2) {
	position: absolute;
	transition: all 0.3s;
}

#career .body .item .text {
	margin-left: 22px;
	width: 100%;
	position: relative;
	top: 10px;
}

#career .body .item .text .position span {
	color: var(--theme-blue);
	font-weight: 600;
	font-size: 16px;
	line-height: 29px;
	margin-left: 13px;
}

#career .body .item .text .top h4 {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: var(--theme-blue);
}

#career .body .item .text p {
	margin-top: 12px;
	color: #9EA3B7;
	font-weight: 500;
	font-size: 16px;
	line-height: 29px;
}

@media (max-width: 767px) {

	#career .circle {
		height: 46px;
		width: 46px;
		top: 0;
		left: -20px;
	}

	#career .circle:before {
		height: 36px;
		width: 36px;
	}

	#career .body .item:before {
		display: none;
	}

	#career .body .item .icon {
		background: #EEF7FF;
		width: 120px;
		height: 97px;
		margin-left: 2px;
		position: relative;
		top: -14px;
	}

	#career .body .item .icon img {
		width: 50px;
	}

	#career .body .item .text {
		margin-left: 24px;
		padding-top: 14px;
		position: initial;
	}

	#career .body .item .text .position span {
		color: #404756;
		margin-left: 8px;
		font-size: 12px;
	}

	#career .body .item .text .position i {
		color: var(--theme-blue);
	}

	#career .body .item .text .top h4 {
		margin-top: 12px;
		font-size: 16px;
		line-height: 20px;
	}

	#career .body .item .text p {
		margin-top: 8px;
		font-size: 12px;
		line-height: 16px;
		padding-bottom: 14px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
		height: 32px;
	}

	#career {
		padding-top: 50px;
	}

	#career .heading h2 {
		text-align: center;
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
		margin-bottom: 0px;
	}

	#career .heading p {
		text-align: center;
		margin-top: 16px;
		font-size: 12px;
		line-height: 17px;
	}

	#career .body {
		margin-top: 12px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#career {
		padding-top: 70px;
	}

	#career .heading h6 {
		font-size: 16px;
	}

	#career .heading h2 {
		margin-top: 10px;
		font-size: 30px;
		line-height: 32px;
	}

	#career .heading p {
		margin-top: 10px;
		font-size: 13px;
	}

	#career .body .item .text .top h4 {
		margin-top: 10px;
		font-size: 17px;
		line-height: 19px;
	}

	#career .body .item .text p {
		margin-top: 6px;
		font-size: 12px;
		line-height: 19px;
	}

	#career .body .item .icon img {
		width: 40px;
	}

	#career .body .item {
		margin-top: 20px;
	}

	#career .body {
		margin-top: 10px;
	}

	#career .circle {
		height: 90px;
		width: 90px;
	}

	#career .circle:before {
		width: 70px;
		height: 70px;
	}
}





/*contaact*/

#contact {
	padding: 50px 0;
	position: relative;
}

#contact .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	bottom: -50px;
	right: -30px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#contact .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#contact .content h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#contact .content h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#contact .content h2 {
	margin-top: 16px;
	/* font-weight: bold; */
	font-size: 35px;
	line-height: 49px;
	color: #404756;
	text-transform: uppercase;
}

#contact .content h2 span {
	color: var(--theme-blue);
}

#contact .content .item.phone {
	margin-top: 24px;
}

#contact .content .item:last-child {
	margin-top: 18px;
}

#contact .content .item img {
	margin-right: 19px;
}

#contact .content .item a {
	color: #333;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}

#contact .form {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	border-radius: 10px;
	border: 1px solid #3d2979;
	padding: 10px 30px 30px;
	position: relative;
}

#contact .form .popup-inner {
	background: #F1F9FF;
	border-radius: 5px;
	height: calc(100% - 47px);
	width: calc(100% - 47px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

#contact .form .popup-inner.active {
	opacity: 1;
	visibility: visible;
}

#contact .form .popup-inner h4 {
	margin-top: 37px;
	color: var(--theme-blue);
	font-size: 30px;
	line-height: 37px;
	font-weight: bold;
}

#contact .form .popup-inner p {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--theme-blue);
}

#contact .form .row {
	margin-top: 20px;
}

#contact .form .row:first-child {
	margin-top: 0;
}

#contact .form .form-group {
	position: relative;
}

.career-form .form-group {
	position: relative;
	margin-top: 10px;
}

#contact .form .form-group input.form-control,

#contact .form .form-group select.form-control,

#contact .form .form-group .box {
	height: 48px;
	margin-top: 8px;
}

#contact .form .form-group input[type=file] {
	background: #fff;
	border-radius: 5px;
	border: 1px solid #cfcfcf;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 26px;
	color: #9EA3B7;
	font-weight: 500;
	font-size: 14px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	display: flex;
	align-items: center;
	padding-top: 13px;
}

#contact .form .form-group select {
	color: #9EA3B7 !important;
	font-size: 13px !important;
}

#contact .form .form-group input.red {
	color: #FF1010 !important;
	border-color: #FF1010 !important;
}

#contact .form .form-group textarea.form-control {
	height: 107px;
	resize: none;
	margin-top: 8px;
}

#contact .form .form-group .form-control,
#contact .form .form-group .box {
	background: #fff;
	border-radius: 5px;
	border: 1px solid #cfcfcf;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 26px;
	color: #9EA3B7;
	font-weight: 500;
	font-size: 14px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	display: flex;
	align-items: center;
}

.nice-select.open .list {
	z-index: 99;
}

#contact .form .form-group .image-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#contact .form .form-group .form-control:focus {
	border-color: var(--theme-blue);
	background: #F7F7F7;
	color: var(--theme-blue);
	border: 1px solid #cfcfcf;
}




#contact .form .form-group label.error {
	background: transparent;
	padding: 0;
	color: red;
	font-size: 12px;
	position: absolute;
	text-transform: capitalize;
}


#contact .form .btn {
	width: 100%;
	background: #3d2970;
	border: 1px solid #3d2970;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	height: 49px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#contact .form .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media (max-width: 767px) {

	#contact .form {
		margin: 28px 0 0 0;
		padding: 28px 27px;
		position: relative;
		top: 0;
		margin-bottom: 0px;
	}

	#contact .form .row {
		margin-top: 18px;
	}

	#contact .form .form-group label {
		font-size: 10px;
		left: 9px;
		height: 15px;
	}

	.career-form .form-group label.error {
		left: 0px !important;
	}

	#contact .form .form-group textarea.form-control {
		height: 64px;
	}

	#contact .form .btn {
		height: 39px;
		font-size: 11px;
		margin-top: 20px;
	}

	#contact .form .form-group .form-control {
		padding-left: 14px;
		font-size: 10px;
	}



	#contact .form .form-group select,

	#contact .form .form-group .box {
		height: 39px;
	}

	#contact .content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#contact .content h6 {
		font-size: 16px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#contact .content h2 {
		margin-top: 5px;
		font-size: 29px;
		line-height: 43px;
		color: #404756;
	}

	#contact .content .item {
		display: none !important;
	}

	#contact {
		padding-top: 50px;
	}

	#contact .circle {
		height: 46px;
		width: 46px;
		top: 0;
		right: -20px;
	}

	#contact .circle:before {
		height: 36px;
		width: 36px;
	}

	#contact .form .popup-inner h4 {
		margin-top: 25px;
		font-size: 25px;
		line-height: 25px;
	}

	#contact .form .popup-inner p {
		font-size: 11px;
	}

	#contact .form .popup-inner {
		height: calc(100% - 20px);
		width: calc(100% - 20px);
	}
}

@media (max-width: 320px) {

	#contact .form {
		padding: 28px 15px;
	}

	#contact .form .form-group label {
		font-size: 8px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#contact .form {
		padding: 30px 20px;
		top: -125%;
	}

	#contact .form .form-group label {
		height: 15px;
		font-size: 9px;
		left: 15px;
	}

	#contact .form .form-group input.form-control,

	#contact .form .form-group select,

	#contact .form .form-group .box {
		height: 35px !important;
		font-size: 9px !important;
	}

	#contact .form .form-group .image-icon {
		max-width: 15px;
	}

	#contact .form .form-group .form-control {
		padding-left: 15px;
	}

	#contact .form .btn {
		height: 35px;
		font-size: 14px;
	}

	#contact .form .row {
		margin-top: 10px;
	}

	#contact .content h2 {
		font-size: 32px;
		line-height: 32px;
	}

	#contact .content h6 {
		font-size: 16px;
	}

	#contact .content .item a {
		font-size: 18px;
	}

	#contact {
		margin-top: 70px;
	}

	#career .circle {
		height: 90px;
		width: 90px;
	}

	#career .circle:before {
		width: 70px;
		height: 70px;
	}
}

















/*contact page*/

/*contact*/

/* #contact{

	padding: 120px 0;

	position: relative;

} */

#contact .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	top: 30%;
	left: -50px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#contact .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

#contact .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#contact .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#contact .heading h2 {
	margin-top: 16px;
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	color: #404756;
}

#contact .heading h2 span {
	color: var(--theme-blue);
}

#contact .body {
	/* margin-top: 50px; */
	;
}

#contact .body .item {
	/*min-height: 248px;*/
	height: 248px;
	width: 100%;
	-webkit-box-shadow: 0px 4px 11px rgb(0 0 0 / 28%);
	box-shadow: 0px 4px 11px rgb(0 0 0 / 28%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	position: relative;
}

#contact .body .item:hover .hoverBtn:before,

#contact .body .item:hover .hoverBtn:after {
	opacity: 1;
	-webkit-animation: open 0.4s;
	/* Chrome, Safari, Opera */
	animation: open 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#contact .body .item:hover .hoverBtn-bottom:before,

#contact .body .item:hover .hoverBtn-bottom:after {
	opacity: 1;
	-webkit-animation: openB 0.4s;
	/* Chrome, Safari, Opera */
	animation: openB 0.4s;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-animation-direction: normal;
	animation-direction: normal;
}

#contact .body .item .icon {
	width: 131px;
	height: 70px;
	-webkit-box-shadow: 0px 3px 4px rgba(13, 118, 209, 0.17);
	box-shadow: 0px 3px 4px rgba(13, 118, 209, 0.17);
	border-radius: 0px 0px 70px 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#contact .body .item a {
	font-weight: 400;
	font-size: 16px !important;
	line-height: 22px;
	color: #333;
	padding-bottom: 20px;
	padding-left: 15px;
	padding-right: 15px;
}

#contact .body .item h4 {
	margin: 20px 0px 20px 0px;
	color: var(--theme-blue);
}

@media (max-width: 767px) {

	#contact {
		padding: 25px 0;
	}

	#contact .career-heading {
		padding-bottom: 0px;
	}


	#contact .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#contact .heading h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
	}

	#contact .body .col-lg-4 {
		margin-top: 15px;
	}

	#contact .body {
		margin-top: 17px;
	}

	#contact .body .item .icon {
		background: #EEF7FF;
		border-radius: 0px 0px 42.3684px 42.3684px;
		min-width: 64px;
		width: 64px;
		height: 73px;
		margin-top: -10px;
	}

	#contact .body .item a {
		margin-top: 0;
		margin-left: 15px;
		color: #404756;
		font-size: 14px;
		line-height: 1.5;
		text-align: center;
		font-weight: 500;
		margin-right: 15px;
	}

	#contact .body .col-lg-4:last-child .item a {
		word-wrap: break-word;
		width: 150px;
	}

	#contact .circle {
		top: 30px;
		height: 46px;
		width: 46px;
		left: -20px;
	}

	#contact .circle:before {
		height: 36px;
		width: 36px;
	}

	#mapmsg #map {
		order: 1;
	}

	#mapmsg #message-form {
		order: 2;
	}

	.map-nav .nav-link {
		margin: 5px 10px !important;
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#contact {
		padding: 70px 0;
	}

	#contact .heading h6 {
		font-size: 16px;
	}

	#contact .heading h2 {
		margin-top: 12px;
		font-size: 32px;
		line-height: 32px;
	}

	#contact .body {
		margin-top: 10px;
	}

	#contact .body .item {
		margin-top: 20px;
		min-height: 220px;
	}

	#contact .body .item a {
		margin-top: 25px;
		font-size: 18px;
	}

	#contact .body .item .icon {
		width: 110px;
		height: 130px;
	}

	#contact .body .item .icon img {
		max-width: 50px;
	}

	#contact .circle {
		top: 10%;
		height: 90px;
		width: 90px;
	}

	#contact .circle:before {
		height: 70px;
		width: 70px;
	}
}





/*message-form*/

#message-form .heading h6 {
	font-weight: 500;
	font-size: 18px;
	color: #9EA3B7;
	line-height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#message-form .heading h6 .dot {
	height: 7px;
	width: 7px;
	background: var(--theme-blue);
	border-radius: 100%;
	margin-right: 10px;
}

#message-form .heading h2 {
	margin-top: 16px;
	font-weight: bold;
	font-size: 40px;
	line-height: 49px;
	color: #404756;
	text-transform: uppercase;
}

#message-form .heading h2 span {
	color: var(--theme-blue);
}

#message-form .body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#message-form .body .form {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	border-radius: 10px;
	border: 1px solid #3d2970;
	padding: 37px 46px;
	margin-top: 50px;
	max-width: 650px;
	position: relative;
}

#message-form .body .form .popup-inner {
	background: #F1F9FF;
	border-radius: 5px;
	height: calc(100% - 47px);
	width: calc(100% - 47px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

#message-form .body .form .popup-inner.active {
	opacity: 1;
	visibility: visible;
}

#message-form .body .form .popup-inner h4 {
	margin-top: 37px;
	color: var(--theme-blue);
	font-size: 30px;
	line-height: 37px;
	font-weight: bold;
}

#message-form .body .form .popup-inner p {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--theme-blue);
}

#message-form .body .form .row {
	margin-top: 25px;
}

#message-form .body .form .row:first-child {
	margin-top: 0;
}

#message-form .body .form .form-group {
	position: relative;
}

#message-form .body .form .form-group input.form-control {
	height: 48px;
}

#message-form .body .form .form-group input.red {
	color: #FF1010 !important;
	border-color: #FF1010 !important;
}

#message-form .body .form .form-group textarea.form-control {
	height: 107px;
	padding-top: 10px;
	resize: none;
}

#message-form .body .form .form-group .form-control {
	background: #f7f7f7;
	border-radius: 3px;
	border: 1px solid #cfcfcf;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 15px;
	font-weight: 500;
	color: #9EA3B7;
	font-size: 14px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#message-form .body .form .form-group .form-control:focus {
	border-color: var(--theme-blue);
	background: #F7F7F7;
	color: var(--theme-blue);
	border: 1px solid #cfcfcf;
}

#message-form .body .form .form-group span {
	background: #f7f7f76b;
	border-radius: 3px;
	padding: 0px 10px;
	height: 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #404756;
	font-size: 14px;
	position: absolute;
	left: 6px;
	top: -10px;
}


#message-form .body .form .form-group label.error {
	background: transparent;
	padding: 0;
	color: red;
	font-size: 12px;
	position: absolute;
	text-transform: capitalize;
}


#message-form .body .form .btn {
	width: 100%;
	background: #3d2970;
	border: 1px solid #3d2970;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	height: 49px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#message-form .body .form .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media (max-width: 767px) {

	#message-form .heading h6 {
		font-size: 14px;
		line-height: 17px;
	}

	#message-form .heading h2 {
		margin-top: 8px;
		font-size: 22px;
		line-height: 27px;
	}

	#message-form .body .form {
		margin: 32px 0;
		padding: 20px 27px;
		position: relative;
	}

	#message-form .body .form .row {
		margin-top: 30px;
	}

	#message-form .body .form .form-group label {
		font-size: 10px;
		left: 9px;
		height: 11px;
	}

	#message-form .body .form .form-group textarea.form-control {
		height: 64px;
	}

	#message-form .body .form .btn {
        height: 47px;
        border-radius: 1.8142px;
        font-size: 15px;
	}

	#message-form .body .form .form-group .form-control {
		padding-left: 14px;
		font-size: 10px;
	}

	#message-form .body .form .form-group input.form-control {
		height: 44px;
	}

	#message-form .body .form .popup-inner h4 {
		margin-top: 25px;
		font-size: 25px;
		line-height: 25px;
	}

	#message-form .body .form .popup-inner p {
		font-size: 11px;
	}
}

@media (max-width: 320px) {

	#message-form .body .form {
		padding: 28px 15px;
	}

	#message-form .body .form .form-group label {
		font-size: 8px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#message-form .heading h6 {
		font-size: 16px;
	}

	#message-form .heading h2 {
		margin-top: 12px;
		font-size: 32px;
		line-height: 32px;
	}

	#message-form .body .form {
		padding: 30px 20px;
		margin-top: 30px;
	}

	#message-form .body .form .form-group label {
		height: 15px;
		font-size: 12px;
		left: 15px;
	}

	#message-form .body .form .form-group input.form-control {
		height: 35px;
	}

	#message-form .body .form .form-group .form-control {
		padding-left: 15px;
	}

	#message-form .body .form .btn {
		height: 35px;
		font-size: 14px;
	}

	#message-form .body .form .row {
		margin-top: 20px;
	}
}





/*map*/

#map {
	margin-top: 107px;
	margin-bottom: 54px;
	position: relative;
}

#map iframe {
	height: 540px;
	width: 100%;
}

#map .circle {
	position: absolute;
	border-radius: 100%;
	border: 1px solid #3d2970;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
	width: 101px;
	height: 101px;
	top: 10%;
	right: -100px;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

#map .circle:before {
	position: absolute;
	background: #3d2970;
	border: 1px solid rgba(55, 111, 254, 0.43);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: '';
	border-radius: 100%;
	-webkit-box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	box-shadow: 0px 14px 22px rgba(55, 111, 254, 0.43);
	width: 78px;
	height: 78px;
}

@media (max-width: 767px) {

	#map {
		margin: 50px 0;
	}

	#map iframe {
		height: 156px;
	}

	#map .circle {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	#map {
		margin: 70px 0;
	}

	#map iframe {
		height: 456px;
	}

	#map .circle {
		display: none;
	}
}







/*popup*/

.black-screen {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99;
	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
}

.black-screen.active {
	opacity: 1;
	visibility: visible;
}

#popup {
	max-width: 570px;
	max-height: 416px;
	padding: 47px;
	position: fixed;
	z-index: 999;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	box-shadow: 0px 4px 10px rgba(21, 101, 154, 0.24);
	border-radius: 10px;
	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
}

#popup.active {
	opacity: 1;
	visibility: visible;
}

#popup .popup-inner {
	background: #F1F9FF;
	border-radius: 5px;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#popup .popup-inner h4 {
	margin-top: 37px;
	color: var(--theme-blue);
	font-size: 30px;
	line-height: 37px;
	font-weight: bold;
}

#popup .popup-inner p {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--theme-blue);
}

.custom-btn .btn {
	margin-top: 40px;
	background: var(--theme-red);
	border: 1px solid var(--theme-red);
	border-radius: 5px;
	-webkit-box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	box-shadow: 0px 3px 10px 1px rgba(13, 118, 209, 0.12);
	height: 45px;
	width: 205px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.custom-btn .btn:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.map-nav .nav-link {
	padding: 1rem 3rem;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	background-color: #1f1f1f;
	color: #fff;
	margin: 0 10px;
}

.map-nav.nav-tabs .nav-link.active {
	color: #fff;
	background-color: #fe3136;
	border-color: #dee2e6 #dee2e6 #fff;
}

.about-img {
	display: flex;
	justify-content: center;
}

.approach-img {
	margin-left: 20px;
	margin-top: 20px;
}

.career-heading {
	padding-bottom: 50px;
}

.fa.fa-map-marker:before {
	content: "\f041";
}

.fa.fa-map-marker,
.fa-envelope,
.fa-phone {
	color: #3d2970;
}

.contact-form {
	padding: 60px 0px;
}

.iframe_section iframe {
	height: 400px;
	max-width: 100%;
	width: 100%;
}

#contact .content h1 {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 600;
}

.job-openings {
	padding: 50px 0px 90px 0px !important;
}

#career .body .item .text h5 {
	font-size: 16px;
	font-weight: 600;
	color: #fe3136;
	margin-top: 5px;
	border: #fe3136 1px solid;
	margin: 15px 0;
	padding: 10px 15px;
	border-radius: 5px;
	display: inline-block;
}



#career .body .item .text h5:hover {
	color: #3d2970;
}

.shape-box {
	display: inline-block;
	position: relative;
	z-index: 1;
	max-width: 350px;
	height: 321px;
	margin: 21px 16px 23px;
	box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
	overflow: hidden;
	/*width: 23.333%;*/
	;
}

.shape-box_half {
	overflow: hidden;
	text-align: left;
}

.service-container .shape-box_half {
	max-width: 100%;
}

.shape-box_half:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: skewY(53.5deg);
	transform-origin: top left;
	transition: transform .4s;
	background: #fff;
	z-index: 1;
}

.shape-box>img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.bg-black {
	background-color: #000;
}

.shape-box_half figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 30px 30px;
	transition: transform .4s;
	transform: translateY(100%);
	z-index: 3;
}

.shape-box_half figcaption .show-cont {
	position: absolute;
	bottom: calc(100% + 30px);
	left: 30px;
	right: 30px;
	transition: bottom .4s;
}

.card-no {
	font-size: 36px;
	color: #3d2970;
	padding: 0;
	margin: 10px 0;
}

.card-main-title {
	margin-top: 8px;
	font-weight: 700;
	width: 26%;
	font-size: 15px;
	text-transform: uppercase;
	color: #292b2c;
}

.card-content {
	color: #9f9f9f;
	margin-top: 20px;
	line-height: 22px;
	font-size: 15px;
}

.read-more-btn {
	border: 2px solid #db3236;
	font-size: 14px;
	cursor: pointer;
	padding: 10px 20px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background: #db3236;
	color: #fff;
	border-radius: 2px;
	margin-top: 25px;
	text-decoration: none;
}

.read-more-btn:hover {
	background: transparent;
	color: #db3236;
}

.shape-box_half>.after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #3d2970;
	opacity: 0;
	transition: opacity .4s;
}



/*On hover*/

.shape-box_half:hover:before {
	transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
	transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
	bottom: 100%;
}

.shape-box_half:hover>.after {
	opacity: 1;
}

.box-wrapper {
	display: flex;
	align-content: flex-end;
	flex-wrap: wrap;
}

.service-container {
	margin: 50px 0px 50px 0px;
}

.service-details {
	margin: 50px 0px 50px 0px;
	display: flex;
	justify-content: center;
}

.service-details img {
	width: 100%;
	box-shadow: 0px 4px 10px rgb(0 0 0 / 31%);
	padding: 0;
	margin-bottom: 30px;
	position: sticky;
	top: 157px;
}

.service-details h2 {
	font-size: 30px;
	color: #333;
	font-weight: 600;
	margin-bottom: 20px;
}

.service-details p,
.service-details h5 {
	font-size: 16px !important;
	line-height: 2 !important;
	text-align: justify;
	margin: 10px 0px 10px 0px !important;
	font-family: "Open Sans", sans-serif !important;
}


.service-details b {
	font-size: 22px !important;
	font-weight: 600;
	text-decoration: none;
	font-family: "Open Sans", sans-serif !important;
	color: #333 !important;
}


.service-details b u {
	font-size: 22px !important;
	font-weight: 600;
	text-decoration: none;
	font-family: "Open Sans", sans-serif !important;
	color: #333 !important;
}


.service-details h3,
.service-details h3 span {
	font-size: 22px !important;
	font-weight: 600 !important;
	text-decoration: none;
	font-family: "Open Sans", sans-serif !important;
	color: #333 !important;
}



.ServicesData u {
	text-decoration: none;
}


.alert-success {
	color: #0F5132;
	border: 1px dotted #568872;
}

.alert-danger {
	color: #DB1519;
	border: 1px dotted #C91D21;
}

.alert {
	font-weight: 500;
	border-radius: 10px;
	background-color: transparent;
}

.alert .close {
	background: none;
	border: none;
	font-weight: 700;
	font-size: 13px;
	float: right;
	color: grey;
}




.service-details p strong {
	font-size: 20px;
	margin: 15px 0px 15px 0px;
	color: #3d2970;
}

.card {
	background-color: transparent;
}

.insights-section {
	padding-bottom: 50px;
}

.content .read-more {
	padding: 8px 0px 8px 0px !important;
	cursor: pointer;
}

.content .read-more:hover {
	color: #fe3136 !important;
}

.blog-img {
	height: 200px;
}

.gallery-box {
	position: relative;
	box-shadow: 0px 0px 5px 5px #d7d7d7;
	padding: 5px;
}

.gallery-box:before {
	opacity: 0;
	content: "";
	background-color: #fe3136;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 100%;
	width: 100%;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-box img {
	width: 100%;
}

.gallery-box .gallery-content {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	width: 55px;
}

.gallery-content {
	background: #fe3136;
	padding: 20px 0px;
	text-align: center;
	width: 65px;
	border-radius: 100%;
	box-sizing: border-box;
}

.gallery-box .gallery-content a {
	background-color: #002147;
	height: 55px;
	width: 55px;
	line-height: 60px;
	display: inline-block;
	border-radius: 50%;
}

.gallery-box .gallery-content a i {
	color: #FFFFFF;
	font-size: 18px;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-box:hover:before {
	opacity: 1;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-box:hover .gallery-content {
	opacity: 1;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-area1 {
	padding: 100px 0 93px;
}

.fa-plus {
	color: white;
}

.project-wrap {
	padding: 50px 0px 50px 0px;
}

.gallery-wrapper div {
	padding: 16px;
}

.gallery-box .g-img {
	height: 240px;
}





/* Why Us Start */

.whyus {
	background: #f9f9f9;
}

.whyus .title {
	font-size: 2em;
	font-weight: 700;
	position: relative;
	color: #1a3758;
	text-align: center;
	margin: 0 0 .7em 0;
	padding: 0 0 .5em 0;
	line-height: 1.3;
}

.whyus .title:after {
	content: '';
	width: 2.69em;
	height: .072em;
	background: #f14d4e;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	right: 0;
	border-radius: 20em;
}

.whyus ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.whyus ul li {
	width: 20%;
	text-align: center;
	margin: 0;
	padding: 0 2em;
	position: relative;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	border: 1px solid #c5c1c16e;
	border-top: 0;
	border-bottom: 0;
}

.whyus ul li img {
	display: block;
	margin: 0 auto;
	width: 7.333em;
}

.whyus ul li span {
	display: inline-block;
	font-size: 2em;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.8);
	width: 100%;
	line-height: 1;
}

.whyus ul li span:after {
	content: '+';
	display: inline-block;
}

.whyus ul li p {
	font-size: 1em;
	color: #f14d4e;
}





/* Why Us End */




.loader-small img {
	width: 18px;
	display: inline;
	margin: 0 0 0 2px;
}

@keyframes rotateAnimation2 {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.loader-small img {
	animation: rotateAnimation2 2s linear infinite;
}


.ServicesData span {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
}




@media (min-width:1400px) and (max-width:1600px) {



	#navbar .nav-menu ul li {
		margin-right: 20px;
	}
}

@media (min-width:1200px) and (max-width:1399px) {



	
    #navbar .brand img {
        width: 100px;
    }

#navbar .right .btn {
    font-size: 14px;
    padding: 10px 15px !important;
    width: auto;
    height: 40px;
}

	#navbar .nav-menu ul li {
		margin-right: 5px;
	}

	#navbar .nav-menu ul li a {
		font-size: 14px;
		white-space: nowrap;
	}
#navbar .nav-menu ul li a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}


}

@media (min-width:992px) and (max-width:1199px) {

    #navbar .brand img {
        width: 100px;
    }

#navbar .right .btn {
    font-size: 14px;
    padding: 10px 15px !important;
    width: auto;
    height: 40px;
}

	#navbar .nav-menu ul li {
		margin-right: 5px;
	}

	#navbar .nav-menu ul li a {
		font-size: 12px;
		white-space: nowrap;
	}
#navbar .nav-menu ul li a {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
}

	.home-slider .carousel-caption {
		position: absolute;
		right: 10%;
		bottom: inherit;
		left: 10%;
		color: #333;
		text-align: left;
		top: 50%;
		transform: translate(0px, -50%);
	}

	.home-slider .carousel-caption .content h2 {
		font-size: 35px;
		font-weight: 800;
		line-height: 40px;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.career-form .form-group {
		position: relative;
		margin-top: 22px;
	}
}

@media (max-width: 767px) {

	#popup {
		padding: 30px;
	}

	#popup {
		max-width: 400px;
	}

	.industries-item-list ul li {
		width: calc(100% / 2 - 1em);
		margin: 0 .5em 1em;
	}

	.industries-item-list ul li a img {
		margin-bottom: .4em;
		width: 5.667em;
	}

	.mission-icons {
		bottom: 0px !important;
	}

	#get-touch .form {
		margin-top: 15px !important;
	}

	.mmmmm {
		margin-bottom: 1em !important;
	}

	.img-girl {
		display: none !important;
	}

	.home-slider .carousel-caption {
		position: absolute;
		right: 10%;
		bottom: inherit;
		left: 10%;
		color: #333;
		text-align: left;
		top: 50%;
		transform: translate(0px, -50%);
	}

	.home-slider .carousel-caption .content h2 {
		font-size: 25px;
		font-weight: 600;
		line-height: 30px;
	}

	.home-slider .carousel-caption .content p {
		display: none;
	}

	.home-slider .carousel-caption .content .btn {
		display: none;
	}

	.whyus .title {
		font-size: 1.6em;
		line-height: normal;
	}

	.whyus ul li img {
		width: 5em;
	}

	.whyus ul li {
		width: 50%;
		padding: 0 0;
		border: 0;
	}

	.approach-img {
		margin-left: 0px;
		margin-top: 20px;
	}

	.whyus ul li span {
		font-size: 1.2em;
	}

	.whyus ul li p {
		font-size: 0.8em;
		margin-bottom: 20px;
	}

	.inner-page .content .breadcumb h6 {
		color: #fff;
		font-weight: 400;
		font-size: 14px;
	}



	.inner-page {
		height: 125px;
	}

	.inner-page .content h2 {
		font-size: 18px;
		line-height: 30px;
	}


	.service-details {
		margin: 40px 0px 20px 0px;
	}


	.technologies-section {
		padding: 15px 0 30px;
	}


	.urgent-opening-section .heading h2 {
		margin-top: 0px;
		font-size: calc(1.375rem + 1.5vw);
		line-height: 8px;
	}

	.latest-blog-section .small-header h2 {
		font-size: calc(1.375rem + 1.5vw);
	}


	.latest-blog-section {
		padding: 10px 0 30px;
	}

	.client-slider .images-item {
		height: 95px !important;
		object-fit: contain;
	}

	.images-item {
		padding: 7px;
	}

	.ft-brand {
		padding: 10px;
		width: 90px;
	}


	.job-openings {
		padding: 30px 0px 50px 0px !important;
	}


	#career .body .item {
		margin-top: 30px;
		margin-left: 0px;
	}

	#benefits .body {
		margin-top: 0px;
	}

	.client-text {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.2;
		font-size: 14px;
	}


	.client-col-card img {
		height: auto;
	}

	.client-col-content h5 {
		font-size: 14px;
		font-weight: 600;
	}

	#homepage #services .services-middle .item {
		height: 18rem;
	}

	.career-form .form-group {
		position: relative;
		margin-top: 22px;
	}

	.home-form {
		margin-bottom: 15px;
	}


}

@media (min-width: 321px) and (max-width: 380px) {

	#homepage #about .container {
		padding-left: var(--bs-gutter-x, 1.55rem);
		padding-right: var(--bs-gutter-x, 1.55rem);
	}

	.career-form .form-group {
		position: relative;
		margin-top: 22px;
	}

	.home-form {
		margin-bottom: 15px;
	}
}