

@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&amp;display=swap");


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family: var(--poppins-font);
	color: #000;
}

a {
	color: #001a57;
}

a:hover {
	color: #001a57;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px;
	padding: 0;
	color: #007bff;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

p {
	color: var(--paragraph-color);
	font-size: 14px;
	line-height: 25px;
}

:root {
	--secondary-color: #30373f;
	--heading-color: #272b2e;
	--paragraph-color: #5B6880;
	--heading-font: "Poppins", sans-serif;
	--poppins-font: "Poppins", sans-serif;
	--body-font-size: 15px;
	--line-height30: 30px;
	--light: #ECF4FF;
}


 .mobile-img {
        display: none;
    }

    @media screen and (max-width: 768px) {
        .desktop-img {
            display: none;
        }

        .mobile-img {
            display: block;
        }
    }

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-gray {
	background: #F5F8FF;
}

.pd-top-30 {
	padding-top: 30px;
}

.pd-top-40 {
	padding-top: 40px;
}

.pd-top-50 {
	padding-top: 50px;
}

.pd-top-80 {
	padding-top: 80px;
}

.pd-top-90 {
	padding-top: 90px;
}

.pd-top-100 {
	padding-top: 100px;
}

.pd-top-105 {
	padding-top: 105px;
}

.pd-top-110 {
	padding-top: 110px;
}

.pd-top-112 {
	padding-top: 112px;
}

.pd-top-115 {
	padding-top: 115px;
}

.pd-top-120 {
	padding-top: 120px;
}

.pd-top-135 {
	padding-top: 135px;
}

.pd-top-150 {
	padding-top: 150px;
}

.pd-top-170 {
	padding-top: 170px;
}

.pd-top-190 {
	padding-top: 190px;
}

.pd-bottom-65 {
	padding-bottom: 65px;
}

.pd-bottom-90 {
	padding-bottom: 90px;
}

.pd-bottom-100 {
	padding-bottom: 100px;
}

.pd-bottom-120 {
	padding-bottom: 120px;
}

.pd-default-120 {
	padding: 120px 0;
}

.pd-default-two {
	padding: 110px 0 120px 0;
}

.mg-top-40 {
	margin-top: 40px;
}

.mg-top-45 {
	margin-top: 45px;
}

.mg-top-60 {
	margin-top: 60px;
}

.mg-top-65 {
	margin-top: 65px;
}

.mg-top-75 {
	margin-top: 75px;
}

.mg-top-80 {
	margin-top: 80px;
}

.mg-top-100 {
	margin-top: 100px;
}

.mg-top-105 {
	margin-top: 105px;
}

.mg-top-110 {
	margin-top: 110px;
}

.mg-top-120 {
	margin-top: 120px;
}

.mg-top-135 {
	margin-top: 135px;
}

.mg-top-170 {
	margin-top: 170px;
}

.mg-bottom-30 {
	margin-bottom: 30px;
}

/*--------------------------------------------------------------
  #*8. Preloader
  --------------------------------------------------------------*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #001a57;
	border-top-color: #d2f9eb;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}




#circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
}

.loader {
	width: calc(100% - 0px);
	height: calc(100% - 0px);
	border: 8px solid #162534;
	border-top: 8px solid #09f;
	border-radius: 50%;
	animation: rotate 5s linear infinite;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	background: #001a57;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #000;
	color: #fff;
}


/*** get btn------*/

.new-get {
	position: fixed;
	top: 50%;
	transform: rotate(-90deg);
	left: -20px;
	z-index: 999;
}

#v-gradient {
	background-image: linear-gradient(to top, #141d38 0%, #43baff 100%);
	-webkit-box-shadow: 0 6px 20px rgba(244, 143, 177, 0.5);
	-moz-box-shadow: 0 6px 20px rgba(244, 143, 177, 0.5);
	box-shadow: 0 6px 20px #274f7b;
	background-color: #007bff;
	color: #fff;
	padding: 8px 22px !important;
	border-radius: 5px;
	text-decoration: none;
}


/*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

#header {
	height: 85px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	/* background: rgba(1, 4, 136, 0.9); */
}

#header.header-transparent {
	background: white;
}

#header.header-scrolled {
	background-image: white !important;
	/* background: #43baff; */
	/* background: -webkit-linear-gradient(to right, #141d38, #43baff); */

	/* background: linear-gradient(to right, #141d38, #43baff); */

}

#header .logo h1 {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	width: 100%;
	max-height: 60px;
}

@media (max-width: 992px) {
	#header {
		height: auto;
		/* background-color: #000 !important; */
	}
}


/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;


}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #000;
	padding: 10px 10px 10px 25px;
	transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--poppins-font);
}

.nav-menu>ul>li>a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 3px;
	left: 25px;
	/* background-color: #001a57; */
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
	visibility: visible;
	width: 25px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #38c3ea;
	text-decoration: none;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 25px;
	top: calc(100% - 35px);
	/* z-index: 99; */
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
	border-radius: 5px;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #01036f;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #fff;
	background: #007bff;
}

.header .nav li .dropdown li:hover a {
	color: #fff;
	background: #007bff;
}

.header .nav li:hover a {
	color: #fff;
	background: #007bff;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

a.btn.btn-login.scrollto {
	background: linear-gradient(180deg, #141d38 0%, #43baff 100%);
	/* box-shadow: 0px 26.7132px 39.3668px rgba(131, 199, 228, 0.419526); */
	border-radius: 4.21787px;
	padding: 10px 40px;
	color: #fff !important;
	/* border-radius: 30px; */
}

@media (max-width:991px) {
	.btn-login {
		transform: translateX(-50px);
	}
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}

	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}

	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}


.mobile-nav-toggle {
	position: fixed;
	right: 25px;
	top: 30px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #000 !important;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	height: 569px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #01036f;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #001a57;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: #35c3eb;
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
  # 1. Hero slider  Section
  --------------------------------------------------------------*/

.carousel-indicators [data-bs-target] {
	position: relative;
	width: 60px;
	height: 6px;
	border: none;
	/* border-radius: 24px; */
}

.carousel-indicators [data-bs-target] span {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #c19dfc;
	/* border-radius: inherit; */
}

#hero {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-item::before {
	content: '';
	/* background-color: rgba(0, 0, 0, 0.500); */
}

#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 100px;
	right: 100px;
	/* border: 1px solid red; */
	transform: translateY(-4%);
}

#hero .container {
	text-align: left;
}

#hero h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 3em;
	font-weight: 700;
	line-height: 1.5em;
}

/* #hero h2::first-letter{
	initial-letter: 3                             ;
	color: #35c3eb;
	
}  */
#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	font-size: 16px;
	line-height: 1.5em;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
	width: 10%;
}

/* #hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 36px;
	line-height: 1;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 10px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
} */


#hero .carousel-indicators li {
	cursor: pointer;
	background: #000;
	overflow: hidden;
	border: 0;
	width: 50px;
	height: 8px;
	/* border-radius: 50px; */
	opacity: .6;
	transition: 0.3s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: #428bca;
}

.carousel-indicators {
	transform: translate(0, -2em);
}

#hero .carousel-indicators button {
	cursor: pointer;
	background: gray;
	overflow: hidden;
	/* border: 1px; */
	width: 35px;
	height: 4px;
	/* border-radius: 5px; */
	opacity: .6;
	transition: 0.3s;
	margin: 2px;
	border: none;
	outline: none;
}

#hero .carousel-indicators button span {
	background: #0cd1e7;
}

#hero .carousel-indicators button .active {
	opacity: 1;
	background: #428bca;
}

#hero .btn-get-started {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	/* border-radius: 4px; */
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	/* background-color:#35c3eb; */
	background: linear-gradient(180deg, #141d38 0%, #43baff 100%);
	/* box-shadow: 0px 26.7132px 39.3668px rgba(131, 199, 228, 0.419526); */
	border-radius: 4.21787px;
}

#hero .btn-get-started:hover {
	background: #5697d0;
}


.dflex {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
}

#hero .texts {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	color: #000;
	font-size: 25px;

}


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

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}

	#hero h1 {
		font-size: 35px;
	}

	#hero h2 {
		font-size: 28px;
	}


}


@media (min-width: 768px)and (max-width:992px) {
	#hero h2 {
		font-size: 25px;
	}

	#hero h1 {
		font-size: 32px;
	}

	#hero p {
		font-size: 16px;
	}
}

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

	#hero h2 {
		font-size: 20px;
	}

	#hero p {
		font-size: 16px;
	}

	#hero h1 {
		font-size: 27px;
		display: none;
	}
}

@media (min-width:100px) and (max-width:575px) {

	#hero h2 {
		font-size: 18px;
		width: 100%;
	}

	#hero p {
		font-size: 16px;
		width: 100%;
	}

	#hero .texts {
		font-size: 18px;
	}

	.slide {
		width: 100%;
		height: auto;
		margin-top: 0px;
		/* margin-bottom: 10px; */
		padding: 0;
	}

	#hero .carousel-container {
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column-reverse;
		position: absolute;
		bottom: 0;
		top: 0;
		left: 10px;
		right: 10px;
		/* border: 1px solid black; */
	}

	.carousel-indicators {
		/* transform: translateY(-2%); */

	}

	#hero .carousel-indicators button {
		width: 25px;
		height: 3px;

	}

	.dflex {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		/* border: 1px solid black; */
		margin-bottom: 0;

	}

	.dnone {
		display: none;
	}

	#hero .btn-get-started {
		font-weight: lighter;
		font-size: 14px;
		letter-spacing: 1px;
		display: inline-block;
		padding: 13px;
		margin: 0;

	}

	.txtcenter {
		text-align: center;
	}

	.dflexcenter {
		display: flex;
		justify-content: center;
		align-items: center;
	}

}

@media (max-height: 500px) {
	#hero {
		/* height: 400px; */
		height: 100vh;
	}

}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f5f5ff;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: var(--body-font);
}

/* .section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #001a57;
	margin: 4px 10px;
} */

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--body-font);
	color: #007bff;
}

.bg-page-header {
	height: 700px;
	overflow: hidden;
	position: relative;
}

.bg-page-header:after {
	background: #141d3894;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

#myVideo {
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	position: relative;
	top: -342px;
}

a.login-btn {
	display: block;
	background-image: linear-gradient(to right, #4facfe 0%, #43baff 100%);
	color: #fff;
	padding: 10px 30px;
	margin: 0px;
	border-radius: 5px;
	box-shadow: -1px -1px 3px #bbb5b5;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/

.breadcrumbs {
	padding: 20px 0;
	background-color: #fafaff;
	min-height: 40px;
	margin-top: -18px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: -18px;
	}

	.breadcrumbs {
		padding: 20px 0 !important;
		background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
		min-height: 40px !important;
	}
}

.breadcrumbs h2 {
	font-size: 24px;
	font-weight: 500;
	margin: 0;
}

@media (max-width: 992px) {
	.breadcrumbs h2 {
		margin: 0 0 10px 0;
	}
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6c757d;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/

.about {
	padding: 40px 0 0 0;
	background-color: #F5FDFF;
}

.about .align {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.aboutai .icon-boxes .align {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.about .fle {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center
}

.aboutai .fle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.about .icon-boxes h3 {
	font-size: 28px;
	font-weight: 500;
	color: #3496ff;
	margin-bottom: 15px;
}

.about .icon-boxes h5 {
	color: #36C5ED;
	margin-right: 10px;
	font-size: 20px;
	font-weight: 400;
}

.aboutai .icon-boxes h5 {
	color: #36C5ED;
	margin-right: 10px;
	font-size: 20px;
	font-weight: 400;
}

/* .about .icon-boxes span {
	width: 40px;
	height: 2px;
	background-color: #BBBBBB;
} */

.aboutai .icon-boxes .align span {
	width: 40px;
	height: 2px;
	background-color: #BBBBBB;
}

.about p {
	text-align: justify;
	font-size: 14px;
	line-height: 25px;
}

.about .icon-box .title {
	margin-left: 85px;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
}

.about .icon-box .title a {
	color: #343a40;
	transition: 0.3s;
}

.about .icon-box .title a:hover {
	color: #001a57;
}

.about .icon-box .description {
	margin-left: 85px;
	line-height: 24px;
	font-size: 14px;
}

.about .video-box {
	background: url("../img/team-1.gif") no-repeat;
	min-height: auto;
	background-size: contain;
	width: 100%;
}

.btn-learn {
	/* background: #007bff; */
	color: #fff;
	border: none;
	outline: none;
	margin: 0;
	padding: 10px 40px;
	border-radius: 30px;
	border: none;
	background-image: linear-gradient(180deg, #141d38 0%, #43baff 100%);
	/* box-shadow: 0px 37.547px 55.3325px rgba(131, 199, 228, 0.419526); */
	border-radius: 5.92848px;
}

.btn-learn:hover {
	background: #5697d0;
	color: #fff;
}

.btn-learns {
	/* background: #007bff; */
	color: #fff;
	border: none;
	outline: none;
	margin: 0;
	padding: 10px 15px;
	border-radius: 30px;
	border: none;
	background-image: linear-gradient(180deg, #141d38 0%, #43baff 100%);
	/* box-shadow: 0px 37.547px 55.3325px rgba(131, 199, 228, 0.419526); */
	border-radius: 5.92848px;
}

.btn-learns:hover {
	background: #5697d0;
	color: #fff;
}



.about-desc {
	text-align: justify;
	line-height: 25px;
	color: #675d5d;
	font-size: 14px;
}

.black-text {
	color: #000000 !important;
	text-transform: uppercase;
	font-weight: 500;
}

@media (min-width:100px) and (max-width:575px) {
	.aboutai .fle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.aboutai .icon-boxes .align {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about .fle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center
	}
}

/*----- Features -------------*/
/*--- Security sec start ----*/
.service-item {
	margin: 5px;
}

.service-item div {
	z-index: 1;
}

.service-item div::after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 2px 2px 0 0;
	transition: .5s;
	z-index: -1;
}

.service-item div:hover::after {
	width: 100%;
	background-image: linear-gradient(to right, #434343 0%, black 100%);
}

.service-item * {
	transition: .5s;
}

.service-item p {
	text-align: justify;
	line-height: 25px;
}

.service-item:hover * {
	color: var(--light) !important;
}

/*---- Security sec end ----*/
.bg-secondary {
	background: #f9f9f9 !important;
}

.rurusection-heading {
	margin-bottom: 50px;
}

.rurusection-heading p {
	max-width: 650px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	margin-top: 20px;
	font-size: 14px;
}

.dtm {
	align-items: flex-start !important;
	display: flex !important;
	padding: 1.5em 1em;
	cursor: pointer;
	transition: all 0.3s ease-in;
	justify-content: flex-start;
}

.feature-icon {
	margin-right: 20px;
	transition: all 0.3s ease-in;
}

.ruruicon {
	display: inline-flex;
	min-width: 2.75rem;
	min-height: 2.75rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
	color: inherit;
	transition: all 0.3s ease-in;
}

.icon-shape {
	text-align: center;
	border-radius: .25rem;
	align-items: center;
	justify-content: center;
}

.white-text {
	color: #fff !important;
}

.bg-color {
	background-image: linear-gradient(to top, #141d38 0%, #43baff 100%);
}

.feature-image .img-responsive {
	display: block;
	margin: 0 auto;
	height: auto;
	max-width: 100%;
}

@media (max-width: 575px) {
	.feature-items {
		text-align: center;
	}
}


/*---- Features end ------*/

/*--- Why we are start---*/
.col-lg-5.thumb.bg-cover {
	background-image: url('../img/Mission-Vision.png');
	background-position: center;
background-repeat:no-repeat;
	height: auto;
	padding:30px;
}

.who-we-area-box .item {
	padding: 120px 50px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.who-we-area-box .aligns {
	display: flex;
	justify-content: flex-start;
	align-items: center
}

.who-we-area-box .line {
	width: 30px;
	height: 2px;
	background-color: #BBBBBB;
}

.who-we-area-box .item h4 {
	font-weight: 600;
	margin-bottom: 25px;
}

.who-we-area-box .item .text-blur {
	position: absolute;
	top: 75px;
	font-size: 60px;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 900;
}

.who-we-area-box .item a {
	margin-top: 15px;
}

.w-text {
	color: #ffffff !important;
}

.btn.btn-light {
	background: #ffffff none repeat scroll 0 0;
	border: 2px solid #ffffff;
	color: #0e2b3d;
}

.btn-sm {
	padding: 10px 35px;
	font-size: 14px;
}

/*--- End---*/

/*---- Product solutions css start -----*/

.column-one,
.column-two,
.column-three,
.column-four,
.column-five,
.column-six,
.column-seven,
.column-eight,
.column-nine,
.column-ten,
.column-eleven,
.column-twelve {
	position: relative;
	float: left;
	width: 100%;
	min-height: 1px
}

#ctl_home_service {
	background-image: linear-gradient(to right, #434343 0%, black 100%);
}

#ctl_home_service .homeserviceImagepad {
	padding: 25px 0px 0px 0px
}

.serviceSideHeading h2 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
}

.serviceSideHeading h2 span {
	color: #141d38;
}

.ctl_heading p {
	color: #fff;
	line-height: 1.7;
	padding: 25px 0px 20px;
	text-align: center;
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image {
	position: relative;
	display: block;
	height: 100%;
	transition: all 0.2s ease-in-out 0s
}

.ruru-hinge-down img {
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .service_one_image {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .service_one_image:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: transparent;
	background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.9)));
	background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%)
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .service_one_image img {
	display: block;
	width: 100%;
	height: 100%
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image h2 {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .ctl_overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 999;
	transition: all 0.5s ease-in-out 0s;
	background-image: linear-gradient(to top, #141d38a8 0%, #43baff 100%);
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .ctl_overlay .icon {
	color: white;
	position: absolute;
	top: 35%;
	left: 35%;
	transform: translate(-26%, -30%);
	-ms-transform: translate(-26%, -30%);
	text-align: center
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .ctl_overlay .icon h3 {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 600;
	color: #ffff;
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .ctl_overlay .icon p {
	font-size: 14px;
	text-align: justify;
	margin-bottom: 20px
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image .ctl_overlay .icon a.homeservice_view {
	background-color: #007bff;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 25px;
	border-radius: 30px;
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2)
}

#ctl_home_service .homeserviceImagepad .ctl-home_service-image:hover .ctl_overlay {
	opacity: 1;
	z-index: 2
}

/* Slider */
.body {
	margin: 0;
	background: transparent;
	user-select: none;
	font-family: sans-serif;
	width: 100%;
	height: 50vh;
}

#slider {
	position: relative;
	width: 40%;
	height: 20vw;
	margin: auto;
	font-family: 'Helvetica Neue', sans-serif;
	perspective: 1400px;
	transform-style: preserve-3d;

}

input[type=radio] {
	position: relative;
	top: 50vh;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: 0 15px 0 0;
	opacity: 0.4;
	transform: translateX(-83px);
	cursor: pointer;
	accent-color: #226267;
}


input[type=radio]:nth-child(5) {
	margin-right: 0px;
}

input[type="radio"]:checked {
	opacity: 1;
}


#slider .label,
#slider .label img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 70px;
	font-weight: bold;
	border-radius: 38px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 400ms ease;


}



/* Slider Functionality */

/* Active Slide */
#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5 {
	box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
	transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide1 {
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
	transform: translate3d(40%, 0, -100px);
}


/* Next to Next Slide */
#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide1,
#s5:checked~#slide2 {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	transform: translate3d(80%, 0, -250px);
}

/* Previous to Previous Slide */
#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3 {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	transform: translate3d(-80%, 0, -250px);
}

/* Previous Slide */
#s1:checked~#slide5,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4 {
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
	transform: translate3d(-40%, 0, -100px);
}

#slider .label .absolute {
	opacity: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	position: absolute;
	text-align: center;
	transition: opacity 1s ease 0s;
	display: flex;
	justify-content: center;
	align-items: center;
}

#slider .label .absolute:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.85);
	background-image: linear-gradient(180deg, rgba(4, 4, 4, 0.3) 0%, rgba(31, 31, 31, 0.3) 100%);

}

#slider .label h3 {
	font-size: 28px;
	font-family: var(--poppins-font);
	font-weight: 300;
}

#slider .label p {
	font-size: 14px;
	font-family: var(--poppins-font);
}

#slider .label h4 {
	background-color: rgb(16, 16, 16);
}


.pro-para {
	color: #fdf9f9;
	font-family: var(--poppins-font);
	font-weight: lighter;
}


@media (min-width:100px) and (max-width:600px) {

	.body {
		margin: 0;
		background: transparent;
		user-select: none;
		font-family: sans-serif;
		width: 100%;
		height: 8vh;
	}

	#slider {
		margin: 0 auto;
	}



	#slider .label,
	#slider .label img,
	#slider .label .absolute {
		width: 100%;
		height: 100%;
		border-radius: 10px;
	}

	#slider .label h4,
	#slider .label h3,
	#slider .label p {
		font-size: 18px;
		display: none;
	}

	input[type="radio"] {
		display: none;

	}

	#slider .label .absolute .btn-login {
		padding: 5px;
		font-size: 10px;
		transform: translate(0, -5px);
	}

}

@media (min-width:600px) and (max-width:991px) {
	.body {
		margin: 0;
		background: transparent;
		user-select: none;
		font-family: sans-serif;
		width: 100%;
		height: 18vh;
	}

	#slider {
		margin: 0 auto;
	}



	#slider .label,
	#slider .label img,
	#slider .label .absolute {
		width: 100%;
		height: 100%;
		border-radius: 10px;
	}

	#slider .label h4,
	#slider .label h3,
	#slider .label p {
		font-size: 18px;
		display: none;
	}

	input[type="radio"] {
		display: none;

	}

	#slider .label .absolute .btn-login {
		padding: 5px;
		font-size: 10px;
		transform: translate(0, -5px);
	}
}


/*---- Product solutions end ------*/


/*----- IOT & GPOn page -------*/

.inner-paragraph-justify {
	text-align: justify;
	line-height: 25px;
	font-size: 13px;
	text-transform: initial;
	color: #867f7f;
	font-weight: 400;
}

/*----- IOT end -----*/


/*----- Contact us Form section -----*/

#contact {
	background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.consultation {
	padding-bottom: 170px;
}

.consultation-form {
	padding-right: 40px;
}

.consultation .c-title p {
	font-size: 16px;
	color: #777;
}

.consultation .c-title h2 {
	font-size: 28px;
	line-height: 40px;
	font-weight: 900;
	margin-bottom: 20px;
}

.consultation .form {
	margin-top: 15px;
}

.consultation .form-group input {
	height: 50px;
	border: 1px solid #dfdfdf;
	width: 100%;
	display: block;
	border-radius: 0px;
	padding: 0px 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-size: 14px;
}

.consultation-image .support .bg-pattern {
	height: 95px;
	width: 95px;
	position: absolute;
	right: 30px;
	top: 60px;
	z-index: -1;
}

.consultation-image img {
	height: 100%;
	width: 100%;
	border-radius: 8px;
}

.consultation-image .support h2 {
	color: #fff;
	font-weight: 900;
	font-size: 80px;
	line-height: 55px;
}

.consultation-image .support h2 span {
	color: #fff;
	font-weight: 800;
	font-size: 32px;
	display: block;
	text-transform: capitalize;
	line-height: 38px;
	margin-top: 30px;
}

.consultation-image .support {
	position: absolute;
	right: 380px;
	bottom: -5px;
	padding: 60px 25px;
	background: #007bff;
	display: inline-block;
	max-width: 285px;
	z-index: 2;
}

.consultation .form-group textarea {
	height: 100px;
	border: 1px solid #dfdfdf;
	width: 100%;
	display: block;
	border-radius: 5px;
	padding: 20px;
	resize: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0px;
}

.consultation .form-group.button {
	text-align: center;
}

.button .btn {
	text-align: center;
	margin: 0;
	padding: 0;
	padding: 0 30px;
	background: #007bff;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 3px;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	height: 54px;
	line-height: 52px;
	display: inline-block;
}

.consultation .c-title h2 {
	font-size: 28px;
	line-height: 40px;
	font-weight: 900;
	margin-bottom: 20px;
	color: #000;
}

.section {
	padding-top: 130px;
	padding-bottom: 130px;
	position: relative;
}

.info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #007bff;
	border: none;
}

.info i {
	font-size: 20px;
	color: #007bff;
	float: left;
	width: 44px;
	height: 44px;
	background: #f0f0ff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.info p {

	margin-bottom: 0;
	text-align: justify;
	font-size: 14px;
	color: #000;
}

.aligns h4 {

	border-left: 3px solid #1a99e2;
}


/* .info .email,
.info .phone 
.info .user {
	margin-top: 40px;
} */


/*---- Contact us Form end -----*/


/*============================================================
			13. CONTACT US SECTION CSS
============================================================*/

.ptb-90 {
	padding: 90px 0;
}

.footer-address {
	margin-bottom: 20px;
}

.footer-address p {
	margin-bottom: 15px;
}

.footer-address ul li i {
	color: #281483;
	margin-right: 5px;
}

.softo-solid-btn {
	padding: 5px 30px;
	border: 2px solid #0088dd;
	background-image: linear-gradient(to top, #141d38 0%, #43baff 100%);
	color: #fff;
	font: 600 14px/30px 'Poppins', sans-serif;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	letter-spacing: 0.5px;
}

.resize {
	resize: none !important;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.col-xs-12 {
	width: 100% !important;
}

.contact-us-form .form-group .form-control {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid #f9f9f9;
	border-radius: 0;
	background: #f9f9f9;
}

.contact-us-form .form-group .form-control:focus {
	border-color: #281483;
}


/*contact form alert message*/

p.form-message.success {
	color: green;
}

p.form-message.error {
	color: red;
}

.join .joinText h2 {
	line-height: 25px;
	font-weight: bold;
	font-size: 2rem;
}


/*---- Contact us Form end -----*/


/*---- oUR BRANDS SECTION -----*/

.brands {
	margin: 100px auto;
}

.small-container {
	max-width: 1080px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}

.col-5 {
	width: 160px;
}

.col-5 img {
	cursor: pointer;
	filter: grayscale(100%);
}

.col-5 img:hover {
	filter: grayscale(0);
}

.client-center {
	display: block;
	margin: 0 auto;
}

@media (max-width: 575px) {
	.client-center {
		display: block;
		margin: 0 auto;
	}

	#header .logo img {
		padding: 0;
		margin: 0;
		max-height: 50px;
	}

	.mobile-ai {
		width: 100% !important;
	}

	.join .joinText h2 {
		line-height: 25px;
		font-weight: bold;
		font-size: 25px;
	}

	.btn-code {
		text-align: center;
	}

	.black-text {
		color: #000000 !important;
		text-transform: uppercase;
		text-align: center;
	}

	.bann_container img {
		width: 100% !important;
		position: relative;
		top: 0px !important;
	}

	#counter-stats {
		padding: 80px 0 !important;
		background: url("../img/bg-banner-home5.png") no-repeat;
		background-position: center center !important;
		background-size: cover !important;
		position: relative !important;
	}

	.counter {
		text-align: center;
		top: -5px;
		position: relative;
	}
}


/*---- oUR BRANDS END -----/
  /*----Count ------*/

#counter-stats {
	padding: 80px 0;
	background: url("../img/bg-banner-home5.png") no-repeat;
	/* filter: brightness(10px); */
	background-position: center center;
	background-size: cover;
	position: relative;
	background-color: #141d38;
}

/* #features {
	padding: 80px 0;
	background: url("../img/bg-banner-home5.png") no-repeat;
	
	background-position: center center;
	background-size: cover;
	position: relative;
	background-color: #141d38
	;
} */


.counter {
	text-align: center;
}

.counter-count {
	font-size: 35px;
	font-weight: bold;
	position: relative;
	color: #141d38;
	text-align: center;
	display: inline-block;
}

.c-title {
	font-size: 20px !important;
	color: #fff !important;
}

.title {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-size: 25px;
	line-height: 40px;
}

.title1 {
	color: #000;
	text-transform: uppercase;
	text-align: center;
}

.sec-c {
	color: #141d38;
	text-align: center;
	text-transform: uppercase;
	/* position: relative;
	right: -10px; */
}

.mt-50 {
	margin-top: 50px;
}

.mainDivider {
	background: #fff;
	width: 100px;
	height: 3px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.mainDivider .sub-divider {
	background: #fff;
	border: 2px solid#141d38;
	width: 10px;
	height: 10px;
	border-radius: 30px;
	top: -3px;
	left: 45%;
	position: absolute;
}

.mainDivider_1 {
	background: #141d38;
	width: 100px;
	height: 3px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.mainDivider_1 .sub-divider {
	background: #fff;
	border: 2px solid #007bff;
	width: 10px;
	height: 10px;
	border-radius: 30px;
	top: -3px;
	left: 45%;
	position: absolute;
}

@media (max-width: 575px) {
	.mt-50 {
		margin-top: 15px;
	}
}

.single-service {
	transition: .5s;
	text-align: center;
	height: 280px;
	padding: 10px;
}

.single-service .icon {
	/* background-image: linear-gradient(to right, #1a3152 0%, #42b8fd 100%);
	border-radius: 50%;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
	color: #000; */
	display: inline-block;
	height: 100px;
	width:  100px;
	margin-bottom: 10px;
}

.single-service .icon:hover {
	background: #1a3152;
	border-radius: 50%;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
	color: #000;
}


.img-serv {
	width: 60px;
	display: block;
	margin: 15px auto;
}

.single-service .content-serv h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	margin: 0;
	text-transform: uppercase;
	color: #ffffff;
}

.single-service .content-serv p {
	color: #fff;
	line-height: 30px;
	margin: 10px 0 0;
}

.single-service:hover {
	border-radius: 10px;
	background-image: radial-gradient(circle 248px at center, #1a99e2 0%, #43baff 100%);
	cursor: pointer;
	box-shadow: 0 0 4px 8px(rgb(0, 0, 0.4));
}

.single-service .icon:hover {
	/* background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%); */
}

p.service-text {
	color: #fff;
	font-size: 16px;
}

/*--------------------------------------------------------------
  /*============================================================
			12. TESTIMONIAL SECTION CSS
============================================================*/


/*testimonial new style*/

#testi {
	background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.single-testimonial-item {
	position: relative;
	display: block;
}

.blockquote-icon {
	position: absolute;
	left: 35px;
	top: -15px;
	z-index: 9999;
}

.blockquote-icon i {
	font-size: 40px;
	line-height: 40px;
	background: linear-gradient(to top, #43baff 15%, #141d38 70%, #43baff 94%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonial-content {
	margin-top: 20px;
	background: #fff;
	border: 1px solid #f9f9f9;
	-webkit-box-shadow: 0 1px 2px rgba(212, 212, 212, 0.35);
	box-shadow: 0 1px 2px rgba(212, 212, 212, 0.35);
	border-radius: 4px;
	padding: 50px;
	margin-bottom: 2.5rem;
	position: relative;
}

.testimonial-content:after {
	content: "";
	position: absolute;
	height: 40px;
	width: 40px;
	bottom: -10px;
	left: 33px;
	background: #fff;
	border-radius: 2px;
	-webkit-transform: translateX(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.testimonial-author {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.testimonial-author img {
	width: 66px !important;
	height: 66px;
	border-radius: 100px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66px;
	flex: 0 0 66px;
	-webkit-box-shadow: 0 1px 2px rgba(212, 212, 212, 0.35);
	box-shadow: 0 1px 2px rgba(212, 212, 212, 0.35);
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.testimonial-author-info h6 {
	margin-bottom: 0;
}


/*angle bg*/

.angle-bg {
	position: relative;
	z-index: 1;
}

.angle-bg:before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transform: skewY(170deg);
	transform: skewY(170deg);
	width: 100%;
	z-index: 0;
	background: #fff none repeat scroll 0 0;
}

.angle-bg:after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transform: skewY(170deg);
	transform: skewY(170deg);
	width: 100%;
	z-index: 0;
	background: #f9f9f9 none repeat scroll 0 0;
}

.testimonial-slider .owl-nav {
	position: absolute;
	right: 0;
	margin-top: 0;
	bottom: 15px;
}

.testimonial-slider .owl-nav button {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}

.testimonial-slider .owl-nav button:focus,
.testimonial-slider .owl-nav button:active {
	outline: none;
}

.testimonial-slider.owl-theme .owl-nav [class*=owl-] {
	background: rgba(40, 20, 131, 0.05);
}

.testimonial-slider .owl-nav button span {
	font-size: 18px;
	line-height: 18px;
	color: #281483;
}


/*---- Testiemonials end------*/


/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

#footer {
	background: #43baff;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #141d38, #43baff);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #141d38, #43baff);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

   #footer .footer-top {
      padding: 30px 10px 0px 10px;
   }

#footer .footer-top .footer-info {
	color: #fff;
	text-align: center;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	text-align: left;
	color: #fff;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--poppins-font);
	text-align: justify;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #001a57;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;

}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #1a99e2;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #001a57;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px 6px 15px;
	position: relative;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #001a57;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #007bff;
}

#footer .copyright {
	border-top: 1px solid #fff;
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

@media (max-width: 575px) {
	#footer .footer-top .footer-info {
		margin: -20px 0 30px 0;
	}

	p {
		margin-top: 0 !important;
		margin-bottom: 1rem !important;
	}
}


/* Map section start --*/

section#contactus {
	background-image: linear-gradient(to top, #e5ebf1 0%, rgb(255 255 255 / 10%) 100%);
}

.pd-top-20 {
	padding-top: 10px;
}

.map-area-wrap {
	box-shadow: 0px 25px 70px #01358d1a;
	border-radius: 6px;
	overflow: hidden;
}

.contact-info {
	padding: 10px;
}

.contact-info .sub-title {
	margin-bottom: 10px;
}

.contact-info p {
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.3px;
	color: #5B6880;
}

.contact-info p span {
	color: #141d38;
	font-weight: 500;
}

.contact-info .c-title {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.36px;
	color: #141d38 !important;
	position: relative;
	margin-bottom: 15px;
	display: block;
}


/* Map Section end ---*/


/* ---- Career Section ----*/
.section-title .title {
	font-size: 30px;
	line-height: 50px;
}

.section-title .title {
	letter-spacing: 0.92px;
	color: #01358D;
	opacity: 1;
	font-weight: 700;
	margin-bottom: 0;
	font-family: var(--poppins-font);
}

@media only screen and (max-width: 1550px) {
	.section-title .title {
		font-size: 35px;
		line-height: 50px;
	}

	.section-title .title {
		letter-spacing: 0.92px;
		color: #01358D;
		opacity: 1;
		font-weight: 700;
		margin-bottom: 0;
		font-family: var(--poppins-font);
	}

}

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

	.currentOpen .container .titleCareers h1,
	.currentOpen .container .titleCareers h2 {
		font-size: 18px
	}
}

.applyFooter {
	padding: 5px 20px 15px;
	text-align: right
}


.ctl-grad-button:hover {
	color: #fff !important;
	background: rgb(6 92 185 / 80%);
}

#getAquote .modal-content .ctl-career-header {
	background: #007bff;
	color: #fff;
	border-radius: 5px 5px 0px 0px;
	padding: 15px 20px 10px;
	width: 100%;
	text-align: center;
	border: none;
}

#getAquote .modal-content .ctl-career-header .modal-title {
	margin: 0 auto;
	width: 100%;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 16px !important;
}

#ctl_bottom_divider {
	background-image: url(../img/jobpost.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: multiply;
	background-color: transparent;
}

.section-pad-full {
	padding: 80px 0px 80px;
}

.relative-position {
	position: relative;
}

.job-head {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-shadow: 1px 1px 2px #616161;
	line-height: 30px;
}

.ctl-divider-button {
	background-color: #fff;
	color: #001a57;
	padding: 10px 40px;
	border-radius: 30px;
	box-shadow: 1px 2px 3px #5f5c5c;
	border: none;
	outline: none;
}


/*---- Career end ------*/



/*--- Landing Page develper code start ---*/

.sections-header {
	font-size: 2.1875rem;
	font-weight: 600;
	line-height: 1.51;
	margin-top: 100px;
	padding: 0 15px;
}

.landing-page-sections-container {
	margin-bottom: 9rem;
}

.landing-page-sections-container .textImageRow .imageSection {
	justify-content: flex-end;
}

.landing-page-sections-container .textImageRow .imageSection img {
	max-width: 100%;
	height: 100%;
	padding: 0 5%;
}

.landing-page-sections-container .textImageRow .textSection .textDiv {
	padding: 5%;
	max-width: 550px;
	transition: 0.5s;
	background: url(../img/text_effect_1.svg) left top no-repeat;
}

.landing-page-sections-container .textImageRow:nth-child(even) .imageSection {
	justify-content: flex-start;
}

.landing-page-sections-container .textImageRow.community {
	background: none !important;
}

.landing-page-sections-container .textImageRow:nth-child(even) {
	flex-direction: row-reverse;
}

.dev-desc {
	color: #616161;
	margin: 0;
	font-size: 14px;
	line-height: 2;
	text-align: justify;
}


/*-- our Partners Section ---*/

.ruruslide {
	margin: 0 20px;
}

.ruruslide img {
	width: 100%;
}

.grayscale-img {
	filter: gray;
	/* IE6-9 */
	-webkit-filter: grayscale(1);
	/* Google Chrome, Safari 6+ & Opera 15+ */
	filter: grayscale(1);
	/* Microsoft Edge and Firefox 35+ */
}

.grayscale-img:hover {
	-webkit-filter: grayscale(0);
	filter: none;
	cursor: pointer;
}

.slick-slide {
	margin: 0px 20px;
}

.slick-slide img {
	width: 100%;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

body {
	overflow-x: hidden;
}

/*-- Clients End ---*/

#filter-list {
	display: inline-block;
	border: 1px solid #dddddd;
	border-radius: 30px;
	padding: 4px;
	margin: 0 0 60px;
}

#filter-list li {
	display: inline-block;
	font-size: 16px;
	color: #888888;
	text-transform: uppercase;
	line-height: 50px;
	text-align: center;
	border-radius: 25px;
	font-weight: 500;
	padding: 0 20px;
	min-width: 130px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#filter-list li.active,
#filter-list li:hover {
	background-image: linear-gradient(to top, #141d38 0%, #43baff 100%);
	color: #fff;
}

.gallery-outer {
	width: 100%;
	float: left;
	height: auto;
	padding: 0 1px;
}

.gallery-items li {
	width: 25%;
	float: left;
	padding: 0 1px 2px;
}

.gallery-items li img {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.gallery-inner {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
}

.gallery-overlay {
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	text-align: center;
	-webkit-transform: translateY(-50%) scale(0);
	-ms-transform: translateY(-50%) scale(0);
	-moz-transform: translateY(-50%) scale(0);
	transform: translateY(-50%) scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.gallery-overlay a {
	width: 60px;
	line-height: 60px;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	color: #53bff0;
	font-size: 20px;
}

.gallery-overlay a:hover {
	background: #53bff0;
	color: #fff;
}

.gallery-items li:hover .gallery-overlay {
	-webkit-transform: translateY(-50%) scale(1);
	-ms-transform: translateY(-50%) scale(1);
	-moz-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}

.gallery-items li:hover img {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}


/* Gallery css code end */


/*---- About us css code -----*/

.bann_container {
	position: relative;
}

.bann_container img {
	width: 100%;
}

.about_layout {
	display: block;
}

.ab_bl_img img {
	width: 100%;
}

.ab_bl_head {
	font-size: 36px;
	color: rgb(0, 0, 0);
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-weight: bold;
}

.ab_bl_head::before {
	position: absolute;
	bottom: 0px;
	left: 0px;
	content: '';
	height: 3px;
	width: 70px;
	background-color: rgb(51, 196, 237);
}

.sections-header-black {
	font-size: 36px;
	color: rgb(0, 0, 0);
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 15px;
	font-weight: bold;
}

h3.f-24 {
	color: #000;
	font-weight: 600;
	padding-bottom: 10px;
}

.ab_bl_txt {
	font-size: 15px;
	text-align: justify;
}

.about_section_1 {
	padding: 6% 0%;
}

.about_section_2 {
	padding: 5% 0%;
	background-color: rgb(244, 244, 244);
	background-image: url(../../uploads/rurutekcom/particle_back.php);
	background-position: right center;
	background-size: contain;
	background-repeat: no-repeat;
}


/*---- About sec end ------*/

/*-----Set top box css start ----*/

.landing_main_head {
	text-align: center;
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	padding-bottom: 0px;
	margin-bottom: 8%;
}

.landing_main_head span::before {
	position: absolute;
	bottom: 0px;
	left: 50%;
	content: '';
	width: 35%;
	background-color: rgb(51, 196, 237);
	transform: translateX(-50%);
}

.landing_div_imgs {
	position: relative;
}

.ld_heads {
	font-size: 22px;
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 2px;
	text-align: initial;
}

.ld_heads::before {
	position: absolute;
	bottom: 0px;
	left: 0px;
	content: '';
	width: 50px;
	height: 3px;
	background-color: rgb(51, 196, 237);
}

.ld_heads span {
	text-transform: uppercase;
	font-size: 32px;
	color: #007bff;
	letter-spacing: 1px;
	font-weight: 600;
	line-height: 40px;
}

.lay_icons {
	display: inline-block;
	margin-right: 6%;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	top: 10px;
}

.landing_div_imgs::before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: '';
	height: 100%;
	width: 100%;
	/* background-color: rgb(51, 196, 237); */
	z-index: -1;
}

.landing_div_imgs span img {
	width: 100%;
	border-radius: 30px;
	
}
.landing_div_imgs span img:hover {
	width: 100%;
	border-radius: 30px;
    transition: box-shadow 0.3s ease; /* Smooth transition */

}

.landing_main_desc {
	font-family: var(--poppins-font);
	text-align: center;
	padding: 0% 15%;
	font-size: 15px;
	margin-bottom: 10%;
	display: none;
}

/*---- Set top box css end ----*/
/*-----------------------------------------
    Accordion Item
-----------------------------------------*/
.single-accordion {
	border: 1px solid #F5F9FF;
	border-radius: 3px;
	margin-bottom: 14px;
}

.single-accordion .card-header {
	background: transparent;
	border-radius: 0;
	border: 0;
	padding: 0;
}

.single-accordion .card-header h2 button {
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.32px;
	color: #01358D;
	padding: 0 0 0 37px;
	width: 100%;
	text-align: left;
	position: relative;
	background: #F5F9FF;
	border-radius: 3px;
	border: 0;
	padding: 0 35px;
	height: 60px;
	line-height: 62px;
	float: left;
	font-weight: 500;
}

.single-accordion .card-header h2 button:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 12px;
	background: #01358D;
	top: 50%;
	right: 30px;
}

.single-accordion .card-header h2 button:before {
	content: "";
	position: absolute;
	height: 2px;
	width: 12px;
	background: #01358D;
	top: 50%;
	transition: all 0.3s ease;
	right: 30px;
}

.single-accordion .card-header h2 button:hover,
.single-accordion .card-header h2 button:focus,
.single-accordion .card-header h2 button:active {
	text-decoration: none;
}

.single-accordion .card-header h2 button i {
	float: right;
}

.single-accordion .card-header h2 button.collapsed:before {
	transform: matrix(0, 1, -1, 0, 0, 0);
}

.single-accordion .card-body {
	padding: 21px 71px 23px 37px;
	font-size: var(--body-font-size);
	line-height: var(--line-height30);
	letter-spacing: 0.3px;
	color: #97A1B3;
}

.accordion.style-two .single-accordion {
	box-shadow: 0px 10px 54px #97A1B224;
	border: 0;
}

.accordion.style-two .single-accordion .card-header h2 button {
	background: transparent;
	padding: 0 35px 0 55px;
	color: #5B6880;
}

.accordion.style-two .single-accordion .card-header h2 button:before,
.accordion.style-two .single-accordion .card-header h2 button:after {
	left: 30px;
	background: var(--main-color-one);
}

.accordion.style-two .single-accordion .card-header h2 button.collapsed:before,
.accordion.style-two .single-accordion .card-header h2 button.collapsed:after {
	background: #5B6880;
}

.accordion.style-two .single-accordion .card-body {
	padding: 10px 30px 35px 53px;
}

/**job-position-area **/
.single-job-list {
	background: #fff;
	box-shadow: 0px 4px 20px #9398A11A;
	border-radius: 8px;
	padding: 22px 35px 22px 26px;
	transition: all 0.3s ease;
	margin-bottom: 40px;
	align-items: center;
}

.single-job-list:hover {
	box-shadow: 0px 7px 30px #9398A11C;
}

.single-job-list img {
	width: 66px;
	height: 66px;
}

.single-job-list .media-body {
	border-left: 1px solid #EEEBF7;
	margin-left: 26.5px;
	padding-left: 25.5px;
}

.single-job-list .media-body h6 {
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: 0.18px;
	color: #5B6880;
	display: inline-block;
	margin-bottom: 12px;
}

.single-job-list .media-body span {
	font-size: var(--body-font-size);
	line-height: var(--line-height30);
	font-weight: 400;
	letter-spacing: 0.3px;
	color: #5B6880;
	display: block;
}

.job-apply-btn {
	background: #FFFFFF;
	border: 1px solid #D6DAE1;
	border-radius: 4px;
	font-size: var(--body-font-size);
	letter-spacing: 0.3px;
	color: #97A1B3;
	height: 44px;
	line-height: 44px;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 0 30px;
	display: inline-block;
}

.job-apply-btn:hover {
	box-shadow: 0px 7px 16px #01358D6B;
	background: #01358D;
	color: #fff;
	border: 1px solid #01358D;
}

.job-apply-btn:focus,
.job-apply-btn:active {
	box-shadow: none;
	outline: 0;
}

/**job-details-area**/
.job-details-area .section-title .title {
	font-size: 36px;
	margin-bottom: 0;
	font-weight: 500;
	letter-spacing: 0.72px;
	border-bottom: 1px solid #01358D;
	padding: 0;
	display: inline-block;
}

.job-details-area h6.title {
	font-size: 24px;
	line-height: 28px;
	font-weight: 500;
	letter-spacing: 0.24px;
	color: #01358D;
	margin-bottom: 10px;
}

.job-details-area span {
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.36px;
	color: #5B6880;
}

.job-details-area .sub-title {
	margin-top: 26px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: #01358D;
	margin-bottom: 10px;
}

.job-details-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.job-details-area ul li {
	font-size: var(--body-font-size);
	line-height: var(--line-height30);
	letter-spacing: 0.3px;
	color: #5B6880;
	position: relative;
	padding-left: 18px;
}

.job-details-area ul li:after {
	content: "";
	position: absolute;
	height: 5px;
	width: 5px;
	left: 0;
	top: 13px;
	border-radius: 50%;
	background: #5B6880;
}

.job-details-area .job-apply-btn {
	margin-top: 69px;
	border: 0;
	box-shadow: 0px 7px 16px #01358D6B;
	background: #01358D;
	color: #fff;
}

.job-details-area .job-apply-btn:hover {
	opacity: 0.9;
}

.single-blog-content {
	border: 0;
	margin-bottom: 40px;
}

.single-blog-content .thumb {
	margin-bottom: 30px;
}

.single-blog-content .single-blog-details .post-meta {
	list-style: none;
	padding: 0;
	margin: 0;
}

.single-blog-content .single-blog-details .post-meta li {
	font-size: var(--body-font-size);
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.3px;
	color: #97A1B3;
	margin-right: 3px;
	margin-bottom: 9px;
	display: inline-block;
}

.single-blog-content .single-blog-details .post-meta li i {
	margin-right: 5px;
	float: left;
	margin-top: 5px;
}

.single-blog-content .single-blog-details .post-meta li.admin {
	letter-spacing: 0.45px;
	color: #DFE5EF;
	background: #01358D;
	border-radius: 2px;
	height: 23px;
	line-height: 24px;
	padding: 0 15px;
	margin-right: 17px;
}

.single-blog-content .single-blog-details h5 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.72px;
	color: #01358D;
	margin-bottom: 21px;
	display: block;
}

.single-blog-content .single-blog-details h5 {
	margin-top: 12px;
}

.single-blog-content .single-blog-details h5 a {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.72px;
	color: #01358D;
	display: block;
}

.single-blog-content .single-blog-details p {
	font-size: var(--body-font-size);
	line-height: 27px;
	color: #5B6880;
	margin-bottom: 16px;
}

.single-blog-content .single-blog-details a {
	font-size: var(--body-font-size);
	line-height: var(--line-height30);
	letter-spacing: 0.3px;
	color: #01358D;
	transition: all 0.3s ease;
}

.single-blog-content .single-blog-details a span {
	transition: all 0.3s ease;
	position: relative;
}

.single-blog-content .single-blog-details a:hover {
	color: var(--main-color-one);
}

.single-blog-content .single-blog-details a:hover span {
	margin-left: 3px;
}

.single-blog-content .single-blog-details a i {
	font-size: 22px;
	position: absolute;
	bottom: -3px;
	right: -28px;
}

.single-blog-content.style-two .thumb img {
	width: 100%;
}

.single-blog-content.style-two .single-blog-details h5 a {
	font-size: 26px;
	line-height: 32px;
}

.single-blog-content .audio-player iframe {
	width: 100%;
	border: 0;
}

/********* widget job details *********/
.widget-job-details {
	background: #fff;
	box-shadow: 0px 2px 50px #97A1B229;
	border-radius: 8px;
	padding: 70px 38px;
}

.widget-job-details .widget-title {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.2px;
	padding-bottom: 15px;
	margin-bottom: 32px;
}

.widget-job-details .single-job-details {
	margin-bottom: 25px;
}

.widget-job-details .single-job-details img {
	margin-top: 2px;
}

.widget-job-details .single-job-details .media-body {
	margin-left: 25.25px;
}

.widget-job-details .single-job-details .media-body h6 {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.2px;
	color: #535764;
	margin-bottom: 10px;
}

.widget-job-details .single-job-details .media-body span {
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.3px;
	color: #97A1B3;
}

.tagcloud a {
	background: #2B71E8;
	height: 26px;
	line-height: 26px;
	padding: 0 10px;
	color: #fff;
	display: inline-block;
	margin-bottom: 5px;
	margin-right: 5px;
	border-radius: 3px;
}

/*----------------------------------------
    ## All form
------------------------------------------*/
.rurutek-form-wrap .btn {
	height: 48px;
	line-height: 48px;
	padding: 0 60px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin-top: 30px;
}

.single-input-wrap {
	position: relative;
}

.single-input-wrap .single-input {
	width: 100%;
	height: 52px;
	background: transparent;
	border: 1px solid #D9DDE4;
	border-radius: 4px;
	padding: 18px;
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.3px;
	color: #97A1B2;
}

.single-input-wrap .single-input.textarea {
	min-height: 134px;
}

.single-input-wrap.input-checkbox {
	margin-bottom: 30px;
}

.single-input-wrap.input-checkbox .single-input {
	width: auto;
	height: auto;
}

.single-input-wrap .input-checkbox-text span {
	color: var(--main-color-one);
}

.single-input-wrap .single-select {
	width: 100%;
	height: 52px;
	background: transparent;
	border: 1px solid #D9DDE4;
	border-radius: 4px;
	padding: 16px 18px;
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.3px;
	color: #97A1B2;
}

.single-input-wrap .single-select span.current {
	width: 180px;
	display: block;
}

.single-input-wrap .single-select:after {
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	height: 7px;
	right: 20px;
	width: 7px;
}

.single-input-wrap .single-select .list {
	width: 100%;
}

.single-input-wrap .single-select .list li {
	font-size: 14px !important;
	letter-spacing: 0.28 !important;
	color: #97A1B2 !important;
	font-weight: 400 !important;
	transition: 0.4s !important;
}

.single-input-wrap .single-select .list li:hover,
.single-input-wrap .single-select .list li:focus,
.single-input-wrap .single-select .list li.selected {
	color: #01358D !important;
}

.single-input-wrap label {
	position: absolute;
	top: 17px;
	left: 20px;
	color: #999;
	cursor: text;
	transition: all 0.15s ease-in-out 0s;
	z-index: -1;
	font-size: var(--body-font-size);
	line-height: 1.2;
	letter-spacing: 0.3px;
	color: #97A1B2;
}

.single-input-wrap label.active {
	top: -6px;
	left: 17px;
	font-size: 11px;
	color: inherit;
	cursor: pointer;
	color: #97A1B2;
	background: #fff;
	z-index: 1;
	padding: 0 1px;
}

.rurutek-file-input-wrap {
	margin-top: 10px;
	height: 100%;
}

.rurutek-file-input-wrap .rurutek-file-input {
	cursor: pointer;
	height: 60px;
	line-height: 60px;
	width: 100%;
}

.rurutek-file-input-wrap label {
	cursor: pointer;
	border: 0;
	color: #fff;
	border-radius: 0;
	background: #32E2A9;
	height: 62px;
	line-height: 64px;
	text-align: center;
	padding: 0;
	cursor: cell;
}

.rurutek-file-input-wrap label:after {
	display: none !important;
}

.job-apply-area {
	box-shadow: 0px 8px 30px #97A1B224;
	border-radius: 8px;
	padding: 120px 68px;
}

.job-apply-area .single-input-wrap .single-input {
	border: 0;
	border-bottom: 1px solid #D9DDE4;
	border-radius: 0;
	padding: 0;
}

.job-apply-area .single-input-wrap textarea {
	padding: 10px 0 !important;
}

.job-apply-area .single-input-wrap label {
	left: 0;
}

.job-apply-area .btn-blue {
	margin-top: 70px;
}

@media (max-width:480px) {
	.lay_icons {
		display: block;
		line-height: 35px !important;
	}
}

/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*	padding: 0 10px;*/
/*	font-size: 25px;*/
/*	margin-bottom: 5px;*/
/*	border-left: 3px solid #1a99e2;*/
/*	border-radius: 5px;*/

/*}*/
/*.row-cols-2*/
/*	h3,*/
/*h4*/
/*{*/
/*	padding: 0 10px;*/
/*	font-size: 25px;*/
/*	margin-bottom: 5px;*/
/*	border-left: 3px solid white;*/
/*	border-radius: 5px;*/

/*}*/

/* devyani  */

.dev {
	position: relative;
	animation: fadeUp 2s ease-in-out;
  }
  
  @keyframes fadeUp {
	0% { top: 20px; opacity: 0; }
	100% { top: 0px; opacity: 1; }
  }




/*------------------------------------------