/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #8ec641;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

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

@media (max-width: 600px) {
  .container {
    padding: 0 25px;
  }
}

.cursor	{
	cursor: pointer;
}

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

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

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #eee;
  height: 40px;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #8ec641;
}

#topbar .contact-info i {
  color: #8ec641;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #8ec641;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

@media (max-width: 600px) {
  #topbar .container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  #topbar .social-links {
    display: none;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ab3298;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  top: 40px;
  -webkit-box-shadow: 0px 2px 15px rgba(25, 25, 25, 0.15);
          box-shadow: 0px 2px 15px rgba(25, 25, 25, 0.15);
}

#header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  width: auto;
  height: 75px;
  z-index: 10;
}

#header .logo img {
  width: auto;
  height: 75px;
}

/**
* Button *
*/
.btn {
  display: block;
  background: #8ec641;
  color: #fff;
  border: 0 !important;
  border-radius: 50px;
  padding: 12px 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.btn:active,
.btn:hover,
.btn:visited {
  background: #8ec641;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  padding: 5px 2px;
}

.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: #8ec641;
  border-color: #8ec641;
}

.navbar .dropdown .fa-chevron-down {
  display: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ab3298;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #8ec641;
}

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

body#home li.nav-home > a,
body#about li.nav-about > a,
body#services li.nav-services > a,
body#contact li.nav-contact > a {
  color: #8ec641;
  border-color: #8ec641;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #333;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none !important;
}

.mobile-nav-toggle.fa-bars {
  color: #222;
  margin-right: 10px;
}

@media (max-width: 600px) {
  .mobile-nav-toggle {
    display: block !important;
  }
  .navbar ul {
    display: none;
  }
  .navbar .dropdown .fa-chevron-down {
    display: inline-block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #8ec641;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #8ec641;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  margin-bottom: -200px;
}

#hero .container {
  position: relative;
  padding-left: 50%;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #333;
}

#hero h1 > span {
  display: block;
  text-transform: capitalize;
  font-size: 32px;
}

#hero h2 {
  color: #333;
  margin: 10px 0 0 0;
  font-size: 28px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  background: #8ec641;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

.content-interior #hero {
  width: 100%;
  height: 400px;
  padding: 0;
  margin: 118px 0 0;
}

.content-interior #hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding: 0;
}

.content-interior #hero .container .hero__caption {
  width: 100%;
  padding: 20px 0;
}

.content-interior #hero .container .hero__caption h1 {
  max-width: 1320px;
  padding: 0 10px;
  margin: auto;
  color: #fff;
  text-transform: none;
  text-shadow: 0 0 15px #333;
}

body#about .content-interior #hero {
  background: url("../img/about-hero.jpg") top center;
  background-size: cover;
}

body#services .content-interior #hero {
  background: url("../img/services-hero.jpg") top center;
  background-size: cover;
}

body#contact .content-interior #hero {
  background: url("../img/contact-hero.jpg") top center;
  background-size: cover;
}

@media (min-width: 1180px) {
  #hero {
    background-attachment: fixed;
  }
  #hero .container {
    padding-left: 40%;
  }
}

@media (max-width: 1180px) {
  .content-interior #hero .container .hero__caption h1 {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 60vh;
  }
  #hero .container {
    padding: 100px 0 0 40%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .content-interior #hero:before {
    display: none;
  }
  .content-interior #hero .container .hero__caption h1 {
    font-size: 36px;
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  #hero {
    position: relative;
    height: 70vh;
    padding: 80px 0 60px;
  }
  #hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
  }
  #hero .container {
    padding: 100px 20px 0;
    text-align: center;
    z-index: 1;
  }
  #hero .container h1,
  #hero .container h2 {
    text-shadow: 0 0 15px #fff;
  }
  #hero .container h1 > span,
  #hero .container h2 > span {
    font-size: 24px;
  }
  .content-interior #hero {
    margin-top: 110px;
  }
  .content-interior #hero .container .hero__caption h1 {
    max-width: 95%;
  }
  body#contact .content-interior #hero {
    background-position-x: -250px;
  }
  body#services .content-interior #hero {
    background-position-x: -620px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #333;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #8ec641;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #8ec641;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #8ec641;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 56px;
  color: #8ec641;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1180px) {
  .why-us .container {
    max-width: 1040px !important;
  }
  .why-us .icon-boxes {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-flow: row !important;
            flex-flow: row !important;
  }
  .why-us .icon-boxes > .row .align-items-stretch {
    width: calc(100% / 3);
  }
}

@media (max-width: 600px) {
  .why-us .icon-boxes {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-flow: row !important;
            flex-flow: row !important;
  }
  .why-us .icon-boxes > .row .align-items-stretch {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 10px 0 60px;
}

.about-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 130px;
}

.about .img {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  background-position-y: -10px;
  min-height: 400px;
}

.about h2 {
  font: 32px "Raleway";
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #333;
}

.about h5 {
  margin-bottom: 0;
  opacity: 0.5;
}

.about-area {
  padding: 40px 0;
}

.about-caption {
  text-align: left;
}

.about-caption .section-title {
  padding-bottom: 15px;
}

.about-caption .section-title h2 {
  text-align: left;
}

.about-caption .section-title h2:before {
  left: 0;
}

.about-caption .section-title h2:after {
  left: 40px;
}

.about-caption > img {
  width: 500px;
  border-radius: 6px;
  float: right;
  margin: 0 0 15px 25px;
}

.about-caption p:last-of-type {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1180px) {
  .about {
    padding: 30px 0;
  }
  .about-content {
    padding: 0 100px;
  }
}

@media (max-width: 900px) {
  .about {
    padding: 30px 0 0;
  }
  .about-content {
    padding: 0 100px 25px;
  }
  .about-caption > img {
    width: 400px;
  }
  .about-caption p:last-of-type {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 0;
  }
  .about .img {
    background-position-y: 0;
  }
  .about-content {
    padding: 0 20px 25px;
    text-align: center;
  }
  .about-caption > img {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
  .about-caption .pera-top {
    text-align: center;
  }
  .about-caption .section-title h2 {
    text-align: center;
  }
  .about-caption .section-title h2:before {
    left: calc(50% - 60px);
  }
  .about-caption .section-title h2:after {
    left: calc(50% - 20px);
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #f5f5f5;
  padding: 40px 0;
}

.services .swiper-slide {
  border-top: 40px solid transparent;
}

.services .swiper-pagination {
  position: relative;
  margin-top: 15px;
  bottom: 0;
}

.services .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.services-interior > .container > .row .col-lg-3 > ul > li {
  margin-bottom: 8px;
  list-style-type: circle;
}

.services-interior > .container > .row .col-lg-9 p:last-of-type {
  margin-top: 30px;
  text-align: center;
}

.services-area .col-xl-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.services-area .col-xl-12 .services__item {
  width: calc(100% / 3 - 15px);
  color: #222;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.services-area .col-xl-12 .services__item > i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
  border-radius: 100px;
  background-color: #8ec641;
}

.services-area .col-xl-12 .services__item .secondary-btn {
  padding: 12px 30px;
  font-size: 14px;
  margin-top: 10px;
  background: #ab3298;
  color: #fff;
  border-radius: 100px;
  display: inline-block;
  transition: all ease .2s
}

.services-area .col-xl-12 .services__item .secondary-btn:hover {
	color: #fff;
	opacity: .6
}

.services .services-box {
  padding: 62px 30px 25px 30px;
  width: 100%;
  height: 270px;
  position: relative;
  text-align: center;
  background: #fff;
}

.services .services-box i {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 38px;
  background: #8ec641;
  color: #fff;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
}

.services .services-box span {
  font: 36px "Raleway";
  display: block;
  font-weight: 600;
  color: #082744;
}

.services .services-box p {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

@media (max-width: 900px) {
  .services .services-box {
    height: 250px;
  }
  .services-interior > .container > .row .col-lg-9 p:last-of-type {
    text-align: center;
  }
  .services__item {
    width: calc(100% / 2 - 15px) !important;
  }
}

@media (max-width: 600px) {
  .services .services-box {
    height: 220px;
  }
  .services__item {
    width: 95% !important;
  }
}

.swiper-pagination-bullet-active {
	background: #ab3298;
}

/*--------------------------------------------------------------
# Analysis
--------------------------------------------------------------*/
.analysis {
  padding: 40px 0;
  color: #fff;
  background-color: #8ec641;
}

.analysis .section-title {
  padding-bottom: 20px;
}

.analysis .section-title h2 {
  color: #fff;
}

.analysis .section-title h2:after {
  background-color: #f5f5f5;
}

.analysis-text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

.analysis-text .btn {
  margin-top: 20px;
  color: #8ec641;
  background-color: #f5f5f5;
}

.analysis-text .btn:hover {
  background-color: #fff;
}

@media (max-width: 900px) {
  .analysis-text {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .analysis-text {
    width: 95%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-title {
  padding-bottom: 0;
}

.testimonials .swiper-pagination {
  position: relative;
  margin-top: 0 !important;
  bottom: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  -webkit-box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
          box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  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: 15px auto 15px auto;
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    text-align: center;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-area {
  padding: 60px 0;
}

.contact-details {
  width: auto;
  max-width: 300px;
}

.contact-details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  margin-bottom: 15px;
}

.contact-details-icon {
  width: 30px;
}

.contact-details-icon > i {
  color: #8ec641;
}

.contact-details-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 40px;
  width: 900px;
  margin: auto;
}

.contact-form-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-form .col-lg-6,
.contact-form .col-lg-12 {
  margin-bottom: 20px;
}

.contact-form .col-lg-6.--error label,
.contact-form .col-lg-12.--error label {
  color: #f00;
}

.contact-form .col-lg-6.--error .contact-form-input,
.contact-form .col-lg-12.--error .contact-form-input {
  border-color: #f00 !important;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #888;
}

.contact-form label.required:after {
  content: "*";
  color: #f00;
  padding-left: 3px;
}

.contact-form input.contact-form-input,
.contact-form textarea.contact-form-textarea {
  border: 1px solid #ccc;
  width: 100%;
  padding: 12px;
  font: 16px "Poppins";
  color: #333;
  border-radius: 4px;
  outline: 0 !important;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

.contact-form input.contact-form-input:hover,
.contact-form textarea.contact-form-textarea:hover {
  border-color: #bbb;
}

.contact-form input.contact-form-input:focus,
.contact-form textarea.contact-form-textarea:focus {
  border-color: #ccc;
  -webkit-box-shadow: 0 0 0 1px #ccc;
          box-shadow: 0 0 0 1px #ccc;
}

.contact-form textarea.contact-form-textarea {
  height: 150px;
}

.contact-form input.btn[readonly],
.contact-form input.contact-form-input[readonly],
.contact-form textarea.contact-form-textarea[readonly] {
  pointer-events: none;
  opacity: 0.6;
}

.contact-form .btn {
  margin: 0 auto;
  width: 200px;
}

.contact-form .messages .--success,
.contact-form .messages .--error {
  padding: 10px 15px;
  margin-bottom: 15px;
  line-height: 125%;
  font-size: 14px;
  font-weight: 600;
  color: #316822;
  border: 1px solid #316822;
  background: #e3e9e4;
  border-radius: 4px;
}

.contact-form .messages .--error {
  color: #ea1600;
  border-color: #ea1600;
  background: #f3e0e0;
}

@media (max-width: 1180px) {
  .contact-form {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #8ec641;
}

#footer > .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .footer__address-icon {
  margin: 3px 8px 0 0;
  width: 20px;
  text-align: center;
}

#footer .footer-top {
  color: #444;
  padding: 60px 0;
  background: #f5f5f5;
  -webkit-box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
          box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top h4 {
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #8ec641;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #8ec641;
}

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

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

#footer .copyright a {
	color: #fff;
	text-decoration: underline;
}

#footer .copyright a:hover {
	text-decoration: none;	
}

.mrmaa {
	margin-top: 20px;
}

.mrmaa > img {
	width: auto;
	height: 60px;
}

@media (max-width: 600px) {
  #footer .footer-top .footer-links {
    margin-top: 30px;
  }
}

.privacy-content {
	padding: 160px 120px 40px;
}

.privacy a {
	word-wrap: break-word;
}

.privacy h1 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
}

.privacy h2 {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 10px;
}

@media (max-width: 600px) {
	#footer .copyright span.pp {
		display: block;
		margin-top: 10px;	
	}
	
	.privacy-content {
		padding: 160px 25px 40px;	
	}
}

.grecaptcha-badge {
  position: absolute;
  left: -9999px;
}
/*# sourceMappingURL=style.css.map */