/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
	font-family: Amsterdam;
	src: url("../fonts/AmsterdamOne.ttf");
}
html {
	scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
	font-family: "Lexend Deca", sans-serif;
	/*  */
	/* font-family: "Open Sans", sans-serif; */
}

.bg-dark a {
	color: #ffffff;
	text-decoration: none;
}

.bg-light a {
	color: #000000;
	text-decoration: none;
}

.bg-dark .btn {
	background-color: #ffffff;
	color: #000;
}
.bg-dark .btn:hover {
	background-color: #dd8c69;
	color: #fff;
}

.bg-light .btn {
	background-color: #000;
	color: #fff;
}
.bg-light .btn:hover {
	background-color: #dd8c69;
	color: #fff;
}

p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.7;
}
/* 
a:hover {
	color: #dd8c69;
	text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #000000;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

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

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

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

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #000000;
	border-top-color: #fff;
	border-bottom-color: #fff;
	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);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.bg-light #header {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9997;
	transition: all 0.5s;
	padding: 15px;
	overflow-y: auto;
}
.bg-dark #header {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9997;
	transition: all 0.5s;
	padding: 15px;
	overflow-y: auto;
}

@media (max-width: 991px) {
	.bg-light #header {
		width: 300px;
		background: #f6f6f6;
		border-right: 1px solid #e6e9ec;
		left: -300px;
	}
	.bg-dark #header {
		width: 300px;
		background: #040b14;
		border-right: 1px solid #1b1b1b;
		left: -300px;
	}
}

/* @media only screen and (min-width: 992px)  {
  main {
    padding: 0 0;
  }
} */

@media only screen and (max-width: 991px) {
	main {
		padding: 60px 0px;
	}
	section {
		/* margin: 0 0 0 100px; */
		padding: 90px 20px;
		overflow: hidden;
	}
}
@media (min-width: 992px) {
	main {
		padding: 60px 100px;
	}
	section {
		/* margin: 0 0 0 100px; */
		padding: 90px 100px;
		overflow: hidden;
	}
}

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

.bg-light .nav-link {
	background: #ffffff;
	color: #000;
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.095);
}

.bg-dark .nav-link {
	background: #1d1c1c;
	color: #f0f0f0 !important;
}

.nav-menu {
	padding: 0;
	display: block;
}

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

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

.nav-menu a,
.nav-menu a:focus {
	display: flex;
	align-items: center;
	color: #45505b;
	padding: 10px 18px;
	margin-bottom: 8px;
	transition: 0.3s;
	font-size: 15px;
	border-radius: 50px;
	height: 56px;
	width: 100%;
	overflow: hidden;
	transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
	font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
	padding: 0 5px 0 7px;
	font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) {
	.nav-menu a,
	.nav-menu a:focus {
		width: 56px;
	}

	.nav-menu a span,
	.nav-menu a:focus span {
		display: none;
		color: #fff;
	}
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
	color: #fff;
	background: #000000;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover > a span {
	color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover > a {
	width: 100%;
	color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover > a span {
	display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 28px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 0;
	cursor: pointer;
	border-radius: 50px;
	padding: 5px;
}

.mobile-nav-toggle i {
	color: #45505b;
}

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

.mobile-nav-active #header {
	left: 0;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.bg-light #hero {
	width: 100%;
	background: url("../img/hero-light.jpg") top right no-repeat;
	background-size: cover;
	position: relative;
	text-align: center;
}

@media (min-width: 992px) {
	.bg-light #hero {
		padding-left: 160px;
	}
}

.bg-light #hero:before {
	content: "";
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.bg-light #hero h1 {
	font-family: "Amsterdam", Arial, serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	font-size: 64px;
	line-height: 56px;
	opacity: 0.8;
	padding: 1em;
}

#hero .subtext {
	margin: 0;
	padding: 20px;
	z-index: 2;
}

#hero h2 {
	letter-spacing: 8pt;
	opacity: 0.8;
}

#hero h3 {
	font-family: "Amsterdam", Arial, serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	font-size: 18pt;
	line-height: 56px;
	opacity: 0.8;
}

@media (max-width: 992px) {
	.bg-light #hero {
		text-align: center;
	}

	.bg-light #hero h1 {
		font-size: 48px;
		line-height: 72px;
	}
}

/*--------------------------------------------------------------
# Dark Hero Section
--------------------------------------------------------------*/

.bg-dark #hero {
	width: 100%;
	background: url("../img/hero-dark.jpg") top right no-repeat;
	background-size: cover;
	position: relative;
	text-align: center;
}

@media (min-width: 992px) {
	.bg-dark #hero {
		padding-left: 160px;
	}
}

.bg-dark #hero:before {
	content: "";
	background: #101010db;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.bg-dark #hero h1 {
	font-family: "Amsterdam", Arial, serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	font-size: 64px;
	line-height: 56px;
	opacity: 0.8;
	padding: 1em;
}

@media (max-width: 991px) {
	.bg-dark #hero {
		text-align: center;
	}

	.bg-dark #hero h1 {
		font-size: 48px;
		line-height: 72px;
	}

	.bg-dark #hero p {
		margin-top: 10px;
		font-size: 20px;
		line-height: 24px;
	}
}

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

.section-title {
	text-align: center;
	margin-bottom: 5em;
}

.section-title h2 {
	font-size: 3rem;
	line-height: 1;
	font-family: "Amsterdam", Arial, serif;
	font-weight: 400;
	margin-bottom: 5px;
	padding-bottom: 10px;
	position: relative;
}

.section-title p {
	font-size: 14px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about img {
	border: 1rem solid #fff;
	border-radius: 10%;
}
.about .content h3 {
	font-weight: 700;
	font-size: 26px;
	color: #728394;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.about .content ul strong {
	margin-right: 10px;
	font-size: 14px;
}
.about .content ul span {
	margin-right: 10px;
	font-size: 14px;
}

.about .content ul i {
	margin-right: 5px;
	color: #000000;
	line-height: 0;
}

.about .content p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
/* .facts .count-box {
	padding: 30px 30px 25px 30px;
	margin-top: 30px;
	width: 100%;
	position: relative;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.485);
} */
.bg-dark .about .count-box {
	background-color: #1d1c1c;
}
.bg-light .about .count-box {
	background-color: #fff;
}
.light-bg {
	background: #fff;
}
.dark-bg {
	background: #1d1c1c;
}
.light-txt {
	color: #363636;
}
.dark-txt {
	color: #fff;
}
.about .count-box {
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 20px;
}
.about .count-box .numbers {
	align-items: center;
	justify-content: center;
}
.about .count-box i {
	font-size: 16px;
	background: #000000;
	color: #fff;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
}

.about .count-box span {
	font-size: 32px;
	display: inline-flex;
	font-weight: 600;
	color: #0063bf;
}

.about .count-box p {
	padding: 0;
	margin: 0;
	/* font-family: "Raleway", sans-serif; */
	font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.timer .title {
	text-align: left;
	margin-bottom: 1.5rem;
}

.timer .card-body .row .col {
	margin-bottom: 1.5rem;
}
.bg-light .timer .card {
	background-color: #fff;
}
.bg-dark .timer .card {
	background-color: #1d1c1c;
}
.timer .card {
	text-align: center;
	padding: 20px 20px;
	transition: all ease-in-out 0.3s;
	border-radius: 20px;
	box-shadow: 0 15px 20px 0px rgba(0, 0, 0, 0.1);
}
.bg-dark .timer .card .skill {
	font-size: 12px;
	text-align: left;
	font-weight: 500;
	background-image: none;
	background-color: #040b14 !important;
}

.bg-light .timer .card .skill {
	text-align: left;
	font-size: 12px;
	font-weight: 500;
	background-image: none;
	background-color: #d7dce1 !important;
}
.timer .card:hover {
	border-color: #fff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
	transform: scale(1.05) rotate(-2deg);
}
.timer .card .col:hover {
	transition: all ease-in-out 0.3s;
	transform: scale(1.05) rotate(-1deg);
}
.timer .title i {
	font-size: 30px;

	display: inline-flex;
	align-items: center;
	width: 48px;
	height: 48px;
}
.timer .skill i {
	font-size: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	fill: #ff5828;
}
.timer .skill img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	border-radius: 5px;
	width: 40px;
	height: 40px;
	object-fit: contain;
	fill: #ff5828;
}
@media only screen and (max-width: 768px) {
	.timer .card-body .title {
		margin-bottom: 0.5rem;
	}
	.timer .card {
		text-align: left;
		padding: 5px 5px;
		transition: all ease-in-out 0.3s;
		border-radius: 20px;
		box-shadow: 0 15px 20px 0px rgba(0, 0, 0, 0.1);
	}
	.timer .card-body .row .col {
		margin-bottom: 0;
		padding: 5px 5px;
	}
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume ul {
	padding-left: 0;
}
.resume .resume-title {
	font-size: 20px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 40px;
	text-decoration: underline;
	text-underline-offset: 8px;
}

.resume .resume-item {
	padding: 0 0 20px 20px;
	margin-top: -2px;
	border-left: 2px solid #000000;
	position: relative;
}

.resume .resume-item h4 {
	line-height: 18px;
	font-size: 16px;
	font-weight: 600;

	color: #000000;
	margin-bottom: 10px;
}

.resume .resume-item h5 {
	font-size: 14px;
	padding: 5px 15px;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
}

.resume .resume-item ul {
	padding-left: 0px;
}

.resume .resume-item ul li {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.8;
	padding-bottom: 10px;
}
.resume .resume-item p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.8;
	padding-bottom: 10px;
}

@media (max-width: 991px) {
	.resume {
		padding: 0px 0px;
	}
}

.resume .resume-item:last-child {
	padding-bottom: 0;
}

.resume .resume-item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50px;
	left: -9px;
	top: 0;
	background: #ebebeb;
	border: 2px solid #000000;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.details .details-item {
	margin-bottom: 30px;
}

.details #details-flters {
	padding: 0;
	margin: 0 auto 25px auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
	padding: 2px 15px;
}

.details #details-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.details #details-flters li:hover,
.details #details-flters li.filter-active {
	color: #000000;
}

.details #details-flters li:last-child {
	margin-right: 0;
}

.details .details-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: rgba(69, 80, 91, 0.8);
}

.details .details-wrap::before {
	content: "";
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	left: 30px;
	right: 30px;
	top: 30px;
	bottom: 30px;
	transition: all ease-in-out 0.3s;
	z-index: 2;
	opacity: 0;
}

.details .details-wrap .details-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.details .details-wrap .details-info::before {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	top: 35px;
	left: 35px;
	border-top: 3px solid #d7dce1;
	border-left: 3px solid #d7dce1;
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.details .details-wrap .details-info::after {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 35px;
	right: 35px;
	border-bottom: 3px solid #d7dce1;
	border-right: 3px solid #d7dce1;
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.details .details-wrap .details-info h4 {
	font-size: 20px;
	color: #45505b;
	font-weight: 600;
}

.details .details-wrap .details-info p {
	color: #45505b;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}

.details .details-wrap .details-links {
	text-align: center;
	z-index: 4;
}

.details .details-wrap .details-links a {
	color: #45505b;
	margin: 0 2px;
	font-size: 28px;
	display: inline-block;
	transition: 0.3s;
}

.details .details-wrap .details-links a:hover {
	color: #148af9;
}

.details .details-wrap:hover::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
}

.details .details-wrap:hover .details-info {
	opacity: 1;
}

.details .details-wrap:hover .details-info::before {
	top: 15px;
	left: 15px;
}

.details .details-wrap:hover .details-info::after {
	bottom: 15px;
	right: 15px;
}
.location .title {
	margin-bottom: 1rem;
	font-size: 14pt;
	text-align: center;
}
.location img {
	width: 100%;
	height: 200px;
	object-fit: cover; /* ensures no distortion */
}

/*--------------------------------------------------------------
# Entourage Details
--------------------------------------------------------------*/
.entourage {
	text-align: center;
}
.entourage p {
	margin: 0;
}

.entourage .sponsors .primary,
.secondary {
	font-family: "Amsterdam", Arial, serif;
}

.sponsors .left {
	text-align: end;
}
.sponsors .right {
	text-align: start;
}
@media (max-width: 992px) {
	.sponsors .left,
	.sponsors .card-body {
		padding-right: 5px;
		padding-left: 0;
	}
	.sponsors .left p {
		font-size: 10pt;
	}
	.sponsors .right,
	.sponsors .card-body {
		padding-right: 0;
		padding-left: 5px;
	}
	.sponsors .right p {
		font-size: 10pt;
	}
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}

.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 #000000;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #000000;
}

.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(69, 80, 91, 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: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
	padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	text-align: center;
	padding: 70px 20px 80px 20px;
	transition: all ease-in-out 0.3s;
	border-radius: 20px;
	box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.05);
}
.bg-light .services .icon-box {
	background-color: #fff;
}
.bg-dark .services .icon-box {
	background-color: #1d1c1c;
}

.services .icon-box .icon {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease-in-out 0.3s;
	position: relative;
}

.services .icon-box .icon i {
	font-size: 36px;
	transition: 0.5s;
	position: relative;
}

.services .icon-box .icon svg {
	position: absolute;
	top: 0;
	left: 0;
}

.services .icon-box .icon svg path {
	transition: 0.5s;
}
/* .bg-light .services .icon-box .icon svg path {
  fill: #f0f0f0 !important;
}
.bg-dark .services .icon-box .icon svg path {
  fill: #29292941 !important;
} */

.services .icon-box h4 {
	font-weight: 600;
	margin: 10px 0 15px 0;
	font-size: 22px;
}

.services .icon-box h4 a {
	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 35px 0 rgba(0, 0, 0, 0.08);
	transform: scale(1.05) rotate(-2deg);
}

.services .iconbox-blue i {
	color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
	color: #fff;
}

.services .iconbox-blue:hover .icon path {
	fill: #47aeff !important;
}

.services .iconbox-orange i {
	color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
	color: #fff;
}

.services .iconbox-orange:hover .icon path {
	fill: #ffa76e !important;
}

.services .iconbox-pink i {
	color: #e80368;
}

.services .iconbox-pink:hover .icon i {
	color: #fff;
}

.services .iconbox-pink:hover .icon path {
	fill: #e80368 !important;
}

.services .iconbox-yellow i {
	color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
	color: #fff;
}

.services .iconbox-yellow:hover .icon path {
	fill: #ffbb2c !important;
}

.services .iconbox-red i {
	color: #ff5828;
}

.services .iconbox-red:hover .icon i {
	color: #fff;
}

.services .iconbox-red:hover .icon path {
	fill: #ff5828 !important;
}

.services .iconbox-teal i {
	color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
	color: #fff !important;
}

.services .iconbox-teal:hover .icon path {
	fill: #11dbcf !important;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #111;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #90c8fc;
	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;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #000000;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #000000;
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.bg-light .say-hi {
	width: 220px;
	height: 50px;
	border: 2px solid #333;
	background: #fff;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 0;
	box-shadow: 0px 0 50px 0 rgba(0, 0, 0, 0.27);
	transition: ease-in-out 0.3s;
}
.bg-light .say-hi a {
	color: #000000;
}
.bg-light .say-hi::before,
.bg-light .say-hi::after {
	position: absolute;
	background: #fff;

	border-radius: 10px;
	z-index: -1;
	transition: 1s;
	content: "";
}
.bg-light .say-hi::before {
	height: 50px;
	width: 220px;
}
.bg-light .say-hi::after {
	width: 220px;
	height: 30px;
}
.bg-light .say-hi:hover::before {
	width: 0px;
	background: #fff;
}
.bg-light .say-hi:hover::after {
	height: 0px;
	background: #fff;
}
.bg-light .say-hi:hover {
	width: 250px;
	background: #fff;
	color: #000000;
	border: 2px solid #000000;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.bg-dark .say-hi {
	width: 250px;
	height: 50px;
	color: #ffffff;
	background: #2a2a2a;
	border: 2px solid #2a2a2a;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 0;
	transition: 1s;
	box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.211);
}
.bg-dark .say-hi::before,
.bg-dark .say-hi::after {
	position: absolute;
	color: #fff;
	background: #2a2a2a;
	z-index: -1;
	transition: 1s;
	content: "";
}
.bg-dark .say-hi::before {
	height: 50px;
	width: 130px;
}
.bg-dark .say-hi::after {
	width: 250px;
	height: 30px;
}
.bg-dark .say-hi:hover::before {
	width: 0px;
	background: #2a2a2a;
}
.bg-dark .say-hi:hover::after {
	height: 0px;
	background: #2a2a2a;
}
.bg-dark .say-hi:hover {
	background: #2a2a2a;
	color: #ffffff;
	border: 2px solid #ffffff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.contact .info {
	width: 100%;

	background: #fff;
}

.contact .row {
	text-align: center;
	align-content: center;
	justify-content: center;
}

.contact .row .say-hi {
	margin-top: 50px;
	margin-bottom: 10px;
}

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

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #45505b;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #728394;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #000000;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	background: #fff;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.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: 4px;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	background: #000000;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #0678e3;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	font-size: 14px;
	text-align: center;
	padding: 30px 0;
}

#footer h3 {
	font-size: 36px;
	font-weight: 700;
	position: relative;

	padding: 0;
	margin: 0 0 15px 0;
}

#footer p {
	font-size: 15;
	font-style: italic;
	padding: 0;
	margin: 0 0 40px 0;
}

#footer .social-links {
	margin: 0 0 40px 0;
}

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

#footer .social-links a:hover {
	background: #0678e3;
	color: #fff;
	text-decoration: none;
}

#footer .copyright {
	margin: 0 0 5px 0;
}

#footer .credits {
	font-size: 13px;
}
