@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
  --sp_primary-color: #000000;
  --sp_secondary-color: #00836c; 
  --sp_heading-font: 'Jost', sans-serif;
  --sp_body-font: 'Nunito', sans-serif;
  --green: #00836c;
  --orange: #fbae18;
  --dark-orange: #ed9f0a;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 19px; /*18px*/  
  font-family: var(--sp_body-font);
  line-height: 1.6;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 36px; }

h3, .h3 {
  font-size: 28px;/*30px*/ }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 24px;/*20px*/ }

h6, .h6 {
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);
  clear: both;
  font-family: var(--sp_heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
.red-bg {
  background-color: var(--red);
}
.gold-bg {
  background-color: var(--gold);
}
.black-bg {
  background-color: var(--black);
}
.grey-bg {
  background-color: var(--grey);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.sp-btn {  
  padding: 10px 22px;
  border: 1px solid var(--dark-orange);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
}
.sp-btn:hover {
  border: 1px solid var(--dark-orange);
  text-decoration: none;
}
.btn--primary {
  z-index: 1;
  color: var(--white);
  background-color: var(--dark-orange);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--green);
  border-color: var(--green);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--green);
  border-color: var(--green); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--dark-orange);
  border-color: var(--dark-orange); 
}
.btn--white {
  z-index: 1;
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--green);
  color: var(--white);
  background-color: var(--green);
}
.pad-tb {
  padding: 50px 0;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title.text-center {
  margin-bottom: 15px; 
  position: relative;
}
.section-title.text-left {
  margin-bottom: 15px;
  position: relative;
}
.section-title.text-left h2, .section-title.text-center h2 {
  padding-bottom: 15px;
  color: var(--black);
  position: relative;
}
.section-title.text-left h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--green);
}
.section-title.text-center h2:after {
  content: "";
  position: relative;
  margin: 15px auto 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--green);    
  display: block;
}
.top_bar {
  background: var(--green); 
  padding: 7px 0; 
  overflow: hidden;
}
.top_bar ul {
  margin-bottom: 0;
  list-style: none;
  float: right;
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-left: 0;
  padding-inline-start: 0; 
  margin-right: 0px; 
}
.top_bar ul > li {
  margin-left: 15px;
  float: left;    
  line-height: 1.4;
}
.top_bar ul > li a {
  color: var(--white); 
  font-size: 17px;
  position: relative;
  padding-right: 15px;
}
.top_bar ul > li a:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-right: 1px solid #eee;
  width: 100%;
  height: 100%;
  margin-left: 15px;
}
.top_bar ul > li:last-child a:after {
  display: none;
}
.top_bar ul > li a i {
  margin-right: 8px;
}
.top_bar ul > li a:hover, .top_bar a:hover {
  text-decoration: none;
}
.top_bar ul > li:last-child a {
  padding-right: 0px;
}
.header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4);
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  z-index: 99999;
  padding: 10px 0;
}
header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  padding: 8px 1.5vw;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu > li.active > a {
  color: var(--green);
}
header .main-menu > li:hover > a {
  color: var(--green);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--green);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu > li:last-child > a { 
  background: var(--dark-orange);
  color: #fff;
  border-radius: 50px;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 285px;
  overflow: hidden;
  border-top: 2px solid var(--dark-orange);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 8px 10px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--black);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 999999;/*15000*/
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
  display: none!important;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--green);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--green); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: var(--white);
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--light-blue);
  color: var(--white);
  display: inline-block;
  font-size: 19px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: var(--dark-blue); 
}
.breadcrumb_wrap {
  padding: 110px 0;
  background-color: #eee;
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  text-transform: uppercase;
  font-size: 42px;
  color: var(--white);
  position: relative;
}
.breadcrumb_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
}
label {
  display: block;
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 52px;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--green);
}
textarea.form-control {
  height: 170px;
}
.img-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.img-wrap img {
  transition: 0.2s linear;
}
.img-wrap:hover img {
  transform: scale(1.08);
}
ul.sp-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.sp-list > li {
  margin-bottom: 5px;  
  position: relative;
  padding-left: 30px;
}
ul.sp-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f560";/*f560 f14a f058 f105 f054*/
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--green);
}
.inner-services-detail.mb-40 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.servicedetail-content {
  padding: 0px 15px;
}
.inner-services-detail h3 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: var(--black);
}
.inner-services-detail .col-md-push-6 {
  position: relative;
  left: 50%;
}
.inner-services-detail .col-md-pull-6 {
  position: relative;
  right: 50%;
}
.inner-services-detail h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--dark-orange);
}
.inner-services-detail.inner-services-detail-first {
  padding-top: 50px;
  padding-bottom: 20px;
}
.inner-services-detail.inner-services-detail-last {
  padding-top: 20px;
  padding-bottom: 75px;
}
.services_info .section-title.text-center h2 {
  padding-bottom: 0;
}
.call_toaction {
  display: none;
}
/*banner*/
.banner-section{
  position: relative;
}
.banner-carousel .slide-item {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.slider-content.style-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; 
  z-index: 10;
}
.slider-main-title {
  text-align: center;
  max-width: 1400px;
  margin: 0px auto;
}
.slider-main-title h2, .slider-main-title h1 {
  font-size: 60px;
  color: #FFF;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin-block-start: 0;
  margin-block-end: 0;    
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.banner-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.banner-carousel .slide-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
} 
.banner-section .owl-carousel .owl-nav button:hover, 
.banner-section .owl-carousel .owl-nav button:focus {
  outline: 0;
}
.banner-section .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span, 
.banner-section .owl-carousel .owl-nav button.owl-next span {
  font-size: 45px;
  color: #ccc;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span:hover, 
.banner-section .owl-carousel .owl-nav button.owl-next span:hover {
  color: #fff;
}
.banner-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 48%;
}
/**/
.intro-section-wrap .col-lg-push-6 {
  left: 50%;
}
.intro-section-wrap .col-lg-pull-6 {
  right: 50%;
}
.intro-section-wrap .intro-content {
  padding-left: 20px;
}
.intro-section-wrap .intro-content h3 {
  margin-bottom: 15px;
}
.intro-section-wrap .intro-content p {
  margin-bottom: 20px;
  text-align: justify;
}
.intro-img-wrap-2 {
  gap: 5px;
  display: flex;
}
.intro-single-img-2 {
  width: 50%;
  flex-shrink: 0;
}
.intro-single-img-2.intro-single-img-21 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 465px;
}
.intro-single-img-2 img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.intro-img-content-2 {
  background-color: var(--green);
  border-radius: 5px;
}
.intro-img-content-text-2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 0;
  padding: 15px 25px;
}
.intro-single-img-2.intro-single-img-22 {
  width: calc(50% - 5px);
  height: 465px;
}
/**/
.services-wrap {
  background: #313131;
  padding: 50px 0 30px;
  position: relative;
  overflow-x: hidden;
}
.services-wrap::before {
  position: absolute;
  bottom:0px; /*-35px*/
  left: 0px;
  right: 0px;
  content: url(../images/services-bg.png);
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.services-wrap .section-title.text-center h2 {
  color: #fff;
}
.services-wrap .section-title.text-center h2:after {
  background: var(--orange);
}
.services-item {
  --space: 75px;/*20*/
  position: relative;
  background: #ffffff;
  padding: 15px 15px 15px 15px;
  z-index: 2;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 30px;
}
.services-item::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: var(--orange);
  transition: 0.2s linear;
}
.services-item:hover:before {
  width: 100%;
}
.services-item_img {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  max-height: unset;
  overflow: hidden;
}
.services-item_img img {
  transition: 0.2s linear;
}
.services-item:hover .services-item_img img {
  transform: scale(1.04);
}
.services-item_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  text-align: center;  
  margin: 0;
}
.services-item_title a {
  color: var(--black);
}
.services-item_title a:hover {
  color: var(--green);
  text-decoration: none;
}
.services-item:hover .services-item_title a {
  color: var(--green);
}
.services-view-all .sp-btn:hover {
  background: var(--white)!important;
  color: var(--green)!important;
}
.services-carousel.owl-carousel .owl-nav button.owl-next, 
.services-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
}
.services-carousel.owl-carousel .owl-nav button.owl-prev {
  left: -48px;
}
.services-carousel.owl-carousel .owl-nav button.owl-next {
  right: -48px;
}
.services-carousel.owl-carousel .owl-nav button.owl-next span, 
.services-carousel.owl-carousel .owl-nav button.owl-prev span {
  background-color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.services-carousel.owl-carousel .owl-nav button.owl-next span:hover, 
.services-carousel.owl-carousel .owl-nav button.owl-prev span:hover {
  background-color: var(--white);
  color: var(--green);
}
/**/
.footer {
  position: relative;
  background-color: #1e1e1e; 
  margin-top: 0px; /*25px*/
}
.footer-top {
  padding: 40px 0 30px;
  position: relative;
}
.footer-top .col-off-40 {
  margin-left: -40px;
  margin-right: 40px; 
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-widget h3 {
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}
.footer-widget h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--green);
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 10px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 25px;
  display: block;
} 
.footer-widget ul.widget-links > li a:hover {
  color: var(--white);
  text-decoration: none;
} 
.footer-widget ul.widget-links > li a:before {
  font-family: "Font Awesome 6 Free";
  content:"\f105";/*"\f0da"*/
  position: absolute;
  left: 0;
  font-weight: 600;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 5px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #2f2f2f; 
  padding: 15px 0;position: relative;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--green);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
}
ul.social-links > li a:hover {
  background: var(--dark-orange); 
}
.footer-bottom ul {
  margin-bottom: 0;
  float: right;
  margin-right: 30px;
}
.footer-widget h3.widget_title_one {
  opacity: 0;
} 
.design-by {
  display: none;
}
.queriescall-block {
  color: white;
  display: flex;
  margin-top: -22px;
  padding: 40px 70px;
  position: relative;
  align-items: center;
  background: var(--green);
  justify-content: space-between;
}
.queriescall-block:after, .queriescall-block:before {
  content: '';
  height: 0;
  width: 0;
  top: 0;
  position: absolute;
  border-bottom: 22px solid var(--green);
}
.queriescall-block:before {
  right: 100%;
  border-left: 18px solid transparent;
}
.queriescall-block:after {
  left: 100%;
  border-right: 18px solid transparent;
}
.queriescall-block h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 25px;
}
.queriescall-block a.sp-btn:hover {
  background: #fff;
  color: var(--green);
}
.queriescall-block a.sp-btn:hover {
  background: #fff;
  color: var(--green);
}
.bg-white {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.enquiry-form {
  padding: 50px 0 70px;
}
.enquiry-form textarea.form-control {
  height: 130px;
} 
label {
  margin-bottom: .2rem;
}   
.enquiry-form .form-group a {
  color: var(--green);
  text-decoration: underline;
}
.enquiry-form .sp-btn {
  padding: 10px 30px;
}
.gallery-wrap .grid a.fancybox {
  display: block;
  position: relative;
}
.gallery-wrap .masonry-gallery {
  margin: 0 -7.5px;
}
.gallery-wrap .masonry-gallery .grid {
  width: 25%;
  float: left;
  padding: 0 7.5px 15px;
}
.gallery-wrap .grid img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.gallery-wrap .grid .grid-img-overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 131 108 / 90%); 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.gallery-wrap .grid .grid-img-overlay i {
  color: #fff;
  font-size: 45px;
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
  align-items: center;
}
.gallery-wrap .grid a.fancybox:hover .grid-img-overlay {
  opacity: 1;
}
.thanks-sec {
  text-align: center;
  border-top: 1px solid #e1e1e1;
  padding: 55px 0;
}
.thanks-sec h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #211d21;
  font-size: 48px;
}
.thanks-sec h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
.single-client {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}
.single-client img {
  border-radius: 5px;
}
.vm-section-wrap.pad-tb {
  padding: 50px 0 75px;
}
.vm-box-wrap, .contact-box-wrap {
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 20px 15px;
  border-radius: 5px;
}
.vm-icon {
  display: inline-block;
  background: var(--green);
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 85px;
  font-size: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
}
.vm-box-wrap:hover .vm-icon, .contact-box-wrap:hover .contact-icon {
  background: var(--dark-orange);
}
.vm-box-wrap:hover h3, .contact-box-wrap:hover h3 {
  color: var(--green);
}
.contact-box-wrap { 
  min-height: 255px;
}
.contact-icon {
  display: inline-block;
  background: var(--green);
  color: #fff;
  width: 65px;
  height: 65px;
  line-height: 70px;
  font-size: 30px;
  margin-bottom: 15px;
  border-radius: 50%;
}
.contact-box-wrap p a {
  color: var(--black);
}
.contact-box-wrap p a:hover {
  color: var(--green);
}
.contact-map-wrap.pad-tb {
  padding: 0px 0px 75px;
}
.contact-map-wrap iframe {
  border-radius: 5px;
}