/**
* Template Name: Ninestars
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/ninestars-free-bootstrap-3-theme-for-creative/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

:root {
	--purple: #3D3B81;
	--orange: #FF6700;
	--blue: #4B48BD;
	--green: #23B963;
	--dark: #3D3D3D;
	--white: #FFFFFF;
	--dark-light: #878787;
	--gray: #D9D9D9;
	--gray-light: #F4F4F4;
	--orange-light: #FFF0E5;
	--purple-light: #F0F0FF;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-size:16px;
}

a {
  color: #eb5d1e;
  text-decoration: none;
}

a:hover {
  color: #ef7f4d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Poppins", sans-serif;
}

.btn {
	border:0;
	color:var(--white)!important;
}
.btn-rounded {
	border-radius:25px;
	padding: 8px 20px;
}
.btn-arrow .bi {
	display:none;
	font-size: 24px;
	line-height: 0;
	margin-left: 10px;
}
.btn-arrow:hover .bi {
	display:inline;
	transition: 0.3s;
}
.btn-warning{color:#212529;background-color:var(--orange);border-color:#ffc107}
.btn-warning:hover{color:#212529;background-color:#DF7025;border-color:#d39e00}
.btn-primary{color:#fff;background-color:var(--blue);border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}

.text-orange {
	color: var(--orange)!important;
}
.text-blue {
	color: var(--blue);
}
@media (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
  		max-width: 1440px;
	}
}

textarea {
	resize: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #eb5d1e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ee7843;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 72px;
  	transition: all 0.5s;
  	z-index: 997;
  	transition: all 0.5s;
  	background: var(--white);
}

#header .logo h1 {
	font-size:24px;
  	margin: 0;
  	line-height: 1;
  	font-weight: 400;
  	letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: var(--purple);
  	text-decoration: none;
}

#header .logo img {
	padding: 5px;
  	margin: 0;
  	max-height: 40px;
	background-color: var(--purple);
	border-radius:100%;
}

@media (max-width: 768px) {
	#header .logo h1 {
		font-size:1.3em;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
  	padding: 0;
  	display: flex;
  	list-style: none;
  	align-items: center;
}

.navbar li {
  	position: relative;
}

.navbar a,
.navbar a:focus {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
	color: var(--purple);
	padding:8px 15px;
  	white-space: nowrap;
  	transition: 0.3s;
}

.navbar a > i,
.navbar a:focus > i {
  	font-size: 12px;
  	line-height: 0;
  	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: var(--orange);
}

.navbar .dropdown ul {
  	display: block;
  	position: absolute;
  	left: 14px;
  	top: calc(100% + 30px);
  	margin: 0;
  	padding: 0;
  	z-index: 99;
  	opacity: 0;
  	visibility: hidden;
  	background: #fff;
  	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  	transition: 0.3s;
}

.navbar .dropdown ul li {
  	min-width: 200px;
}

.navbar .dropdown ul a {
  	padding: 10px 20px;
  	font-size: 15px;
  	text-transform: none;
  	color:var(--blue);
}

.navbar .dropdown ul a i {
  	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  	background-color: var(--orange);
  	color:var(--white);
}

.navbar .dropdown:hover>ul {
  	opacity: 1;
  	top: 100%;
  	visibility: visible;
}

.navbar .dropdown .dropdown ul {
  	top: 0;
  	left: calc(100% - 30px);
  	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  	opacity: 1;
  	top: 0;
  	left: 100%;
  	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
    	left: -90%;
  	}

  	.navbar .dropdown .dropdown:hover>ul {
    	left: -100%;
  	}
}

.navbar-button li {
	margin-left:5px;
}
.navbar-button a i {
	font-size: 20px;
	margin-right: 5px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  	color: var(--purple);
  	font-size: 28px;
  	cursor: pointer;
  	display: none;
  	line-height: 0;
  	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  	color: var(--purple);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index:1;
  color:var(--purple)
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  *left: 0;
  padding: 40px 0 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  min-width:80%;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--purple);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .dropdown ul {
  position: initial;
  display: block;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
}
.navbar-mobile .dropdown .dropdown ul {
	display:block;
	visibility: visible;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.navbar-mobile li.separated {
	height:1px;
	background-color:var(--gray-light);
	margin:30px 0;
}
.navbar-mobile li a.btn {
	margin:10px 20px;
}
.navbar-mobile li a.btn i {
	margin-right:10px;
	font-size:16px;
}

/**
* Mobile Navigation 
*/
.header-scrolled {
	background-color:var(--purple)!important;
}

.header-scrolled .logo h1 a, .header-scrolled .logo h1 a:hover {
	color:var(--white)!important;
}

.header-scrolled .navbar a {
	color:var(--white);
}

.header-scrolled .navbar a.active,
.header-scrolled .navbar a:hover {
	color:var(--orange);
}


.header-scrolled .navbar-mobile a {
	color:var(--purple);
}

.bg-navbar-purple .navbar-top > ul > li > a:hover,
.bg-navbar-purple .navbar-top > ul > li > a:focus,
.bg-navbar-purple .navbar-top > ul > li > a.active {
	color:var(--orange)!important;
}

.header-scrolled .mobile-nav-toggle {
	color:var(--white)!important;
}

.header-scrolled .mobile-nav-toggle.bi-x {
  	color: var(--purple)!important;
}

.header-scrolled .navbar-mobile .dropdown ul {
	margin:0 20px;
	padding:0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  *height: 70vh;
  background-color: var(--purple);
  color:var(--white);
  padding-top:0!important;
}

#hero h2 {
  margin: 0;
  font-weight: 600;
  line-height: 64px;
  color: var(--white);
	font-size: 48px;
	letter-spacing: 1px;
}

#hero p {
  line-height:32px;
	color: var(--gray);
	margin: 22px 0;
	font-size: 21px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    *height: calc(100vh - 72px);
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
	margin-bottom:40px;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero p {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    *width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    *width: 80%;
  }
}

@media (max-height: 600px) {
  #hero {
    *height: 120vh;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
	margin:0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-border-top {
  border-top:15px solid var(--gray-light);
}

.section-gray-light {
	background-color:var(--gray-light);
}

.section-orange {
	background-color:var(--orange);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title p {
	font-size:18px;
	line-height:32px;
	color:var(--black);
	font-weight:normal;
}

.section-title h3 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 48px;
  font-weight: 600;
  *color: #4e4039;
  line-height:56px;
}

.section-page {
	padding:120px 0;
}

.section-page h2 {
	font-size: 48px;
	line-height:72px;
	font-weight:600;
}

.section-page p {
	font-size: 18px;
	line-height:32px;
}

@media (max-width: 768px) {
	section {
	  padding: 60px 20px!important;
	}
}

.about,
.advantages,
.services,
.testimonial {
	padding:160px 0;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form .card {
	width:60%;
	margin:0 auto;
	border-radius:15px;
	border:0;
}

.form .card-header {
	font-size:24px;
	font-weight:600;
	padding-top:30px;
	text-align:center;
	border:0;
	background:transparent;
}

.form .form-group label {
	font-weight:600;
}

.form .form-control {
	border:0;
	border-radius:25px;
}

.form .form-control::placeholder {
	color:var(--gray);
}

@media (max-width: 768px) {
	.form {
		padding:0!important;
		padding-top:20px!important;
	}
	
	.form .container {
		padding:0;
	}
	
	.form .card {
		width:100%;
		border-radius: 0;
	}
}

.form .input-group {
	border:0;
	border-radius:25px;
	background-color: var(--white);
	*overflow:hidden;
}

.form .input-group .form-control {
	*border-radius:0;
}

.form .form-check {
	margin-top:1.6rem;
	margin-bottom:1.6rem;
}

.form button {
	margin-top:2rem;
}

.form .required label::after {
	content: "*";
	color: #990000;
	padding-left:6px;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 600;
	font-size: 42px;
	line-height:64px;
  *color: #4e4039;
}

.about p {
  margin: 20px 0;
	line-height: 30px;
  *color: #5a6570;
}

@media (max-width: 768px) {
	.about h3 {
		font-size: 2em;
		line-height:1.3em;
	}
}

.single-slider {
	margin:0 150px;
}

@media (max-width: 768px) {
	.single-slider {
		margin:0;
	}
}

/*--------------------------------------------------------------
# Advantages
--------------------------------------------------------------*/
.advantages {
	margin: 0 0 40px 0;
}
.advantages .icon-box {
  padding: 0 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
  *border-radius: 15px;
  text-align: center;
  *border-bottom: 3px solid #fff;
  max-height: 130px;
  overflow:visible;
}
.advantages .row > div + div {
	border-left:1px solid #ccc;
}
.advantages .icon {
  margin-bottom: 25px;
  
}
.advantages img {
	width:80px;
	padding: 12px;
	background-color: var(--orange-light);
	border-radius: 6px;
}
.advantages .title {
  font-weight: 600;
  *margin-bottom: 15px;
  font-size: 16px!important;
  line-height:28px;
}

@media (max-width: 768px) {
	.advantages h3 {
		font-size: 2em;
		line-height:1.3em;
	}
	
	.advantages .icon-box { 
		text-align:left;
		display:flex;
		content-align:left;
		align-items:center;
	}
	
	.advantages .icon-box > * {
		margin:0;
	}
	
	.advantages img {
		width:50px;
		height:50px;
		margin-right:20px;
	}
	
	.advantages .row > div > span.separated {
		background-color:var(--gray);
		height:1px;
		width:70%;
		margin:0 auto;
		margin-top:30px;
		margin-bottom:20px;
	}
	
	.advantages .row > div + div {
		border-left:0;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  *margin: 0 0 40px 0;
  background: #fff;
  *box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  *text-align: center;
}

.icon-box-about .icon {
	width:100px;
	height:100px;
	margin:0 auto;
	background-image:url('../img/icon_box_bg.png');
	background-position:center;
	background-repeat:no-repeat;
	background-size:100%;
	display: flex;
	align-items: center;
	margin-bottom:20px;
}
.icon-box-about .icon > img {
	width:30px;
	margin:0 auto;
}

.icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
 font-size:24px;
}

.icon-box .title a {
  color: #111;
}

.icon-box:hover .title a {
  	color:var(--orange);
	border-bottom:2px solid var(--orange);
}

.icon-box .description {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 0;
}

.swiper-slide {
	height:auto;
}

.services-slider {
	padding:0 0 60px 0;
}

.bg-orange-light {
	background-color:var(--orange-light);
}

.bg-purple-light {
	background-color:var(--purple-light);
}

@media (max-width: 768px) {
	.services h3 {
		font-size: 2em;
		line-height:1.3em;
	}
}

.process {
	background-image:url('../img/process_bg.png');
	background-position:center;
	background-repeat:no-repeat;
	background-size:100%;
	padding:160px 0;
}

@media (max-width: 768px) {
	.process .row > div {
		margin-bottom:20px;
	}
}

/*--------------------------------------------------------------
# Portfolio

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #eb5d1e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #eb5d1e;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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 #eb5d1e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eb5d1e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(122, 105, 96, 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;
}
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--white);
  border-radius:15px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #eb5d1e;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  font-weight: 600;
  padding-right: 25px;
  cursor: pointer;
  *color: #c54811;
  transition: 0.3s;
}

.faq .faq-list .faq-content {
	font-size: 16px;
  line-height: 32px;
	padding-top:20px;
	padding-bottom:20px;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: -2px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #eb5d1e;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact Us

.contact .info {
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #eb5d1e;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  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: #7a6960;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #eb5d1e;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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;
  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 {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #eb5d1e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef7f4d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: var(--purple);
  padding: 0 0 30px 0;
 color: var(--white);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background-color: var(--purple);
  background-image: url('../img/logo 2.svg');
  	background-position: center bottom;
  	background-repeat: no-repeat;
	background-size:20%;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  *font-size: 22px;
  *margin: 0 0 30px 0;
  *padding: 2px 0 2px 0;
  line-height: 1;
  *font-weight: 700;
  text-transform:uppercase;
}

#footer .footer-top .footer-contact p {
  line-height: 24px;
  margin-bottom: 0;
  *color: #5c5c5c;
}

#footer .footer-top .footer-contact img {
	margin:20px 0;
}

#footer .footer-top .footer-contact a {
	color:var(--white);
	text-decoration:underline;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  *color: #212529;
  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: #f39e7a;
  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: var(--white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--orange);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #eb5d1e;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}

.list-group-item {
	padding-left:30px;
	background:none;
	border:0;
}

.list-group-phone::before,
.list-group-mail::before,
.list-group-map::before,
.list-group-phone a::before,
.list-group-mail a::before,
.list-group-map a::before {
	font-family:'FontAwesome';
	position:absolute;
	left:0;
	font-size:20px;
}
.list-group-phone::before {
	content:"\f095";
}
.list-group-mail::before {
	content:"\f0e0";
}
.list-group-map::before {
	content:"\f041";
}

@media (max-width: 768px) {
	#footer .footer-top {
		padding: 60px 20px 30px 20px;
		background-position: center bottom;
		background-size:80%;
	}
	
	#footer .footer-contact {
		text-align:center;
	}
	
	.list-group-item {
		padding:.75rem 0;
	}
	
	.list-group-phone::before {
		content:"";
	}
	.list-group-mail::before {
		content:"";
	}
	.list-group-map::before {
		content:"";
	}
	
	.list-group-phone a::before,
	.list-group-mail a::before,
	.list-group-map a::before {
			position:relative;
			margin-right:10px;
	}
	.list-group-phone a::before {
		content:"\f095";
	}
	.list-group-mail a::before {
		content:"\f0e0";
	}
	.list-group-map a::before {
		content:"\f041";
	}
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
	*background-color: var(--orange);
	background-image: url('../img/count_bg.svg'), url('../img/count_left.svg'), url('../img/count_right.svg');
  	background-position:center center, left top, right bottom;
  	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size:60%, 10%, 10%;
}
.counts .counters span {
  font-size: 64px;
  display: inline-flex;
  *color: var(--white);
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  *color: var(--white);
}

.counts .counters > div + div {
	border-left:1px solid var(--white);
}

@media (max-width: 768px) {
	.counts {
		background-size:90%, 30%, 30%;
	}

	.counts .counters span {
		font-size:48px;
	}
	
	.counts .counters > div + div {
		border:0;
	}
	
	.counts .counters span.separated {
		background-color:var(--gray);
		height:1px;
		width:60%;
		margin:0 auto;
		margin-top:40px;
		margin-bottom:30px;
	}
}

.count-home {
	color: var(--white);
}

.count-about {
	padding:160px 0;
}
.count-about h3 {
	font-size:40px;
	line-height:72px;
	padding: 0 200px;
}
@media (max-width: 768px) {
	.count-about h3 {
		font-size:28px;
		line-height:42px;
		padding: 0;
	}
	.count-about .counters > div + div {
		border-left:0!important;
	}
}
.count-about .counters span {
	font-size:64px;
	color: var(--orange);
	font-size:600;
}
.count-about .counters p {
	font-size:24px;
}
.count-about .counters .description {
	font-size:18px;
	line-height:32px;
}
.count-about .counters > div + div {
	border-left: 1px solid var(--gray);
}
/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.testimonial .section-title h3 {
	font-size:40px;
	line-height:64px;
}
.testimonial-box {
	text-align:center;
	color:var(--dark);
	padding:0 250px;
	margin-bottom:80px;
}
.testimonial-box .description {
	font-size:24px;
	color:var(--orange);
	font-weight:600;
	padding:20px 0;
}
.testimonial-box .title {
	font-size:18px;
	color:#000;
	font-weight:600;
}

@media (max-width: 768px) {
	.testimonial .section-title h3 {
		font-size:28px;
		line-height:40px;
	}
	
	.testimonial-box {
		padding:0;
	}
	
	.testimonial-box .description {
		font-size:18px;
	}
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.tagline {
	background-image: url('../img/tagline_bg.svg'), url('../img/tagline_left.svg'), url('../img/tagline_right.svg');
  	background-position: center center, left top, right bottom;
  	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size:60%, 15%, 15%;
    *background-color:var(--gray-light);
}

.tagline .section-title {
	padding:0;
}
.tagline p {
	color: var(--blue);
	font-size: 64px;
	font-weight: 500;
	margin: 0;
	padding: 0;
	text-align:center;
}

@media (max-width: 768px) {
	.tagline {
		background-size:100%, 25%, 25%;
	}
	
	.tagline p {
		font-size: 40px;
	}
}

.swiper-pagination-bullet {
	width:15px;
	height:15px;
}
.swiper-pagination-bullet-active {
	background:var(--orange);
}

.clients .list-group-item {
	padding:0;
}

.list-group-partner li {
	font-size:16px;
	font-weight:600;
}

.list-group-partner > li > span.badge {
	font-size:32px;
	padding:10px;
	border-radius:6px;
	background-color: var(--orange-light);
	min-width:50px;
	color: var(--orange);
	margin-right:20px;
}
.list-group-partner > li.separated {
	height:1px;
	background-color: var(--gray);
	margin:20px 0;
	padding:0;
}

.about-tagline {
	color: var(--white);
	padding:120px 0;
}
.about-tagline h3 {
	font-size:40px;
	font-weight:normal;
	padding:0 300px;
}

@media (max-width: 768px) {
	.about-tagline h3 {
		padding:0;
		font-size:28px;
		line-height: 48px;
		margin-top: 50px;
	}
}

:root {
  --marquee-width: 80vw;
  --marquee-height: 5vw;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 8;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  *width: var(--marquee-width);
  height: var(--marquee-height);
  overflow: hidden;
  position: relative;
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  *white-space: nowrap;
}

.marquee-content li img {
  *width: 100%;
  /* height: 100%; */
  *border: 2px solid #eee;
  height:50px
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}

.input-group-prepend button {
	margin:0;
	color: var(--dark)!important;
}

.input-group-prepend button > span {
	display:inline;
}
.scrollable-menu {
    height: auto;
    max-height: 18rem;
    overflow-x: hidden;
}
.dropdown-phone .dropdown-item {
	white-space:normal;
}

.has-error > .form-control,
.has-error > .input-group {
	border:2px solid var(--danger);
}

.form-group-block {
	padding: .375rem .75rem;
	background: #fff;
	border-radius: 25px;
	margin-bottom: 10px;
}
.form-group-block .form-check {
	margin:0;
}