html {
	font-family: Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
}

body {
	font-family: Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
	color: #000000;
	overflow-y: auto; /* Hide vertical scrollbar */
}

a {
	color: #106eea;
	text-decoration: none;
}

	a:hover {
		color: #3b8af2;
		text-decoration: none;
	}

h1, h2, h3, h4, h5, h6 {
	font-family: Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
}

#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 #106eea;
		border-top-color: #e2eefd;
		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);
	}
}

.back-to-top {
	position: fixed !important;
	visibility: visible !important;
	opacity: 1 !important;
	right: 15px !important;
	bottom: 15px !important;
	z-index: 996 !important;
	background: #106eea !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 4px !important;
	transition: all 0.4s !important;
}

	.back-to-top i {
		font-size: 28px !important;
		color: #fff !important;
		line-height: 0 !important;
	}

	.back-to-top:hover {
		background: #3284f1 !important;
		color: #fff !important;
	}

	.back-to-top.active {
		visibility: visible !important;
		opacity: 1 !important;
	}

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

#topbar {
	background: #106eea;
	height: 40px;
	font-size: 14px;
	transition: all 0.5s;
	color: #fff;
	padding: 0;
}

	#topbar .contact-info i {
		font-style: normal;
		color: #fff;
	}

		#topbar .contact-info i a, #topbar .contact-info i span {
			padding-left: 5px;
			color: #fff;
		}

		#topbar .contact-info i a {
			line-height: 0;
			transition: 0.3s;
			transition: 0.3s;
		}

			#topbar .contact-info i a:hover {
				color: #fff;
				text-decoration: underline;
			}

	#topbar .social-links a, #topbar .social-links a img {
		color: #e7f1fd;
		line-height: 0;
		transition: 0.3s;
		margin-left: 20px;
		font-size: 20px;
	}

		#topbar .social-links a img {
			margin-left: 0px;
			height: 24px;
			width: 22px;
		}

		#topbar .social-links a:hover, #topbar .social-links a:hover img, #topbar .social-links a:hover img * {
			color: white;
			fill: white !important;
			/*background: #e7f1fd;
            transition: all 0.5s;
            z-index: 997;*/
			/*height: 86px;*/
			/*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
		}

#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	/*height: 86px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);*/
	height: auto;
	box-shadow: none;
}

	#header.fixed-top {
		padding: 15px 0;
		box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
	}

	#header .logo {
		font-size: 30px;
		margin: 0;
		padding: 0;
		line-height: 1;
		font-weight: 600;
		letter-spacing: 0.8px;
		font-family: "Poppins", sans-serif;
	}

		#header .logo a {
			color: #222222;
		}

			#header .logo a span {
				color: #106eea;
			}

		#header .logo img {
			max-height: 60px;
		}

.scrolled-offset {
	margin-top: 70px;
}


.navbar {
	padding-left: 19rem;
}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar > ul > li {
		white-space: nowrap;
		padding: 10px 0 10px 28px;
	}

	.navbar a, .navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		font-size: 15px;
		font-weight: 400;
		color: #222222;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		font-family: Calibri, Corbel, Helvetica, Roboto, Droid, sans-serif;
	}

		.navbar a i, .navbar a:focus i {
			font-size: 12px;
			line-height: 0;
			margin-left: 5px;
		}

	.navbar > ul > li > a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: #106eea;
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
		visibility: visible;
		width: 100%;
	}

	.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
		color: #106eea;
	}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 0;
		top: calc(100% + 30px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.3s;
	}

	.navbar .dropdown ul {
		min-width: 150px;
		width: fit-content;
	}

		.navbar .dropdown ul li {
			min-width: 150px;
			width: fit-content
		}

		.navbar .dropdown ul a {
			padding: 10px 20px;
			font-weight: 400;
		}

			.navbar .dropdown ul a i {
				font-size: 12px;
			}

			.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
				color: #106eea;
			}

	.navbar .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}

	.navbar .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}

@media (max-width: 1366px) {
	#hero {
		height: 220px;
	}

	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #222222;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

	.mobile-nav-toggle.bi-x {
		color: #fff;
	}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(9, 9, 9, 0.9);
	transition: 0.3s;
	z-index: 999;
}

	.navbar-mobile .mobile-nav-toggle {
		position: absolute;
		top: 15px;
		right: 15px;
	}

	.navbar-mobile ul {
		display: block;
		position: absolute;
		top: 55px;
		right: 15px;
		bottom: 15px;
		left: 15px;
		padding: 10px 0;
		background-color: #fff;
		overflow-y: auto;
		transition: 0.3s;
	}

	.navbar-mobile a, .navbar-mobile a:focus {
		padding: 10px 20px;
		font-size: 15px;
		color: #222222;
	}

	.navbar-mobile > ul > li {
		padding: 0;
	}

	.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
		visibility: hidden;
	}

	.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
		color: #106eea;
	}

	.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
		margin: 15px;
	}

	.navbar-mobile .dropdown ul {
		position: static;
		display: none;
		margin: 10px 20px;
		padding: 10px 0;
		z-index: 99;
		opacity: 1;
		visibility: visible;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	}

		.navbar-mobile .dropdown ul li {
			min-width: 200px;
		}

		.navbar-mobile .dropdown ul a {
			padding: 10px 20px;
		}

			.navbar-mobile .dropdown ul a i {
				font-size: 12px;
			}

			.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
				color: #106eea;
			}

	.navbar-mobile .dropdown > .dropdown-active {
		display: block;
	}

#hero {
	width: 100%;
	height: 275px;
	/*background: url("../img/Untitled design (1).png") top left;*/
	background-size: cover;
	position: relative;
	padding: 0 !important;
}

	#hero:before {
		content: "";
		position: absolute;
		bottom: 0;
		top: 0;
		left: 0;
		right: 0;
	}

	#hero > img {
		width: 100%;
		height: 100%;
	}

	#hero .container {
		position: relative;
	}

	#hero h1 {
		margin: 0;
		font-size: 27px;
		font-weight: 700;
		line-height: 56px;
		color: #222222;
		font-family: "Poppins", sans-serif;
	}

		#hero h1 span {
			color: #106eea;
		}

	#hero h2 {
		color: #555555;
		margin: 5px 0 30px 0;
		font-size: 18px;
		font-weight: 400;
	}

	#hero .btn-get-started {
		font-family: "Roboto", sans-serif;
		text-transform: uppercase;
		font-weight: 500;
		font-size: 14px;
		letter-spacing: 1px;
		display: inline-block;
		padding: 10px 28px;
		border-radius: 4px;
		transition: 0.5s;
		color: #fff;
		background: #106eea;
	}

		#hero .btn-get-started:hover {
			background: #247cf0;
		}

	#hero .btn-watch-video {
		font-size: 16px;
		transition: 0.5s;
		margin-left: 25px;
		color: #222222;
		font-weight: 600;
		display: flex;
		align-items: center;
	}

		#hero .btn-watch-video i {
			color: #106eea;
			font-size: 32px;
			transition: 0.3s;
			line-height: 0;
			margin-right: 8px;
		}

		#hero .btn-watch-video:hover {
			color: #106eea;
		}

			#hero .btn-watch-video:hover i {
				color: #3b8af2;
			}

.img-fluid {
	max-width: 100%;
	height: 100%;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
		height: 234px;
	}
}

@media (max-width: 768px) {
	#hero {
		height: auto;
	}

		#hero h1 {
			font-size: 28px;
			line-height: 36px;
		}

		#hero h2 {
			font-size: 18px;
			line-height: 24px;
			margin-bottom: 30px;
		}

		#hero .btn-get-started, #hero .btn-watch-video {
			font-size: 13px;
		}
}

@media (max-height: 500px) {
	#hero {
		height: 120vh;
	}
}

section {
	padding: 30px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f6f9fe;
}

section {
	padding: 50px 0;
	overflow: hidden;
}

.f {
	padding: 10px 0;
	overflow: hidden;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.1);
}

.section-title {
	text-align: center;
	padding-bottom: 20px;
}

	.section-title h2 {
		font-size: 13px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 8px 20px;
		margin: 0;
		background: #e7f1fd;
		color: #000000;
		display: inline-block;
		text-transform: uppercase;
		border-radius: 50px;
	}

	.section-title h3 {
		margin: 15px 0 0 0;
		font-size: 30px;
		font-weight: 700;
	}

		.section-title h3 span {
			color: #106eea;
		}

	.section-title p {
		margin: 15px auto 0 auto;
		font-weight: 600;
	}

@media (min-width: 1024px) {
	.section-title p {
		width: auto;
	}
}

.breadcrumbs {
	padding: 20px 0;
	background-color: #f1f6fe;
	min-height: 40px;
}

	.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;
		}
}

.featured-services .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	transition: all 0.3s ease-in-out;
	border-radius: 8px;
	z-index: 1;
}

	.featured-services .icon-box::before {
		content: "";
		position: absolute;
		background: #cbe0fb;
		right: 0;
		left: 0;
		bottom: 0;
		top: 100%;
		transition: all 0.3s;
		z-index: -1;
	}

	.featured-services .icon-box:hover::before {
		background: #106eea;
		top: 0;
		border-radius: 0px;
	}

.featured-services .icon {
	margin-bottom: 15px;
}

	.featured-services .icon i {
		font-size: 48px;
		line-height: 1;
		color: #106eea;
		transition: all 0.3s ease-in-out;
	}

.featured-services .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

	.featured-services .title a {
		color: #111;
	}

.featured-services .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
	color: #fff;
}

.featured-services .icon-box:hover .icon i {
	color: #fff;
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #000;
	margin-left: 50%;
}

/*--------------------------------------------------------------
#  callout 
--------------------------------------------------------------*/
.callout .content h2 {
	font-weight: 200 !important;
	font-size: 26px;
}

.callout .content ul {
	list-style: none;
	padding: 0;
}

	.callout .content ul li {
		display: block;
		align-items: flex-start;
		margin-bottom: 5px;
		font-size: 15px;
	}

		.callout .content ul li:first-child {
			margin-top: 5px;
		}

	.callout .content ul i {
		font-size: 20px;
		padding: 10px;
		color: #106eea;
	}

.callout .content p:last-child {
	margin-bottom: 1rem;
	color: black;
}

p {
	margin-top: 5px;
}

.section-bgs {
	background-color: #000000;
}
/*--------------------------------------------------------------
#  alternate
--------------------------------------------------------------*/
.alternate .content h2 {
	font-weight: 400 !important;
	font-size: 26px;
}

.alternate .content ul {
	list-style: none;
	padding: 0;
}

.alternate .img-fluid {
	height: auto;
}

.alternate .content ul li {
	display: block;
	align-items: flex-start;
	margin-bottom: 5px;
	font-size: 15px;
}

	.alternate .content ul li:first-child {
		margin-top: 5px;
	}

.alternate .content ul i {
	font-size: 20px;
	padding: 10px;
	color: #106eea;
}

.alternate .content p:last-child {
	margin-bottom: 1rem;
	color: black;
}

p {
	margin-top: 5px;
}

/*--------------------------------------------------------------
#  explore
--------------------------------------------------------------*/
. exploree .content h2 {
	font-weight: 200 !important;
	font-size: 26px;
}

.explore .content ul {
	list-style: none;
	padding: 0;
	color: white;
}

	.explore.content ul li {
		display: block;
		align-items: flex-start;
		margin-bottom: 5px;
		font-size: 15px;
	}

		.explore.content ul li:first-child {
			margin-top: 5px;
		}

	.explore .content ul i {
		font-size: 20px;
		padding: 10px;
		color: #106eea;
	}

.explore .content p:last-child {
	margin-bottom: 1rem;
	color: black;
}

p {
	margin-top: 5px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
	font-weight: 600;
	font-size: 20px;
	color: #106eea;
	margin-top: 20px;
}

.about h3 {
	font-weight: 600;
	font-size: 25px;
	color: #106eea;
	margin-top: 22px;
}

.abouts h3 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	margin-top: 22px;
}

.abouts a {
	color: #000000;
}

.about .content ul {
	list-style: none;
	padding-right: 1rem;
	padding: 0;
}

	.about .content ul li {
		display: block;
		align-items: flex-start;
		margin-bottom: 5px;
		font-size: 14px;
	}

.about .contents ul li {
	display: block;
	align-items: flex-start;
	margin-bottom: 5px;
	font-size: 16px;
}

.about .content ul li:first-child {
	margin-top: 5px;
}

.about .content ul i {
	font-size: 20px;
	padding: 10px;
	color: #106eea;
}

.about ul {
	list-style: none;
	padding: 0;
}

.aboutul li {
	display: block;
	align-items: flex-start;
	margin-bottom: 5px;
	font-size: 14px;
}

.about ul li:first-child {
	margin-top: 5px;
}

.about ul i {
	font-size: 20px;
	padding: 10px;
	color: #106eea;
}

.about .content p:last-child {
	margin-bottom: 1rem;
	color: black;
}

p {
	margin-top: 5px;
}

.styleColor {
	color: #106eea;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
	height: 60px;
	display: block;
	background: none;
	border-radius: 0;
}

	.skills .progress .skill {
		padding: 0;
		margin: 0 0 6px 0;
		text-transform: uppercase;
		display: block;
		font-weight: 600;
		font-family: "Poppins", sans-serif;
		color: #222222;
	}

		.skills .progress .skill .val {
			float: right;
			font-style: normal;
		}

.skills .progress-bar-wrap {
	background: #e2eefd;
	height: 10px;
}

.skills .progress-bar {
	width: 1px;
	height: 10px;
	transition: 0.9s;
	background-color: #106eea;
}

.skills .progress-bars {
	background-color: #f3a334;
}

.skills .progress-barss {
	background-color: #198754;
}

.skills .progress-barsss {
	background-color: #FDDA0D;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
	padding: 70px 0 60px;
}

	.counts .count-box {
		padding: 30px 10px 25px 10px;
		width: 100%;
		height: 100%;
		position: relative;
		text-align: center;
		background: #f1f6fe;
	}

		.counts .count-box i {
			position: absolute;
			top: -28px;
			left: 50%;
			transform: translateX(-50%);
			font-size: 24px;
			background: #106eea;
			color: #fff;
			width: 56px;
			height: 56px;
			line-height: 0;
			border-radius: 50px;
			border: 5px solid #fff;
			display: inline-flex;
			align-items: center;
			justify-content: center;
		}

		.counts .count-box span {
			font-size: 25px;
			display: block;
			font-weight: 600;
			color: #062b5b;
		}

		.counts .count-box p {
			padding: 0;
			margin: 0;
			font-family: "Roboto", sans-serif;
			font-size: 14px;
			font-weight: 500;
		}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
	padding: 15px 0;
	text-align: center;
}

	.clients img {
		max-width: 100%;
		transition: all 0.4s ease-in-out;
		display: inline-block;
		padding: 15px 0;
		height: auto;
	}

		.clients img:hover {
			transform: scale(1.15);
		}

@media (max-width: 768px) {
	.clients img {
		max-width: 40%;
	}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	text-align: center;
	border: 1px solid #e2eefd;
	padding: 80px 20px;
	transition: all ease-in-out 0.3s;
	background: #fff;
}

	.services .icon-box .icon {
		margin: 0 auto;
		width: auto;
		height: auto;
		background: #f1f6fe;
		border-radius: 4px;
		border: 1px solid #deebfd;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
		transition: ease-in-out 0.3s;
	}

		.services .icon-box .icon i {
			color: #3b8af2;
			font-size: 28px;
			transition: ease-in-out 0.3s;
		}

	.services .icon-box h4 {
		font-weight: 700;
		margin-bottom: 15px;
		font-size: 24px;
	}

		.services .icon-box h4 a {
			color: #222222;
			transition: ease-in-out 0.3s;
		}

	.services .icon-box p {
		line-height: 24px;
		font-size: 14px;
		margin-bottom: 0;
	}

	.services .icon-box:hover {
		border-color: #fff;
		box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
	}

		.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
			color: #106eea;
		}

		.services .icon-box:hover .icon {
			border-color: #106eea;
		}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
	padding: 80px 0;
	background: url("../images/bigsunhappycustomer.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

	.testimonials::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.7);
	}

	.testimonials .section-header {
		margin-bottom: 40px;
	}

	.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
		overflow: hidden;
	}

	.testimonials .testimonial-item {
		text-align: center;
		color: #fff;
	}

		.testimonials .testimonial-item .testimonial-img {
			width: 100px;
			border-radius: 50%;
			border: 6px solid rgba(255, 255, 255, 0.15);
			margin: 0 auto;
		}

		.testimonials .testimonial-item h3 {
			font-size: 20px;
			font-weight: bold;
			margin: 10px 0 5px 0;
			color: #fff;
		}

		.testimonials .testimonial-item h4 {
			font-size: 14px;
			color: #ddd;
			margin: 0 0 15px 0;
		}

		.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
			color: rgba(255, 255, 255, 0.4);
			font-size: 26px;
		}

		.testimonials .testimonial-item .quote-icon-left {
			display: inline-block;
			left: -5px;
			position: relative;
		}

		.testimonials .testimonial-item .quote-icon-right {
			display: inline-block;
			right: -5px;
			position: relative;
			top: 10px;
		}

		.testimonials .testimonial-item p {
			font-style: italic;
			margin: 0 auto 15px auto;
			color: #eee;
		}

	.testimonials .swiper-pagination {
		margin-top: 20px;
		position: relative;
	}

		.testimonials .swiper-pagination .swiper-pagination-bullet {
			width: 12px;
			height: 12px;
			background-color: rgba(255, 255, 255, 0.5);
			opacity: 1;
		}

		.testimonials .swiper-pagination .swiper-pagination-bullet-active {
			background-color: #106eea;
		}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters, .portfolio #portfolio-flters {
	padding: 0;
	margin: 0 auto 15px auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
	padding: 2px 15px;
}

	.portfolio #portfolio-flters li, .portfolio #portfolio-flters .li {
		cursor: pointer;
		display: inline-block;
		padding: 8px 16px;
		font-size: 16px;
		font-weight: 600;
		line-height: 1;
		text-transform: uppercase;
		color: #444444;
		margin-bottom: 0px;
		margin-right: 10px;
			border-radius: 5px;
		transition: all 0.3s ease-in-out;
	}

		.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters .li:hover {
			color: #314351;
			background: #F1F3F5;
			/*color: black;
			background: #daecff;*/
			-webkit-box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
			box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
		}

		.portfolio #portfolio-flters li.filter-active, .portfolio #portfolio-flters .li.filter-active {
			color: #1d2b36;
			background: #E5E9EC;
			/*color: black;
			background: #b6daff;*/
			-webkit-box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
			box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
		}

		.portfolio #portfolio-flters li:last-child, .portfolio #portfolio-flters .li:last-child {
			margin-right: 0;
		}

.portfolio .portfolio-item {
	margin-bottom: 30px;
}

	.portfolio .portfolio-item .portfolio-info {
		opacity: 0;
		position: absolute;
		left: 30px;
		right: 30px;
		bottom: 0;
		z-index: 3;
		transition: all ease-in-out 0.3s;
		background: rgba(255, 255, 255, 0.9);
		padding: 15px;
	}

		.portfolio .portfolio-item .portfolio-info h4 {
			font-size: 18px;
			color: #fff;
			font-weight: 600;
			color: #222222;
		}

		.portfolio .portfolio-item .portfolio-info p {
			color: #555555;
			font-size: 14px;
			margin-bottom: 0;
		}

		.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
			position: absolute;
			right: 40px;
			font-size: 24px;
			top: calc(50% - 18px);
			color: #3c3c3c;
		}

			.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
				color: #106eea;
			}

		.portfolio .portfolio-item .portfolio-info .details-link {
			right: 10px;
		}

	.portfolio .portfolio-item .portfolio-links {
		opacity: 0;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 3;
		position: absolute;
		transition: all ease-in-out 0.3s;
	}

		.portfolio .portfolio-item .portfolio-links a {
			color: #fff;
			margin: 0 2px;
			font-size: 28px;
			display: inline-block;
			transition: 0.3s;
		}

			.portfolio .portfolio-item .portfolio-links a:hover {
				color: #6ba7f5;
			}

	.portfolio .portfolio-item:hover .portfolio-info {
		opacity: 1;
		bottom: 20px;
	}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}

	.portfolio-details ul {
		list-style: none;
	}

	.portfolio-details .portfolio-details-slider img {
		width: 100%;
	}

	.portfolio-details .portfolio-details-slider .swiper-pagination {
		margin-top: 20px;
		position: relative;
	}

		.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
			width: 12px;
			height: 12px;
			background-color: #fff;
			opacity: 1;
			border: 1px solid #106eea;
		}

		.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
			background-color: #106eea;
		}

	.portfolio-details .portfolio-info {
		padding: 30px;
		box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
	}

		.portfolio-details .portfolio-info h3 {
			font-size: 22px;
			font-weight: 700;
			margin-bottom: 20px;
			padding-bottom: 20px;
			border-bottom: 1px solid #eee;
		}

		.portfolio-details .portfolio-info ul {
			list-style: none;
			padding: 0;
			font-size: 15px;
		}

			.portfolio-details .portfolio-info ul li + li {
				margin-top: 10px;
			}

	.portfolio-details .portfolio-description {
		padding-top: 0px;
	}

		.portfolio-details .portfolio-description h2 {
			font-size: 20px;
			font-weight: 700;
			margin-bottom: 20px;
		}

		.portfolio-details .portfolio-description p {
			padding: 0;
			font-size: 14px;
		}

		.portfolio-details .portfolio-description i {
			font-size: 20px;
			padding: 10px;
			color: #106eea;
		}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.teams {
	padding: 10px 0;
}

.team {
	padding: 60px 0;
}

	.team .member {
		margin-bottom: 20px;
		overflow: hidden;
		border-radius: 4px;
		background: #fff;
		box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
		border: 1px solid #ddd;
	}

		.team .member .member-img {
			position: relative;
			overflow: hidden;
		}

		.team .member .social {
			position: absolute;
			left: 0;
			bottom: 30px;
			right: 0;
			opacity: 0;
			transition: ease-in-out 0.3s;
			text-align: center;
		}

			.team .member .social a {
				transition: color 0.3s;
				color: #222222;
				margin: 0 3px;
				padding-top: 7px;
				border-radius: 4px;
				width: 36px;
				height: 36px;
				background: rgba(16, 110, 234, 0.8);
				display: inline-block;
				transition: ease-in-out 0.3s;
				color: #fff;
			}

				.team .member .social a:hover {
					background: #3b8af2;
				}

			.team .member .social i {
				font-size: 18px;
			}

		.team .member .member-info {
			padding: 25px 15px;
		}

			.team .member .member-info h4 {
				font-weight: 700;
				margin-bottom: 5px;
				font-size: 18px;
				color: #222222;
			}

			.team .member .member-info span {
				display: block;
				font-size: 14px;
				font-weight: 700;
			}

			.team .member .member-info p {
				font-style: normal;
				font-size: 12px;
				line-height: 26px;
				color: #2e2e2e;
			}

		.team .member:hover .social {
			opacity: 1;
			bottom: 15px;
		}

dl, ol, ul {
	margin-top: 10px;
	margin-bottom: 1rem;
	font-size: 14px;
}

ol, ul {
	padding-left: 1rem;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
	padding: 20px;
	background: #fff;
	text-align: center;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

	.pricing .box h3 {
		font-weight: 400;
		margin: -20px -20px 20px -20px;
		padding: 20px 15px;
		font-size: 16px;
		font-weight: 600;
		color: #777777;
		background: #f8f8f8;
	}

	.pricing .box h4 {
		font-size: 36px;
		color: #106eea;
		font-weight: 600;
		font-family: "Poppins", sans-serif;
		margin-bottom: 20px;
	}

		.pricing .box h4 sup {
			font-size: 20px;
			top: -15px;
			left: -3px;
		}

		.pricing .box h4 span {
			color: #bababa;
			font-size: 16px;
			font-weight: 300;
		}

	.pricing .box ul {
		padding: 0;
		list-style: none;
		color: #444444;
		text-align: center;
		line-height: 20px;
		font-size: 14px;
	}

		.pricing .box ul li {
			padding-bottom: 16px;
		}

		.pricing .box ul i {
			color: #106eea;
			font-size: 18px;
			padding-right: 4px;
		}

		.pricing .box ul .na {
			color: #ccc;
			text-decoration: line-through;
		}

.pricing .btn-wrap {
	margin: 20px -20px -20px -20px;
	padding: 20px 15px;
	background: #f8f8f8;
	text-align: center;
}

.pricing .btn-buy {
	background: #106eea;
	display: inline-block;
	padding: 8px 35px 10px 35px;
	border-radius: 4px;
	color: #fff;
	transition: none;
	font-size: 14px;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	transition: 0.3s;
}

	.pricing .btn-buy:hover {
		background: #3b8af2;
	}

.pricing .featured h3 {
	color: #fff;
	background: #106eea;
}

.pricing .advanced {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: #106eea;
	color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
	padding: 60px 0;
}

	.faq .faq-list {
		padding: 0;
		list-style: none;
	}

		.faq .faq-list li {
			border-bottom: 1px solid #d4e5fc;
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.faq .faq-list .question {
			display: block;
			position: relative;
			font-family: #106eea;
			font-size: 18px;
			line-height: 24px;
			font-weight: 400;
			padding-left: 25px;
			cursor: pointer;
			color: #0d58ba;
			transition: 0.3s;
		}

		.faq .faq-list i {
			font-size: 16px;
			position: absolute;
			left: 0;
			top: -2px;
		}

		.faq .faq-list p {
			margin-bottom: 0;
			padding: 10px 0 0 25px;
		}

		.faq .faq-list .icon-show {
			display: none;
		}

		.faq .faq-list .collapsed {
			color: black;
		}

			.faq .faq-list .collapsed:hover {
				color: #106eea;
			}

			.faq .faq-list .collapsed .icon-show {
				display: inline-block;
				transition: 0.6s;
			}

			.faq .faq-list .collapsed .icon-close {
				display: none;
				transition: 0.6s;
			}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
	color: #444444;
	text-align: center;
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
	padding: 20px 0 30px 0;
}

	.contact .info-box i {
		font-size: 32px;
		color: #106eea;
		border-radius: 50%;
		padding: 8px;
		border: 2px dotted #b3d1fa;
	}

	.contact .info-box h3 {
		font-size: 20px;
		color: #777777;
		font-weight: 700;
		margin: 10px 0;
	}

	.contact .info-box p {
		padding: 0;
		line-height: 24px;
		font-size: 14px;
		margin-bottom: 0;
	}

.contact .php-email-form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
	padding: 30px;
}

	.contact .php-email-form .error-message {
		display: none;
		color: #fff;
		background: #ed3c0d;
		text-align: left;
		padding: 15px;
		font-weight: 600;
	}

		.contact .php-email-form .error-message br + br {
			margin-top: 25px;
		}

	.contact .php-email-form .sent-message {
		display: none;
		color: #fff;
		background: #18d26e;
		text-align: center;
		padding: 15px;
		font-weight: 600;
	}

	.contact .php-email-form .loading {
		display: none;
		background: #fff;
		text-align: center;
		padding: 15px;
	}

		.contact .php-email-form .loading:before {
			content: "";
			display: inline-block;
			border-radius: 50%;
			width: 24px;
			height: 24px;
			margin: 0 10px -6px 0;
			border: 3px solid #18d26e;
			border-top-color: #eee;
			-webkit-animation: animate-loading 1s linear infinite;
			animation: animate-loading 1s linear infinite;
		}

	.contact .php-email-form .form-group {
		margin-bottom: 20px;
	}

	.contact .php-email-form input, .contact .php-email-form textarea {
		border-radius: 0;
		box-shadow: none;
		font-size: 14px;
	}

		.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
			border-color: #106eea;
		}

	.contact .php-email-form input {
		padding: 10px 15px !important;
	}

	.contact .php-email-form textarea {
		padding: 12px 15px;
	}

	.contact .php-email-form button[type=submit] {
		background: #106eea;
		border: 0;
		padding: 10px 30px;
		color: #fff;
		transition: 0.4s;
		border-radius: 4px;
	}

		.contact .php-email-form button[type=submit]:hover {
			background: #3b8af2;
		}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.logos img {
	width: 200px;
	margin-bottom: 8px;
}

.section-title {
	position: relative;
}

	.section-title p {
		font-size: 16px;
		margin-bottom: 5px;
		font-weight: 400;
	}

	.section-title h3 {
		font-size: 30px;
		font-weight: 400;
		position: relative;
		display: inline-block;
	}

.q {
	padding: 20px 0;
	overflow: hidden;
}

.mb-100 {
	margin-bottom: 100px;
}

.services {
	background-color: #FBFBFB;
}

.single-service {
	position: relative;
	text-align: center;
	margin-bottom: 50px;
	-webkit-transition: .3s;
	transition: .3s;
	padding: 30px 10px;
	border: 1px solid #626262;
}

	.single-service i.fa {
		font-size: 20px;
		width: 60px;
		height: 60px;
		border: 1px solid #ddd;
		line-height: 60px;
		margin-bottom: 30px;
		border-radius: 50%;
		-webkit-transition: .3s;
		transition: .3s;
	}

	.single-service h4 {
		font-size: 15px;
		font-weight: 400;
		margin-bottom: 15px;
		text-transform: capitalize;
	}

	.single-service p {
		font-size: 15px;
		line-height: 1.8;
		font-weight: 100;
	}

.btn-group-lg > .btn, .btn-lg {
	padding: 0.5rem 1rem !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	border-radius: 0.3rem !important;
}

.explore .content ul li {
	font-size: 12px;
	color: #ffffff;
}

.arc h2 {
	font-weight: 200;
	color: white;
}

.arc p {
	font-size: 15px !important;
	color: white !important;
}

.message-item {
	margin-bottom: 25px;
	margin-left: 40px;
	position: relative;
}

	.message-item .message-inner {
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 3px;
		padding: 10px;
		position: relative;
	}

		.message-item .message-inner:before {
			border-right: 10px solid #ddd;
			border-style: solid;
			border-width: 10px;
			color: rgba(0,0,0,0);
			content: "";
			display: block;
			height: 0;
			position: absolute;
			left: -20px;
			top: 6px;
			width: 0;
		}

		.message-item .message-inner:after {
			border-right: 10px solid #fff;
			border-style: solid;
			border-width: 10px;
			color: rgba(0,0,0,0);
			content: "";
			display: block;
			height: 0;
			position: absolute;
			left: -18px;
			top: 6px;
			width: 0;
		}

	.message-item:before {
		background: #fff;
		border-radius: 2px;
		bottom: -30px;
		box-shadow: 0 0 3px rgba(0,0,0,0.2);
		content: "";
		height: 100%;
		left: -30px;
		position: absolute;
		width: 3px;
	}

	.message-item:after {
		background: #fff;
		border: 2px solid #ccc;
		border-radius: 50%;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		content: "";
		height: 15px;
		left: -36px;
		position: absolute;
		top: 10px;
		width: 15px;
	}

.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}

.message-item .message-head {
	border-bottom: 1px solid #eee;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

	.message-item .message-head .avatar {
		margin-right: 20px;
	}

	.message-item .message-head .user-detail {
		overflow: hidden;
	}

		.message-item .message-head .user-detail h5 {
			font-size: 16px;
			font-weight: bold;
			margin: 0;
		}

	.message-item .message-head .post-meta {
		float: left;
		padding: 0 15px 0 0;
	}

		.message-item .message-head .post-meta > div {
			color: #333;
			text-align: right;
		}

.post-meta > div {
	color: #777;
	line-height: 22px;
}

.message-item .message-head .post-meta > div {
	color: #333;
	text-align: left;
}

.post-meta > div {
	color: #777;
	line-height: 22px;
}

/*.about .contents h3 {
    margin-top: 0px !important;
 font-size: 30px;
}*/

.img-thumbnail {
	margin-top: 5px;
}

.servicess, h2 {
	font-size: 25px !important;
	font-weight: 600;
}

input[type=number], input[type=contactno] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	display: inline-block;
}

	input[type=number]:focus, input[type=contactno]:focus {
		background-color: #ddd;
		outline: none;
	}

/*input[type=text], input[type=password], input[type=email] {
    width: 100%;
    padding: 15px;
    margin: 0 0 20px 0;
    display: inline-block;
}*/

input[type=text]:focus, input[type=password]:focus {
	background-color: #ddd;
	outline: none;
}

.registerbtn:hover {
	opacity: 1;
}

a {
	color: dodgerblue;
}

.signin {
	background-color: #f1f1f1;
	text-align: center;
}

.team-member, .team-member .team-img {
	position: relative;
	margin-top: 5%;
}

.team-member {
	overflow: hidden;
}

	.team-member, .team-member .team-img {
		position: relative;
	}

.team-hover {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	border: 20px solid rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.90);
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.team-member:hover .team-hover .desk {
	top: 35%;
}

.team-member:hover .team-hover, .team-member:hover .team-hover .desk, .team-member:hover .team-hover .s-link {
	opacity: 1;
}

.team-hover .desk {
	position: absolute;
	top: 0%;
	width: 100%;
	opacity: 0;
	-webkit-transform: translateY(-55%);
	-ms-transform: translateY(-55%);
	transform: translateY(-55%);
	-webkit-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
	padding: 0 20px;
}

.desk, .desk h4, .team-hover .s-link a {
	text-align: center;
	color: #222;
}

.team-member:hover .team-hover .s-link {
	bottom: 10%;
}

.team-member:hover .team-hover, .team-member:hover .team-hover .desk, .team-member:hover .team-hover .s-link {
	opacity: 1;
}

.team-hover .s-link {
	position: absolute;
	bottom: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
	-webkit-transform: translateY(45%);
	-ms-transform: translateY(45%);
	transform: translateY(45%);
	-webkit-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
	font-size: 35px;
}

	.desk, .desk h4, .team-hover .s-link a {
		text-align: center;
		color: #222;
		font-size: 20px;
		margin-top: 5%;
	}

.team-member .s-link a {
	margin: 0 10px;
	color: #333;
	font-size: 16px;
}

.team-title {
	position: relative;
	padding: 20px 0;
	display: inline-block;
	letter-spacing: 1px;
	width: auto;
}

	.team-title h4 {
		font-size: 20px;
	}

	.team-title span {
		font-size: 12px;
		text-transform: uppercase;
		color: #a5a5a5;
		letter-spacing: 1px;
	}

.box {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

/* Darker background on mouse-over */
.btn:hover {
	background-color: #0d6efd;
	color: #fff;
}

.btn-outline-info:hover {
	background-color: #0dcaf0;
}

.w3-padding {
	padding: 35px 35px 20px;
	margin-top: 30px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #035d8f;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
}

.w3-red, .w3-hover-red:hover {
	color: #fff !important;
	background-color: #106eea !important;
}

.explores .content ul {
	list-style: none;
	padding: 0;
	color: #000000;
}

	.explores .content ul li {
		font-size: 12px;
		color: #000000;
	}

.hide {
	display: none;
}

.myDIV:hover + .hide {
	display: block;
	color: black;
}

.form-control {
	/*width: 100%;
    padding: 15px;*/
	margin: 5px 0 22px 0;
	/*display: inline-block;*/
}

.input-group {
	margin: 5px 0 22px 0;
}

	.input-group .form-control {
		margin: 0;
	}

#pricinginfo {
	display: none;
}

#tvinfo {
	display: none;
}

#tvinfo1 {
	display: none;
}

#tvinfo2 {
	display: none;
}

#tvinfo3 {
	display: none;
}

.departments {
	overflow: hidden;
}

	.departments .nav-tabs {
		border: 0;
	}

	.departments .nav-link {
		border: 0;
		padding: 12px 15px 12px 0;
		transition: 0.3s;
		color: #2c4964;
		border-radius: 0;
		border-right: 2px solid #ebf1f6;
		font-weight: 600;
		font-size: 15px;
	}

		.departments .nav-link:hover {
			color: #1977cc;
		}

		.departments .nav-link.active {
			color: #1977cc;
			border-color: #1977cc;
		}

	.departments .tab-pane.active {
		-webkit-animation: fadeIn 0.5s ease-out;
		animation: fadeIn 0.5s ease-out;
	}

	.departments .details h3 {
		font-size: 20px;
		font-weight: 500;
		margin-bottom: 10px;
		color: #000000;
	}

	.departments .details p {
		color: #000000;
		font-size: 15px;
	}

}

.departments .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.departments .nav-link {
		border: 0;
		padding: 15px;
	}

		.departments .nav-link.active {
			color: #fff;
			background: #1977cc;
		}
}

.brands {
	width: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
}

.brands_slider_container {
	height: 130px;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	padding-left: 97px;
	padding-right: 97px;
	background: #fff;
}

.brands_slider {
	height: 100%;
	margin-top: 50px;
}

.brands_item {
	height: 100%;
}

	.brands_item img {
		max-width: 100%;
	}

.brands_nav {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 5px;
	cursor: pointer;
}

	.brands_nav i {
		color: #e5e5e5;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

	.brands_nav:hover i {
		color: #676767;
	}

.brands_prev {
	left: 40px;
}

.brands_next {
	right: 40px;
}

.about h2 {
	font-size: 30px;
}

.about ul {
	list-style: none;
}

.bg-light {
	background: url(../images/wild.png) top left;
	width: 100%;
	height: 100vh;
	background-size: cover;
	position: relative;
}

@media (max-width: 768px) {
	.bg-light {
		height: 100vh;
	}
}

.column {
	float: left;
	width: 90%;
	margin-bottom: 16px;
	padding: 0 0px;
}

@media screen and (max-width: 650px) {
	.column {
		width: 100%;
		display: block;
	}
}

.card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

	.card h2 {
		font-size: 20px !important;
		font-weight: 600;
		margin-top: 9%;
	}

.container {
	padding: 0 6px;
}

	.container::after, .row::after {
		content: "";
		clear: both;
		display: table;
	}

.title {
	font-size: 12px;
	font-weight: 700;
}

.titles {
	font-style: normal;
	font-size: 12px;
	line-height: 8px;
}

.card .card-img-container {
	height: 115px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

	.card .card-img-container img {
		width: 100%;
		/*height: 115px;*/
	}

@media (max-width: 768px) {
	.navbar {
		padding-left: 0;
	}
}

.entry-card {
	-webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.entry-content {
	background-color: #fff;
	padding: 36px 36px 36px 36px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

	.entry-content .entry-title a {
		color: #333;
	}

		.entry-content .entry-title a:hover {
			color: #4782d3;
		}

	.entry-content .entry-meta span {
		font-size: 12px;
	}

.entry-title {
	font-size: .95rem;
	font-weight: 500;
	margin-bottom: 15px;
}

.entry-thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

	.entry-thumb img {
		border-top-left-radius: 6px;
		border-top-right-radius: 6px;
	}

	.entry-thumb .thumb-hover {
		position: absolute;
		width: 100px;
		height: 100px;
		background: rgba(71, 130, 211, 0.85);
		display: block;
		top: 50%;
		left: 50%;
		color: #fff;
		font-size: 40px;
		line-height: 100px;
		border-radius: 50%;
		margin-top: -50px;
		margin-left: -50px;
		text-align: center;
		transform: scale(0);
		-webkit-transform: scale(0);
		opacity: 0;
		transition: all .3s ease-in-out;
		-webkit-transition: all .3s ease-in-out;
	}

	.entry-thumb:hover .thumb-hover {
		opacity: 1;
		transform: scale(1);
		-webkit-transform: scale(1);
	}

.article-post {
	border-bottom: 1px solid #eee;
	padding-bottom: 70px;
}

	.article-post .post-thumb {
		display: block;
		position: relative;
		overflow: hidden;
	}

		.article-post .post-thumb .post-overlay {
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.6);
			transition: all .3s;
			-webkit-transition: all .3s;
			opacity: 0;
		}

			.article-post .post-thumb .post-overlay span {
				width: 100%;
				display: block;
				vertical-align: middle;
				text-align: center;
				transform: translateY(70%);
				-webkit-transform: translateY(70%);
				transition: all .3s;
				-webkit-transition: all .3s;
				height: 100%;
				color: #fff;
			}

		.article-post .post-thumb:hover .post-overlay {
			opacity: 1;
		}

			.article-post .post-thumb:hover .post-overlay span {
				transform: translateY(50%);
				-webkit-transform: translateY(50%);
			}

.post-content .post-title {
	font-weight: 500;
}

.post-meta {
	padding-top: 15px;
	margin-bottom: 20px;
}

	.post-meta li:not(:last-child) {
		margin-right: 10px;
	}

	.post-meta li a {
		color: #999;
		font-size: 13px;
	}

		.post-meta li a:hover {
			color: #4782d3;
		}

	.post-meta li i {
		margin-right: 5px;
	}

	.post-meta li:after {
		margin-top: -5px;
		content: "/";
		margin-left: 10px;
	}

	.post-meta li:last-child:after {
		display: none;
	}

.post-masonry .masonry-title {
	font-weight: 500;
}

.share-buttons li {
	vertical-align: middle;
}

	.share-buttons li a {
		margin-right: 0px;
	}

.post-content .fa {
	color: #ddd;
}

.post-content a h2 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 0px;
}

.article-post .owl-carousel {
	margin-bottom: 20px !important;
}

.post-masonry h4 {
	text-transform: capitalize;
	font-size: 1rem;
	font-weight: 700;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.media-body h5 a {
	color: #555;
}

.categories li a:before {
	content: "\f0da";
	font-family: 'FontAwesome';
	margin-right: 5px;
}
/*
Template sidebar
*/

.sidebar-title {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.categories li {
	vertical-align: middle;
}

	.categories li > ul {
		padding-left: 15px;
	}

		.categories li > ul > li > a {
			font-weight: 300;
		}

	.categories li a {
		color: #999;
		position: relative;
		display: block;
		padding: 5px 10px;
		border-bottom: 1px solid #eee;
	}

		.categories li a:before {
			content: "\f0da";
			font-family: 'FontAwesome';
			margin-right: 5px;
		}

		.categories li a:hover {
			color: #444;
			background-color: #f5f5f5;
		}

.categories > li.active > a {
	font-weight: 600;
	color: #444;
}

.media-body h5 {
	font-size: 14px;
	letter-spacing: 0px;
	line-height: 20px;
	font-weight: 400;
	margin-top: 10px;
}

	.media-body h5 a {
		color: #555;
	}

		.media-body h5 a:hover {
			color: #4782d3;
		}

.Payroll {
	display: block;
	align-items: flex-start;
	font-size: 14px;
}

.blog-listing {
	padding-top: 30px;
	padding-bottom: 30px;
}

.gray-bg {
	background-color: #f5f5f5;
}
/* Blog 
---------------------*/
.blog-grid {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
}

	.blog-grid .blog-img {
		position: relative;
	}

		.blog-grid .blog-img .date {
			position: absolute;
			background: #fc5356;
			color: #ffffff;
			padding: 8px 15px;
			left: 10px;
			top: 10px;
			border-radius: 4px;
		}

			.blog-grid .blog-img .date span {
				font-size: 22px;
				display: block;
				line-height: 22px;
				font-weight: 700;
			}

			.blog-grid .blog-img .date label {
				font-size: 14px;
				margin: 0;
			}

	.blog-grid .blog-info {
		padding: 20px;
	}

		.blog-grid .blog-info h5 {
			font-size: 22px;
			font-weight: 700;
			margin: 0 0 10px;
		}

			.blog-grid .blog-info h5 a {
				color: #20247b;
			}

		.blog-grid .blog-info p {
			margin: 0;
		}

		.blog-grid .blog-info .btn-bar {
			margin-top: 20px;
		}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.blog-aside .widget-body {
	padding: 15px;
}

.blog-aside .widget-title {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

	.blog-aside .widget-title h3 {
		font-size: 20px;
		font-weight: 700;
		color: #fc5356;
		margin: 0;
	}

.blog-aside .widget-author .media {
	margin-bottom: 15px;
}

.blog-aside .widget-author p {
	font-size: 16px;
	margin: 0;
}

.blog-aside .widget-author .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
}

.blog-aside .widget-author h6 {
	font-weight: 600;
	color: #20247b;
	font-size: 22px;
	margin: 0;
	padding-left: 20px;
}

.blog-aside .post-aside {
	margin-bottom: 15px;
}

	.blog-aside .post-aside .post-aside-title h5 {
		margin: 0;
	}

	.blog-aside .post-aside .post-aside-title a {
		font-size: 18px;
		color: #20247b;
		font-weight: 600;
	}

	.blog-aside .post-aside .post-aside-meta {
		padding-bottom: 10px;
	}

		.blog-aside .post-aside .post-aside-meta a {
			color: #6F8BA4;
			font-size: 12px;
			text-transform: uppercase;
			display: inline-block;
			margin-right: 10px;
		}

.blog-aside .latest-post-aside + .latest-post-aside {
	border-top: 1px solid #eee;
	padding-top: 15px;
	margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
	width: 90px;
}

	.blog-aside .latest-post-aside .lpa-right img {
		border-radius: 3px;
	}

.blog-aside .latest-post-aside .lpa-left {
	padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
	margin: 0;
	font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
	color: #20247b;
	font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
	color: #6F8BA4;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 10px;
}

.tag-cloud a {
	padding: 4px 15px;
	font-size: 13px;
	color: #ffffff;
	background: #20247b;
	border-radius: 3px;
	margin-right: 4px;
	margin-bottom: 4px;
}

	.tag-cloud a:hover {
		background: #fc5356;
	}

.blog-single {
	padding-top: 30px;
	padding-bottom: 30px;
}

.article {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 15px;
	margin: 15px 0 30px;
}

	.article .article-title {
		padding: 15px 0 20px;
	}

		.article .article-title h6 {
			font-size: 14px;
			font-weight: 700;
			margin-bottom: 20px;
		}

			.article .article-title h6 a {
				text-transform: uppercase;
				color: #fc5356;
				border-bottom: 1px solid #fc5356;
			}

		.article .article-title h2 {
			color: #20247b;
			font-weight: 600;
		}

		.article .article-title .media {
			padding-top: 15px;
			border-bottom: 1px dashed #ddd;
			padding-bottom: 20px;
		}

			.article .article-title .media .avatar {
				width: 45px;
				height: 45px;
				border-radius: 50%;
				overflow: hidden;
			}

			.article .article-title .media .media-body {
				padding-left: 8px;
			}

				.article .article-title .media .media-body label {
					font-weight: 600;
					color: #fc5356;
					margin: 0;
				}

				.article .article-title .media .media-body span {
					display: block;
					font-size: 12px;
				}

	.article .article-content h1,
	.article .article-content h2,
	.article .article-content h3,
	.article .article-content h4,
	.article .article-content h5,
	.article .article-content h6 {
		color: #20247b;
		font-weight: 600;
		margin-bottom: 15px;
	}

	.article .article-content blockquote {
		max-width: 600px;
		padding: 15px 0 30px 0;
		margin: 0;
	}

		.article .article-content blockquote p {
			font-size: 20px;
			font-weight: 500;
			color: #fc5356;
			margin: 0;
		}

		.article .article-content blockquote .blockquote-footer {
			color: #20247b;
			font-size: 16px;
		}

			.article .article-content blockquote .blockquote-footer cite {
				font-weight: 600;
			}

	.article .tag-cloud {
		padding-top: 10px;
	}

.article-comment {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 20px;
}

	.article-comment h4 {
		color: #20247b;
		font-weight: 700;
		margin-bottom: 25px;
		font-size: 22px;
	}

img {
	max-width: 100%;
}

img {
	vertical-align: middle;
	border-style: none;
}

.card-horizontal {
	display: flex;
	flex: 1 1 auto;
}

.card-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background: rgba(0, 0, 0, 0.5);
}



.content-image {
	width: 100%;
}


.content:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}

.content-details h3 {
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 0.5em;
	text-transform: uppercase;
}

.content-details p {
	color: #fff;
	font-size: 0.8em;
}

.fadeIn-bottom {
	top: 80%;
}

.lib-panel {
	margin-bottom: 20Px;
	margin-top: 5%;
}

	.lib-panel img {
		width: 55%;
		height: 30%;
		background-color: transparent;
	}

	.lib-panel .row,
	.lib-panel .col-md-6 {
		padding: 0;
		background-color: #ffffff00;
	}

	.lib-panel .lib-row {
		padding: 0 0px 0 0px;
	}

		.lib-panel .lib-row.lib-header {
			background-color: #FFFFFF;
			font-size: 18px;
			padding: 10px 0px 0 0px;
			font-weight: 600;
			margin-bottom: 15px;
		}

			.lib-panel .lib-row.lib-header .lib-header-seperator {
				height: 2px;
				width: 26px;
				background-color: #d9d9d9;
				margin: 7px 0 7px 0;
			}

		.lib-panel .lib-row.lib-desc {
			position: relative;
			height: auto;
			display: block;
			font-size: 13px;
			margin-bottom: 20px;
		}

			.lib-panel .lib-row.lib-desc a {
				position: absolute;
				width: 100%;
				bottom: 10px;
				left: 20px;
			}

.row-margin-bottom {
	margin-bottom: 20px;
}

.box-shadow {
	-webkit-box-shadow: 0 7px 14px 0 rgb(65 69 88 / 10%), 0 3px 6px 0 rgb(0 0 0 / 7%);
	box-shadow: 0 7px 14px 0 rgb(65 69 88 / 10%), 0 3px 6px 0 rgb(0 0 0 / 7%);
}

.no-padding {
	margin-left: 5%;
}

.content {
	position: relative;
	/*width: 320px;*/
	/*max-width: 400px;*/
	margin: auto;
	overflow: hidden;
}

	.content .content-overlay {
		background: rgb(13 110 253 / 25%);
		position: absolute;
		height: 99%;
		width: 55%;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		opacity: 0;
		-webkit-transition: all 0.4s ease-in-out 0s;
		-moz-transition: all 0.4s ease-in-out 0s;
		transition: all 0.4s ease-in-out 0s;
	}

	.content:hover .content-overlay {
		opacity: 1;
	}

.content-image {
	width: 100%;
}

.content-details {
	position: absolute;
	text-align: left;
	padding-left: 0em;
	padding-right: 0em;
	width: 68%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

	.content-details h3 {
		color: #fff;
		font-weight: 500;
		letter-spacing: 0.15em;
		margin-bottom: 0.5em;
		text-transform: uppercase;
	}

	.content-details p {
		color: #fff;
		font-size: 0.8em;
	}

.fadeIn-bottom {
	top: 80%;
}

.fadeIn-top {
	top: 20%;
}

.border-top {
	border-top: 2px solid #000000 !important;
}

.border-bottom {
	border-bottom: 2px solid #000000 !important;
}

.mb-60 {
	margin-bottom: 30px;
}

.services-inner {
	border: 2px solid #106eea;
	margin-left: 0px;
	transition: .3s;
	height: 11rem;
	width: 100%;
}

.our-services-img {
	float: left;
	margin-left: -36px;
	margin-right: 22px;
	margin-top: 28px;
}

.our-services-text {
	padding: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}


.our-services-text {
	overflow: hidden;
}

	.our-services-text h4 {
		color: #222222;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 1px;
		margin-bottom: 8px;
		padding-bottom: 10px;
		position: relative;
		text-transform: uppercase;
	}

		.our-services-text h4::before {
			background: #ec6d48 none repeat scroll 0 0;
			bottom: 0;
			content: "";
			height: 1px;
			position: absolute;
			width: 35px;
		}

.our-services-wrapper:hover .services-inner {
	background: #fff none repeat scroll 0 0;
	border: 2px solid transparent;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.our-services-text p {
	margin-bottom: 0;
}

.our-services-text p {
	font-size: 14px;
}

.specialize {
	margin-top: 3%;
}

.custom-select {
	padding: 15px !important;
	margin: 5px 0 22px 0 !important;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
}


.form-group {
	position: relative;
}

.REQ-Validation {
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
	width: fit-content;
	z-index: 10000;
	background-color: white;
	padding: 5px 10px;
	font-size: 14px;
	border: 1px solid #acb1b6;
	box-shadow: 3px 3px 3px 0px rgba(70,65,65,0.5);
	-webkit-box-shadow: 3px 3px 3px 0px rgba(70,65,65,0.5);
	-moz-box-shadow: 3px 3px 3px 0px rgba(70,65,65,0.5);
}

	.REQ-Validation > span {
		background-color: inherit;
	}

	.REQ-Validation.REQ-arrow-top {
		margin-top: 40px;
	}

		.REQ-Validation.REQ-arrow-top:before {
			--Arrow-Dimension: 16px;
			--Arrow-Dimension-top: calc(calc(var(--Arrow-Dimension) / 2) - calc(var(--Arrow-Dimension) + 1px));
			content: " ";
			position: absolute;
			right: 50%;
			width: var( --Arrow-Dimension);
			height: var( --Arrow-Dimension);
			top: var( --Arrow-Dimension-top);
			transform: rotate( 45deg ) translate(50%, -50%);
			background-color: white;
			border-top: solid #acb1b6;
			border-right: none;
			border-left: solid #acb1b6;
			border-bottom: none;
			border-width: 1px;
			z-index: -1;
		}

	.REQ-Validation.REQ-arrow-right:before {
		content: " ";
		position: absolute;
		right: -10px;
		top: 10px;
		border-top: solid transparent;
		border-right: none;
		border-left: solid black;
		border-bottom: solid transparent;
		border-width: 10px;
	}

	.REQ-Validation.REQ-arrow-bottom:before {
		content: " ";
		position: absolute;
		right: 30px;
		bottom: -10px;
		border-top: solid black;
		border-right: solid transparent;
		border-left: solid transparent;
		border-bottom: none;
		border-width: 10px;
	}

	.REQ-Validation.REQ-arrow-left:before {
		content: " ";
		position: absolute;
		left: -10px;
		top: 10px;
		border-top: solid transparent;
		border-right: solid black;
		border-left: none;
		border-bottom: solid transparent;
		border-width: 10px;
	}


@media (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1200px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer, .footer {
	background: #fff;
	/*padding: 0 0 30px 0;*/
	font-size: 14px;
}

	#footer .footer-newsletter, .footer .footer-newsletter {
		padding: 50px 0;
		background: #f1f6fe;
		text-align: center;
		font-size: 15px;
	}

		#footer .footer-newsletter h4, .footer .footer-newsletter h4 {
			font-size: 24px;
			margin: 0 0 20px 0;
			padding: 0;
			line-height: 1;
			font-weight: 600;
		}

		#footer .footer-newsletter form, .footer .footer-newsletter form {
			margin-top: 30px;
			background: #fff;
			padding: 6px 10px;
			position: relative;
			border-radius: 4px;
			box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
			text-align: left;
		}

			#footer .footer-newsletter form input[type="email"], .footer .footer-newsletter form input[type="email"] {
				border: 0;
				padding: 4px 8px;
				width: calc(100% - 100px);
			}

			#footer .footer-newsletter form input[type="submit"], .footer .footer-newsletter form input[type="submit"] {
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
				border: 0;
				background: none;
				font-size: 16px;
				padding: 0 20px;
				background: #106eea;
				color: #fff;
				transition: 0.3s;
				border-radius: 0 4px 4px 0;
				box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
			}

				#footer .footer-newsletter form input[type="submit"]:hover, .footer .footer-newsletter form input[type="submit"]:hover {
					background: #0d58ba;
				}

	#footer .footer-top, .footer .footer-top {
		padding: 60px 0 30px 0;
		background: #fff;
	}

		#footer .footer-top .footer-contact, .footer .footer-top .footer-contact {
			margin-bottom: 30px;
		}

			#footer .footer-top .footer-contact h3, .footer .footer-top .footer-contact h3 {
				font-size: 24px;
				margin: 0 0 15px 0;
				padding: 2px 0 2px 0;
				line-height: 1;
				font-weight: 700;
			}

				#footer .footer-top .footer-contact h3 span, .footer .footer-top .footer-contact h3 span {
					color: #106eea;
				}

			#footer .footer-top .footer-contact p, .footer .footer-top .footer-contact p {
				font-size: 14px;
				line-height: 24px;
				margin-bottom: 0;
				color: #777777;
			}

		#footer .footer-top h4, .footer .footer-top h4 {
			font-size: 16px;
			font-weight: bold;
			color: #444444;
			position: relative;
			padding-bottom: 12px;
		}

		#footer .footer-top .footer-links, .footer .footer-top .footer-links {
			margin-bottom: 30px;
		}

			#footer .footer-top .footer-links ul, .footer .footer-top .footer-links ul {
				list-style: none;
				padding: 0;
				margin: 0;
			}

				#footer .footer-top .footer-links ul i, .footer .footer-top .footer-links ul i {
					padding-right: 2px;
					color: #106eea;
					font-size: 18px;
					line-height: 1;
				}

				#footer .footer-top .footer-links ul li, .footer .footer-top .footer-links ul li {
					padding: 5px 0;
					display: flex;
					align-items: center;
				}

					#footer .footer-top .footer-links ul li:first-child, .footer .footer-top .footer-links ul li:first-child {
						padding-top: 0;
					}

				#footer .footer-top .footer-links ul a, .footer .footer-top .footer-links ul a {
					color: #777777;
					transition: 0.3s;
					display: inline-block;
					line-height: 1;
				}

					#footer .footer-top .footer-links ul a:hover, .footer .footer-top .footer-links ul a:hover {
						text-decoration: none;
						color: #106eea;
					}

		#footer .footer-top .social-links a, .footer .footer-top .social-links a {
			font-size: 18px;
			display: inline-block;
			background: #106eea;
			color: #fff;
			line-height: 1;
			padding: 8px 0;
			margin-right: 4px;
			border-radius: 4px;
			text-align: center;
			width: 36px;
			height: 36px;
			transition: 0.3s;
		}

			#footer .footer-top .social-links a:hover, .footer .footer-top .social-links a:hover {
				background: #3b8af2;
				color: #fff;
				text-decoration: none;
			}

	/*#footer .copyright, .footer .copyright {
        text-align: center;
        float: left;
    }*/

	#footer .credits, .footer .credits {
		float: right;
		text-align: center;
		font-size: 13px;
		color: #444444;
	}

@media (max-width: 768px) {
	#footer .copyright, #footer .credits, .footer .copyright, .footer .credits {
		float: none;
		text-align: center;
		padding: 2px 0;
	}
}

ul.list-icon.check li::marker {
	content: '\2714\0020';
	color: #106eea;
	font-size: 16px;
}

.col-15 {
	flex: 0 0 auto;
	width: 12.49%;
}

@media (min-width: 576px) {
	.col-sm-15 {
		flex: 0 0 auto;
		width: 12.49%;
	}
}

@media (min-width: 768px) {
	.col-md-15 {
		flex: 0 0 auto;
		width: 12.49%;
	}
}

@media (min-width: 992px) {
	.col-lg-15 {
		flex: 0 0 auto;
		width: 12.49%;
	}
}

@media (min-width: 1200px) {
	.col-xl-15 {
		flex: 0 0 auto;
		width: 12.49%;
	}
}

@media (min-width: 1400px) {
	.col-xxl-15 {
		flex: 0 0 auto;
		width: 12.49%;
	}
}
