body {
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #818385;
}
html {
    scroll-behavior: smooth;
}
p, .paragraph {
  font-weight: 400;
  color: #818385;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

/*h1, h2, h3, h4, h5, h6 {
  color: #172231;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  transition: .2s ease;
}*/

h1, h2, h3, h4, h5, h6 {
    color: #505050;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    transition: .2s ease;
}

h1, .h1 {
  font-size: 70px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 35px;
}



h4, .h4, .subtitle {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

/* /typography */
/* Button style */
.btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  padding: 15.5px 28px;
  border-radius: 35px;
  font-weight: 700;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: .3s ease-in;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-lg {
  font-size: 20px;
  padding: 19px 35px;
}

.btn-md {
  font-size: 18px;
  padding: 17px 30px;
}

.btn-sm {
  font-size: 12px;
  padding: 5px 20px;
}

.btn-primary {
  background: #c97d48;
  color: #fff;
  border-color: #c97d48;
}

.btn-primary:active {
  background: #6b9c2e !important;
  border-color: #6b9c2e;
}

.btn-primary:hover {
    background: #252d39;
    border-color: #252d39;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #6b9c2e;
  border-color: #6b9c2e;
}

.btn-gray {
  background: #f5f6fa;
  color: #172231;
  border-color: #f5f6fa;
}

.btn-gray:active {
  background: #c97d48 !important;
  border-color: #c97d48;
  color: #fff;
}

.btn-gray:hover {
  background: #c97d48;
  border-color: #c97d48;
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #6b9c2e;
  border-color: #6b9c2e;
}

.btn-secondary {
  background: transparent;
  color: #172231;
  padding-left: 0;
  border: 0;
}

.btn-secondary:active {
  background: transparent !important;
  color: #c97d48;
}

.btn-secondary:hover {
    background: #c97d48;
    color: #ffffff;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #c97d48;
  background-color: transparent;
  border: 0;
}

.btn-primary-outline {
  background: transparent;
  color: #172231;
  border: 2px solid #172231;
}

.btn-primary-outline:active {
  background: #c97d48 !important;
  border-color: #c97d48;
  color: #fff;
}

.btn-primary-outline:hover {
  background: #c97d48;
  border-color: #c97d48;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #172231;
  border-color: #e7e7e7;
}

.btn-light:active {
  background: transparent !important;
  border-color: #fff;
  color: #fff;
}

.btn-light:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-light-alt:active {
  background: #c97d48 !important;
  border-color: #c97d48;
  color: #fff;
}

.btn-light-alt:hover {
  background: #c97d48;
  border-color: #c97d48;
  color: #fff;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-light-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-light-outline:active {
  background: #6b9c2e !important;
  border-color: #6b9c2e;
  color: #fff;
}

.btn-light-outline:hover {
  background: #6b9c2e;
  border-color: #6b9c2e;
  color: #fff;
}

.btn-arrow {
  transition: .2s ease;
}

.btn-arrow::before {
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  background: transparent;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  left: calc( 85% + 5px);
  transition: .2s ease;
}

.btn-arrow::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
  transition: .2s ease;
  left: 85%;
}

.btn-arrow:hover::before {
  left: calc( 85% + 10px);
  border-color: #c97d48;
}

.btn-arrow:hover::after {
  width: 20px;
  background: #c97d48;
}

/* hover effect */
.hover-ripple {
  transition: .2s ease-in;
}

.hover-ripple:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.hover-ripple:hover::after {
  -webkit-animation: sonarEffect 1s ease-out 50ms;
          animation: sonarEffect 1s ease-out 50ms;
}

.hover-ripple::after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  border-radius: inherit;
}

.hover-ripple.ripple-white:hover::after {
  -webkit-animation: sonarEffectWhite 1s ease-out 50ms;
          animation: sonarEffectWhite 1s ease-out 50ms;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #c97d48, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #c97d48, 0 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes sonarEffect {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #c97d48, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #c97d48, 0 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes sonarEffectWhite {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes sonarEffectWhite {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

/* /button style */
body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #9ed060;
  color: #fff;
}

::selection {
  background: #9ed060;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin {
  height: 50px;
  width: 50px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(134, 195, 58, 0.75) rgba(134, 195, 58, 0.75) rgba(134, 195, 58, 0.25) rgba(134, 195, 58, 0.25);
  border-radius: 100%;
  -webkit-animation: clockwise 1s linear infinite;
          animation: clockwise 1s linear infinite;
}

@-webkit-keyframes clockwise {
  to {
    -webkit-transform: rotate(360deg) translatez(0);
            transform: rotate(360deg) translatez(0);
  }
}

@keyframes clockwise {
  to {
    -webkit-transform: rotate(360deg) translatez(0);
            transform: rotate(360deg) translatez(0);
  }
}

/* /preloader */
ol,
ul {
  list-style-type: none;
  margin: 0px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #c97d48;
}

a.text-white:hover,
a.text-light:hover,
a.text-dark:hover {
  color: #c97d48 !important;
}

/* section */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-sm {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title-border {
  position: relative;
  height: 5px;
  width: 30px;
  background: #c97d48;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.section-title-border::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background: #c97d48;
  border-radius: 10px;
  right: -60%;
  top: 0;
}

.section-title-border::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 25%;
  background: #c97d48;
  border-radius: 10px;
  right: -100%;
  top: 0;
}

.section-title-border.border-center {
  margin-left: calc(50% - 27px);
}

.section-title-border.border-white {
  background: #fff;
}

.section-title-border.border-white::before {
  background: #fff;
}

.section-title-border.border-white::after {
  background: #fff;
}

.section-title-border.border-inline {
  display: inline-block;
  margin-bottom: 5px;
}

.subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #818385;
}

.section-bottom-lg {
  padding-bottom: 240px;
}

/* /section */
/* background image */
.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/* /background image */
/* overlay */
.overlay {
  position: relative;
}

/*.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .6;
}*/

.overlay-secondary {
  position: relative;
}

.overlay-secondary::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #252d39;
  opacity: .85;
}

/* /overlay */
/* common class */
.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #c97d48 !important;
}

.bg-secondary {
  background: #252d39 !important;
}

.bg-secondary-darken {
  background: #1f2630 !important;
}

.bg-gray {
  background: #f5f6fa !important;
}

.bg-gray-white {
  background-image: linear-gradient(to right, #f5f6fa 45%, #fff 0%);
}

.bg-white-gray {
  background-image: linear-gradient(to right, #fff 45%, #f5f6fa 0%);
}

.bg-white2-gray {
  background-image: linear-gradient(to right, #fff 70%, #f5f6fa 0%);
}

.text-primary {
  color: #c97d48 !important;
}

.text-color {
  color: #818385;
}

.text-light {
  color: #ddd !important;
}

.text-dark {
  color: #172231;
}

.hilighted {
  background: #252d39;
  padding: 0 5px;
  border-radius: 2px;
  color: #fff;
}

.letter-spacing {
  letter-spacing: 2px;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.zindex-0 {
  z-index: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.min-height-400 {
  min-height: 400px;
}

.border-color {
  border-color: #e7e7e7 !important;
}

.border-muted {
  border-color: #404751 !important;
}

.rounded-top-0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.flex-basis-33 {
  flex-basis: 33.333333%;
}

.icon {
  font-size: 40px;
}

.icon-sm {
  font-size: 34px;
}

.icon-xs {
  font-size: 22px;
}

.icon-lg {
  font-size: 56px;
}

.box-shadow {
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.translate-top {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.transition {
  transition: .2s ease;
}

.font-size-30 {
  font-size: 30px;
}

.font-weight-semebold {
  font-weight: 600 !important;
}

.font-secondary {
  font-family: "Barlow Condensed", sans-serif !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: none !important;
}

.border-md-right {
  border-right: 1px solid;
}

@media (max-width: 767px) {
  .border-md-right {
    border: 0;
  }
}

/* /common class */
/* icon animation */
.icon-bg {
  position: relative;
  background-color: rgba(134, 195, 58, 0.2);
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 120px 135px 110px 90px;
}

.icon-bg::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 5px;
  background: rgba(134, 195, 58, 0.05);
  border: 2px solid #c97d48;
  border-radius: 130px 120px 160px 130px;
}

.icon-bg .icon {
  line-height: 100px;
}



/* /form control */
/* social icon */
.social-icon li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  line-height: 45px;
  text-align: center;
}

.social-icon li a:hover {
  color: #c97d48;
  background: #fff;
}

.social-icon-alt li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  line-height: 45px;
  text-align: center;
}

.social-icon-alt li a:hover {
  color: #fff;
  background: #c97d48;
  border-color: #c97d48;
}

/* /social icon */
/* slick style */
.slick-slide {
  outline: 0;
}

/* slick arrows */
.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(134, 195, 58, 0.5);
  color: #fff;
  border: 0;
  line-height: 70px;
  font-size: 35px;
}

.slick-arrow::before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  background: transparent;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  transition: .2s ease;
}

.slick-arrow::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  transition: .2s ease;
}

@media (max-width: 575px) {
  .slick-arrow {
    display: none;
  }
}

.slick-arrow:focus {
  outline: 0;
}

.slick-arrow:hover {
  background: #c97d48;
}

.prevArrow {
  left: 0px;
}

.prevArrow::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 35px;
}

.prevArrow::after {
  right: 20px;
}

.nextArrow {
  right: 0px;
}

.nextArrow::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 35px;
}

.nextArrow::after {
  left: 20px;
}

/* /slick arrows */
/* slick dots */
.slick-dots {
  padding-left: 0;
  text-align: center;
  position: absolute;
  bottom: -185px;
  left: 0;
  right: 0;
  z-index: 9;
}

.slick-dots li {
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 20px;
  transition: .2s ease;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.slick-dots li img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.slick-dots li.slick-active {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* /slick dots */
/* Navbar */
/* top header */
.top-header {
  font-size: 14px;
}

/* /top header */
/* navigation */
.navigation {
    box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
    position: relative;
    z-index: 1;
    width: 100%;
  
}
.sticky {
    box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
    position: fixed;
    z-index: 40;
    width: 100%;
    top: 0;
}
@media (min-width: 992px) {
    .navbar-brand .pb-lg-3, .py-lg-3 {
        padding-bottom: 0rem !important;
    }
}


.navbar {
  padding: 0;
}

.navbar-collapse {
  padding-bottom: 10px;
  transition: .2s ease;
}

.navbar .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 700;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: 100px;
  left: -25px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #172231;
  transition: .2s ease;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #c97d48;
  background: transparent;
  padding-left: 30px;
}

.navbar-light .navbar-nav .nav-link {
  color: #172231;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #c97d48;
  padding-top: 36px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 15px;
}

@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 10px;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }
}

/* search */
.search-btn {
  border: 0;
  background: transparent;
}

.search-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  visibility: hidden;
  transition: .2s ease;
  opacity: 0;
}

.search-wrapper.open {
  visibility: visible;
  opacity: 1;
}

.search-box {
  height: 112px;
  width: 100%;
  border: 0;
  background: #fff;
  font-size: 30px;
  padding: 0;
}

.search-box:focus {
  box-shadow: none !important;
}

.search-close {
  position: absolute;
  right: 5px;
  top: 40px;
  border: 0;
  background: transparent;
  page-break-after: 10px;
  font-size: 20px;
}

/* /navigation */
/* hero slider */
.hero-section {
  padding: 160px 0 270px;
}

.hero-slider {
  overflow-x: hidden;
}

.hero-slider .prevArrow {
  left: -100px;
}

.hero-slider .nextArrow {
  right: -100px;
}

.hero-slider:hover .prevArrow {
  left: 35px;
}

.hero-slider:hover .nextArrow {
  right: 35px;
}

/* /hero slider */
/* banner feature */
.banner-feature-wrapper {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.hover-bg-dark:hover, .hover-bg-dark.active {
  background: #252d39 !important;
}

.hover-bg-dark:hover *, .hover-bg-dark.active * {
  color: #fff !important;
}

/* /banner feature */
/* about */
.image-bg {
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -1;
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.philosophy-bg-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

/* /about */
/* funfacts */
.funfacts {
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .funfacts {
    background: #252d39;
  }
}

.funfacts .container {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  position: relative;
}

.funfacts .container::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #252d39;
}

@media (max-width: 991px) {
  .funfacts .container {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .funfacts .container::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .funfacts h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .funfacts h3 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .funfacts .icon-lg {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .funfacts .icon-lg {
    font-size: 50px;
  }
}

/* /funfacts */
/* feature */
.feature-img-bg {
  position: relative;
}

.feature-img-bg::before {
  position: absolute;
  content: "";
  background: url(img/feature-bg.png);
  top: -100px;
  right: -120px;
  height: 150%;
  width: 120%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .feature-img-bg::before {
    display: none;
  }
}

.play-video {
  position: absolute;
  left: 0;
  bottom: 20%;
}

.play-icon {
  display: inline-block;
  min-width: 90px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  font-size: 30px;
}

/* /feature */
/* service */
.service-wrapper {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}

.card-icon {
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #c97d48;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 32px;
  left: 15px;
  top: -90px;
}

.service-bg-dots {
  position: relative;
}

.service-bg-dots::before {
  position: absolute;
  content: "";
  background: url(img/service-page-2.png);
  top: 0px;
  right: 0px;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* /service */
/* team */
.team-member-img img {
  position: relative;
  z-index: 2;
}

.team-member-img::before {
  position: absolute;
  content: "";
  background: url(img/team-member-bg.png);
  top: 0px;
  right: 0px;
  height: 60%;
  width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: .2s ease;
}

.team-member-img::after {
  position: absolute;
  content: "";
  background: url(img/team-member-bg.png);
  bottom: -40px;
  left: 0px;
  height: 60%;
  width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: .2s ease;
}

.team-member:hover .team-member-img::before {
  top: -20px;
  right: -20px;
}

.team-member:hover .team-member-img::after {
  bottom: -60px;
  left: -20px;
}

.team-member:hover .hover-icon {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.team-member:hover .hover-icon .social-icon a {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.hover-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(134, 195, 58, 0.9);
  transition: .2s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  z-index: 3;
  opacity: 0;
}

.hover-icon .social-icon a {
  -webkit-transform: scale(0);
          transform: scale(0);
}

/* /team */
/* project */
.project-item img {
  transition: .4s ease-in;
}

.project-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.project-item:hover .hover-overlay {
  opacity: 1;
}

.project-item:hover .hover-overlay a {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.hover-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(134, 195, 58, 0.9);
  transition: .4s ease;
  opacity: 0;
}

.hover-overlay a {
  position: relative;
  font-size: 46px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  transition: .4s ease;
  display: inline-block;
}

.uni-plus {
  position: relative;
  padding: 0 20px;
}

.uni-plus::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 40px;
  width: 2px;
  background: #fff;
}

.uni-plus::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 40px;
  background: #fff;
}

.filter-controls li {
  cursor: pointer;
}

.filter-controls li.active {
  color: #c97d48 !important;
}

/* /project */
/* testimonial */
.bg-dots {
  position: relative;
}

.bg-dots::before {
  position: absolute;
  content: "";
  background: url(img/testimonial-bg-1.png);
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.bg-dots .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider .nextArrow,
.testimonial-slider .prevArrow {
  opacity: 0;
  transition-delay: 1s;
}

.testimonial-slider:hover .nextArrow {
  opacity: 1;
  right: -100px;
  transition-delay: 0s;
}

.testimonial-slider:hover .prevArrow {
  opacity: 1;
  left: -100px;
  transition-delay: 0s;
}

.bg-quote {
  position: relative;
}

.bg-quote::before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 150px;
  color: rgba(134, 195, 58, 0.3);
  top: -10px;
  line-height: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* /testimonial */
/* clients logo */
.clients-logo {
  text-align: center;
  position: relative;
  height: 120px;
  width: 180px;
}

.clients-logo:hover .white {
  opacity: 0;
}

.clients-logo:hover .primary {
  opacity: 1;
}

.clients-logo .white {
  opacity: 1;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  padding: 0 10px;
}

.clients-logo .primary {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  padding: 0 10px;
}

.customer-bg-shape {
  position: absolute;
  top: 0;
  right: 50%;
}

/* /clients logo */
/* cta sm */
.cta-sm-bg {
  position: relative;
}

.cta-sm-bg::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: calc(100% - 10%);
  top: 0;
  background: url(img/cta-sm-right.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-sm-bg::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: url(img/cta-sm-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

/* /cta sm */
/* pricing */
.pricing-table {
  transition: .2s ease;
  position: relative;
}

.pricing-table::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(img/pricing-table-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-table.active {
  background: #c97d48;
  color: #fff;
}

.pricing-table.active h2,
.pricing-table.active h3,
.pricing-table.active h4,
.pricing-table.active h5,
.pricing-table.active h6,
.pricing-table.active .subtitle {
  color: #fff;
}

.pricing-duration {
  transition: .2s linear;
}

.pricing-duration.active {
  font-weight: 600;
  color: #172231;
}

.pricing-switcher {
  text-align: center;
}

.pricing-switcher .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  background: #c97d48;
  height: 40px;
  width: 100px;
}

.pricing-switcher input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.pricing-switcher label {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  color: #818385;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-transform: uppercase;
  font-size: 16px;
}

.pricing-switcher label.monthly {
  right: 130px;
}

.pricing-switcher label.monthly::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 50px;
  border-radius: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -85px;
}

.pricing-switcher label.yearly {
  left: 130px;
}

.pricing-switcher label.yearly::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 50px;
  border-radius: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -85px;
}

.pricing-switcher .switch {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50em;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.pricing-list li {
  position: relative;
  padding: 0 !important;
}

@media only screen and (min-width: 768px) {
  .pricing-list {
    margin: 3em 0 0;
  }
  .pricing-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .pricing-list > li {
    width: 33.3333333333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.pricing-wrapper {
  position: relative;
}

.touch .pricing-wrapper {
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-animation: rotate 0.5s;
          animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  -webkit-animation: rotate-inverse 0.5s;
          animation: rotate-inverse 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
  opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-animation: rotate-back 0.5s;
          animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  -webkit-animation: rotate-inverse-back 0.5s;
          animation: rotate-inverse-back 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
  opacity: 1;
}

.pricing-wrapper > li {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pricing-wrapper .is-visible {
  position: relative;
  z-index: 5;
}

.pricing-wrapper .is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
  z-index: 3 !important;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
            transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
            transform: perspective(2000px) rotateY(180deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
            transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
            transform: perspective(2000px) rotateY(180deg);
  }
}

@-webkit-keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
            transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
            transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
            transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
            transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
}

@-webkit-keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
            transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
            transform: perspective(2000px) rotateY(-180deg);
  }
}

@keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
            transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
            transform: perspective(2000px) rotateY(-180deg);
  }
}

@-webkit-keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
            transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
            transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
            transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
            transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
            transform: perspective(2000px) rotateY(0);
  }
}

/* /pricing */
/* blog */
.card-type {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 3px 10px;
  color: #fff;
  background: #c97d48;
  z-index: 1;
}

.card-meta {
  font-size: 14px;
}

.blog-shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.blog-shape-right {
  position: absolute;
  right: 0;
  top: 50%;
}

.clip-half-cycle {
  -webkit-clip-path: circle(157% at 50% -100%);
          clip-path: circle(157% at 50% -100%);
}

.title-border-left {
  position: relative;
  padding-left: 30px;
}

.title-border-left::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 5px;
  border-radius: 30px;
  background: #c97d48;
}

.post-search {
  border: 0;
  background: transparent;
  position: absolute;
  bottom: 15px;
  right: 0;
}

.tag-list a {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(51, 77, 128, 0.12);
  border-radius: 35px;
  margin-bottom: 15px;
  color: #818385;
}

.tag-list a:hover {
  background: #c97d48;
  color: #fff;
  box-shadow: 0;
}

blockquote {
  padding: 30px 40px;
  font-style: italic;
  color: #172231;
  border-left: 2px solid #c97d48;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  position: relative;
  margin-bottom: 40px;
}

blockquote::before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 100px;
  color: rgba(134, 195, 58, 0.3);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-style: normal;
}

blockquote p {
  font-style: normal;
  margin-top: 10px;
}

/* /blog */
/* footer */
.list-styled {
  padding-left: 0;
}

.list-styled li {
  position: relative;
  padding-left: 20px;
}

.list-styled li::before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  left: 0;
  top: 1px;
  color: #c97d48;
  transition: .3s ease;
}

.list-styled li:hover::before {
  color: #c97d48 !important;
}

.list-styled li:hover a {
  padding-left:10px;
}

.list-styled li.text-light::before {
  color: #ddd;
}

.list-styled.style-circle li::before {
  content: "\f10c";
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 35px;
}

.newsletter-form:focus {
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form::-webkit-input-placeholder {
  color: #fff;
}

.newsletter-form::-ms-input-placeholder {
  color: #fff;
}

.newsletter-form::placeholder {
  color: #fff;
}

.btn-subscribe {
  position: absolute;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* /footer */

/*# sourceMappingURL=maps/style.css.map */


img.img-fluid.pb-lg-3 {
    width: 180px;
}


/****************************************************************************/
/*Pest Problem Sec*/
.pest-prob {
    background: #f3f5f6;
}

.pest-icon {
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 90px;
    border: 10px solid #fff;
    border-radius: 50%;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.pest-icon img{
   position: relative;
    width: 200px;
   
}

.pest-item:hover .pest-icon {
    border-color: #F7941D;
}

.title{
    text-align:center;
    margin-bottom: 25px;
}


.pest-item .pest-pop {
    /*visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: -20px;
    opacity: 0;
    transition: opacity 0.3s;
    width: 100%;*/
    /*visibility: hidden;
    background-color: #fff;
    color: #818385;
    text-align: left;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    z-index: 1;
    top: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    width: 100%;
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  transition: .3s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;*/
}

@media screen and (max-width: 480px) {
  .pest-pop {
    display:none;
  }
}

.pest-item .pleft {
    visibility: hidden;
    background-color: #fff;
    color: #818385;
    text-align: left;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: -70px;
    left: 90%;
    transition: opacity 0.3s;
    width: 130%;
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    transition: .3s ease;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}
.pest-item .pright {
    visibility: hidden;
    background-color: #fff;
    color: #818385;
    text-align: left;
    border-radius: 6px;
    padding: 10px 10px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: -70px;
    right: 90%;
    transition: opacity 0.3s;
    width: 130%;
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    transition: .3s ease;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.pest-item:hover .pest-pop {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/*.pest-item .pest-pop::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 39%;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;

}*/
.pest-item  .pleft::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 39%;
    border-width: 20px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.pest-item .pright::after {
    content: "";
    position: absolute;
    left: 100%;
    bottom: 39%;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/*********************************************************************/
/*Service Sec*/
.card-img-wrapper {
    position: relative;
}

.square-icon {
    height: 65px;
    width: 65px;
    background: #c97d48;
    color: #fff;
    font-size: 35px;
    line-height: 65px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}
.translateY-25 {
    transform: translateY(25px);
}
.btn-p {
    background: transparent;
    color: #172231;
    padding-left: 0;
    border: 0;
}
.pest-pop .btn{
    padding:0 20px 0 0;
}

.btn-secondary {
    background: #303032;
    color: #fff;
}

.btn {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    padding: 16px 44px;
    border-radius: 35px;
    font-weight: 600;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
}

.translateY-33 {
    transform: translateY(-33px);
}

.card {
    margin: 35px 0;
}

.service-icon {
    position: relative;
    width: 50px;
    display: block;
    vertical-align: middle;
    margin: 10px auto;
}



/********************/


.bod {
    padding: 50px 0;
}

h4.hda {
    color: #424242;
}


.hdb {
    color: #c97d48;
    /*text-shadow: 2px 2px rgba(8, 18, 109, 0.3);*/
}
.hdba {
    color: #424242;
    display: inline;
}

.hero-section .btn {
    margin: 20px 0;
    background-color: #c97d48;
    color: white;

}
.about-us-sec p {
    text-align: center;
    margin: 0 100px;
}

@media screen and (max-width: 480px) {
  .about-us-sec p {
    margin: 0 15px;
}
}

section.bod.about-us-sec {
    margin-top: -40px !important;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: rgba(37, 45, 57, 0.58);
    color: #fff;
    border: 0;
    line-height: 70px;
    font-size: 35px;
}

.pest-title {
    margin: 15px 0 30px;
}

.pest-pop h4 {
    margin: 10px 0;
}


/************************************/
/*Footer logo*/

.footer-logo{
    width: 350px;
}

footer .fa{
    margin-right: 10px;
}

footer .section.bg-secondary {
    border-top: 10px solid #c97d48;
}

/**************************/
/*Services Hover Effects*/


.hovereffect .overlay {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-bottom: 2px solid #FFF;
    border-top: 2px solid #FFF;
    -webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
    transition: opacity 0.55s, transform 0.55s;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
}

.hovereffect .overlay2 {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-left: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transition: opacity 0.55s, -webkit-transform 0.55s;
    transition: opacity 0.55s, transform 0.55s;
    -webkit-transform: scale(1,0);
    -ms-transform: scale(1,0);
    transform: scale(1,0);
}

.card:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.card:hover .overlay2 {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


.hovereffect .card-img-top {
    display: block;
    position: relative;
    -webkit-transition: all 0.55s;
    transition: all 0.55s;
}

.card:hover .card-img-top {
    filter: brightness(0.6);
    -webkit-filter: brightness(0.6);
}

/****************************/
/*Parallex*/
.demo-table-cell {
    height: 300px;
}
.par-hd {
    text-align: center;
    vertical-align: middle;
    padding: 8% 5%;
    color: #fff;
    width: 60%;
    float: right;
}

/****************************/
/*Preloader*/

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: visible;
    background: #c97d48 url('../../Images/preloader.gif') no-repeat center center;
    background-color:green;
}
#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #332f2da6;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;

}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
    #scroll:hover {
        background-color: #c97d48;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }



    /*pointer image*/

.circle {
    width: 4%;
    position: absolute;
    background-color: #c97d48;
    z-index: 1;
    height: 10%;
    border-radius: 50%;
    top: 58%;
    left: 61%;
    border: 5px solid white;
}
.circle1 {
    width: 4%;
    position: absolute;
    background-color: #c97d48;
    z-index: 1;
    height: 10%;
    border-radius: 50%;
    top: 50%;
    left: 25%;
    border: 5px solid white;
}
.pointer-img{
    position:relative;
    padding:0;
}

.modal-dialog {
    max-width: 80%;
    margin: 10% auto;
}

.modal{
    padding: 0 !important;
}


/*Pest tabs*/
.tab-pest {
    flex: auto;
    text-align: center;
}
.tabs-pest {
    border-bottom: none !important;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}
.tab-pest img {
    width: 80px;
    display: block;
    margin:auto;
}


/*Section defaults*/
.def-sec {
    padding: 100px 0;
}


.hd-left {
    color: #c97d48;
}

.head-sec{
    padding-bottom:20px;
}

/*Our philoso sec*/
.phil-sec {
    background: rgba(255, 255, 255, 0.9019607843137255);
    margin: 60px 0;
    padding: 60px;
}
.fam {
    position: absolute;
    bottom: 0;
}
.philo {
    padding: 0 0 0 10%
}

@media screen and (max-width: 1000px) {
    .fam {
        position: relative;
    }
    .philo {
        padding: 0 10% 0 10%
    }
}

/*Our Team Section*/

.our-team-sec {
    padding: 50px 0;
}

.our-team-sec p {
   text-align:center;
}

/*Vission Mission Section*/

.vm-sec {
    padding: 50px 0;
}
.vm-sec .container{
    margin-top: -25%;
}



/*Blog Section*/

.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(2);
    animation: pulse-red 2s infinite;
}

.blob.red {
    background: rgba(201, 125, 72, 1);
    box-shadow: 0 0 0 0 rgba(201, 125, 72, 1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.50);
        box-shadow: 0 0 0 0 rgba(201, 125, 72, 2);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(201, 125, 72, 0);
    }

    100% {
        transform: scale(0.50);
        box-shadow: 0 0 0 0 rgba(201, 125, 72, 0);
    }
}

/**********************************************/
/*termite right*/
.side-jara{
    background: #fff;
}

.jar-div-a{
    padding: 50px 0;
}

.side-jara {
    padding: 50px
}
.side-jara ul{
    list-style-type: unset;
}
.side-jara h5 {
    color: #c97d48;
}
.pad-less{
    padding:10px;
}

@media screen and (max-width: 480px) {
  .pad-less{
    padding:36px;
}
}


.colorbg{
    background:#b85f21;
}
.colorbg p{
    font-size: 20px;
    color:white;
    padding-left:10px;
}
.colorbg .fa{
    font-size:40px;
    transition: .5s;
}
.colorbg .fa:hover{
    color: black;

}
.colorbg p:hover .fa{
    color: black;

}
.bg-color-hd{
    text-align:center;
    color:black;
}














