body {
	font-family: "Open Sans", sans-serif;
	color: #444
}

a {
	color: #106eea
}

a:hover {
	color: #3b8af2;
	text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Roboto, 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(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.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: 4px;
	background: #106eea;
	color: #fff;
	transition: all .4s
}

.back-to-top i:hover {
	background: #3284f1;
	color: #fff
}

@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0 !important
	}
}

#topbar {
	background: #106eea;
	height: 40px;
	font-size: 14px;
	transition: all .5s;
	color: #fff
}

#topbar.topbar-scrolled {
	top: -40px
}

#topbar .contact-info a {
	line-height: 1;
	color: #fff;
	transition: .3s
}

#topbar .contact-info a:hover {
	text-decoration: underline
}

#topbar .contact-info i {
	padding-right: 4px;
	margin-left: 15px
}

#topbar .contact-info i:first-child {
	margin-left: 0
}

#topbar .social-links a {
	color: rgba(255, 255, 255, .6);
	padding-left: 15px;
	display: inline-block;
	line-height: 1px;
	transition: .3s
}

#topbar .social-links a:hover {
	color: #fff
}

#header {
	background: #fff;
	transition: all .5s;
	z-index: 997;
	padding: 20px 0;
	top: 40px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

#header.header-scrolled {
	top: 0;
	padding: 15px
}

#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .8px;
	font-family: Poppins, sans-serif
}

#header .logo a {
	color: #222
}

#header .logo a span {
	color: #106eea
}

#header .logo img {
	max-height: 40px
}

@media (max-width:992px) {
	#header {
		padding: 15px;
		top: 0
	}

	#header .logo {
		font-size: 28px
	}
}

.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.nav-menu>ul {
	display: flex
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 28px
}

.nav-menu a {
	display: block;
	position: relative;
	color: #222;
	transition: .3s;
	font-size: 15px;
	font-weight: 600;
	padding: 0 3px;
	font-family: "Open Sans", sans-serif
}

.nav-menu>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #106eea;
	visibility: hidden;
	width: 0;
	transition: all .3s ease-in-out 0s
}

.nav-menu .active>a:before,
.nav-menu a:hover:before,
.nav-menu li:hover>a:before {
	visibility: visible;
	width: 100%
}

.nav-menu .active>a,
.nav-menu a:hover,
.nav-menu li:hover>a {
	color: #106eea
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 26px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0 0 30px rgba(127, 137, 161, .25);
	transition: .3s
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible
}

.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: #062b5b
}

.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul li:hover>a {
	color: #106eea
}

.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
}

@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"
	}
}

section {
	padding: 40px 0;
	overflow: hidden
}

.section-bg {
	background-color: #f8f9fa
}

.section-title {
	text-align: center;
	padding-bottom: 30px
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	color: #222
}

.section-title h2::after,
.section-title h2::before {
	content: '';
	width: 50px;
	height: 2px;
	background: #3498db;
	display: inline-block
}

.section-title h2::before {
	margin: 0 15px 10px 0
}

.section-title h2::after {
	margin: 0 0 10px 15px
}

.section-title p {
	margin: 15px 0 0 0
}

@media (min-width:1024px) {
	.section-title p {
		width: 50%
	}
}

.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: 0 0;
	font-size: 24px;
	transition: all .4s;
	outline: 0 !important;
	line-height: 1;
	cursor: pointer;
	text-align: right
}

.mobile-nav-toggle i {
	color: #222
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out .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: #222;
	padding: 10px 20px;
	font-weight: 500;
	outline: 0
}

.mobile-nav .active>a,
.mobile-nav a:hover,
.mobile-nav li:hover>a {
	color: #106eea;
	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: rgba(9, 9, 9, .6);
	overflow: hidden;
	display: none;
	transition: ease-in-out .2s
}

.mobile-nav-active {
	overflow: hidden
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff
}

#hero {
	width: 100%;
	height: 75vh;
	background: url(../image/start-background.png) top left;
	background-size: cover;
	position: relative
}

#hero:before {
	content: "";
	background: rgba(255, 255, 255, .6);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0
}

#hero .container {
	position: relative;
	padding-top: 200px
}

@media (max-width:992px) {
	#hero .container {
		padding-top: 58px
	}
}

#hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #222;
	font-family: Poppins, sans-serif
}

#hero h1 span {
	color: #106eea
}

#hero h2 {
	color: #555;
	margin: 5px 0 30px 0;
	font-size: 24px;
	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: .5s;
	color: #fff;
	background: #106eea
}

#hero .btn-get-started:hover {
	background: #247cf0
}

#hero .btn-watch-video {
	font-size: 16px;
	display: inline-block;
	padding: 10px 25px 8px 40px;
	transition: .5s;
	margin-left: 25px;
	color: #222;
	position: relative;
	font-weight: 600
}

#hero .btn-watch-video i {
	color: #106eea;
	font-size: 32px;
	position: absolute;
	left: 0;
	top: 7px;
	transition: .3s
}

#hero .btn-watch-video:hover {
	color: #106eea
}

#hero .btn-watch-video:hover i {
	color: #3b8af2
}

@media (min-width:1024px) {
	#hero {
		background-attachment: fixed
	}
}

@media (max-width:768px) {
	#hero {
		height: 100vh
	}

	#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
	}
}

.company-culture .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, .12);
	transition: all .3s ease-in-out;
	border-radius: 8px;
	z-index: 1
}

.company-culture .icon-box::before {
	content: '';
	position: absolute;
	background: #e1f0fa;
	right: -60px;
	top: -40px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	transition: all .3s;
	z-index: -1
}

.company-culture .icon-box:hover::before {
	background: #3498db;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0
}

.company-culture .icon {
	margin: 0 auto 20px auto;
	padding-top: 10px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #3498db;
	transition: all .3s ease-in-out
}

.company-culture .icon i {
	font-size: 36px;
	line-height: 1;
	color: #fff
}

.company-culture .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px
}

.company-culture .title a {
	color: #111
}

.company-culture .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0
}

.business .icon-box:hover .description,
.company-culture .icon-box:hover .title a {
	color: #fff
}

.company-culture .icon-box:hover .icon {
	background: #fff
}

.company-culture .icon-box:hover .icon i {
	color: #3498db
}

.about .content h3 {
	font-weight: 600;
	font-size: 26px
}

.about .content ul {
	list-style: none;
	padding: 0
}

.about .about-title {
	font-size: 28px;
	line-height: 36px;
	color: #1f2329;
	font-weight: 800;
	border-bottom: 1px solid #dee0e3;
	padding-bottom: 40px
}

.about .content ul li {
	margin-top: 40px;
	line-height: 22px;
	color: #646a73
}

.about .about-text {
	font-size: 15px;
	letter-spacing: 2px
}

.about .content p:last-child {
	margin-bottom: 0
}

.business .icon-box {
	margin-bottom: 20px;
	text-align: center
}

.business .icon {
	display: flex;
	justify-content: center
}

.business .title {
	font-weight: 600;
	font-size: 18px;
	position: relative;
	padding-bottom: 15px;
	transition: .3s
}

#business .box {
	padding: 20px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
	background: #fff;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, .12);
	transition: all .3s ease-in-out;
	text-align: center
}

#business .box:hover {
	transform: scale(1.1)
}

#business .description {
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 0;
	text-align: left;
	color: #646a73
}

.projects {
	overflow: hidden
}

.projects .nav-tabs {
	border: 0
}

.projects .nav-link {
	border: 0;
	padding: 12px 15px 12px 0;
	transition: .3s;
	color: #2c4964;
	border-radius: 0;
	border-right: 2px solid #ebf1f6;
	font-weight: 600;
	font-size: 15px
}

.projects .nav-link:hover {
	color: #1977cc
}

.projects .nav-link.active {
	color: #1977cc;
	border-color: #1977cc
}

.projects .tab-pane.active {
	-webkit-animation: fadeIn .5s ease-out;
	animation: fadeIn .5s ease-out
}

.projects .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #2c4964
}

.projects .details p {
	color: #777
}

.projects .details p:last-child {
	margin-bottom: 0
}

@media (max-width:992px) {
	.projects .nav-link {
		border: 0;
		padding: 15px
	}

	.projects .nav-link.active {
		color: #fff;
		background: #1977cc
	}
}

.call-to-action {
	background: #106eea;
	background-size: cover;
	padding: 40px 0
}

.call-to-action .cta-title {
	color: #fff;
	font-size: 28px;
	font-weight: 700
}

.call-to-action .cta-text {
	color: #fff
}

@media (min-width:991px) {
	.call-to-action .cta-btn-container {
		display: flex;
		align-items: center;
		justify-content: flex-end
	}
}

.call-to-action .cta-btn {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 26px;
	border-radius: 3px;
	transition: .5s;
	margin: 10px;
	border: 3px solid #fff;
	color: #fff
}

.call-to-action .cta-btn:hover {
	background: #1bb1dc;
	border: 3px solid #1bb1dc
}

.gallery .gallery-item {
	overflow: hidden;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff
}

.gallery .gallery-item img {
	transition: all ease-in-out .4s
}

.gallery .gallery-item:hover img {
	transform: scale(1.1)
}

.simulation {
	padding: 60px 0
}

.simulation .member {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 2px 15px rgba(16, 110, 234, .15)
}

.simulation .member .member-img {
	position: relative;
	overflow: hidden
}

.simulation .member .social {
	position: absolute;
	left: 0;
	bottom: 30px;
	right: 0;
	opacity: 0;
	transition: ease-in-out .3s;
	text-align: center
}

.simulation .member .social a {
	transition: color .3s;
	color: #222;
	margin: 0 3px;
	padding-top: 7px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	background: rgba(16, 110, 234, .8);
	display: inline-block
}

.simulation .member .social a:hover {
	background: #3b8af2
}

.simulation .member .social i {
	font-size: 18px
}

.simulation .member .member-info {
	padding: 25px 15px
}

.simulation .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
	color: #222
}

.simulation .member .member-info span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #aaa
}

.simulation .member .member-info p {
	font-style: italic;
	font-size: 14px;
	line-height: 26px;
	color: #777
}

.simulation .member:hover .social {
	opacity: 1;
	bottom: 15px
}

.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 {
	cursor: pointer;
	display: inline-block;
	padding: 10px 15px 8px 15px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444;
	margin-bottom: 5px;
	transition: all .3s ease-in-out
}

.portfolio .content ul {
	list-style: none;
	padding: 0
}

.portfolio .about-title {
	font-size: 28px;
	line-height: 36px;
	color: #1f2329;
	font-weight: 800;
	border-bottom: 1px solid #dee0e3;
	padding-bottom: 40px
}

.portfolio .content ul li {
	margin-top: 40px;
	line-height: 22px;
	color: #646a73
}

.portfolio .about-text {
	font-size: 15px;
	letter-spacing: 2px
}

.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters li:hover {
	color: #106eea
}

.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 .3s;
	background: rgba(255, 255, 255, .9);
	padding: 15px
}

.portfolio .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: #222
}

.portfolio .portfolio-item .portfolio-info p {
	color: #555;
	font-size: 14px;
	margin-bottom: 0
}

.portfolio .portfolio-item .portfolio-info .details-link,
.portfolio .portfolio-item .portfolio-info .preview-link {
	position: absolute;
	right: 40px;
	font-size: 24px;
	top: calc(50% - 18px);
	color: #3c3c3c
}

.portfolio .portfolio-item .portfolio-info .details-link:hover,
.portfolio .portfolio-item .portfolio-info .preview-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 .3s
}

.portfolio .portfolio-item .portfolio-links a {
	color: #fff;
	margin: 0 2px;
	font-size: 28px;
	display: inline-block;
	transition: .3s
}

.portfolio .portfolio-item .portfolio-links a:hover {
	color: #6ba7f5
}

.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
	bottom: 20px
}

.portfolio-details {
	padding-top: 30px
}

.portfolio-details .portfolio-details-container {
	position: relative
}

.portfolio-details .portfolio-details-carousel {
	position: relative;
	z-index: 1
}

.portfolio-details .portfolio-details-carousel .owl-dots,
.portfolio-details .portfolio-details-carousel .owl-nav {
	margin-top: 5px;
	text-align: left
}

.portfolio-details .portfolio-details-carousel .owl-dot {
	display: inline-block;
	margin: 0 10px 0 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
	background-color: #106eea !important
}

.portfolio-details .portfolio-info {
	padding: 30px;
	position: absolute;
	right: 0;
	bottom: -70px;
	background: #fff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
	z-index: 2
}

.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: 50px
}

.portfolio-details .portfolio-description h2 {
	width: 50%;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px
}

.portfolio-details .portfolio-description p {
	padding: 0
}

@media (max-width:768px) {
	.portfolio-details .portfolio-description h2 {
		width: 100%
	}

	.portfolio-details .portfolio-info {
		position: static;
		margin-top: 30px
	}
}

#footer {
	padding: 0 0 30px 0;
	color: #444;
	font-size: 14px;
	background: #f1f6fe
}

#footer .footer-newsletter {
	padding: 50px 0;
	background: #f1f6fe;
	text-align: center;
	font-size: 15px
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
	text-align: left
}

#footer .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px)
}

#footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: 0 0;
	font-size: 16px;
	padding: 0 20px;
	background: #106eea;
	color: #fff;
	transition: .3s;
	border-radius: 0 4px 4px 0;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #0d58ba
}

#footer .footer-top {
	padding: 60px 0 0 0;
	background: #fff
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px
}

#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 {
	color: #106eea
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: Roboto, sans-serif;
	color: #777
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 700;
	color: #444;
	position: relative;
	padding-bottom: 12px
}

#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: #106eea;
	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: #777;
	transition: .3s;
	display: inline-block;
	line-height: 1
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #106eea
}

#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: .3s
}

#footer .footer-top .social-links a:hover {
	background: #3b8af2;
	color: #fff;
	text-decoration: none
}

#footer .copyright {
	text-align: center
}

#footer .credits {
	float: right;
	text-align: center;
	font-size: 13px;
	color: #444
}

@media (max-width:768px) {

	#footer .copyright,
	#footer .credits {
		float: none;
		text-align: center;
		padding: 2px 0
	}
}

.faq .faq-list {
	padding: 0 100px
}

.faq .faq-list ul {
	padding: 0;
	list-style: none
}

.faq .faq-list li+li {
	margin-top: 15px
}

.faq .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative
}

.faq .faq-list a {
	display: block;
	position: relative;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	padding: 0 30px;
	outline: 0
}

.faq .faq-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: #76b5ee
}

.faq .faq-list .icon-close,
.faq .faq-list .icon-show {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0
}

.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0
}

.faq .faq-list .icon-show {
	display: none
}

.faq .faq-list a.collapsed {
	color: #343a40
}

.faq .faq-list a.collapsed:hover {
	color: #1977cc
}

.faq .faq-list a.collapsed .icon-show {
	display: inline-block
}

.faq .faq-list a.collapsed .icon-close {
	display: none
}

.faq .section-titles {
	text-align: center;
	padding-bottom: 30px
}

@media (max-width:1200px) {
	.faq .faq-list {
		padding: 0
	}
}

.contact .info-box {
	color: #444;
	text-align: center;
	box-shadow: 0 0 30px rgba(214, 215, 216, .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: #777;
	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, .4);
	padding: 30px
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px
}

.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 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: 20px 15px
}

.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: .4s;
	border-radius: 4px
}

.contact .php-email-form button[type=submit]:hover {
	background: #3b8af2
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

.clients {
	padding: 15px 0;
	text-align: center
}

.clients img {
	transition: all .4s ease-in-out;
	display: inline-block;
	padding: 15px 0
}

.clients img:hover {
	transform: scale(1.15)
}

@media (max-width:768px) {
	.clients img {
		max-width: 40%
	}
}

.example {
	background: #fff;
	padding: 60px 0 30px 0
}

.example .member {
	text-align: center;
	margin-bottom: 80px;
	position: relative
}

.example .member .pic {
	border-radius: 4px;
	overflow: hidden
}

.example .member img {
	transition: all ease-in-out .4s
}

.example .member:hover img {
	transform: scale(1.1)
}

.example .member .member-info {
	position: absolute;
	bottom: -48px;
	left: 20px;
	right: 20px;
	background: linear-gradient(360deg, #5c768d 0, rgba(92, 118, 141, .9) 35%, rgba(140, 167, 191, .8) 100%);
	padding: 15px 0;
	border-radius: 4px
}

.example .member h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 16px;
	color: #fff;
	position: relative;
	padding-bottom: 10px
}

.example .member h4::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	background: #fff;
	bottom: 0;
	left: calc(50% - 25px)
}

.example .member span {
	display: block;
	font-size: 14px;
	color: #fff
}

.example .member .social {
	margin-top: 15px
}

.example .member .social a {
	transition: color .3s;
	color: #fff
}

.example .member .social a:hover {
	color: #9eccf4
}

.example .member .social i {
	font-size: 16px;
	margin: 0 2px
}

@media (max-width:992px) {
	.example .member {
		margin-bottom: 100px
	}
}

.system .member {
	position: relative;
	box-shadow: 0 2px 15px rgba(44, 73, 100, .08);
	padding: 30px;
	border-radius: 10px;
	background-color: #fff
}

.system .member .pic {
	overflow: hidden
}

.system .member .pic img {
	transition: ease-in-out .3s
}

.system .member:hover img {
	transform: scale(1.1)
}

.system .member h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 20px;
	color: #1f2329
}

.system .member span {
	display: block;
	font-size: 15px;
	padding-bottom: 10px;
	position: relative;
	font-weight: 500;
	color: #646a73;
	letter-spacing: 2px
}

.system .member span::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	bottom: 0;
	left: 0
}

.system .member p {
	margin: 10px 0 0 0;
	font-size: 14px
}

.system .member .social {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.system .member .social a {
	transition: ease-in-out .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	width: 32px;
	height: 32px;
	background: #a0bcd5
}

.system .member .social a i {
	color: #fff;
	font-size: 16px;
	margin: 0 2px
}

.system .member .social a:hover {
	background: #1977cc
}

.system .member .social a+a {
	margin-left: 8px
}

.news {
	overflow: hidden
}

.news .nav-tabs {
	border: 0
}

.news .nav-link {
	border: 0;
	padding: 12px 15px 12px 0;
	transition: .3s;
	color: #2c4964;
	border-radius: 0;
	border-right: 2px solid #ebf1f6;
	font-weight: 600;
	font-size: 15px
}

.news .nav-link:hover {
	color: #1977cc
}

.news .nav-link.active {
	color: #1977cc;
	border-color: #1977cc
}

.news .tab-pane.active {
	-webkit-animation: fadeIn .5s ease-out;
	animation: fadeIn .5s ease-out
}

.news .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #2c4964
}

.news .details p {
	letter-spacing: 2px
}

.news .details p:last-child {
	margin-bottom: 0
}

.news .row .nav-item {
	padding: 5px
}

.news .row .nav-item .nav-link {
	padding: 10px;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, .12);
	letter-spacing: 2px;
	border-radius: 7px
}

.news .content-news {
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, .12);
	background-color: #fff;
	border-radius: 7px
}

@media (max-width:992px) {
	.news .nav-link {
		border: 0;
		background-color: #fff;
		padding: 15px
	}

	.news .nav-link.active {
		color: #000;
		background: #1977cc
	}
}

.features .icon-box {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f6f6f6;
	transition: ease-in-out .3s;
	border-radius: 5px
}

.features .icon-box h3 {
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 16px;
	color: #646a73;
	transition: ease-in-out .3s
}

.features .icon-box:hover {
	background: #eef7fc
}

.section-header-title div {
	font-size: 32px;
	color: #1f2329;
	text-align: center;
	font-weight: 600;
	position: relative;
	font-family: Montserrat, sans-serif
}

.section-header-title p {
	text-align: center;
	margin: auto;
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 60px;
	color: #646a73;
	width: 50%
}

 