@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400&display=swap");
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.all-section {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

.btn10 {
  border: 1px solid #7ab253 !important;
  text-align: center;
  position: relative;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #7ab253 !important;
  z-index: 10;
  display: inline-block;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: 400;
}

.btn10:hover {
  border: 1px solid #7ab253 !important;
  color: #fff !important;
}

.btn10::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #7ab253;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
  border-color: #a30000 !important;
}

.btn10::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #fff;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all 0.94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
  border-color: #7ab253 !important;
}

.btn10:hover::before,
.btn1O:hover::before {
  opacity: 1;
  width: 116%;
}

.btn10:hover::after,
.btn1O:hover::after {
  opacity: 1;
  width: 120%;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Barlow", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "Barlow", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

p {
  color: #555454;
  font-size: 14px;
  font-weight: 400;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 15px 0;
  position: relative;
  z-index: 1;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 25px 27px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

/* .menuSec ul li a:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
} */

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}

.header-logo {
  position: absolute;
  top: -35px;
}
.header-logo {
    width: 25%;
    /* background: #fff; */
    /* padding: 10px; */
    /* border-radius: 12px 12px 0 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 45px; */
}
.header-logo a h3 {
    margin: 0;
    font-size: 21px;
}
.header-logo a img {
    width: 80%;
    object-fit: contain;
}
.menuSec .row:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  border-top-left-radius: 0;
}

.menuSec .row {
  position: relative;
}
.top-bar-left p {
  background: #7ab253;
  display: inline-block;
  padding: 5px 30px;
  color: #fff;
  font-size: 14px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  margin: 0;
}

.top-bar-right ul {
  background: #7ab253;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  justify-content: end;
  gap: 19px;
  width: 65%;
}

.top-bar-right ul a {
  color: #fff;
}

.top-bar-right ul li {
  border-right: 1px solid #fff;
  padding-right: 27px !important;
  padding: 5px 0;
}

.top-bar-right ul li:last-child {
  border: unset;
}
/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* banner :start */
.banner-slider .slick-dots li button:before {
  content: "";
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 12px;
  background: #ffffff;
  border-radius: 16px;
}
.banner-slider ul.slick-dots {
  bottom: -23%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 80%;
}
.banner-slider .slick-dots li.slick-active button:before {
  opacity: 3;
  background: #7ab253;
  width: 31px;
}
section.banner-wrap {
  background-image: url(../images/banner-back.jpg);
  background-size: cover;
  height: 100ch;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed;
}

section.banner-wrap .row {
  align-items: end;
}
.banner-text h1 {
  font-size: 44px;
  text-transform: uppercase;
  line-height: 70px;
  font-weight: 600;
}

.banner-text p {
  color: #fff;
  width: 80%;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-btn ul {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.banner-btn ul a {
  color: #fff;
  display: block;
  font-size: 20px;
}

.banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: end;
  width: 60%;
}

.banner-img img {
  width: 97%;
  height: 650px;
  /* object-fit: contain; */
}

.banner-text {
  margin-top: 100px;
}
/* banner :end */

/* about start */
.counting {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counting span {
  font-size: 60px !important;
  margin-bottom: 10px;
}
section.about-wrap {
  background-image: url(../images/about-back.png);
  background-size: cover;
  background-attachment: fixed;
}

.about-text h5 {
  font-size: 24px;
  color: #7ab253;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  line-height: 65px;
}

.about-text p {
  color: #555454;
  line-height: 35px;
}
img.abt-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about.img img:nth-child(1) {
  width: 85%;
}
.about-side-img {
  position: absolute;
  bottom: -70px;
  left: 30px;
  background-image: url(../images/about-side.png);
  object-fit: contain;
  height: 240px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.about-side-img ul {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 15px;
}
/* .about.img:before {
  content: "";
  position: absolute;
  top: 0;
  width: 92%;
  height: 600px;
  border: 2px solid #7ab253;
  border-radius: 50%;
  z-index: -1;
} */

.about-side-img ul h3 {
  font-size: 90px;
  color: #fff;
  margin: 0;
}

.about-side-img ul h4 {
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  width: 65%;
  margin: 0;
  line-height: 38px;
}
/* about end */

/* service :start */
section.service-wrap {
  background-image: url(../images/service.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.service-main h4 {
  color: #6cbe03;
  font-size: 24px;
  font-weight: 600;
}

.service-main h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-box {
  background: #fff;
  border-radius: 50px;
}

.service-img img {
  border-top-right-radius: 10px;
  transition: 0.5s;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.service-img {
  overflow: hidden;
  border-top-right-radius: 50px;
}

.service-box:hover .service-img img {
  transform: scale(1.5);
  transition: 0.5s;
}

.service-text {
  padding: 20px 36px 40px;
}

.service-text h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    height: 68px;
    display: flex;
    align-items: center;
}

.service-text p {
  color: #555454;
  line-height: 26px;
}

.service-text a {
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  font-weight: 700;
}

/* service :end */

/* choose start */
section.why-choose-wrap {
  background-image: url(../images/choose-back.png);
  background-size: cover;
  background-attachment: fixed;
}

.why-choose-text h4 {
  color: #6cbe03;
  font-size: 24px;
  font-weight: 600;
}

.why-choose-text h2 {
  color: #000000;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 67px;
}

.why-choose-text h2 span {
  display: block;
}

.why-choose-text p {
  color: #555454;
  line-height: 30px;
  font-size: 16px;
}

.why-choose-text ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  text-align: center;
  width: 90%;
}

.why-choose-text ul h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-choose-text ul li span {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
img.play {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
/* choose end */

/*gallery start*/
.gallery-main h2 {
  color: #0f6938;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 12px;
}

.gallery-main h3 {
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #fff;
}
.slick-active {
  opacity: 1.5;
}
section.gallery-wrap {
  background-image: url(../images/gallery-back.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.slick-next {
  right: 23px;
}
.slick-prev {
  left: 15px;
  z-index: 99;
}
.slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  background: #7ab253;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  background: #7ab253;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.gallery-slider img {
  height: 400px;
  object-fit: cover;
  border: 1px solid #7ab253;
  border-radius: 20px;
  border-top-right-radius: 0;
}
/*gallery end*/

/*clients start*/
.client-slider .slick-dots li button:before {
  content: "";
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 12px;
  background: #7ab253;
  border-radius: 16px;
}

.client-slider .slick-dots li.slick-active button:before {
  opacity: 3;
  background: #000000;
  width: 31px;
}

.client-slider .slick-active {
  opacity: 1;
}

.client-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 80%;
  bottom: 60px;
}
.clients-main h2 {
  color: #000;
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 800;
}

.clients-main p {
  font-size: 16px;
  width: 50%;
  margin: 0 auto;
  font-weight: 600;
}
.clients-box ul {
  display: flex;
  align-items: center;
}

.clients-box img {
  margin-right: 20px;
  width: 80px;
}

.clients-box h6 {
  font-size: 30px;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin: 0;
  margin-top: 25px;
}

.clients-box span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
}

.clients-box p {
  color: #3d3d3d;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 30px;
}

.clients-box {
  background: #fff;
  box-shadow: 0 0 10px #00000021;
  padding: 60px 40px;
  position: relative;
  left: 60px;
  top: -30px;
  border-radius: 15px;
  border: 1px solid #d5dacf;
}
.client-slider .slick-slide {
  display: flex !important;
}

.client-slider .slick-slide {
  margin: 50px 20px;
}
img.quote {
  position: absolute;
  top: 65px;
  right: 30px;
}
section.reviews-wrap {
  background-image: url(../images/client-back.png);
  background-size: cover;
  background-attachment: fixed;
}
/*clients end*/

/*get in touch start*/
section.get-a-qoute {
  background-image: url(../images/get.jpg);
  padding: 100px 0;
  align-items: center;
  background-attachment: fixed;
}
.get-foam {
  background: #fff;
  padding: 50px 25px;
  margin: 0 auto;
  border-radius: 20px;
}

.get-foam h6 {
  color: #b7b9b9;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

.get-foam h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 800;
}

.get-foam p {
  font-size: 18px;
  line-height: 30px;
  width: 90%;
}

.get-foam input {
  width: 100%;
  margin-bottom: 18px;
  padding: 12px 15px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
}

.get-foam textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #e3e3e3;
  padding: 8px 8px;
  border-radius: 10px;
}

.get-foam button {
  padding: 15px 30px;
  border: 3px solid #7ab253;
  color: #fff;
  font-weight: 600;
  background: #7ab253;
  border-radius: 10px;
  margin-top: 14px;
}
@keyframes filling {
  50% {
    background-position: 3000px 0;
  }
  100% {
    background-position: 6000px 0;
  }
}

.get-box h6 {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
}

.get-box h2 {
  font-size: 55px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.get-box p {
  color: #fff;
  font-size: 16px;
  width: 85%;
  line-height: 30px;
  margin-bottom: 30px;
}

section.get-a-qoute .row {
  display: flex;
  align-items: center;
}
/*get in touch end*/
/*footer start*/

section.footer-wrap {
  padding: 50px 0 0;
  background-image: url(../images/footer.jpg);
  padding-top: 100px;
}

section.footer-wrap * {
  color: #fff;
}
.socail-1 i {
  font-size: 20px;
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 14px;
  animation: blinkin 3s ease infinite;
  background: #000;
  color: #fff;
  transition: 0.5s;
}
.socail-1 i:hover {
  transform: scale(1.2);
  box-shadow: inset 0 0 50px 0 #7fb256;
}

section.footer-wrap p {
  font-size: 14px;
}
.foot-fold a {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.foot-fold2 a {
  display: block;
  line-height: 50px;
  font-size: 16px;
}
.foot-fold li {
  line-height: 35px;
  font-size: 14px;
}
.foot-fold1 input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  color: #000;
}

.foot-fold2 i {
  margin: 0 10px 0 0;
}
.foot-fold2 {
  width: 90%;
  margin-left: 10%;
}
.copy-right p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

.copy-right {
  border-top: 1px solid #ffffff24;
  margin-top: 20px;
  padding: 15px 0;
}
.socail-1 {
    margin: 25px 0;
    text-align: center;
}
.foot-fold1 form {
  position: relative;
  margin-top: 10px;
}

.foot-fold1 form button {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #000;
  height: 100%;
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
}
.foot-fold-1 img {
    margin-bottom: 20px;
    /* background: #fff; */
    /* border-radius: 20px 20px 0 20px; */
    /* padding: 5px; */
}
.test-slider .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 1px solid #000;
  border-radius: 50%;
}
.test-slider .slick-dots li.slick-active button:before {
  opacity: 1.75;
  color: #b01f22;
  background: #b22023;
}
.test-slider .slick-dots {
  position: absolute;
  bottom: -35%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.footer-wrap h4 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

section.footer-wrap:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  background-image: url(../images/footer-design.png);
  height: 45px;
  animation: filling 140s linear infinite;
}
/*logos start*/
.logoipsum .slick-slide img {
  width: 52%;
  margin: 0;
}

.logoipsum .slick-active {
  opacity: 1;
}
.logoipsum .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 60px 0px;
}
.logo:before {
  position: absolute;
  content: "";
  width: 23%;
  left: -85px;
  height: 1px;
  background: #000;
  top: 14px;
}
.logo {
  position: relative;
}
section.logoipsum-logos {
  background: #f6f4f4;
}
/*logos end*/
/*footer end*/


.bn-lgo a img {
    width: 12%;
    position: relative;
}



/* ------------------------------- Inner Pages --------------------------------- */
section.banner-wrap.inner-banner.all-section {
  background-image: url(../images/inner-banner.jpg);
  height: 613px;
}
section.banner-wrap.inner-banner .banner-text h1 {
  font-size: 82px;
}
.about-text ul li {
  padding: 10px 0px 0;
  position: relative;
}
.counter-box {
  background: #76a74f;
  color: #fff;
  padding: 25px 0;
  border-radius: 10px;
  margin: 20px 0;
}

.counter-box h3 {
  font-size: 74px;
  color: inherit;
  line-height: 1;
  margin: 0 0 15px;
}

.counter-box h4 {
  font-size: 25px;
  color: inherit;
  margin: 0;
  line-height: 1;
  font-weight: 700;
}

section.counter-sec {
  background: url(../images/counter-bg.jpg);
  background-size: cover;
  height: 320px;
  display: flex;
  align-items: center;
}
.heading-text h2 {
  font-size: 60px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.heading-text p {
  font-size: 18.7px;
  line-height: 1.7;
}

.team-txt h3 {
  font-weight: 700;
  color: #000;
  font-size: 36px;
}
.team-txt h4 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1;
  margin: 0;
}

.team-txt {
  background: #fff;
  padding: 30px 0;
}

.team-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 0px 2px;
  margin: 20px 0;
}

section.team-sec {
  background: url(../images/team-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
}
section.service-wrap.inner-services {
    background-image: url(../images/team-bg.jpg);
}

.inner-services .service-box {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0 0 2px;
    margin: 20px 0;
}
.inner-gallery img {
  height: 400px;
  object-fit: cover;
  border: 1px solid #7ab253;
  border-radius: 20px;
  border-top-right-radius: 0;
  width: 100%;
  margin: 10px 0;
}

.inner-gallery .gallery-main h3 {
  color: #000;
  margin: 0;
}
section.gallery-wrap.inner-gallery {
  background-image: url(../images/team-bg.jpg);
}
.lod-btn {
  margin: 70px 0 0;
}



/*Inner Contact us Start*/

.Contact-banner {
  height: 450px;
  background-image: url("../images/img/all-banner.jpg");
  background-size: cover;
  background-position: center;
}

.Contact-banner:before {
  content: "Contact Us";
  color: #fff;
  font-size: 55px;
  position: absolute;
  left: 12%;
  top: 45%;
  font-weight: bolder;
  letter-spacing: 2px;
  z-index: 10;
}

.contatc-form {
  padding: 30px;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 #00000052;
}

.contatc-form h3 {
  margin-bottom: 20px;
}

section.contact_map {
  margin-bottom: -7px;
}

.contatc-form h2 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contatc-form input {
  background: #fff0;
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}

.contatc-form textarea {
  width: 100%;
  padding: 15px 15px;
  resize: none;
  height: 150px;
  border: 1px solid #d8d8d8;
  color: #9d9a9a;
  border-radius: 5px;
}

.contatc-form button {
  width: 35%;
  height: 55px;
  background: #7ab253;
  color: #fff;
  font-size: 18px;
  border: none;
  text-transform: uppercase;
  border-radius: 5px;
}

.contatc-form input::placeholder {
  color: #9d9a9a;
  font-size: 16px;
}

.contatc-form textarea::placeholder {
  color: #9d9a9a;
  font-size: 16px;
}

.contatc-form a {
  background: #e51921;
  color: white;
  font-size: 20px;
  padding: 15px 30px;
  transition: 0.5s ease-in-out;
  border: 1px solid #e51921;
}

.contatc-form a:hover {
  border: 1px solid #e51921;
  background: transparent;
  color: #e51921;
  border-radius: 0;
}

.contact-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.contact_page_sidbar h6 {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 20px;
  margin: 0;
  font-weight: 500;
}

.contact_social ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fa-color {
  color: #e51921;
  font-size: 80px;
}

.contact_page_sidbar h4 {
  font-size: 20px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  margin-bottom: 7px;
}
.contact_social {
  margin-top: 60px;
}

.contact_page_sidbar i {
  font-size: 35px;
  margin: 0 20px 0 0;
  width: 30px;
  color: #000 !important;
}

.contact_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #7ab253;
  color: #ffffff;
  margin: 0 10px 0 0;
  font-size: 22px;
  border-radius: 4px;
}
.contact-text p {
  font-size: 16px !important;
  color: #8b8a8a;
}

.contatc-form input {
  border: 1px solid #d8d8d8;
  height: 55px;
  padding: 0 15px;
}

.contact_social a:hover {
  background-color: #000;
  color: #fff;
}

.contact_map iframe {
  width: 100%;
  height: 600px;
}

section.inner-contact_page_main {
  padding: 100px 0;
}
.contact-text {
    padding-right: 90px;
}
/* Inner Contact us End*/



/*Book Now Start*/

.book-now-sec {
  padding: 100px 0;
  background: url(../images/book-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.book-now-input input, .book-now-input select {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  border: 1px solid #c2c1c1;
  font-size: 15px;
  text-transform: uppercase;
  color: #565555;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
}
.book-now-input input::placeholder {
  font-size: 15px;
  text-transform: uppercase;
  color: #565555;
  font-weight: 500;
  font-family: "Poppins";
}
.book-now-textarea textarea {
  width: 100%;
  height: 180px;
  padding: 15px 15px;
  border: 1px solid #c2c1c1;
  font-size: 15px;
  text-transform: uppercase;
  color: #565555;
  font-weight: 500;
  margin-bottom: 30px;
  resize: none;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
}
.book-now-book-now {
  text-align: center;
}
.book-now-book-now button {
  width: 40%;
  height: 60px;
  background: #8BC34A;
  border: none;
  font-size: 25px;
  font-weight: 600;
  border-radius: 5px;
  color: #fff;
}
.detail-services-text img {
    width: 100%;
    margin: 0 0 40px;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
}


.detail-services-sec {
    padding: 80px 0;
    background: url(../images/book-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.detail-services-sec .heading-text h2 {
    font-size: 48px;
}
.btn10.chn-c {
  background: red !important;
  border: 1px solid red !important;
}
/*Book Now End*/
.foot-fold ul li a i {
  margin-right: 8px;
}
.about-text.long-text {
  margin-top: 40px;
}
/* ------------------------------- Inner Pages --------------------------------- */



.service-main p {
    color: #fff;
}
.book-pg-ban h1 {
    font-size: 59px !important;
}
.ft-contacts a {
    line-height: 27px;
    margin-bottom: 10px;
}
.ft-contacts {
    margin-left: 30px;
}



.scrollbar
{
	margin-left: 0px;
	/* float: left; */
	height: 210px;
	width: 100%;
	/* background: #F5F5F5; */
	overflow-y: scroll;
	margin-bottom: 0px;
}
#style-2::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	border-radius: 5px;
	/* background-color: #F5F5F5; */
  height: 100px;
}

#style-2::-webkit-scrollbar
{
	width: 8px;
	/* background-color: #F5F5F5; */
  height: 100px;
}

#style-2::-webkit-scrollbar-thumb
{
	border-radius: 5px;
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
	background-color: #7ab253;
  height: 100px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo-bottom-text {
    text-align: center;
}
.footer-wrap .row {
    display: flex;
    justify-content: center;
}
.foot-fold-1 {
    text-align: center;
}
.logo-bottom-text {
    margin-top: 20px;
}




/*Media Query Start*/

@media only screen and (min-width: 1400px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .banner-text h1 {
    font-size: 41px;
    line-height: 52px;
}

.banner-text p {
    width: 95%;
}

.banner-btn ul {gap: 10px;}

.banner-btn ul a {
    font-size: 20px;
}

.slick-slide img {
    width: 40px;
}

.banner-slider .slick-slide {
    margin: 0;
}

.banner-btn ul p {
    width: 100% !important;
}

.banner-img img {
}

.about-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
}

.about-text p {
    line-height: 30px;
}

img.abt-img {
    margin: -100px;
    right: 100px;
}

.service-text h3 {
    font-size: 26px;
}

.gallery-slider img {
    width: 100%;
}

.clients-img img {
    width: 100%;
}

.client-slider .slick-dots {
    bottom: 0;
}

.get-foam h2 {
    font-size: 40px;
}

.get-foam p {
    font-size: 16px;
}
section.banner-wrap.inner-banner .banner-text h1 {
    font-size: 50px !important;
}

.contact-text h2 {
    font-size: 40px;
}

.contatc-form h2 {
    font-size: 40px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menuSec ul li a {
    padding: 20px 13px;
}

.banner-slider .slick-slide {
    margin: 0;
}

.banner-text h1 {
    font-size: 34px;
    line-height: 46px;
}

.banner-text p {
    width: 100%;
}

section.banner-wrap .row {
}

.about-text h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
}

img.abt-img {
    bottom: -200px;
}

.service-img img {
    font-size: 250px;
}

.service-text {
    padding: 20px 0 0 20px;
}

.service-text h3 {
    font-size: 20px;
    line-height: 30px;
    height: 40px;
}

.scrollbar {
    height: 200px;
}

.why-choose-text h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
}

.why-choose-text p {
    font-size: 14px;
    line-height: 26px;
}

img.quote {
    right: 0;
    top: 30px;
}

.clients-box {
    padding: 30px 20px;
}

.clients-box p {
    font-size: 15px;
}

.client-slider .slick-dots {
    bottom: 0;
}

.get-box p {
    width: 100%;
}

.get-foam h2 {
    font-size: 36px;
}

.get-foam p {
    width: 100%;
    font-size: 14px;
}

.ft-contacts {
    margin: 0;
    width: 130%;
}
.banner-img img {
    object-fit: cover;
    border-top-left-radius: 300px;
    border: 2px solid #7ab253;
    border-right: 0;
    border-bottom: 0;
    height: 450px;
}

section.banner-wrap.inner-banner .banner-text h1 {
    font-size: 40px !important;
}

.counter-box h3 {
    font-size: 50px;
}

.counter-box h4 {
    font-size: 17px;
}
section.banner-wrap.inner-banner.all-section {
    height: 450px;
    padding-bottom: 0;
}

.contact-text h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
}

.contatc-form h2 {
    font-size: 35px;
    line-height: 45px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menuSec ul li a {
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
}

.menuSec .col-lg-3 {
    width: 25%;
}

.menuSec .btn10 {
    font-size: 13px;
    padding: 10px 15px;
    margin-top: 7px;
}

.header-logo {
    top: -63px;
}

section.banner-wrap {
    padding-bottom: 0;
    height: 650px;
}

.banner-img img {
    height: 650px;
    object-fit: cover;
    border-top-left-radius: 250px;
    border: 2px solid #9cc680;
    border-bottom: 0;
    border-right: 0;
}

section.banner-wrap .col-lg-5 {
    width: 50%;
}

.banner-img {
    width: 50%;
}

.banner-img .slick-slide {
    margin: 0;
}

.banner-text h1 {
    font-size: 30px;
    line-height: 40px;
}

.banner-text p {
    width: 100%;
}

.banner-btn {flex-wrap: wrap;}

.banner-slider ul.slick-dots {
    display: none !important;
}

section.service-wrap .col-lg-4 {
    width: 50%;
    margin: 20px auto;
}

.service-text {
    padding: 20px 0 40px 14px;
}

.service-text h3 {
    font-size: 20px;
}

section.why-choose-wrap .row {
    flex-direction: column-reverse;
    row-gap: 20px;
}

.client-slider .slick-slide {
    margin: 50px 0;
}

.clients-box {
    left: 0;
    top: 0;
    padding: 20px;
    width: 130%;
}

img.quote {
    right: 0;
    top: 40px;
    width: 40px;
}

.client-slider .slick-dots {
    bottom: -30px;
}

.get-box h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
}

.get-box p {
    width: 100%;
    font-size: 14px;
    line-height: 27px;
}

.get-foam h2 {
    font-size: 34px;
    line-height: 45px;
}

.get-foam p {
    width: 100%;
    font-size: 16px;
    display: ruby;
}

section.footer-wrap .col-sm-12 {
    width: 33%;
}

.ft-contacts {
    margin: 0 0 0 -70px;
}
.banner-wrap.inner-banner {
    padding-bottom: 0;
    height: 500px !important;
}

section.banner-wrap.inner-banner .banner-text h1 {
    font-size: 40px !important;
}


.about-text {
    margin-top: 30px;
}

section.counter-sec {
    height: auto;
    padding: 50px 0;
}

.team-txt h3 {
    font-size: 24px;
    line-height: 35px;
    margin: 0;
}

.team-txt h4 {
    font-size: 20px;
}

section.team-sec {
    padding: 60px 0;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    header {
    position: relative;
    background: #000;
}

.slicknav_menu {
    background: #7ab253;
}

.slicknav_nav a:hover {
    background: #000;
}

.topSec .col-md-10 {
    width: 70%;
}

.topSec .col-md-2 {
    width: 30%;
}

.top-bar-left p {
    background: transparent;
}

.top-bar-right ul {
    width: 100%;
    background: transparent;
}

.top-bar-right ul li {
    border: 0;
}

.topSec {
    padding: 10px 0 0;
}

.header-logo a img {
    width: 100%;
}

.header-logo {
    top: 0;
    position: relative;
    width: 100%;
}

.menuSec .col-md-3 {
    width: 50%;
}

.menuSec .col-lg-3 {
    width: 50%;
}

.menuSec .row:before {
    display: none;
} 
section.banner-wrap {
    padding: 0;
    height: 100%;
}

.banner-img {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-img img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.banner-slider .slick-slide {
    margin: 0;
}

.banner-text p {
    width: 100%;
}

.banner-btn ul {
    margin: 0;
}

img.abt-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.about-text {
    margin-top: 50px;
}

.about-text h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 0;
}

section.about-wrap {
    padding: 70px 0 0;
}

section.service-wrap {
    padding: 60px 0;
}

.service-box {
    margin: 20px 0;
}

section.why-choose-wrap {
    padding: 60px 0;
}

.why-choose-text h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 10px;
}

section.why-choose-wrap .row {
    flex-direction: column-reverse;
    row-gap: 40px;
}

.gallery-main h3 {
    font-size: 50px;
    line-height: 60px;
    margin: 0;
}

.all-section {
    padding: 60px 0;
}

.clients-main h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
}

.client-slider .slick-slide {
    margin: 0;
    flex-wrap: wrap;
    row-gap: 30px;
}

.clients-box {
    left: 0;
    top: 0;
}

.get-box p {
    width: 100%;
}

.get-foam {
    margin-top: 30px;
}

.get-foam h2 {
    font-size: 40px;
}

.get-foam p {
    width: 100%;
    font-size: 16px;
}

section.footer-wrap * {
    text-align: center;
}

section.footer-wrap * {
    justify-content: center;
}
section.banner-wrap.inner-banner.all-section {
    height: 100%;
    padding: 0;
}

section.banner-wrap.inner-banner .banner-text h1 {
    font-size: 50px;
}

section.banner-wrap.inner-banner .banner-text {
    margin-bottom: 40px;
}

section.counter-sec {
    height: auto;
    padding: 50px 0;
}

.team-img img {
    width: 100%;
}
.contatc-form h2 {
    font-size: 40px;
}

.contatc-form {
    margin-top: 30px;
}
}

@media only screen and (min-width: 0px) and (max-width: 519px) {
        header {
    position: relative;
    background: #000;
}

.slicknav_menu {
    background: #7ab253;
}

.slicknav_nav a:hover {
    background: #000;
}

.topSec .col-md-10 {
    width: 70%;
}

.topSec .col-md-2 {
    width: 30%;
}

.top-bar-left p {
    background: transparent;
    padding: 0;
    font-size: 12px;
    width: 120%;
    text-align: left;
    clip-path: unset;
}

.top-bar-right ul {
    width: 100%;
    background: transparent;
    gap: 12px;
    padding-right: 7px;
    clip-path: unset;
}

.top-bar-right ul li {
    border: 0;
    padding: 0 !important;
}

.topSec {
    padding: 10px 0 0;
}

.header-logo a img {
    width: 100%;
    height: 100px;
}

.header-logo {
    top: 0;
    position: relative;
    width: 100%;
}

.menuSec .col-md-3 {
    width: 50%;
}

.menuSec .col-lg-3 {
    width: 50%;
}

.menuSec .row:before {
    display: none;
} 
section.banner-wrap {
    padding: 0;
    height: 100%;
}

.banner-img {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-img img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.banner-slider .slick-slide {
    margin: 0;
}

.banner-text p {
    width: 100%;
}

.banner-btn ul {
    margin: 0;
}

img.abt-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.about-text {
    margin-top: 50px;
}

.about-text h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
}

section.about-wrap {
    padding: 70px 0 0;
}

section.service-wrap {
    padding: 60px 0;
}

.service-box {
    margin: 20px 0;
}

section.why-choose-wrap {
    padding: 60px 0;
}

.why-choose-text h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px;
}

section.why-choose-wrap .row {
    flex-direction: column-reverse;
    row-gap: 40px;
}

.gallery-main h3 {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
}

.all-section {
    padding: 60px 0;
}

.clients-main h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}

.client-slider .slick-slide {
    margin: 0;
    flex-wrap: wrap;
    row-gap: 30px;
}

.clients-box {
    left: 0;
    top: 0;
    padding: 20px 10px;
}

.get-box p {
    width: 100%;
}

.get-foam {
    margin-top: 30px;
    padding: 20px 10px;
}

.get-foam h2 {
    font-size: 30px;
    line-height: 40px;
}

.get-foam p {
    width: 100%;
    font-size: 16px;
}

section.footer-wrap * {
    text-align: center;
}

section.footer-wrap * {
    justify-content: center;
}
section.banner-wrap.inner-banner.all-section {
    height: 100%;
    padding: 0;
}

section.banner-wrap.inner-banner .banner-text h1 {
    font-size: 30px !important;
    line-height: 40px;
}

section.banner-wrap.inner-banner .banner-text {
    margin-bottom: 40px;
}

section.counter-sec {
    height: auto;
    padding: 50px 0;
}

.team-img img {
    width: 100%;
}
.contatc-form h2 {
    font-size: 30px;
    line-height: 40px;
}

.contatc-form {
    margin-top: 30px;
    padding: 15px;
}
  .menuSec .btn10.chn-c {
    padding: 15px 10px;
    font-size: 14px;
    margin-left: -17px;
}

.banner-text {
    margin-top: 40px;
}

.banner-text h1 {
    font-size: 30px;
    line-height: 40px;
}

.banner-btn {
    flex-wrap: wrap;
}

.service-main h2 {
    font-size: 40px;
    line-height: 50px;
}

.service-text {
    padding: 20px 10px;
    height: auto !important;
}
.service-box {
    border-radius: 10px;
}

.service-img img {
    border-top-right-radius: 10px !important;
}

.service-img {
    border-top-right-radius: 10px;
}
.service-text h3 {
    font-size: 20px;
    line-height: 30px;
    height: auto;
}

section.gallery-wrap .slick-slide {
    margin: 0;
}

section.gallery-wrap .slick-prev {
    left: 0;
}

.clients-box h6 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}

img.quote {
    width: 28px;
    right: 0;
    top: 30px;
}

.clients-box p {
    font-size: 14px;
    line-height: 24px;
}

section.get-a-qoute {
    padding: 60px 0;
}

.get-box h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 10px;
}
  .heading-text h2 {
    font-size: 40px;
    line-height: 50px;
}
  section.inner-contact_page_main {
    padding: 60px 20px;
}

.contact-text {
    padding: 0;
}

.contact-text h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}
}


/*Media Query End*/




















