﻿#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
#preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #29753e;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 3px solid #29753e;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}
a:hover,
a:active,
a:focus {
  color: #aec035;
  text-decoration: none;
}
.shadow-box {
  background: #fff;
  border-top: 4px solid #00bbef;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 16px 0px #d9e1e9;
}
.primary-overlay[data-overlay-dark]:before {
  background: #29753e;
}
.secondary-overlay[data-overlay-dark]:before {
  background: #aec035;
}
.dark-overlay[data-overlay-dark]:before {
  background: #29753e;
}
.left-overlay-dark[data-overlay-dark]:before {
  background: rgba(2, 25, 65, 0.76);
  background: linear-gradient(-90deg, transparent, #29753e 65%);
} 
.bg-primary {
  background: #29753e !important;
}
.bg-secondary {
  background: #286d3b !important;
}
.bg-dark {
  background: #29753e !important;
}
.text-primary,
.text-primary-hover:hover,
.text-primary-hover:active,
.text-primary-hover:focus {
  color: #29753e !important;
}
.text-secondary,
.text-secondary-hover:hover,
.text-secondary-hover:active,
.text-secondary-hover:focus {
  color: #aec035 !important;
}
.text-dark {
  color: #29753e !important;
}
a.text-primary:focus,
a.text-primary:hover,
a.text-primary:active {
  color: #29753e !important;
}
a.text-secondary:focus,
a.text-secondary:hover,
a.text-secondary:active {
  color: #aec035 !important;
}
.cursor-pointer {
  cursor: pointer;
}
.vw-90 {
  width: 90vw;
}
@media screen and (max-width: 1599px) {
  .vw-90 {
    width: 95vw;
  }
}
@media screen and (max-width: 575px) {
  .vw-90 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bg-position {
    background-position: 65% 0% !important;
  }
}
.box-shadow {
  box-shadow: 0 7px 37px rgba(96, 125, 185, 0.11);
}
.border-radius-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.border-radius-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 991px) {
  .border-radius-left {
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
  }
  .border-radius-right {
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
  }
}
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.scroll-to-top i {
  color: #fff;
}
.scroll-to-top:hover {
  color: #232323;
  background: #fff;
}
.scroll-to-top:hover i {
  color: #232323;
}
.scroll-to-top:visited {
  color: #232323;
  text-decoration: none;
}
.butn-style1 {
  position: relative;
  width: auto;
  background: #aec035;
  color: #fff;
  font-weight: 500;
  font-size: 14px !important;
  letter-spacing: 0.2em;
  padding: 8px 30px;
  text-transform: uppercase;
  line-height: 2;
  vertical-align: middle;
  border: none;
  display: inline-block;
  border: 3px solid transparent;
}
.butn-style1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}
.butn-style1 span {
  z-index: 9;
  position: relative;
  display: inline-block;
}
.butn-style1:hover {
  color: #ffffff;
  background: #29753e;
}
.butn-style1:hover:before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -10px;
  left: 8px;
  border-color: #29753e;
}
.butn-style1.medium {
  padding: 7px 20px;
}
.butn-style1.small {
  padding: 6px 13px !important;
  letter-spacing: 0.1em;
}
.butn-style1.lg {
  padding: 12px 30px;
}
.butn-style1.white:hover {
  color: #aec035;
  background: #fff;
}
.butn-style1.white:hover:before {
  border-color: #fff;
}
.butn-style1.primary {
  color: #fff;
  background: #29753e;
}
.butn-style1.primary:before {
  border-color: #29753e;
}
@media screen and (max-width: 1199px) {
  .butn-style1 {
    padding: 9px 20px;
  }
  .butn-style1.small {
    padding: 6px 13px;
  }
  .butn-style1.medium {
    padding: 7px 20px;
  }
}
@media screen and (max-width: 575px) {
  .butn-style1 {
    padding: 7px 15px;
  }
  .butn-style1.medium {
    padding: 6px 13px;
  }
  .butn-style1.small {
    padding: 5px 13px;
  }
}
.header-style1 .attr-nav > ul > li > a.butn-style1 {
  color: #fff;
}
.header-style1 .attr-nav > ul > li > a.butn-style1:hover,
.header-style1 .attr-nav > ul > li > a.butn-style1:active,
.header-style1 .attr-nav > ul > li > a.butn-style1:focus {
  color: #aec035;
}
.butn-style2 {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 10px 35px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  background: #aec035;
  color: #fff;
  line-height: 30px;
  font-size: 16px;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 600;
}
.butn-style2:before {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #29753e;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s,
    -webkit-transform 500ms 0s;
}
.butn-style2:hover,
.butn-style2:active,
.butn-style2:focus {
  color: #ffffff;
}
.butn-style2:hover:before,
.butn-style2:active:before,
.butn-style2:focus:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
.butn-style2.white {
  background-color: #fff;
  color: #29753e;
}
.butn-style2.white:before {
  background-color: #29753e;
}
.butn-style2.white:hover {
  color: #fff;
}
.butn-style2.white:hover:before {
  background-color: #aec035;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
.butn-style2.small {
  padding: 4px 18px !important;
}
.butn-style2.medium {
  padding: 7px 20px !important;
}
@media screen and (max-width: 991px) {
  .butn-style2 {
    padding: 6px 30px;
  }
  .butn-style2.medium {
    padding: 3px 20px !important;
  }
  .butn-style2.small {
    padding: 1px 18px;
    font-size: 11px;
  }
}
.butn-style3 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 8px 30px;
  border-radius: 3px;
  z-index: 1;
  background-color: #29753e;
  font-weight: 600;
  text-transform: uppercase;
}
.butn-style3:before {
  content: "";
  position: absolute;
  background: #aec035;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0, 0);
  transition: all 300ms ease;
  border-radius: 3px;
}
.butn-style3:hover {
  color: #fff;
}
.butn-style3:hover:before {
  transform: scale(1, 1);
}
.butn-style3.white {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.butn-style3.white:hover {
  color: #29753e;
}
.butn-style3.white:before {
  background-color: #fff;
  color: #29753e;
}
.butn-style3.small {
  padding: 3px 18px !important;
}
.butn-style3.medium {
  padding: 6px 20px !important;
}
.butn-style3.blue {
  border: 1px solid #29753e;
  background-color: #29753e;
}
.butn-style3.blue:hover {
  border: 1px solid #29753e;
}
.bd-example button,
.bd-example a {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.list-style1 li {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
}
.list-style1 li i {
  margin-right: 12px;
  color: #29753e;
}
.list-style2 li a {
  color: #fff;
}
.list-style2 li a:hover,
.list-style2 li a:active,
.list-style2 li a:focus {
  color: #aec035;
}
.list-style3 li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.list-style3 li:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .list-style3 li {
    font-size: 14px;
  }
}
.list-style4 li {
  margin-bottom: 10px;
}
.list-style4 li:last-child {
  margin-bottom: 0px;
}
.list-style4 li h6 {
  margin-bottom: 0;
  display: inline-block;
}
.social-icon-style1 li a {
  background-color: #aec035;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
.social-icon-style1 li a:hover {
  background-color: #29753e;
}
.social-icon-style2 a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  pointer-events: auto;
  background: #29753e;
  border: 1px solid #29753e;
  transition-duration: 0.5s;
}
.social-icon-style2 a:hover i {
  background-color: transparent;
  border: 1px solid #fff;
}
.ani-top-bottom {
  animation-name: float-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(-20px);
  }
}
.ani-spin {
  animation: cms-spin 8s infinite;
  transition: all 300ms ease-in-out;
}
@keyframes cms-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.ani-bounce {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}
@-webkit-keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}
.top-bar-info ul {
  margin-bottom: 0;
}
.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}
.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}
.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}
.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}
.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}
.top-social-icon li:last-child {
  padding-right: 0;
}
.top-social-icon li:last-child a {
  padding-right: 0;
}
.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}
.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: #29753e;
}
.navbar > ul > li.current > a:after {
  border-color: transparent #29753e #29753e transparent;
}
.header-style1 .navbar > ul > li.current > a:after {
  border-color: transparent #fff #fff transparent;
}
.header-style1.scrollHeader .navbar-nav li.current > a {
  color: #fff;
}
.header-style1.scrollHeader .navbar-nav li.current > a:hover {
  color: #fff;
}
.header-style1.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #fff #fff transparent;
}
.header-style1 .navbar-nav li.current > a,
.header-style1 .navbar-nav li.active > a {
  background: #29753e;
  color: #fff;
}
.header-style1 .attr-nav > ul > li > a.butn {
  color: #fff;
}
.header-style1 .navbar > ul > li.current > a:after {
  border-color: transparent #fff #fff transparent;
}
@media screen and (min-width: 992px) {
  .header-style1 .navbar-nav > li > a {
    color: #fff;
  }
  .header-style1.scrollHeader .navbar-nav > li > a,
  .header-style1.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #fff;
  }
  .header-style1 .navbar > ul > li.has-sub > a:after,
  .header-style1.scrollHeader .navbar > ul > li.has-sub > a:after {
    border-color: transparent #fff #fff transparent;
  }
  .header-style1 .navbar-nav > li.has-sub:hover {
    background: #29753e;
    color: #fff;
  }
  .header-style1 .navbar-nav > li.has-sub > a:hover {
    color: #fff;
  }
  .header-style1 .navbar > ul > li.has-sub > a:hover:after {
    border-color: transparent #fff #fff transparent;
  }
  .header-style1 .navbar ul ul li.active > a {
    color: #aec035;
  }
  .header-style1 .navbar-nav .has-sub li.current > a {
    color: #aec035;
    background: none;
  }
  .header-style1 .navbar-nav .has-sub li.current > a:hover {
    color: #282b2d;
  }
  .header-style1 .navbar-nav > li.has-sub.current,
  .header-style1 .navbar-nav > li.has-sub.active {
    background: #29753e;
    color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .custom-search {
    position: absolute;
    width: 100%;
    left: 0;
    top: 76px;
  }
}
@media screen and (max-width: 575px) {
  .custom-search {
    top: 69px;
  }
}
.header-style2 .navbar ul ul li.active > a,
.header-style2 .navbar-nav li.current > a {
  color: #aec035;
}
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #aec035 #aec035 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #aec035;
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: #aec035;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #aec035 #aec035 transparent;
}
header.scrollHeader.header-section .navbar-default {
  background-color: #aec035;
}
.header-style2.header-section .navbar-nav > li > a {
  color: #fff;
}
.header-style2.scrollHeader.header-section .navbar > ul > li.has-sub > a:after {
  border-color: transparent #ffffff #ffffff transparent;
}
.header-style2.header-section .navbar ul ul li.active > a,
.header-style2 .navbar-nav li.current > a {
  color: #aec035;
}
.header-style2.header-section .navbar > ul > li.current > a:after {
  border-color: transparent #aec035 #aec035 transparent;
}
@media screen and (min-width: 992px) {
  .header-style2.header-section .navbar > ul > li.has-sub > a:after {
    border-color: transparent #fff #fff transparent;
  }
}
@media screen and (max-width: 991px) {
  .navbar ul ul li.active > a {
    color: #29753e;
  }
}
@media screen and (max-width: 991px) {
  .custom-search {
    position: absolute;
    width: 100%;
    left: 0;
    top: 76px;
  }
}
@media screen and (max-width: 575px) {
  .custom-search {
    top: 69px;
  }
}
.onepage-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  min-height: 70px;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.onepage-nav .logo {
  padding: 10px 0;
  width: 212px;
}
.onepage-nav.nav-scroll {
  background: #fff;
  box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
  transform: translateY(100px);
  z-index: 99;
}
.header .social-links a {
  display: inline-block;
  margin: 0 12px;
  font-size: 18px;
}
.header .social-links a:hover {
  opacity: 0.85;
}
.header .social-links:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-link.active {
  color: #aec035;
}
.navbar.nav-scroll .navbar-nav .nav-link:hover,
.navbar.nav-scroll .navbar-nav .nav-link.active {
  color: #aec035 !important;
}
.onepage-header .navbar-nav > li > a {
  color: #fff;
  font-weight: 500;
}
.onepage-header.scrollHeader .navbar-nav .nav-link {
  color: #29753e;
}
.onepage-header .navbar-nav .nav-link:hover,
.onepage-header .navbar-nav .nav-link.active {
  color: #aec035;
  opacity: 1;
}
.onepage-header.scrollHeader .navbar-nav .nav-link:hover,
.onepage-header.scrollHeader .navbar .navbar-nav .nav-link.active {
  color: #aec035;
  opacity: 1;
}
.onepage-header.scrollHeader .side-nav .navbar-nav .nav-link {
  color: #fff;
}
.onepage-header.scrollHeader .navbar-brand img {
  vertical-align: middle;
}
@media screen and (max-width: 1399px) {
  .onepage-nav > .container {
    padding-right: 5.5rem;
  }
}
@media screen and (max-width: 991px) {
  .onepage-nav {
    padding: 0 15px;
    border: none;
  }
  .onepage-nav > .container {
    padding: 10px 0;
    max-width: none;
  }
  .onepage-nav .navbar-nav {
    top: 0;
    position: relative;
    background: #aec035;
  }
  .onepage-nav .navbar-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    float: none;
  }
  .onepage-nav .navbar-nav > li > a {
    color: #fff;
  }
  .onepage-nav .navbar-toggler {
    top: 16px;
    right: 15px;
    background: #aec035;
    outline: none;
    border: none;
    box-shadow: none !important;
  }
  .onepage-nav .navbar-nav .nav-link {
    padding: 12px 15px;
  }
  .onepage-nav .logo {
    padding: 6px 0 7px 0;
  }
  .onepage-header .navbar-nav .nav-link:hover,
  .onepage-header .navbar-nav .nav-link.active {
    color: #fff;
  }
  .onepage-header.scrollHeader .navbar-nav .nav-link {
    color: #fff;
  }
  .onepage-header .navbar.nav-scroll .navbar-nav .nav-link:hover,
  .onepage-header .navbar.nav-scroll .navbar-nav .nav-link.active {
    color: #fff !important;
  }
}
.side-menu {
  width: 30%;
  position: fixed;
  right: 0;
  top: 0;
  background: #aec035;
  z-index: 99999;
  height: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease,
    -o-transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow: hidden;
}
.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.side-menu.black {
  background: #232323;
}
.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}
#close_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 9999;
  opacity: 0.4;
}
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 15px;
  cursor: pointer;
}
.side-menu.before-side .btn-close {
  display: none;
}
.side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sidemenu_btn {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 36px;
  padding: 6px;
  margin-right: 1rem;
  position: absolute;
  right: 25px;
  top: 22px;
  z-index: 99;
}
.sidemenu_btn.left {
  left: 15px;
  right: auto;
}
.sidemenu_btn > span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
}
.sidemenu_btn > span:nth-child(2) {
  margin: 4px 0;
}
.nav-scroll .sidemenu_btn > span {
  background: #232323;
}
.bg-black.nav-scroll .sidemenu_btn > span {
  background: #fff;
}
.bg-white .sidemenu_btn > span,
.bg-white.nav-scroll .sidemenu_btn > span {
  background: #232323;
}
.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.side-menu .side-nav {
  margin-bottom: 30px;
  display: block;
}
.side-nav .navbar-nav .nav-item {
  display: block;
  margin: 10px 0;
  padding: 0 !important;
  opacity: 0;
  -webkit-transition: all 0.8s ease 500ms;
  -o-transition: all 0.8s ease 500ms;
  transition: all 0.8s ease 500ms;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
}
.side-nav .navbar-nav .nav-item:first-child {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.side-nav .navbar-nav .nav-item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.side-nav .navbar-nav .nav-item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.side-nav .navbar-nav .nav-item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.side-nav .navbar-nav .nav-item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.side-nav .navbar-nav .nav-item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.side-nav .navbar-nav .nav-item:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.side-nav .navbar-nav .nav-item:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.side-nav .navbar-nav .nav-item:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: normal;
  position: relative;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.side-nav .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  background: #fff;
  display: inline-block;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.side-nav .navbar-nav .nav-link:hover:after,
.side-nav .navbar-nav .nav-link:focus:after {
  width: 100%;
}
.side-nav .navbar-nav .nav-link.active {
  background: transparent;
  color: #fff;
}
.side-nav .navbar-nav .nav-link.active:after {
  width: 100%;
}
.side-menu .social-links a {
  color: #fff;
}
.side-menu .social-links a:hover {
  opacity: 0.65;
}
@media screen and (max-width: 1399px) {
  .sidemenu_btn {
    margin-right: 0;
  }
}
.lg-backdrop {
  z-index: 99999;
}
.lg-outer {
  z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #aec035;
}
.lg-progress-bar .lg-progress {
  background-color: #aec035;
}
.lg-backdrop.in {
  opacity: 0.85;
}
.heading-one span {
  color: #29753e;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 20px;
}
.heading-one span i {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
  height: 20px;
  width: 18px;
  transform: translateY(5px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  flex: 0 0 auto;
  margin-right: 10px;
  animation: firefly 2.5s linear infinite;
  background-color: #3368c6;
}
.heading-one h2 {
  color: #29753e;
  margin: 10px 0 0 0;
  font-size: 58px;
  line-height: 1.1;
}
.heading-one.newsletter-title h2 {
  font-size: 40px;
}
.heading-one.footer span i {
  height: 13px;
  width: 11px;
  transform: translateY(2px);
}
.heading-one.sm h2 {
  font-size: 40px;
}
.heading-one.service-title h2 {
  font-size: 30px;
}
.heading-one.white span {
  color: #fff;
}
.heading-one.white span i {
  background-color: #fff;
}
.heading-one.secondary span {
  color: #aec035;
}
.heading-one.secondary span i {
  background-color: #aec035;
}
@keyframes firefly {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    color: white;
  }
}
@media screen and (max-width: 1399px) {
  .heading-one.newsletter-title h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .heading-one h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .heading-one h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .heading-one h2 {
    font-size: 32px;
  }
}
.heading-two h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #aec035;
  margin-bottom: 15px;
}
.heading-two .shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -75px;
  width: 150px;
  height: 6px;
  overflow: hidden;
}
.heading-two .shape:before {
  animation: sectionShape 8s linear infinite;
  animation-delay: 0s;
}
.heading-two .shape:after,
.heading-two .shape:before {
  content: "";
  position: absolute;
  left: -20%;
  top: 50%;
  width: 30px;
  height: 6px;
  background-color: #29753e;
  margin-top: -3px;
}
.heading-two .shape:after {
  width: 100%;
  height: 2px;
  margin: 0;
  margin-top: -1px;
  left: 0;
}
.heading-two .shape.left {
  left: 0;
  margin-left: 0;
}
.heading-two.footer-heading h2 {
  font-size: 20px;
}
.heading-two.footer-heading .shape {
  width: 60px;
  bottom: -12px;
  left: 0;
  margin-left: 0;
}
.heading-two.footer-heading .shape:before {
  width: 20px;
  height: 4px;
  margin-top: -2px;
}
@keyframes sectionShape {
  form {
    left: -101%;
  }
  to {
    left: 101%;
  }
}
@media screen and (max-width: 991px) {
  .heading-two h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .heading-two h2 {
    font-size: 25px;
  }
}
.heading-three h6 {
  color: #aec035;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  position: relative;
  background: rgba(33, 205, 173, 0.1);
  padding: 7px 20px;
  margin: 0 0 10px;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 2px;
}
.heading-three h2 {
  font-size: 52px;
  margin-bottom: 0;
}
.heading-three.sm h2 {
  font-size: 30px;
}
@media screen and (max-width: 1199px) {
  .heading-three h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .heading-three h2 {
    font-size: 30px;
  }
}
.page-title-section {
  padding: 120px 0 120px;
  text-align: center;
}
.page-title-section h1 {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}
.page-title-section ul {
  margin-bottom: 0;
  margin-top: 15px;
  text-align: center;
}
.page-title-section ul li {
  display: inline-block;
}
.page-title-section ul li:last-child a {
  color: #aec035;
}
.page-title-section ul li:last-child:after {
  content: none;
}
.page-title-section ul li:after {
  content: "";
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
  height: 13px;
  width: 11px;
  transform: translateY(1px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  flex: 0 0 auto;
  margin: 00 10px 0 15px;
  animation: firefly 2.5s linear infinite;
  background-color: #ffffff;
}
.page-title-section ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 20px;
}
.page-title-section .active a,
.page-title-section li.active:last-child a {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 110px 0 110px;
  }
  .page-title-section h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 90px 0 90px;
  }
  .page-title-section h1 {
    margin-bottom: 0;
    font-size: 42px;
  }
  .page-title-section ul {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-section h1 {
    margin-bottom: 15px;
  }
}
.banner1 .banner-text span.top-content {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
}
.banner1 .banner-text h1 {
  color: #fff;
  margin-bottom: 35px;
}
.card-style1.first {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.card-style1.last {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.card-style1 ul li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.card-style1 ul li:last-child {
  border-bottom: none;
  padding-bottom: unset;
  margin-bottom: unset;
}
.card-style1.bg-two {
  background-color: rgba(0, 39, 122, 0.9);
}
.card-style1.bg-three {
  background-color: rgba(0, 39, 122, 0.8);
}
.card-style1 .butn {
  background: #fff;
  color: #aec035;
}
@media screen and (max-width: 991px) {
  .card-style1.first {
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
  .card-style1.last {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 575px) {
  .card-style1 ul li {
    font-size: 12px;
  }
}
.card-style2 .card-body .social-link span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #29753e;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.card-style2 .card-body .social-link span i {
  color: #fff;
  font-size: 15px;
  line-height: 35px;
  margin: 0 auto;
}
.card-style2 .card-body .social-link .social-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 60px;
}
.card-style2 .card-body .social-link .social-icon li {
  visibility: hidden;
  opacity: 0;
  display: block;
  margin: 10px 0;
  -webkit-transform: translateX(10px);
  transform: translateX(2px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.card-style2 .card-body .social-link .social-icon li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.card-style2 .card-body .social-link .social-icon li a i {
  background-color: #aec035;
  width: 32px;
  height: 32px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: inline-block;
  line-height: 32px;
  font-size: 12px;
  color: #fff;
}
.card-style2 .card-body .social-link .social-icon li a:hover i {
  background-color: #29753e;
}
.card-style2 .card-body .social-link:hover .social-icon {
  visibility: visible;
  opacity: 1;
}
.card-style2 .card-body .social-link:hover .social-icon li {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.card-style3 .card-body {
  margin: -50px 30px 0 30px;
  padding: 20px;
}
@media screen and (max-width: 1399px) {
  .card-style3 .card-body {
    margin: -50px 25px 0 25px;
  }
}
@media screen and (max-width: 991px) {
  .card-style3 .card-body {
    margin: -50px 15px 0 15px;
    padding: 20px 15px;
  }
}
.card-style4 .service-img:before {
  content: "";
  position: absolute;
  height: 42%;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.4) 40%),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 40%,
    transparent
  );
  background-image: -moz-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 40%,
    transparent
  );
  background-image: -ms-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 40%,
    transparent
  );
  background-image: -o-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 40%,
    transparent
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 40%,
    transparent
  );
  z-index: 99;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.card-style4 .card-body {
  position: absolute;
  bottom: -35px;
  left: 30px;
  right: 30px;
  background-color: #fff;
  padding: 21px 20px;
  text-align: center;
  -webkit-box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  -khtml-box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  -moz-box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  -ms-box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  -o-box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  box-shadow: 0 2px 34px rgba(35, 35, 35, 0.2);
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  overflow: hidden;
  z-index: 99;
}
.card-style4 .card-body .service-content {
  display: none;
}
.card-style4 .card-body p {
  color: #fff;
}
.card-style4:hover .card-body .service-content {
  display: block;
}
.card-style4 .card-body h3 {
  margin-bottom: 0;
}
.card-style4:hover .card-body h3 {
  margin-bottom: 15px;
}
.card-style4 .card-body h3 a {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #080808;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.card-style4 .card-body .service-btn a {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 145px;
  height: 48px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
  margin: auto;
  line-height: 40px;
  color: #fff;
  font-size: 15px;
  -webkit-transform: translateY(50px);
  -khtml-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}
.card-style4:hover .service-img:before {
  -webkit-transform: translateY(100%);
  -khtml-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.card-style4:hover .card-body {
  background-color: #aec035;
  padding-top: 39px;
  padding-bottom: 70px;
}
.card-style4:hover .card-body h3 a {
  color: #fff;
}
.card-style4:hover .service-btn a {
  opacity: 1;
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.card-style4 .service-img.inner-img:before {
  border-radius: 5px;
}
@media screen and (max-width: 1399px) {
  .card-style4 .card-body {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 991px) {
  .card-style4 .card-body {
    padding: 10px 10px;
  }
  .card-style4:hover .card-body {
    padding-top: 20px;
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 575px) {
  .card-style4:hover .card-body h3 {
    margin-bottom: 10px;
  }
  .card-style4 .card-body {
    padding: 15px 20px;
  }
  .card-style4 .card-body h3 a {
    font-size: 20px;
  }
}
.card-style5 .card-body {
  padding: 0px 15px 10px 15px;
}
.card-style5 .card-body img {
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .card-style5 .card-body.blog-content {
    padding: 0px 20px 30px 20px;
  }
}
.card-style6:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #aec035;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  z-index: 2;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.card-style6:hover:before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.card-style6 .card-body .icon a {
  background-color: rgba(33, 205, 173, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aec035;
  font-size: 14px;
  border-radius: 3px;
  transition: 0.4s;
}
.card-style6:hover .card-body .icon a {
  background-color: #aec035;
  color: #fff;
}
.card-style6.one,
.card-style6.two,
.card-style6.three,
.card-style6.four,
.card-style6.five,
.card-style6.six,
.card-style6.seven,
.card-style6.eight {
  border-top: unset;
  border-left: unset;
}
.card-style6.four,
.card-style6.eight {
  border-right: unset;
}
.card-style6.five,
.card-style6.six,
.card-style6.seven,
.card-style6.eight {
  border-bottom: unset;
}
@media screen and (max-width: 1199px) {
  .card-style6.three,
  .card-style6.six {
    border-right: unset;
  }
  .card-style6.four {
    border-right: 1px solid rgba(0, 0, 0, 0.125);
  }
  .card-style6.five,
  .card-style6.six {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  }
}
@media screen and (max-width: 991px) {
  .card-style6.two,
  .card-style6.four {
    border-right: unset;
  }
  .card-style6.three {
    border-right: 1px solid rgba(0, 0, 0, 0.125);
  }
}
@media screen and (max-width: 767px) {
  .card-style6.one,
  .card-style6.three,
  .card-style6.five {
    border-right: unset;
  }
  .card-style6.seven {
    border-right: unset;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  }
}
.card-style7 {
  height: 100%;
}
.card-style7 .card-body:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #aec035;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  z-index: 2;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.card-style7:hover .card-body {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.card-style7:hover .card-body:before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.card-style7 .social-icon {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: 0.4s;
  pointer-events: none;
  list-style: none;
}
.card-style7 .social-icon a {
  width: 35px;
  height: 35px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  pointer-events: auto;
  background: #aec035;
  box-shadow: 6px 5px 16px 0px rgba(0, 0, 0, 0.15);
  transition-property: all, transform;
  transition-duration: 0.5s;
  opacity: 0;
  transform: translateX(10px);
  margin: 0px 0px 10px 0px;
}
.card-style7 .social-icon a:nth-child(2) {
  transition-delay: 0s, 0.1s;
}
.card-style7 .social-icon a:nth-child(3) {
  transition-delay: 0s, 0.2s;
}
.card-style7 .social-icon a:nth-child(4) {
  transition-delay: 0s, 0.3s;
}
.card-style7:hover a {
  opacity: 1;
  transform: translate(0);
  pointer-events: auto;
  visibility: visible;
}
.card-style7 a:hover {
  background-color: #fff;
  color: #29753e;
}
.card-style7 .team-img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-style7 .card-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.card-style8 .icon a {
  background-color: rgba(33, 205, 173, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aec035;
  font-size: 16px;
  border-bottom-right-radius: 5px;
  transition: 0.4s;
}
.card-style8:hover .icon a {
  background-color: #aec035;
  color: #fff;
  border-bottom-right-radius: 5px;
}
.card-style8:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #aec035;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  z-index: 2;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.card-style8:hover:before {
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.card-style9 .card-body {
  padding: 45px 25px;
}
.card-style9:hover .card-body .icon-img {
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}
@-webkit-keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media screen and (max-width: 1599px) {
  .card-style9 .card-body {
    padding: 35px 25px;
  }
}
@media screen and (max-width: 991px) {
  .card-style9 .card-body {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 575px) {
  .card-style9 .card-body {
    padding: 25px 20px;
  }
}
.testimonial-carousel.owl-theme .owl-dots .owl-dot span {
  display: none;
}
.testimonial-carousel .testimony-wrap {
  position: relative;
  background: #ffffff;
  padding: 37px 50px 40px;
  box-shadow: 0 0px 15px rgba(8, 0, 0, 0.1);
  border-radius: 10px;
}
.testimonial-carousel .testimonial-wrapper:before {
  position: absolute;
  left: 0px;
  top: 24px;
  width: 300px;
  height: 150px;
  background: #e8e8e8;
  content: "";
  border-radius: 10px;
}
.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  background-image: none;
  width: 20px;
  height: 20px;
  margin: 20.5px 4px;
  border: 2px solid #aec035;
  padding: 0px;
  border-radius: 50%;
  background: #fff;
  transition: all 500ms ease;
  display: inline-block;
}
.testimonial-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #aec035;
  content: "";
  border-radius: 50%;
  margin: 4px;
  transition: all 500ms ease;
}
.testimonial-carousel .owl-dots .owl-dot.active {
  background: #aec035;
  border-color: #aec035;
}
.testimonial-carousel .owl-dots .owl-dot.active:before {
  background-color: #fff;
}
@media screen and (max-width: 575px) {
  .testimonial-carousel .testimony-wrap {
    padding: 35px 35px 35px;
  }
}
.map {
  height: 400px;
  width: 100%;
  vertical-align: top;
  border: 0;
}
.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: #29753e;
  text-align: center;
  display: inline-block;
  line-height: 80px;
  border-radius: 50%;
  color: #fff;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}
.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px;
}
.video_btn.small:after {
  height: 50px;
  width: 50px;
}
.video_btn.small:before {
  height: 65px;
  width: 65px;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px;
  }
  .video_btn:after {
    height: 75px;
    width: 75px;
  }
  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
  .video_btn:after {
    height: 70px;
    width: 70px;
  }
  .video_btn:before {
    height: 85px;
    width: 85px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}
@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .video_btn:after {
    height: 60px;
    width: 60px;
  }
  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}
.height-300 {
  height: 300px;
}
.story-video {
  height: 100%;
}
.owl-theme .owl-nav.disabled {
  margin-top: 40px !important;
}
.owl-theme .owl-dots {
  margin-top: 40px !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.15);
}
.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
  background: #29753e;
}
.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}
.dots-white.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}
.dots-white.owl-theme .owl-dots .owl-dot:hover span,
.dots-white.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}
.slider-fade1 .owl-item {
  position: relative;
}
.slider-fade1 .text-center h1 {
  margin-left: auto;
  margin-right: auto;
}
.slider-fade1 .text-right h1 {
  margin-right: 0;
  margin-left: auto;
}
.slider-fade1 .owl-carousel .caption .overflow-hidden {
  display: inline-block;
}
.slider-fade1 .owl-carousel .caption h3 {
  font-weight: 500;
  animation-delay: 0.5s;
  display: inline-block;
  position: relative;
  color: #29753e;
}
.slider-fade1 .owl-carousel .caption h1 {
  animation-delay: 0.8s;
  font-size: 4rem;
}
.slider-fade1 .owl-carousel .caption p {
  color: #eee;
  word-spacing: 2px;
  animation-delay: 1.2s;
  margin-bottom: 30px;
}
.slider-fade1 .owl-carousel .caption span {
  display: inline-block;
}
.slider-fade1 .owl-carousel .caption .butn {
  animation-delay: 1.4s;
}
.slider-fade1 .owl-theme .owl-dots {
  position: absolute;
  bottom: 12vh;
  width: 100%;
  left: 0;
}
.slider-fade1 .owl-theme .owl-dots .owl-dot span {
  background: #ffffff;
}
.slider-fade1 .owl-theme .owl-dots .owl-dot:hover span,
.slider-fade1 .owl-theme .owl-dots .owl-dot.active span {
  background: #aec035;
}
.slider-fade1 .owl-theme .owl-nav {
  margin-top: 0;
}
.slider-fade1 .owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  right: inherit;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 60px;
  line-height: 65px;
  transition-duration: 500ms;
  left: 5vh;
  text-align: center;
  margin: auto;
  opacity: 0.3;
}
.slider-fade1 .owl-theme .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  left: inherit;
  right: 5vh;
}
.slider-fade1 .owl-theme .owl-nav .owl-next:hover {
  opacity: 1;
  background: #aec035;
}
.slider-fade1 .owl-theme .owl-nav .owl-prev:hover {
  opacity: 1;
  background: #aec035;
}
.slider-fade1 .owl-nav i,
.slider-fade1 .owl-nav span {
  font-weight: 600;
  color: #fff;
  transition-duration: 500ms;
  font-size: 20px;
}
.slider-fade1 .owl-nav .owl-next:hover i,
.slider-fade1 .owl-nav .owl-prev:hover i {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .slider-fade1 .owl-carousel .caption h1 {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 991px) {
  .slider-fade1 .owl-carousel .caption h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .slider-fade1 .owl-carousel .caption h1 {
    font-size: 2.6rem;
  }
  .slider-fade1 .owl-carousel .caption h3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .slider-fade1 .owl-carousel .caption h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .slider-fade1 .owl-carousel .caption h1 {
    font-size: 1.8rem;
  }
}
.accordion-style1 {
  position: relative;
  z-index: 99;
}
.accordion-style1 .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  margin-top: 0 !important;
  border: none;
}
.accordion-style1 .card:last-child {
  margin-bottom: 0;
}
.accordion-style1 .card-header {
  border-left: 3px solid #aec035;
  background: none;
  padding: 0;
  border-bottom: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.accordion-style1 .btn-link {
  border-bottom: none;
  color: #ffffff;
  background: #29753e;
  position: relative;
  display: block;
  border: 0px solid #29753e;
  font-weight: 500;
  width: 100%;
  border-radius: 0;
  border-top-right-radius: 3px;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  padding: 17px 50px 17px 30px;
  text-decoration: none;
  font-size: 16px;
}
.accordion-style1 .btn-link:hover,
.accordion-style1 .btn-link:active,
.accordion-style1 .btn-link:focus {
  text-decoration: none;
}
.accordion-style1 .btn-link.collapsed {
  background: #ededed;
  color: #aec035;
  border: 0 solid #ededed;
  border-radius: 0.25rem;
}
.accordion-style1 .btn-link.collapsed:after {
  background: none;
  border: 1px solid #29753e;
  border-radius: 0.25rem;
  content: "+";
  right: 20px;
  left: inherit;
  font-size: 20px;
  color: #29753e;
  line-height: 22px;
  height: 26px;
  transform: none;
  width: 26px;
  top: 16px;
  text-align: center;
  padding-left: 1px;
}
.accordion-style1 .btn-link:after {
  background: none;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  content: "-";
  right: 20px;
  left: inherit;
  font-size: 20px;
  height: 26px;
  line-height: 20px;
  transform: none;
  width: 26px;
  top: 16px;
  position: absolute;
  color: #ffffff;
  text-align: center;
  padding-left: 2px;
}
.accordion-style1 .card-body {
  border-top: none;
  border: 0px solid #ededed;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 20px 50px 0px 30px;
}
@media screen and (max-width: 1199px) {
  .accordion-style1 .btn-link {
    padding: 15px 50px 15px 15px;
  }
  .accordion-style1 .btn-link:after {
    top: 14px;
    right: 15px;
    height: 24px;
    line-height: 20px;
    width: 24px;
    font-size: 18px;
  }
  .accordion-style1 .btn-link.collapsed:after {
    top: 15px;
    right: 15px;
    height: 24px;
    line-height: 20px;
    width: 24px;
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .accordion-style1 .card-body {
    padding: 20px 40px 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-style1 .card {
    margin-bottom: 10px;
  }
}
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}
.resp-tabs-list li {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  min-width: 180px;
}
.resp-tabs-list li:last-child {
  margin-right: 0;
}
.resp-tabs-list li i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #6f6f6f;
}
.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}
.resp-tab-content {
  display: none;
  padding: 40px 30px;
  border: 1px solid #e6e6e6;
}
.resp-tabs-list li.resp-tab-active {
  background: #29753e !important;
  padding: 15px 20px 13px 20px;
  color: #fff;
}
.resp-tabs-list li.resp-tab-active i {
  color: #fff;
}
.resp-content-active,
.resp-accordion-active {
  display: block;
}
h2.resp-accordion {
  background: #fff !important;
  cursor: pointer;
  display: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  margin: 0px;
  padding: 15px 21px;
}
h2.resp-tab-active {
  border-bottom: 0px solid #e4e4e4 !important;
  background: #29753e !important;
  color: #fff;
}
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #e4e4e4 !important;
  background: #29753e;
}
.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 35%;
  padding-right: 30px;
}
.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 34px 40px !important;
  margin: 0 0 12px;
  cursor: pointer;
  float: none;
  position: relative;
  z-index: 1;
  border: none;
  background-color: #fff;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.resp-vtabs .resp-tabs-list li:last-child {
  margin-bottom: 0;
}
.resp-vtabs .resp-tabs-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-width: 12px;
  border-color: transparent transparent transparent #29753e;
  border-style: solid;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  opacity: 0;
}
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: none;
  float: left;
  width: 65%;
  min-height: 250px;
  clear: none;
}
.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
  background-color: #f59019;
}
.resp-vtabs li.resp-tab-active h3,
.resp-vtabs li.resp-tab-active p {
  color: #fff;
}
.resp-vtabs li.resp-tab-active:after {
  opacity: 1;
}
.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}
@media screen and (max-width: 991px) {
  ul.resp-tabs-list {
    display: none;
  }
  h2.resp-accordion {
    display: block;
  }
  h2.resp-accordion i {
    margin-right: 8px;
    font-size: 18px;
  }
  h2.resp-tab-active h3 {
    color: #fff;
  }
  .resp-vtabs .resp-tab-content {
    border: 1px solid #e4e4e4;
    padding: 10px;
  }
  .resp-vtabs .resp-tabs-container {
    border: none !important;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .resp-tab-content {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
  }
}
.tab-style1 .resp-tab-content {
  border: 0;
  padding: 40px 30px 0 0;
}
.tab-style1 .resp-tabs-container {
  background: transparent;
}
.tab-style1 .resp-tabs-list li {
  text-align: center;
  padding: 7px 20px;
  background-color: #f2f2f2;
  color: #29753e;
  margin: 0 15px 0 0;
}
.tab-style1 .resp-tabs-list li.resp-tab-active {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .tab-style1 .resp-tab-content {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .tab-style1 .resp-tab-content {
    padding: 15px;
  }
}
.modal-backdrop {
  z-index: 99999;
}
.modal {
  z-index: 999999;
}
.icon-gallery .d-table {
  margin-top: 30px;
}
.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff;
}
.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #aec035;
}
pre[class*="language-"] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0;
}
.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.html-code:before {
  color: #c8dfab;
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out;
}
.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}
.html-code .copy-element {
  top: 15px;
  right: 30px;
}
.html-code:hover .copy-element,
.html-code:hover .source-element {
  opacity: 1;
}
.box-hover:hover .copy-element,
.box-hover:hover .source-element {
  opacity: 1;
}
.copy-element > a,
.source-element > a {
  border-radius: 0.25rem;
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer !important;
  font-weight: 600;
}
.copy-element > a:hover,
.source-element > a:hover {
  background: #aec035;
  color: #fff !important;
}
.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px;
}
.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;
  border-radius: 5px;
  margin: 40px auto;
  border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
  display: block !important;
  height: 0;
  position: absolute;
  z-index: -1;
  padding: 0;
  opacity: 0;
  margin: 0;
}
.white-popup-block:before {
  color: rgba(3, 169, 245, 0.2);
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}
.white-popup-block:hover .copy-element {
  opacity: 1;
}
.white-popup-block .copy-element {
  top: 45px;
  right: 30px;
}
.box-hover {
  position: relative;
}
.box-hover .container {
  position: relative;
}
.inner-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .elements-block .inner-title {
    margin-bottom: 65px;
  }
  .copy-element,
  .source-element {
    top: 65px;
  }
}
.filtering span {
  display: inline-block;
  cursor: pointer;
  padding: 12px 25px;
  margin-bottom: 5px;
  line-height: 22px;
  width: auto;
  position: relative;
  z-index: 3;
  color: #8a91ac;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f6faff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
}
.filtering span.active {
  background-color: #aec035;
  color: #fff;
}
.blog-social-icon a i {
  color: #aec035;
}
.blog-social-icon a:hover i {
  color: #29753e;
}
.countdown {
  margin-left: -5px;
}
.countdown li {
  background: transparent;
  display: inline-block;
  text-align: center;
  min-width: 130px;
  padding: 15px 10px;
  border-radius: 0.25rem;
  border: 1px solid #fff;
  margin-left: 5px;
}
.countdown li span {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #aec035;
  line-height: normal;
  position: relative;
}
.countdown li span:before {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .countdown li span {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .countdown {
    margin-top: -10px;
  }
  .countdown li {
    min-width: 180px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .countdown li {
    min-width: 47%;
  }
}
.error-wrapper {
  background-color: rgba(255, 255, 255, 0.3);
}
.error-wrapper .number-wrap span {
  color: #fff;
  font-size: 350px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
}
.error-wrapper .number-wrap span i {
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
  height: 260px;
  width: 240px;
  transform: translateY(-30%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  flex: 0 0 auto;
  margin: 0 30px;
  background-color: #42bfff;
}
.error-wrapper .number-wrap span i:before {
  content: "";
  position: absolute;
  background-color: #fff;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
  height: 220px;
  width: 200px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error-wrapper .number-wrap span i:after {
  content: "";
  position: absolute;
  background-color: #42bfff;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
  height: 210px;
  width: 190px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  animation: firefly 2.5s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error-wrapper .number-wrap .icon {
  position: relative;
  line-height: 1;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
@media screen and (max-width: 1599px) {
  .error-wrapper .number-wrap span {
    font-size: 340px;
  }
}
@media screen and (max-width: 1399px) {
  .error-wrapper .number-wrap span {
    font-size: 300px;
  }
  .error-wrapper .number-wrap span i {
    height: 220px;
    width: 200px;
  }
  .error-wrapper .number-wrap span i:before {
    height: 180px;
    width: 160px;
  }
  .error-wrapper .number-wrap .icon img {
    width: 100px;
  }
  .error-wrapper .number-wrap span i:after {
    height: 170px;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .error-wrapper .number-wrap span {
    font-size: 230px;
  }
  .error-wrapper .number-wrap span i {
    height: 180px;
    width: 160px;
  }
  .error-wrapper .number-wrap span i:before {
    height: 140px;
    width: 120px;
  }
  .error-wrapper .number-wrap .icon img {
    width: 60px;
  }
  .error-wrapper .number-wrap span i:after {
    height: 130px;
    width: 110px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .number-wrap span {
    font-size: 100px;
  }
  .error-wrapper .number-wrap span i {
    height: 110px;
    width: 90px;
    margin: 0 10px;
  }
  .error-wrapper .number-wrap span i:before {
    height: 90px;
    width: 70px;
  }
  .error-wrapper .number-wrap .icon img {
    width: 30px;
  }
  .error-wrapper .number-wrap span i:after {
    height: 80px;
    width: 60px;
  }
}
.side-bar-list li {
  position: relative;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  line-height: 30px;
  vertical-align: middle;
  border-radius: 5px;
}
.side-bar-list li a {
  font-size: 16px;
  color: #fff;
  padding: 14px 25px;
  display: block;
}
.side-bar-list li.active {
  background-color: #aec035;
}
.side-bar-list li.active:before {
  display: none;
}
.side-bar-list li span {
  float: right;
  margin-right: 10px;
}
.side-bar-list li:before {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #aec035;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s,
    -webkit-transform 500ms 0s;
}
.side-bar-list li:hover:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
.lab-social-link a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  pointer-events: auto;
  background: #aec035;
  transition-duration: 0.5s;
  font-size: 16px;
}
.lab-social-link a:hover i,
.lab-social-link a:active i,
.lab-social-link a:focus i {
  background-color: #aec035;
}
@media screen and (max-width: 1199px) {
  .side-bar-list li a {
    padding: 10px 25px;
  }
  .lab-social-link a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}
.side-bar-butn .input-group-append button {
  position: absolute;
  right: -5px;
  outline: 0;
  bottom: 0;
  height: 46px;
  width: 50px;
  line-height: 50px;
  z-index: 1;
  color: #fff;
  background-color: #aec035;
  transition: 0.5s;
  cursor: pointer;
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.side-bar-butn .input-group-append button:hover {
  background-color: #29753e;
}
.blog-tags {
  margin-top: -5px;
}
.blog-tags a {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 7px 25px;
  font-size: 13px;
  line-height: 20px;
  margin: 5px;
  display: inline-block;
  border-radius: 3px;
  color: #fff;
}
.blog-tags a:hover {
  background-color: #aec035;
}
@media screen and (max-width: 575px) {
  .blog-tags a {
    padding: 6px 18px;
  }
}
.blog-page .pagination .page-link {
  background-color: #dee2e6;
  border: unset;
  color: #29753e;
  padding: 8px 15px;
  border-radius: 3px;
}
.blog-page .pagination .page-link:hover {
  background-color: #29753e;
  color: #fff;
}
.blog-page .pagination li {
  margin-right: 20px;
}
.blog-page .pagination li:last-child {
  margin-right: 0px;
}
.blog-page .pagination .active a,
.blog-page .pagination > .active > a:hover,
.blog-page .pagination > .active > a:focus {
  color: #ffffff;
  background-color: #29753e;
  border-color: rgb(37, 211, 102); 
  line-height: 1;
}
.info-box {
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -80px;
  z-index: 1;
  border-radius: 10px;
}
.appinment-form {
  margin-top: -100px;
}
.appinment-form .left-content {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.appinment-form .right-content {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.about-us .logo-img .icon-img {
  width: 140px;
  height: 140px;
  background-color: #29753e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 130px;
}
.about-us .logo-img .logo-inner-img {
  position: absolute;
  bottom: 0;
  left: 100px;
  animation: cms-spin 8s infinite;
  transition: all 300ms ease-in-out;
}
@keyframes cms-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@media screen and (max-width: 1199px) {
  .about-us .logo-img .icon-img {
    width: 120px;
    height: 120px;
    bottom: 25px;
    left: 125px;
  }
  .about-us .logo-img .logo-inner-img img {
    width: 170px;
  }
}
@media screen and (max-width: 575px) {
  .about-us .logo-img .icon-img {
    width: 100px;
    height: 100px;
    bottom: 20px;
    left: 40px;
  }
  .about-us .logo-img .icon-img img {
    width: 60px;
  }
  .about-us .logo-img .logo-inner-img {
    left: 20px;
  }
  .about-us .logo-img .logo-inner-img img {
    width: 140px;
  }
}
.about-us1 .exp-box {
  position: absolute;
  top: 40px;
  right: 40px;
}
.about-us1 .exp-box .box-inner {
  background-color: #aec035;
  border-radius: 5px 5px 5px 0;
  padding: 15px 30px 20px 30px;
  position: relative;
}
.about-us1 .exp-box .box-inner:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -19px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-top: 30px solid #aec035;
  border-right: 30px solid transparent;
  border-radius: 5px;
  transform: rotate(135deg);
}
.about-us1 .exp-box h4 {
  font-size: 50px;
  color: #fff;
  line-height: 1;
}
.about-us1 .exp-box h6 {
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
}
.about-us1 .about-img:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 80%;
  left: -15px;
  top: 50%;
  background-color: #29753e;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 5px;
}
.about-us1 .img-2 {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1199px) {
  .about-us1 .exp-box {
    right: -30px;
  }
}
@media screen and (max-width: 991px) {
  .about-us1 .exp-box {
    right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about-us1 .exp-box {
    right: 10px;
  }
}
@media screen and (max-width: 575px) {
  .about-us1 .exp-box .box-inner {
    padding: 10px 20px 15px 20px;
  }
  .about-us1 .exp-box .box-inner:before {
    bottom: -14px;
    left: -13px;
    border-left: 20px solid transparent;
    border-top: 20px solid #aec035;
    border-right: 20px solid transparent;
  }
  .about-us1 .exp-box h4 {
    font-size: 30px;
  }
  .about-us1 .exp-box h6 {
    font-size: 15px;
  }
}
.about-us2 .about-shape {
  width: 80%;
  height: 80%;
  background-color: rgba(33, 205, 173, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
}
.about-us2 .box-icon {
  background-color: #eff1f5;
  border-radius: 5px;
  box-shadow: 0 7px 37px rgba(96, 125, 185, 0.11);
  height: 75px;
  text-align: center;
  width: 75px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aec035;
}
@media screen and (max-width: 575px) {
  .about-us2 .box-icon {
    width: 65px;
    height: 65px;
    font-size: 25px;
  }
}
.quote-content:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 80%;
  background-color: #29753e;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: 1;
}
.service-01 {
  margin: 0 130px;
}
.service-01 .service-inner {
  padding: 0 130px;
}
@media screen and (max-width: 1599px) {
  .service-01 {
    margin: 0 70px;
  }
  .service-01 .service-inner {
    padding: 0 70px;
  }
}
@media screen and (max-width: 1399px) {
  .service-01 {
    margin: 0 40px;
  }
}
@media screen and (max-width: 991px) {
  .service-01 .service-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .service-01 {
    margin: 0 15px;
  }
  .service-01 .service-inner {
    padding: 0 20px;
  }
}
.service-02 .service-inner {
  margin-top: -110px;
}
.service-02 .service-bg {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .service-02 .service-bg {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .service-02 .service-bg {
    padding-bottom: 70px;
    padding-top: 60px;
  }
}
.pricing-list-1 .icon {
  background-color: #aec035;
  width: 65px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.coming-soon .left-img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.coming-soon .inner-content {
  padding: 100px 150px;
}
@media screen and (max-width: 1599px) {
  .coming-soon .inner-content {
    padding: 100px 100px;
  }
}
@media screen and (max-width: 1399px) {
  .coming-soon .inner-content {
    padding: 60px 60px;
  }
  .coming-soon .countdown li {
    min-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .coming-soon .countdown li {
    min-width: 110px;
  }
  .coming-soon .inner-content {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 575px) {
  .coming-soon .inner-content {
    padding: 20px 20px;
  }
}
.team-details .team-content {
  margin-left: -150px;
  padding: 50px;
  border-radius: 5px;
  border-bottom-left-radius: unset;
}
@media screen and (max-width: 1399px) {
  .team-details .team-content {
    padding: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .team-details .team-content {
    margin-left: -250px;
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .team-details .team-content {
    margin-left: 0;
  }
}
.contact-box {
  margin-top: -5%;
}
.contact-box .icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #fff;
  background-color: unset;
}
@media screen and (max-width: 1199px) {
  .contact-box .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .contact-box .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.call-to-action h2 {
  font-size: 72px;
  margin-bottom: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 1399px) {
  .call-to-action h2 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .call-to-action h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .call-to-action h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-to-action h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.call-to-action2 .img-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}
.call-to-action2 h4 {
  font-weight: 300;
  font-size: 72px;
}
@media screen and (max-width: 1199px) {
  .call-to-action2 h4 {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .call-to-action2 h4 {
    font-size: 50px;
  }
}
@media screen and (max-width: 575px) {
  .call-to-action2 h4 {
    font-size: 38px;
  }
}
.footer-newsletter2 .quform-element .form-control {
  height: 50px;
}
.whychoose-01 .story-video .video_btn {
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.whychoose-01 .story-video .video_btn:before {
  width: 55px;
  height: 55px;
}
.whychoose-01 .story-video .video_btn:after {
  height: 40px;
  width: 40px;
}
.whychoose-01 .whychoose-right {
  padding: 100px;
}
.whychoose-01 .whychoose-right:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #aec035;
  top: 0;
  left: 0;
  z-index: 1;
}
.whychoose-01 .whychoose-right:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #f2f2f2;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .whychoose-01 .whychoose-right {
    padding: 50px;
  }
}
@media screen and (max-width: 575px) {
  .whychoose-01 .whychoose-right {
    padding: 30px 15px;
  }
}
.whychoose-02 .whychoose-inner {
  margin: 0 155px;
}
.whychoose-02 .whychoose-inner:before {
  content: "";
  position: absolute;
  background-image: url("../img/bg/bg-06.png");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.whychoose-02 .whychoose-img {
  margin-left: 100px;
  margin-top: -60px;
}
.whychoose-02 .inner-content li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 50px;
}
.whychoose-02 .inner-content li.dark-box {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1599px) {
  .whychoose-02 .whychoose-inner {
    margin: 0 80px;
  }
  .whychoose-02 .inner-content li {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 1399px) {
  .whychoose-02 .whychoose-img {
    margin-left: 20px;
  }
  .whychoose-02 .whychoose-inner {
    margin: 0 20px;
  }
  .whychoose-02 .inner-content li {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 991px) {
  .whychoose-02 .whychoose-img {
    margin-left: 20px;
    margin-right: 20px;
  }
  .whychoose-02 .inner-content {
    margin: 0 65px;
  }
  .whychoose-02 .whychoose-inner {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .whychoose-02 .inner-content {
    margin: 0 20px;
  }
}
.portfolio1 .portfolio-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -7%;
}
.portfolio1 .portfolio-carousel .owl-nav button {
  display: block;
  background-color: rgba(0, 39, 122, 0.2);
  width: 45px;
  height: 45px;
  color: #29753e;
  font-size: 14px;
  line-height: 1;
  border-radius: 50%;
  margin: 15px 0;
  transition: 0.5s;
}
.portfolio1 .portfolio-carousel .owl-nav button:hover {
  background-color: #29753e;
  color: #fff;
}
.portfolio-style1 .hover-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background-color: rgba(33, 205, 173, 0.7);
  border-radius: 5px;
}
.portfolio-style1 .hover-detail:before {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
  transition: opacity 0.55s, transform 0.55s;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  border-radius: 5px;
}
.portfolio-style1:hover .hover-detail:before,
.portfolio-style1:hover .hover-detail:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.portfolio-style1 .hover-detail:after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
  transition: opacity 0.55s, transform 0.55s;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  border-radius: 5px;
}
.portfolio-style1:hover .hover-detail {
  opacity: 1;
  transition: all 500ms ease;
}
.portfolio-style1 .hover-text {
  padding: 0;
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.portfolio-style1 .hover-text .hover-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.portfolio-style1 .hover-text .hover-inner h6 {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0) scale(1, 1);
  -moz-transform: translate3d(0, 20px, 0) scale(1, 1);
  -ms-transform: translate3d(0, 20px, 0) scale(1, 1);
  transform: translate3d(0, 20px, 0) scale(1, 1);
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition: opacity 0.25s ease-in-out,
    -webkit-transform 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out, -moz-transform 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out,
    -moz-transform 0.25s ease-in-out, -o-transform 0.25s ease-in-out,
    transform 0.2s ease-in-out;
  -webkit-transform: translate3d(0, -20px, 0) scale(1, 1);
  -moz-transform: translate3d(0, -20px, 0) scale(1, 1);
  -ms-transform: translate3d(0, -20px, 0) scale(1, 1);
  transform: translate3d(0, -20px, 0) scale(1, 1);
}
.portfolio-style1:hover .hover-text .hover-inner h6 {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
.portfolio-style1 .hover-text .hover-inner h3 {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0) scale(1, 1);
  -moz-transform: translate3d(0, 20px, 0) scale(1, 1);
  -ms-transform: translate3d(0, 20px, 0) scale(1, 1);
  transform: translate3d(0, 20px, 0) scale(1, 1);
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition: opacity 0.25s ease-in-out,
    -webkit-transform 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out, -moz-transform 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out,
    -moz-transform 0.25s ease-in-out, -o-transform 0.25s ease-in-out,
    transform 0.2s ease-in-out;
}
.portfolio-style1:hover .hover-text .hover-inner h3 {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
@media screen and (max-width: 1399px) {
  .portfolio1 .portfolio-carousel .owl-nav {
    top: 35%;
  }
}
@media screen and (max-width: 1199px) {
  .portfolio1 .portfolio-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
}
.count-01:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url(../img/content/shape-03.png); */
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.05;
}
.appointment-form .form-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin-left: -30px;
  margin-top: 28px;
  border-radius: 50px;
}
.appointment-form .left-img .img-inner {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #aec035;
  width: 100px;
  border-radius: 50%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .appointment-form .left-img .img-inner {
    left: 150px;
  }
}
.lab-progress .progress {
  height: 0.3rem;
}
.vertical-timeline {
  position: relative;
  z-index: 1;
}
.vertical-timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #c0c8de;
  margin-left: -4px;
}
.vertical-timeline:after {
  content: "\e64b";
  font-family: "themify";
  font-size: 14px;
  position: absolute;
  left: 50%;
  bottom: -19px;
  color: #2a9d8f;
  margin-left: -6px;
}
.vertical-timeline .timeline-items {
  padding-bottom: 40px;
}
.vertical-timeline .timeline-items:before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  background-image: linear-gradient(
    0deg,
    #c0c8de,
    #c0c8de 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 20px 20px;
}
.vertical-timeline .item {
  display: flex;
  position: relative;
}
.vertical-timeline .item:not(:last-child) {
  margin-bottom: 70px;
}
.vertical-timeline .item:nth-child(even) .text {
  margin-left: 45px;
  margin-right: 0px;
  padding-left: 40px;
  padding-right: 50px;
}
.vertical-timeline .item:nth-child(odd) .count {
  margin-right: -30px;
}
.vertical-timeline .item:nth-child(odd) .icon {
  justify-content: flex-end;
}
.vertical-timeline .item:nth-child(odd) .timeline-circle:before {
  left: 100%;
}
.vertical-timeline .item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
.vertical-timeline .item:nth-child(even) .count {
  margin-left: -30px;
}
.vertical-timeline .item:nth-child(even) .icon {
  justify-content: flex-start;
}
.vertical-timeline .item:nth-child(even) .timeline-content {
  flex-direction: row-reverse;
}
.vertical-timeline .item:nth-child(even) .timeline-circle:before {
  right: 100%;
}
.vertical-timeline .icon,
.vertical-timeline .timeline-content {
  flex-basis: calc(50% - 1px);
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.vertical-timeline .timeline-circle {
  position: relative;
  margin: 0px 100px 0px 100px;
}
.vertical-timeline .timeline-circle .circle {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transition: 0.4s;
  top: calc(50% - 8px);
  left: -7px;
  width: 15px;
  height: 17px;
  background: #aec035;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  display: inline-block;
}
.vertical-timeline .timeline-circle:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  background-image: linear-gradient(
    90deg,
    #c0c8de,
    #c0c8de 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 20px 20px;
  width: calc(100px + 30px);
}
.vertical-timeline .text {
  box-shadow: 6px 7px 20px rgba(0, 0, 0, 0.1);
  margin: 0px 45px 0px 0px;
  padding: 31px 40px 33px 50px;
  background-color: #ffffff;
  z-index: 9;
  border-left: 3px solid #29753e;
  border-radius: 5px;
}
.vertical-timeline .count {
  position: relative;
  font-size: 16px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  flex: 0 auto;
  color: #fff;
  background: #aec035;
}
@media screen and (max-width: 991px) {
  .vertical-timeline .timeline-circle:before {
    width: calc(100px + -20px);
  }
  .vertical-timeline .text {
    margin: 0;
    padding: 20px 20px 20px 40px;
  }
  .vertical-timeline .count {
    width: 50px;
    height: 50px;
    font-size: 13px;
    line-height: 50px;
  }
  .vertical-timeline .item:nth-child(even) .text {
    margin: 0;
    padding-left: 20px;
    padding-right: 40px;
  }
  .vertical-timeline .timeline-circle {
    margin: 0px 30px 0px 30px;
  }
  .vertical-timeline .item:nth-child(odd) .count {
    margin-right: 30px;
  }
  .vertical-timeline .item:nth-child(even) .count {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .vertical-timeline:before,
  .vertical-timeline:after,
  .vertical-timeline .timeline-items:before {
    left: -40px;
  }
  .vertical-timeline .item:not(:last-child) {
    margin-bottom: 40px;
  }
  .vertical-timeline .timeline-content {
    order: 2;
    flex-basis: 70%;
  }
  .vertical-timeline .icon {
    order: 3;
    flex-basis: 30%;
  }
  .vertical-timeline .text {
    padding: 20px 20px 20px 30px;
  }
  .vertical-timeline .item:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }
  .vertical-timeline .item:nth-child(even) .text {
    padding-left: 30px;
    padding-right: 20px;
  }
  .vertical-timeline .item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
  }
  .vertical-timeline .item:nth-child(even) .count,
  .vertical-timeline .item:nth-child(odd) .count {
    margin-right: -20px;
    margin-left: 0;
  }
  .vertical-timeline .item:nth-child(even) .timeline-content,
  .vertical-timeline .item:nth-child(odd) .timeline-content {
    flex-direction: row;
  }
  .vertical-timeline .item:nth-child(even) .icon,
  .vertical-timeline .item:nth-child(odd) .icon {
    justify-content: center;
  }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-control:focus {
  border-color: #ff7029;
}
.form-check-input:checked {
  border-color: #ff7029;
  background-color: #ff7029;
}
.quform-input {
  position: relative;
}
.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}
.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px;
}
.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}
.quform-inner input {
  width: 100%;
}
.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}
.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}
.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
  float: none;
}
.quform-loading-wrap {
  float: none;
}
.quform-loading-wrap .quform-loading {
  display: inline-block;
}
.quform-element {
  margin-bottom: 1rem;
}
footer {
  padding: 10px 0 0;
  background: #aec035; 
}
.footer-logo {
  max-width: 212px;
  width: 100%;
  display: inline-block;
}
.footer-logo a {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 991px) {
  footer {
    padding-top: 70px;
  }
}
.footer1 .footer-newsletter .quform-submit-inner {
  position: absolute;
  right: 10px;
  top: 1px;
  width: auto;
}
.footer1 .footer-newsletter .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}
.footer1 .footer-newsletter input {
  width: 100%;
  border: transparent;
  padding: 19px 30px;
  border-radius: 5px;
}
.footer1 .footer-newsletter .quform-submit-inner button {
  font-size: 18px;
  border: none;
  position: absolute;
  right: -10px;
  top: -1px;
  height: 59px;
  width: 60px;
  color: #fff;
  background: #aec035;
  border-radius: 10px;
  border: 4px solid #fff;
}
.footer1 .footer-newsletter .quform-submit-inner button:hover {
  background: #29753e;
}
.footer1 .footer-newsletter .quform-has-error input {
  border-color: #f5543f;
}
.footer1 .footer-newsletter .quform-input .quform-errors-wrap {
  right: 15px;
}
.footer1 .footer-newsletter i {
  font-size: 1.5rem;
  line-height: 2rem;
}
.footer1 .footer-link li a {
  color: #fff;
}
.footer1 .footer-link li a:hover {
  color: #aec035;
}
.footer1 .news-img {
  width: 75px;
  height: 75px;
  border: 1px dashed #29753e;
  border-radius: 50%;
  padding: 5px;
}
.footer1 .footer-bar .share-post li a {
  background-color: #aec035;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
.footer1 .footer-bar .share-post li a:hover {
  background: #29753e;
}
@media screen and (max-width: 575px) {
  .footer1 .footer-bar .share-post li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }
}
.footer2 .footer-newsletter .quform-submit-inner {
  right: 0;
}
.footer2 .quform-input .form-control {
  min-height: 50px;
}
.footer2 .share-post li a i {
  background-color: #aec035;
  width: 38px;
  height: 38px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer2 .share-post li a:hover i {
  background-color: #29753e;
  border: 1px solid #29753e;
  color: #fff;
}
.footer3 .share-post li a i {
  width: 35px;
  height: 35px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  pointer-events: auto;
  background: #aec035;
  border: 1px solid #aec035;
  transition-duration: 0.5s;
}
.footer3 .share-post li a:hover i {
  background-color: transparent;
  color: #aec035;
  border: 1px solid #aec035;
}
.footer3 .footer-bar .footer-bottom:before {
  content: "";
  width: 1599px;
  height: 94px;
  bottom: 0;
  left: 0;
  background-color: #f2f2f2;
  position: absolute;
  border-top-left-radius: 5px;
}
@media screen and (max-width: 767px) {
  .footer3 .footer-bar .footer-bottom:before {
    width: 100%;
    height: 100%;
    border-top-right-radius: 5px;
  }
}
@media screen and (max-width: 575px) {
  .footer3 .share-post li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.buy-theme {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 180px;
  right: -89px;
  background: #aec035;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.buy-theme i {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.all-demo i {
  font-size: 15px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.buy-theme:hover,
.all-demo:hover {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  right: 0px;
  background: #2fbfa7;
}
.all-demo:hover {
  background: #29753e;
}
.buy-theme span,
.all-demo span {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 0;
}
.buy-theme:hover span,
.all-demo:hover span {
  opacity: 1;
  color: #fff;
}
.buy-theme:hover i,
.all-demo:hover i {
  color: #fff;
}
.buy-theme a,
.all-demo a {
  color: #232323;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}
.all-demo {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 212px;
  right: -105px;
  background: #29753e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
