@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Regular.ttf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Light.ttf");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Semibold.ttf");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-Bold.ttf");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("../fonts/OpenSans-ExtraBold.ttf");
	font-weight: 900;
	font-style: normal;
}

body,
html {
	/* background: #eceff4; */
	background: #fff;
	font-family: OpenSans;
}

.btn.btn-primary-outline,
.btn.btn-primary-outline:focus {
	color: #4361ee;
	border-color: #4361ee;
}

.btn.btn-primary-outline:hover,
.btn.btn-primary-outline:focus:hover {
	background-color: #4361ee;
}

.btn.btn-primary {
	background-color: #4361ee;
	border-color: #4361ee;
	transition: all .3s;
}

.btn.btn-primary:hover {
	background-color: #4361ee !important;
	border-color: #4361ee !important;
	opacity: .75;
}

/* Nav Bar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
}

.navbar.is-hidden {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.navbar ul li a {
	transition: all .3s ease;
}

.navbar ul li.active a {
	font-weight: 600;
	color: #4361ee !important;
}

@media (max-width: 991.98px) {
	.navbar ul {
		padding: .5rem 0;
	}

	.navbar ul li a:hover {
		margin-left: .5rem;
	}
}

.navbar ul li a i {
	margin-right: 6px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff !important;
	background: #4361ee;
	border-radius: 50%;
	transition: all .3s ease;
}

.navbar ul li a:hover i {
	box-shadow: 0 0 10px #ccc;
}

.navbar ul li a i::before {
	position: relative;
	left: 22%;
}

@media (min-width: 992px) {
	.navbar ul li a i {
		display: none;
	}
}

.navbar .nav-btn {
	margin-left: 8px;
	margin-right: -8px;
}

.navbar .nav-btn .btn.btn-inline {
	margin-bottom: 0;
}

@media (max-width: 991.98px) {
	.navbar .nav-btn {
		display: table;
		margin: 1rem auto .5rem;
	}
}

.navbar .navbar-toggler {
	padding: 0;
	width: 50px;
	background-color: #fff;
	border: none;
	overflow: hidden;
	border-radius: 50%;
}

.navbar .navbar-toggler:focus {
	outline: none;
}

.navbar .menu-icon {
	font-family: "entypo", sans-serif;
	font-size: 2rem;
	color: #000;
	display: block;
	padding: 10px;
	width: 100%;
	border-radius: 50%;
	transition: transform .3s ease;
	transform-origin: 50% 50%;
}

.navbar .menu-icon:before {
	content: "\2630";
}

.navbar .menu-icon.close {
	opacity: 1 !important;
	transform: rotate(-180deg);
}

.navbar .menu-icon.close:before {
	content: "\2715";
}

.navbar .divider {
	height: 0;
	margin: .5rem -100%;
	overflow: hidden;
	border-top: .5px solid #aaa;
}

/* Slider */
.cd-slider-wrapper {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.cd-slider-content {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cd-slider-content .wrapper {
	/* vertically center its content */
	display: table;
	height: 100%;
	width: 100%;
}

.cd-slider-content .wrapper .wrapper-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0 17%;
	color: #ffffff;
}

.cd-slider-content h2 {
	font-family: "OpenSans";
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15);
}

.cd-slider-content p {
	font-size: 1.4rem;
}

.cd-slider-content .slider-btn {
	margin-top: 2rem;
}

.cd-slider-content .btn.btn-primary-outline,
.cd-slider-content .btn.btn-primary-outline:focus {
	color: #fff;
	border-color: #fff;
	background-color: rgba(255, 255, 255, .2);
	transition: all .4s ease-in-out;
}

.cd-slider-content .btn.btn-primary-outline:hover,
.cd-slider-content .btn.btn-primary-outline:focus:hover {
	border-color: #4361ee;
	background-color: #4361ee;
}

@media (max-width: 767.98px) {
	.cd-slider-content h2 {
		font-size: 1.5rem;
		text-shadow: 0 .5px 0 #ccc, 0 1px 0 #c9c9c9, 0 1.5px 0 #bbb, 0 2px 0 #b9b9b9, 0 2.5px 0 #aaa, 0 3px .5px rgba(0, 0, 0, .1), 0 0 2.5px rgba(0, 0, 0, .1), 0 .5px 1.5px rgba(0, 0, 0, .3), 0 1.5px 2.5px rgba(0, 0, 0, .2), 0 2.5px 5px rgba(0, 0, 0, .25), 0 5px 5px rgba(0, 0, 0, .2), 0 10px 10px rgba(0, 0, 0, .15);
	}

	.cd-slider-content p {
		font-size: .8rem;
	}

	.cd-slider-content .slider-btn {
		margin-top: 1rem;
	}

	.cd-slider-content .slider-btn .btn {
		padding: 0.375rem 0.75rem;
		font-size: 1rem;
	}
}

@media only screen and (min-width: 1100px) {
	.cd-slider-content h2 {
		font-size: 3.8rem;
	}

	.cd-slider-content p {
		font-size: 2rem;
	}
}

.cd-slider>li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	/* hide vertical scrollbar on IE11 */
	overflow: hidden;
}

.cd-slider>li.visible {
	position: relative;
	z-index: 1;
	opacity: 1;
}

.cd-slider>li.is-animating {
	z-index: 2;
	opacity: 1;
}

.cd-slider .cd-svg-wrapper {
	/* using padding Hack to fix bug on IE - svg height not properly calculated */
	height: 0;
	padding-bottom: 57.15%;
}

.cd-slider-wrapper svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cd-scroll-down {
	position: absolute;
	z-index: 3;
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	animation: cd-float 2s infinite;
	bottom: 20px;
	width: 44px;
	height: 44px;
	background: url(../img/slider/cd-arrow-bottom.svg) no-repeat center center;
}

.cd-image-replace {
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: #00000000;
}

/* Slider navigation */
.cd-slider-navigation li {
	position: absolute;
	z-index: 3;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 3rem;
	height: 48px;
	width: 48px;
}

.cd-slider-navigation li a {
	display: block;
	height: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
	background: url(../img/slider/cd-icon-arrows.svg) no-repeat 0 0;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	transition: transform 0.5s;
}

.cd-slider-navigation li a:hover {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}

.cd-slider-navigation li:last-of-type {
	left: 3rem;
	right: auto;
}

.cd-slider-navigation li:last-of-type a {
	background-position: -48px 0;
}

/* Slider dots/controls */
.cd-slider-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
	width: 90%;
}

.cd-slider-controls::after {
	clear: both;
	content: "";
	display: table;
}

.cd-slider-controls li {
	display: inline-block;
	margin-right: 10px;
}

.cd-slider-controls li:last-of-type {
	margin-right: 0;
}

.cd-slider-controls li.selected a {
	background-color: #ffffff;
}

.cd-slider-controls a {
	display: block;
	/* image replacement */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	border: 2px solid #ffffff;
}

.no-touch .cd-slider-controls a:hover {
	background-color: #ffffff;
}

/* Global Elements */
section .divider {
	width: 5rem;
	height: 2px;
	margin: 1rem auto 2rem;
	background: #4361ee;
}

.btn {
	position: relative;
	font-weight: normal;
	letter-spacing: .2rem;
}

.btn:before {
	pointer-events: none;
	content: '';
	position: absolute;
	border: #4361ee solid 4px;
	top: -16px;
	right: -16px;
	bottom: -16px;
	left: -16px;
	opacity: 0;
	border-radius: 25rem;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before {
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
	opacity: 1;
}

/* Features */
.features {
	text-align: center;
	padding: 4rem 0 5rem;
}

.features h2 {
	text-transform: capitalize;
}

.features .item i {
	margin: 2rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	background: #4361ee;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	animation: radar-fx 1s linear infinite;
	transition: all .5s ease;
}

.features .row:hover .item i {
	animation: none;
}

.features .item:hover i {
	animation: radar-fx 1s linear infinite !important;
	transform: rotate(360deg);
}

.features .item h3 {
	text-transform: capitalize;
	font-size: 1.4rem;
	transition: all .5s ease;
}

.features .item:hover h3 {
	color: #4361ee;
}

.features .item .divider {
	width: 3rem;
	height: 2px;
	margin: 0 auto 1.25rem;
	background: #343434;
}

.features .item p {
	font-size: .9rem;
	color: #959aa0;
	/* color: #898e94; */
}

/* About Us */
.about-us {
	position: relative;
	padding: 4rem 0;
	text-align: center;
	background: url(../img/testimonials-bg.jpg) center no-repeat fixed;
	background-size: cover;
}

.about-us .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, .4);
}

.about-us .container {
	position: relative;
}

.about-us h2 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
	font-weight: bold;
}

/* .about-us {
	background: #f5f6f9;
	text-align: center;
	padding: 4rem 0;
}
.about-us h2 {
	text-transform: capitalize;
	font-weight: bold;
} */
.about-us p {
	/* color: #959aa0; */
	color: #ddd;
}

.about-us .btn {
	margin-top: 2rem;
}

.about-us .btn:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, .75) !important;
	color: #4361ee !important;
}

/* Services */
.our-services {
	position: relative;
	overflow: hidden;
	padding: 4rem 0;
}

.our-services:before {
	position: absolute;
	right: -3rem;
	content: "\f54f";
	font-family: "Font Awesome 5 Free";
	font-size: 35rem;
	font-weight: 900;
	color: #f5f6f9;
}

.our-services h2 {
	text-align: center;
	text-transform: capitalize;
}

.our-services .content {
	margin: 5rem 0 0;
}

.our-services .content .item {
	display: flex;
	padding-bottom: 2rem;
}

.our-services .content .item .item-icon {
	flex: 0 0 5.5rem;
	max-width: 5.5rem;
}

.our-services .content .item .item-icon i {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	background: #4361ee;
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 0px #4361ee, 0px 0px 0px 7px #fff, 0px 0px 0px 8px #4361ee;
	transition: all .5s ease;
}

.our-services .content .item:hover .item-icon i {
	box-shadow: 0px 0px 0px 8px #4361ee, 0px 0px 0px 7px #fff, 0px 0px 0px 8px #4361ee;
}

.our-services .content .item .item-content {}

.our-services .content .item .item-content h4 {
	color: #4361ee;
}

.our-services .content .item .item-content .divider {
	width: 1rem;
	height: 2px;
	margin: 1rem 0;
	background: #4361ee;
	transition: all .5s ease;
}

.our-services .content .item:hover .item-content .divider {
	width: 6rem;
}

.our-services .content .item .item-content p {
	font-size: .9rem;
	color: #959aa0;
	/* color: #898e94; */
}

.our-services a {
	display: contents;
}

.our-services .btn {
	display: block;
	width: 200px;
	margin: 2rem auto 0;
}

.our-services .btn:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, .1) !important;
	color: #4361ee !important;
}

/* Testimonials */
.testimonials {
	position: relative;
	padding: 4rem 0;
	background: url(../img/testimonials-bg.jpg) center no-repeat fixed;
	background-size: cover;
}

.testimonials .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, .5);
}

.testimonials .container {
	position: relative;
}

.testimonials h2 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.testimonials .carousel,
.testimonials .carousel-item {
	height: 400px;
}

.testimonials .carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 5px;
	margin-left: 5px;
	background-color: hsla(0, 0%, 100%, 0.15);
	border: 1px solid #fff;
	opacity: 1;
	transition: all 0.6s ease;
}

.testimonials .carousel-indicators li.active,
.testimonials .carousel-indicators li:hover {
	background-color: #4361ee;
	border: 1px solid #4361ee;
}

.testimonials .carousel .carousel-inner {
	width: 60%;
	margin: auto;
}

.testimonials .carousel-caption {
	left: 10%;
	right: 10%;
	bottom: 5%;
}

.testimonials .carousel-caption img {
	width: 150px;
	height: 150px;
	border: 5px solid #4361ee;
	border-radius: 50%;
}

.testimonials .carousel-caption h5 {
	margin: 1rem 0 0;
	color: #4361ee;
	font-size: 1.5rem;
	font-weight: bold;
}

.testimonials .carousel-caption span {
	font-size: .9rem;
}

.testimonials .carousel-caption p {
	margin: 1rem 0;
}

.testimonials .carousel-caption i {
	color: #4361ee;
	font-size: 2rem;
	margin: .25rem;
}

.testimonials .carousel-caption i:last-child {
	position: absolute;
}

/* Statistics */
.statistics {
	position: relative;
	padding: 4rem 0;
	text-align: center;
	background: url(../img/statistics-bg.jpg) center no-repeat fixed;
	background-size: cover;
}

.statistics .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, .4);
}

.statistics .container {
	position: relative;
}

.statistics h2 {
	text-transform: capitalize;
	color: #fff;
}

.statistics i {
	margin: 2rem;
	width: 8rem;
	height: 8rem;
	line-height: 8rem;
	color: #fff;
	font-size: 2.4rem;
	border: 1px solid hsla(0, 0%, 100%, .5);
	border-radius: 50%;
	transition: all .5s ease;
}

.statistics .item:hover i {
	box-shadow: 0px 0px 0px 64px #fff inset;
	animation: test 1s ease 1 forwards !important;
}

.statistics h3 {
	margin: 0;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	transition: all 0.5s ease;
}

.statistics .item:hover h3 {
	color: #4361ee;
}

.statistics p {
	color: #fff;
}

.statistics .item .divider {
	width: 1rem;
	height: 1px;
	margin: 1rem auto;
	transition: all .5s ease;
}

.statistics .item:hover .divider {
	width: 5rem;
}

/* Choose Us */
.choose-us {
	padding: 4rem 0 0;
}

.choose-us h2 {
	text-align: center;
	text-transform: capitalize;
}

.choose-us .row {
	padding-top: 2rem;
}

.choose-us .col-md-6:first-child {
	background: url(../img/choose-us.jpg) center no-repeat;
	background-size: cover;
}

.choose-us .col-md-6:last-child {
	padding: 4rem;
	background: #4cc9f0;
}

.choose-us h4 {
	text-transform: capitalize;
	color: #fff;
}

.choose-us p {
	margin: 1rem 0;
	color: #fff;
}

.choose-us .divider:last-of-type {
	margin-left: 0;
}

/* Team */
.team {
	padding: 4rem 0;
}

.team h2 {
	text-align: center;
	text-transform: capitalize;
}

.team .row {
	padding-top: 2rem;
}

.team .item {
	padding: 1rem 0;
}

.team .item .photo {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 230px;
	height: 230px;
	border: .6rem solid #eceff4;
	border-radius: 50%;
}

.team .item .overlay,
.team .item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all .75s;
}

.team .item .overlay {
	background: rgba(65, 131, 215, .5);
	opacity: 0;
}

.team .item:hover .overlay {
	opacity: 1;
}

.team .item img {
	filter: grayscale(1);
}

.team .item:hover img {
	transform: scale(1.1, 1.1);
}

.team .item .social-media {
	position: relative;
	top: 75%;
	opacity: .5;
	margin-top: -1.5rem;
	text-align: center;
	transition: all .75s;
}

.team .item:hover .social-media {
	top: 50%;
	opacity: 1;
}

.team .item .social-media i {
	margin: 0 5px;
	padding: 1rem 0;
	width: 3rem;
	height: 3rem;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1rem;
	color: #4361ee;
	border-radius: 1rem;
	transition: all .5s;
}

.team .item .social-media i:hover {
	transform: rotate(45deg);
}

.team .item .social-media i:before {
	display: block;
	transition: all .75s;
}

.team .item .social-media i:hover:before {
	transform: rotate(-45deg);
}

.team .item .social-media i.facebook {
	color: #1877f2;
}

.team .item .social-media i.instagram {
	color: #ec0075;
}

.team .item .social-media i.linkedin {
	color: #0077b5;
}

.team .item .social-media i.twitter {
	color: #3bc1ed;
}

.team .item .social-media i.google-plus {
	color: #db4a37;
}

.team .item h5 {
	margin: 1.4rem 0 .4rem;
	text-align: center;
	color: #4361ee;
}

.team .item span {
	display: block;
	text-align: center;
	font-size: .9rem;
}

/* Contact Us */
.contact-us {
	position: relative;
	padding: 4rem 0;
	background: url(../img/contact-us-bg.jpg) center no-repeat fixed;
	background-size: cover;
}

.contact-us .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, hsla(240, 74%, 61%, .8), hsla(182, 83%, 70%, .8));
}

.contact-us .container {
	position: relative;
}

.contact-us h2 {
	display: inline-block;
	margin: 0;
	text-transform: capitalize;
	color: #fff;
}

.contact-us .btn,
.contact-us .btn:focus {
	float: right;
	color: #fff;
	border-color: #fff;
	background-color: hsla(0, 0%, 100%, .25);
}

.contact-us .btn:hover,
.contact-us .btn:focus:hover {
	color: #4361ee !important;
	border-color: #fff !important;
	background-color: #fff;
}

/* Partners */
.partners {
	padding: 4rem 0;
}

.partners h2 {
	text-align: center;
	text-transform: capitalize;
}

.partners ul {
	margin-top: 1rem;
}

.partners ul li {
	float: left;
	perspective: 100px;
}

.partners ul li img {
	display: block;
	margin: 1rem auto;
	width: 100%;
	max-width: 175px;
	background: #f5f6f9;
	box-shadow: 0 0 20px #ddd inset, 0px 0px 0px 1px #ddd;
	filter: grayscale(1) opacity(.6);
	transition: all .5s ease;
}

.partners ul li:hover img {
	transform: rotateX(180deg) scaleY(-1);
	filter: grayscale(0) opacity(1);
}

/* Page Services  */
.header-services {
	position: relative;
	margin-top: 76px;
	padding: 6rem 0;
	background: url(../img/about-us-bg.jpg) center -100px no-repeat fixed;
	background-size: cover;
}

.header-services .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, hsla(240, 74%, 61%, .8), hsla(182, 83%, 70%, .8));
}

.header-services .container {
	position: relative;
}

.header-services h1 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.services {
	padding: 4rem 0;
	background: #f5f6f9;
}

.services .our-services {
	padding: 2rem 0;
}

.services .our-services:before {
	content: "";
}

.services .our-services:first-of-type {
	padding-top: 0;
}

.services .our-services h2 {
	text-align: center;
	text-transform: capitalize;
}

.services .our-services .row {
	margin-top: 4rem;
	background: #fff;
}

.services .our-services .item {
	position: relative;
	overflow: hidden;
	padding: 3rem;
	background: #fff;
	border: 1px solid #f5f6f9;
}

.services .our-services .item .back-icon {
	position: absolute;
	right: -1rem;
	bottom: -.5rem;
	font-size: 12rem;
	color: #f5f6f9;
}

/*
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.services .our-services .item:hover .back-icon, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob;
  animation-name: hvr-bob;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
*/
.services .our-services .item .icon {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	color: #4361ee;
	transition: .3s all ease;
}

.services .our-services .item:hover .icon {
	transform: translateY(-1rem);
	opacity: 0;
}

.services .our-services .item h3 {
	position: relative;
	font-size: 1.4rem;
	font-weight: 600;
	color: #515769;
	transition: .3s all ease;
}

.services .our-services .item:hover h3 {
	color: #4361ee;
	transform: translateY(-2rem);
}

.services .our-services .item p {
	position: relative;
	font-size: .9rem;
	color: #a6a7aa;
	transition: .3s all ease;
}

.services .our-services .item:hover p {
	transform: translateY(-2rem);
}

.services .our-services .skills {
	padding: 2rem;
	background: #fff;
	border: 1px solid #f5f6f9;
}

.services .our-services .skills h3 {
	text-align: center;
	text-transform: capitalize;
}

.services .our-services .skills .progress-text-left {
	width: 144px;
}

.services .our-services .skills .progress {
	background-color: #f5f6f9;
}

.services .our-services .skills .progress-bar {
	background-color: #4361ee;
	transition: none;
}

.services .our-services .skills .progress-bar-striped {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
}

/* Page Portfolio */
.header-portfolio {
	position: relative;
	margin-top: 76px;
	padding: 6rem 0;
	background: url(../img/about-us-bg.jpg) center -100px no-repeat fixed;
	background-size: cover;
}

.header-portfolio .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, hsla(240, 74%, 61%, .8), hsla(182, 83%, 70%, .8));
}

.header-portfolio .container {
	position: relative;
}

.header-portfolio h1 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.portfolio {
	padding: 4rem 0;
	background: #fff;
	overflow: hidden;
}

.s-portfolio-filter-v1.cbp-l-filters-text {
	margin-bottom: 2rem;
}

.s-portfolio-filter-v1-item {
	padding: 0 !important;
	margin: 0 1rem !important;
}

.s-portfolio-filter-v1-item .menu__link {
	position: relative;
	display: block;
	padding: 1rem;
	min-width: 100px;
	font-size: .9rem;
	font-weight: bold;
	text-align: center;
	color: #b5b5b5;
	text-transform: uppercase;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.s-portfolio-filter-v1-item .menu__link:hover,
.s-portfolio-filter-v1-item .menu__link:focus {
	color: #929292;
}

.s-portfolio-filter-v1-item.cbp-filter-item-active .menu__link {
	color: #4361ee;
}

.s-portfolio-filter-v1-item::before,
.s-portfolio-filter-v1-item::after,
.s-portfolio-filter-v1-item .menu__link::before,
.s-portfolio-filter-v1-item .menu__link::after {
	content: '';
	z-index: 2;
	position: absolute;
	background: #4361ee;
	-webkit-transform-origin: 350% 350%;
	transform-origin: 350% 350%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.s-portfolio-filter-v1-item::before,
.s-portfolio-filter-v1-item::after {
	top: 0;
	width: 2px;
	height: 100%;
	-webkit-transform: scale3d(1, 0, 1);
	transform: scale3d(1, 0, 1);
}

/* left line */
.s-portfolio-filter-v1-item::before {
	left: 0;
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

/* right line */
.s-portfolio-filter-v1-item::after {
	right: 0;
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.s-portfolio-filter-v1-item .menu__link::before,
.s-portfolio-filter-v1-item .menu__link::after {
	left: 0;
	width: 100%;
	height: 2px;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
}

/* top line */
.s-portfolio-filter-v1-item .menu__link::before {
	top: 0;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/* bottom line */
.s-portfolio-filter-v1-item .menu__link::after {
	bottom: 0;
}

.s-portfolio-filter-v1-item.cbp-filter-item-active::before,
.s-portfolio-filter-v1-item.cbp-filter-item-active::after,
.s-portfolio-filter-v1-item.cbp-filter-item-active .menu__link::before,
.s-portfolio-filter-v1-item.cbp-filter-item-active .menu__link::after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

/* Image */
.s-portfolio-img {
	position: relative;
	display: block;
}

.s-portfolio-img:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(65, 131, 215, 0.9);
	content: "";
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 101%, 0);
	transition: all 400ms cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio-item:hover .s-portfolio-img:after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.s-portfolio-img img {
	transition: transform 1.2s cubic-bezier(0, 0.1, 0.35, 1);
}

.s-portfolio-item:hover .s-portfolio-img img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

/* Caption */
.s-portfolio-caption {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	padding: 1.875rem;
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	transition-duration: 400ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio-item:hover .s-portfolio-caption {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}

.s-portfolio-caption h2 {
	margin-bottom: .4rem;
	color: #fff;
	font-size: 1.2rem;
}

.s-portfolio-caption p {
	color: rgba(255, 255, 255, .8);
	font-size: .94rem;
	font-weight: 300;
}

.s-portfolio-caption i {
	position: relative;
	margin-top: 1.2rem;
	padding: .6rem 0;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
	line-height: 1.4rem;
	background: #fff;
	color: #555;
	font-size: .9rem;
	cursor: pointer;
	border-radius: 50%;
	transition: all .5s ease;
}

.s-portfolio-item:hover .s-portfolio-caption i {
	animation: radar-fx-2 1s linear infinite;
}

.s-portfolio-caption i:hover {
	color: #4361ee;
	animation: none !important;
}

.s-portfolio-caption i:after {
	content: '';
	position: absolute;
	border: #fff solid 2px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: top, right, bottom, left;
	transition-property: top, right, bottom, left;
}

.s-portfolio-caption i:hover:after,
.s-portfolio-caption i:focus:before,
.s-portfolio-caption i:active:before {
	top: -6px;
	right: -6px;
	bottom: -6px;
	left: -6px;
}

/* Page About */
.header-about {
	position: relative;
	margin-top: 76px;
	padding: 6rem 0;
	background: url(../img/about-us-bg.jpg) center -100px no-repeat fixed;
	background-size: cover;
}

.header-about .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, hsla(240, 74%, 61%, .8), hsla(182, 83%, 70%, .8));
}

.header-about .container {
	position: relative;
}

.header-about h1 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.about {
	padding: 0;
}

.about .about-us {
	background: #f5f6f9;
	padding: 4rem 0;
}

.about .about-us .about-title h3 {
	margin-top: 6rem;
	padding: 0 1rem;
	text-align: left;
	font-size: 2.8rem;
	font-weight: 900;
}

.about .about-us .about-title h3 span {
	display: block;
	font-size: 5rem;
	color: #4361ee;
}

.about .about-us .about-content {
	padding: 5rem 4rem;
	background: #4361ee;
}

.about .about-us .about-content p {
	text-align: left;
	line-height: 2rem;
	color: #fff;
}

.about .about-us .about-content p:first-child {
	margin-bottom: 2rem;
}

.about .features {
	text-align: left;
	padding: 4rem 0;
}

.about .features h2 {
	text-align: center;
}

.about .features .item i {
	margin: 2rem 0;
	text-align: center;
	background: none;
	color: #4361ee;
	border: 1px solid #4361ee;
	line-height: 4.9rem;
	animation: none;
}

.about .features .item:hover i {
	background: #4361ee;
	color: #fff;
	border: 1px solid #fff;
	transform: none;
	animation: none !important;
}

.about .features .item .divider {
	margin-left: 0;
}

.about .team {
	background: #f5f6f9;
}

.about .team .item .photo {
	border-color: #fff;
}

.about .clients-rate {
	padding: 4rem 0;
	background: #f5f6f9;
}

.about .clients-rate h2 {
	text-align: center;
	text-transform: capitalize;
}

.about .clients-rate .rates {
	padding-top: 2rem;
}

.about .clients-rate .progress {
	background-color: #fff;
}

.about .clients-rate .progress-bar {
	background-color: #4361ee;
}

.about .clients-rate .progress-bar-striped {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
}

/* Page Contact */
.header-contact {
	position: relative;
	margin-top: 76px;
	padding: 6rem 0;
	background: url(../img/contact-us-bg.jpg) center -150px no-repeat fixed;
	background-size: cover;
}

.header-contact .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, hsla(240, 74%, 61%, .8), hsla(182, 83%, 70%, .8));
}

.header-contact .container {
	position: relative;
}

.header-contact h1 {
	text-align: center;
	text-transform: capitalize;
	color: #fff;
}

.contact {
	padding: 3rem 0;
}

.contact section {
	padding: 1rem 0;
}

.contact .divider {
	margin-left: 0;
	margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
	.contact .divider {
		margin-left: auto;
	}

	.contact h3 {
		text-align: center;
	}
}

.contact .contact-info .info ul li {
	margin-bottom: 2rem;
}

.contact .contact-info .info ul li i {
	margin-right: 1rem;
	color: #4361ee;
	font-size: 1.25rem;
	vertical-align: middle;
}

.contact .contact-info .info ul li i:last-child {
	vertical-align: baseline;
}

.contact .contact-info .social-media ul {
	float: leftt;
}

.contact .contact-info .social-media ul li {
	float: left;
	margin: 0 .5rem;
}

.contact .contact-info .social-media ul li:first-child {
	margin-left: 0;
}

.contact .contact-info .social-media ul li:last-child {
	margin-right: 0;
}

.contact .contact-info .social-media ul li i {
	padding: 1rem 0;
	width: 3rem;
	height: 3rem;
	text-align: center;
	line-height: 1rem;
	box-shadow: 0px 0px 0px 2rem #4361ee inset, 0px 0px 0px 1px #4361ee;
	color: #fff;
	font-size: 1.2rem;
	border-radius: 50%;
	transition: all .5s ease;
}

.contact .contact-info .social-media ul li i:hover {
	box-shadow: 0px 0px 0px 0px #fff inset, 0px 0px 0px 1px #4361ee;
	color: #4361ee;
}

/* Footer */
.footer {
	border-top: 1px solid #c8d3e0;
	background: #1b2a41;
}

.footer>.container {
	padding: 4rem 0;
}

.footer .short-about img {
	width: 150px;
	margin-top: -12px;
}

.footer .short-about p {
	margin-top: 2rem;
	word-break: break-all;
	line-height: 1.6;
	color: #c8d3e0;
}

.footer .helpful-links h4,
.footer .contact h4 {
	margin-bottom: 3.2rem;
	color: #c8d3e0;
}

.footer .helpful-links ul li {
	margin-bottom: 1rem;
	color: #4361ee;
}

.footer .helpful-links ul li i {
	margin-right: .5rem;
	color: #c8d3e0;
}

.footer .contact {
	padding: 0;
}

.footer .contact ul li {
	margin-bottom: 2rem;
	color: #c8d3e0;
}

.footer .contact ul li i {
	margin-right: 1rem;
	color: #4cc9f0;
	font-size: 1.25rem;
	vertical-align: middle;
}

.footer .sub-footer {
	padding: 1rem 0;
	background: #111a2e;
}

.footer .copyright {
	color: #c8d3e0;
}

.footer .copyright p {
	line-height: 3rem;
}

.footer .copyright a {
	letter-spacing: 1px;
	color: #4361ee;
}

.footer .social-media ul {
	float: right;
}

.footer .social-media ul li {
	float: left;
	margin: 0 .5rem;
}

.footer .social-media ul li i {
	padding: 1rem 0;
	width: 3rem;
	height: 3rem;
	text-align: center;
	line-height: 1rem;
	background: #4361ee;
	color: #c8d3e0;
	font-size: 1.2rem;
	vertical-align: middle;
	border-radius: 50%;
	transition: all .5s ease;
}

.footer .contact ul li i:last-child {
	vertical-align: baseline;
}

.footer .social-media ul li i.facebook:hover {
	background: #c8d3e0;
	color: #1877f2;
}

.footer .social-media ul li i.instagram:hover {
	background: #c8d3e0;
	color: #e1306c;
}

.footer .social-media ul li i.linkedin:hover {
	background: #c8d3e0;
	color: #0077b5;
}

.footer .social-media ul li i.twitter:hover {
	background: #c8d3e0;
	color: #3bc1ed;
}

.footer .social-media ul li i.google-plus:hover {
	background: #c8d3e0;
	color: #db4a37;
}

/* Scroll Top */
.scroll-top {
	display: none;
	position: fixed;
	z-index: 1;
	right: 1rem;
	bottom: 1rem;
}

.scroll-top i {
	padding: 1rem 0;
	width: 3rem;
	height: 3rem;
	text-align: center;
	line-height: 1rem;
	background: #fff;
	color: #4361ee;
	font-size: 1.5rem;
	cursor: pointer;
	border-radius: 50%;
	transition: all .5s ease;
}

.scroll-top i:hover {
	background: #4361ee;
	color: #fff;
}

/* Loading */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #4361ee;
}

.load-folding-cube {
	top: 50%;
	margin: -30px auto;
	width: 60px;
	height: 60px;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.load-text {
	top: 50%;
	margin: 60px auto;
	position: relative;
	color: #fff;
	text-align: center;
	letter-spacing: 6px;
}

.load-folding-cube .load-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
}

.load-folding-cube .load-cube:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	-webkit-animation: load-foldCubeAngle 2.4s infinite linear both;
	animation: load-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.load-folding-cube .load-cube2 {
	-webkit-transform: rotateZ(90deg);
	transform: rotateZ(90deg);
}

.load-folding-cube .load-cube3 {
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

.load-folding-cube .load-cube4 {
	-webkit-transform: rotateZ(270deg);
	transform: rotateZ(270deg);
}

.load-folding-cube .load-cube2:before {
	background-color: rgba(255, 255, 255, .8);
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.load-folding-cube .load-cube3:before {
	background-color: rgba(255, 255, 255, .6);
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.load-folding-cube .load-cube4:before {
	background-color: rgba(255, 255, 255, .4);
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

/* Keyframes */
@-webkit-keyframes cd-float {

	0%,
	100% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
	}

	50% {
		-webkit-transform: translateX(-50%) translateY(-10px);
		transform: translateX(-50%) translateY(-10px);
	}
}

@keyframes cd-float {

	0%,
	100% {
		-webkit-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
	}

	50% {
		-webkit-transform: translateX(-50%) translateY(-10px);
		transform: translateX(-50%) translateY(-10px);
	}
}

@-webkit-keyframes radar-fx {
	0% {
		box-shadow: 0px 0px 0px 0px hsla(214, 65%, 55%, .4), 0px 0px 0px 0px hsla(214, 65%, 55%, .4);
	}

	50% {
		box-shadow: 0px 0px 0px 10px hsla(214, 65%, 55%, .2), 0px 0px 0px 0px hsla(214, 65%, 55%, .4);
	}

	100% {
		box-shadow: 0px 0px 0px 20px hsla(214, 65%, 55%, 0), 0px 0px 0px 12px hsla(214, 65%, 55%, 0);
	}
}

@keyframes radar-fx {
	0% {
		box-shadow: 0px 0px 0px 0px hsla(214, 65%, 55%, .4), 0px 0px 0px 0px hsla(214, 65%, 55%, .4);
	}

	50% {
		box-shadow: 0px 0px 0px 10px hsla(214, 65%, 55%, .2), 0px 0px 0px 0px hsla(214, 65%, 55%, .4);
	}

	100% {
		box-shadow: 0px 0px 0px 20px hsla(214, 65%, 55%, 0), 0px 0px 0px 12px hsla(214, 65%, 55%, 0);
	}
}

@-webkit-keyframes radar-fx-2 {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, .4), 0px 0px 0px 0px rgba(255, 255, 255, .4);
	}

	50% {
		box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, .2), 0px 0px 0px 0px rgba(255, 255, 255, .4);
	}

	100% {
		box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0), 0px 0px 0px 12px rgba(255, 255, 255, 0);
	}
}

@keyframes radar-fx-2 {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, .4), 0px 0px 0px 0px rgba(255, 255, 255, .4);
	}

	50% {
		box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, .2), 0px 0px 0px 0px rgba(255, 255, 255, .4);
	}

	100% {
		box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0), 0px 0px 0px 12px rgba(255, 255, 255, 0);
	}
}

@keyframes test {
	0% {
		font-size: 2.4rem;
	}

	40% {
		font-size: 0rem;
		color: #fff;
	}

	41% {
		color: #4361ee;
	}

	60% {
		font-size: 3.4rem;
	}

	70% {
		font-size: 1.8rem;
	}

	80% {
		font-size: 3rem;
	}

	90% {
		font-size: 2rem;
	}

	100% {
		font-size: 2.4rem;
		color: #4361ee;
	}
}

@-webkit-keyframes load-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes load-foldCubeAngle {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}