@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  overflow-x: hidden;
  word-break: break-word;
  color: var(--textColor);
  font:
    15px/25px "Montserrat",
    sans-serif;
}

:root {
  --black: #000;
  --white: #fff;
  --textColor: #8a8989;
  --themeColor: #9db089;
  --themeColor2: #0b0b0b;
  --headingColor: #363636;
  --headingColor2: #161a1d;
}

a {
  white-space: initial;
  display: inline-block;
  text-decoration: none;
  color: var(--textColor);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--textColor);
}

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

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

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

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

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

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

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

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

img {
  max-width: 100%;
}

/***** 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;
}

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
  font-family: "CammronDemo";
  src: url(../fonts/CammronDemo.otf);
}

@font-face {
  font-family: "grayscale-signature";
  src: url(../fonts/grayscale-signature.ttf);
}

/***** 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;
}

.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 {
  color: var(--white);
  font-size: 67px;
  margin: 0 0 0px;
  font-weight: 400;
  font-family: "grayscale-signature";
  text-transform: capitalize;
  line-height: 160px;
}

h2 {
  margin: 0 0 0px;
  font-size: 55px;
  font-weight: 500;
  color: var(--headingColor);
  font-family: "grayscale-signature";
  text-transform: capitalize;
  line-height: 100px;
}

h3 {
  font-size: 35px;
  margin: 0 0 0px;
  font-weight: 600;
  color: var(--black);
  font-family: "grayscale-signature";
}

h4 {
  font-size: 24px;
  margin: 0 0 0px;
  font-weight: 500;
  color: var(--black);
  font-family: "grayscale-signature";
}

h5 {
  font-size: 16px;
  margin: 0 0 0px;
  font-weight: 500;
  color: var(--black);
  font-family: "Montserrat";
}

h6 {
  font-size: 14px;
  margin: 0 0 0px;
  font-weight: 500;
  color: var(--black);
  font-family: "Montserrat";
}

p {
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  color: var(--textColor);
  font-family: "Montserrat";
}

.add-padding {
  width: 100%;
  margin: 0px auto;
  max-width: 1500px;
}

.theme-btn-1 {
  gap: 20px;
  display: flex;
  border-width: 1px;
  width: max-content;
  border-style: solid;
  border-radius: 50px;
  align-items: center;
  transition: ease-in-out;
  justify-content: center;
  font-family: "Montserrat";
  text-transform: uppercase;
  transition-duration: 0.5s;
  padding: 4px 25px 4px 4px;
  border-color: var(--themeColor);
  background-color: var(--themeColor);
  box-shadow: 0px 11px 14px 0px rgba(34, 37, 68, 0.18);
}

.theme-btn-1 span {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 17px 35px;
  align-items: center;
  border-radius: 29px;
  justify-content: center;
  transition: ease-in-out;
  color: var(--headingColor);
  transition-duration: 0.5s;
  background-color: var(--white);
  box-shadow: 8px 0px 9px 0px rgba(100, 100, 100, 0.1);
}

.theme-btn-1 img {
  width: 20px;
  margin: 0px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7449%)
    hue-rotate(218deg) brightness(116%) contrast(111%);
}

.theme-btn-1:hover {
  color: var(--white);
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: var(--headingColor);
}

.theme-btn-1:hover span {
  transition: ease-in;
  color: var(--white);
  transition-duration: 0.5s;
  background-color: var(--themeColor);
}

.section-heading {
  text-align: center;
  margin-bottom: 25px;
}

.section-heading p {
  width: 80%;
  margin: auto;
  max-width: 950px;
}

/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}

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

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  font-size: 14px;
  font-weight: 600;
  padding: 35px 2vw;
  position: relative;
  color: var(--white);
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menuSec ul li a::before {
  left: 0;
  right: 0;
  width: 0px;
  height: 1px;
  content: "";
  margin: auto;
  bottom: -0.5px;
  position: absolute;
  transition: ease-in-out;
  transition-duration: 0.5s;
  background-color: var(--white);
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  color: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.menuSection {
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  padding: 0px 4%;
  position: absolute;
  border-bottom: 1px solid #ffffff69;
}

.menuSection .row {
  align-items: center;
}

.header-logo {
  height: 65px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.header-logo a {
  width: 145px;
  height: 145px;
}

.header-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-btn {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-end;
}

.header-btn .theme-btn-1 {
  background-color: var(--white);
}

.header-btn .theme-btn-1:hover {
  background-color: var(--headingColor2);
}

.header-btn .theme-btn-1 span {
  color: var(--white);
  background-color: var(--themeColor);
}

.header-btn .theme-btn-1 img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(13%) saturate(563%)
    hue-rotate(47deg) brightness(95%) contrast(86%);
}

/*header css start */

/*banner css start */

.main_slider {
  display: flex;
  min-height: 850px;
  position: relative;
  align-items: flex-end;
  padding: 100px 4% 0px;
  justify-content: center;
  background-image: url(../images/banner-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main_slider::after {
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  content: "";
  height: 262px;
  position: absolute;
  background-color: var(--white);
}

.main_slider::before {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(157, 176, 137, 0.92) 11%,
    rgba(157, 176, 137, 0.94) 29%,
    rgba(157, 176, 137, 0.99) 55%,
    rgba(157, 176, 137, 0.94) 75%,
    rgba(157, 176, 137, 1) 100%
  );
}

.main_slider .row {
  z-index: 2;
  position: relative;
}

.banner_text {
  padding-top: 0px;
}

.banner_text h4 {
  width: fit-content;
  color: var(--white);
  letter-spacing: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff2c;
}

.banner_text p {
  margin: 15px 0px;
  max-width: 620px;
  color: var(--white);
}

.banner_text .banner-btn {
  gap: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.banner-tel-btn {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-tel-btn h5 {
  font-size: 12px;
  color: var(--white);
}

.banner-tel-btn h5 span {
  display: block;
  font-size: 20px;
}

.banner-btn .theme-btn-1 {
  background-color: var(--white);
}

.banner-btn .theme-btn-1:hover {
  background-color: var(--headingColor2);
}

.banner-btn .theme-btn-1 span {
  color: var(--white);
  background-color: var(--themeColor);
}

.banner-btn .theme-btn-1 img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(13%) saturate(563%)
    hue-rotate(47deg) brightness(95%) contrast(86%);
}

.follow-box {
  left: 0;
  gap: 15px;
  width: 50%;
  display: flex;
  bottom: 100px;
  flex-wrap: wrap;
  padding: 25px 0px;
  position: absolute;
  align-items: center;
  justify-content: space-between;
}

.follow-box::before {
  content: "";
  width: 100vw;
  height: 100%;
  right: -10vw;
  position: absolute;
  background-color: #9db08918;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.follow-box::after {
  top: 0;
  left: 0%;
  bottom: 0;
  width: 66%;
  right: 0;
  height: 1px;
  content: "";
  opacity: 0.5;
  margin: auto;
  position: absolute;
  background-color: var(--headingColor);
}

.follow-box ul {
  gap: 10px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.follow-box ul li a {
  width: 50px;
  height: 50px;
  display: flex;
  font-size: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--headingColor);
  border: 1px solid #d2d6d1;
  background-color: var(--white);
}

.follow-box ul li a:hover {
  color: var(--white);
  background-color: var(--themeColor);
}

.follow-box h5 {
  font-size: 18px;
}

.banner_img {
  position: relative;
}

.banner_img::before {
  right: 0;
  bottom: 0;
  left: -24px;
  content: "";
  width: 800px;
  margin: auto;
  height: 650px;
  position: absolute;
  background-image: url(../images/banner-img-before.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner_img img {
  z-index: 1;
  width: 100%;
  height: 700px;
  position: relative;
  object-fit: contain;
}

/*banner css end*/

/* about-sec */

.about-sec {
  padding: 100px 0px;
}

.about-img {
  width: 100%;
  height: 450px;
  min-height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

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

.abouit-text {
  padding: 20px 0px 20px 30px;
}

.abouit-text h2 {
  margin-bottom: 5px;
}

.abouit-text p {
  margin-bottom: 20px;
}

.abouit-text ul {
  gap: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.abouit-text ul li i {
  font-size: 33px;
  color: var(--themeColor);
}

.abouit-text ul li:first-child {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

/* about-sec */

/* service-sec */

.service-sec {
  padding: 0px 4% 100px;
}

.service-box {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
}

.service-box-img {
  width: 100%;
  height: 330px;
  display: block;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-box-text {
  height: 300px;
  padding: 20px;
  display: flex;
  text-align: center;
  transition: ease-in;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition-duration: 0.5s;
}

.service-box-text h3 {
  font-size: 22px;
  position: relative;
  transition: ease-in;
  margin-bottom: 15px;
  padding-bottom: 10px;
  transition-duration: 0.5s;
}

.service-box-text h3::before {
  left: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 1px;
  content: "";
  margin: auto;
  opacity: 0.2;
  position: absolute;
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: var(--headingColor2);
}

.service-box-text-bottom {
  /*height: 0px;*/
  display: flex;
  overflow: hidden;
  align-items: center;
  transition: ease-in;
  flex-direction: column;
  justify-content: center;
  transition-duration: 0.5s;
}
.service-box-text-bottom p {
  display: none;
}
.service-box-text:hover .service-box-text-bottom p {
  height: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  display: none;
}

.serviceSlider
  .slick-slide.slick-current.slick-active
  .service-box
  .service-box-text-bottom,
.service-box:hover .service-box-text-bottom {
  height: auto;
  overflow: visible;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-box:hover,
.serviceSlider .slick-slide.slick-current.slick-active .service-box {
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: var(--themeColor);
}

.service-box:hover .service-box-text h3,
.serviceSlider
  .slick-slide.slick-current.slick-active
  .service-box
  .service-box-text
  h3 {
  color: var(--white);
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-box:hover .service-box-text h3::before,
.serviceSlider
  .slick-slide.slick-current.slick-active
  .service-box
  .service-box-text
  h3::before {
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: var(--white);
}

.service-box:hover .service-box-text p,
.serviceSlider
  .slick-slide.slick-current.slick-active
  .service-box
  .service-box-text
  p {
  color: var(--white);
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-box-text p {
  margin-bottom: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.serviceSlider .slick-slide {
  opacity: 1;
  transition: ease-in;
}

/* service-sec */

/* ready-sec */

.ready-sec {
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  padding: 100px 0px;
  position: relative;
  align-items: center;
  justify-content: center;
  background-image: url(../images/ready-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ready-sec::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(157, 176, 137, 0.86) 0%,
    rgba(157, 176, 137, 0.83) 18%,
    rgba(157, 176, 137, 0.87) 55%,
    rgba(157, 176, 137, 0.87) 89%,
    rgba(157, 176, 137, 1) 100%
  );
}

.ready-text {
  gap: 5px;
  z-index: 1;
  display: flex;
  position: relative;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.ready-text h2 {
  color: var(--white);
}

.ready-text p {
  margin-bottom: 20px;
  color: var(--white);
}

/* ready-sec */

/* why-choose-sec */

.why-choose-sec {
  padding: 100px 0px;
}

.why-choose-text {
  display: flex;
  text-align: end;
  padding: 20px 0px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}

.why-choose-text h2 {
  margin-bottom: 10px;
}

.why-choose-text p {
  margin-bottom: 20px;
}

.why-choose-text ul {
  margin-bottom: 15px;
}

.why-choose-text ul li {
  gap: 15px;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: flex-end;
}

.why-choose-text ul li h5 {
  font-weight: 600;
}

.why-choose-text ul li i {
  font-size: 20px;
  color: var(--themeColor);
}

.why-choose-img {
  width: 100%;
  height: 450px;
  min-height: 100%;
  position: relative;
}

.why-choose-img::before {
  right: 0;
  bottom: 0;
  content: "";
  width: 210px;
  height: 250px;
  position: absolute;
  background-color: transparent;
  border-radius: 8px 0px 0px 0px;
}

.why-choose-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}

.why-choose-img img.why-choose-img-2 {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 240px;
  border-radius: 5px;
  position: absolute;
  box-shadow: 0px 11px 14px 0px rgba(91, 57, 42, 0.18);
}

/* why-choose-sec */

/* Tstimonial Section Start */

section.client-sec {
  z-index: 3;
  position: relative;
}

.client-card p {
  font-size: 15px;
  color: #ffffff;
  line-height: 27px;
  width: 100%;
}

.client-slider-nav {
  position: relative;
}

.cs-nav-box img {
  border-radius: 100px;
  object-fit: cover;
}

/*.img-1 {*/
/*    position: absolute;*/
/*    top: 200px;*/
/*    left: 155px;*/
/*    width: auto;*/
/*}*/

/*.img-2 {*/
/*    position: absolute;*/
/*    top: 40px;*/
/*    left: 280px;*/
/*    right: auto;*/
/*}*/

/*.img-4 {*/
/*    right: 300px;*/
/*    position: absolute;*/
/*    top: 50px;*/
/*    width: auto;*/
/*}*/

/*.img-5 {*/
/*    position: absolute;*/
/*    top: 205px;*/
/*    right: 170px;*/
/*    width: auto;*/
/*}*/

.cs-nav-box img {
  height: 80px;
  width: 80px;
  box-shadow: 0 0 5px 0 #989898;
}

.client-slider-nav .cs-nav-box {
  text-align: center;
  display: flex;
  justify-content: center;
  opacity: 1;
}

.client-details h5 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  color: var(--white);
  margin: 30px 0 0px 0;
  font-family: "Montserrat";
  text-transform: uppercase;
}

.client-slider-nav .center {
  position: absolute;
  top: 40px;
  left: 30px;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 0 9px #989898;
  border: 5px solid var(--themeColor);
}

.active_testi {
  animation: 1.5s linear 0s infinite normal none running pulse;
}

.client-slider-for .slick-slide {
  margin: 0px !important;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

.client-sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  left: 0;
  right: 0;
  bottom: 120px;
  background-image: url(../images/testi-bg.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  z-index: -1;
}

.client-sec .sec-head {
  text-align: center;
}

.client-sec .sec-head h2 {
  font-size: 59.62px;
  color: #141414;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.client-sec .sec-head p {
  color: #8d8d8d;
  font-weight: 500;
  width: 90%;
  margin: 0 auto;
}

.client-sec .sec-head {
  margin-bottom: 40px;
}

.client-card.building-text {
  width: 500px;
  background: var(--themeColor);
  padding: 40px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  margin: 30px auto 0;
  z-index: 9;
}

.client-card.building-text::after {
  top: -10px;
  width: 30px;
  content: "";
  height: 30px;
  position: absolute;
  transform: rotate(45deg);
  background: var(--themeColor);
}

.client-details p {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Montserrat";
}

.testimonial-slider-box {
  width: 50%;
  margin: 30px auto 0;
  overflow: hidden;
}
.client-slider-nav .cs-nav-box {
  text-align: center;
  display: flex;
  justify-content: center;
  opacity: 1;
}

.client-slider-nav .cs-nav-box.slick-current.slick-active img {
  border: 4px solid #9db089;
}

.client-slider-nav .slick-track {
  margin: 20px 0;
}

.client-slider-nav .cs-nav-box.slick-current.slick-active {
  transform: scale(1.2);
}
/* Tstimonial Section End */

/* blog-sec */

.blog-sec {
  padding: 100px 4%;
}

.blog-heading {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  justify-content: space-between;
}

.blog-slider-btn {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-slider-btn button {
  width: 45px;
  height: 45px;
  border: none;
  position: relative;
  transition-duration: 0.5s;
  background-color: transparent;
}

.blog-slider-btn button img {
  left: -5px;
  z-index: 1;
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(507%)
    hue-rotate(132deg) brightness(87%) contrast(95%);
}

.blog-slider-btn button::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  transition: ease-in-out;
  background-size: cover;
  padding: 0px 2px 0px 0px;
  transition-duration: 0.5s;
  background: linear-gradient(90deg, #cccccc, #cccccc, #cccccc);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.blog-slider-btn button::after {
  top: 0;
  left: 0;
  width: 30%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: var(--white);
}

.blog-slider-btn button:hover img {
  left: 0;
  transition: ease-in;
  transform: scale(1.1);
  transition-duration: 0.5s;
  filter: brightness(0) saturate(100%) invert(42%) sepia(10%) saturate(2655%)
    hue-rotate(44deg) brightness(95%) contrast(82%);
}

.blog-slider-btn button.blog-slider-btn-left {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

.blog-slider-btn button.blog-slider-btn-left img {
  top: -2px;
}

.blog-box {
  position: relative;
  margin-bottom: 50px;
}

.blog-box a {
  width: 100%;
  height: 380px;
}

.blog-box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-box h5 {
  padding: 17px;
  color: #fff;
  margin-top: 25px;
  font-size: 14px;
  border-radius: 5px;
  max-width: fit-content;
  text-transform: uppercase;
  background-color: #221c1a;
}

.blog-box h4 {
  overflow: hidden;
  margin-top: 5px;
  line-height: 40px;
  position: relative;
  display: -webkit-box;
  padding-bottom: 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-box h4::before {
  left: 0;
  bottom: 0;
  width: 80%;
  height: 1px;
  content: "";
  position: absolute;
  border-bottom: 1px solid #ccc;
}

.blog-box p {
  margin-top: 15px;
  color: #8b8b8b;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-text {
  padding: 25px;
  min-height: 230px;
}

.blogSldier .slick-slide {
  margin: 0px 1px;
}

.blogSmallSlider .slick-slide {
  opacity: 0;
  margin: 0px 10px;
}

.blogSmallSlider .slick-active {
  opacity: 1;
}

.blogSmallSlider .slick-list {
  overflow: visible;
}

.blogSmallSlider .blog-box {
  border-radius: 5px;
  background-color: var(--white);
  box-shadow: 0px 9px 21px 0px rgba(128, 128, 128, 0.17);
}

.blogSldier {
  z-index: 1;
}

/* blog-sec */

/* Footer Start */

section.footer {
  padding: 80px 4% 60px;
  background: var(--themeColor2);
}

section.footer p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #6f6f6f;
}

ul.adrs-links li a {
  gap: 8px;
  display: flex;
  color: #aaacae;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  padding-bottom: 15px;
  transition: 0.7s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

ul.adrs-links li a i {
  width: 30px;
  color: #fff;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

li.boader a {
  border: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

ul.adrs-links {
  margin-bottom: 0 !important;
}

ul.adrs-links li {
  line-height: 1.1;
  margin-bottom: 15px;
}

ul.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

ul.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #033059;
  height: 38px;
  width: 38px;
  border-radius: 0;
  font-size: 20px;
  border-radius: 0px;
}

ul.social-links li a:hover {
  background: #ffe1a8;
  color: #033059;
  animation: float 1s ease-in-out infinite;
}

ul.social-links li a:hover i {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

ul.adrs-links li a:hover {
  color: var(--themeColor);
}

section.footer h2 {
  font-size: 20px;
  position: relative;
  margin-bottom: 16px;
  color: var(--white);
  padding-bottom: 0px;
  text-transform: uppercase;
  line-height: 76px;
}

section.footer h2::before {
  left: 0;
  height: 1px;
  width: 100%;
  content: "";
  bottom: 0px;
  opacity: 0.2;
  position: absolute;
  background: var(--white);
}

ul.linkList li a {
  font-size: 14px;
  transition: 0.5s;
  color: #6f6f6f;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: capitalize;
}

ul.linkList li a i {
  color: #ffffff94;
}

ul.linkList li a:hover {
  color: var(--themeColor);
  margin-left: 20px;
}

.foot1 {
  padding: 0 0% 0 0;
  margin-top: 40px;
  position: relative;
}

.foot1 .w-100 {
  top: -40px;
  width: 100%;
  position: relative;
  margin-bottom: 0px;
}

.foot1 .w-100::before {
  left: 0;
  height: 1px;
  width: 100%;
  content: "";
  opacity: 0.2;
  bottom: -20px;
  position: absolute;
  background: var(--white);
}

.foot1 .w-100 img {
  width: 125px;
  height: 95px;
  object-fit: contain;
}

.foot1 h4 {
  color: #fff;
  margin-bottom: 5px;
}

.foot4 {
  padding: 30px 0% 0px 21px;
}

section.copyrite-txt {
  padding: 20px 0;
  background: var(--themeColor2);
  border-top: 1px solid #475157;
}

section.copyrite-txt p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #777a7c;
  font-family: "Montserrat";
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  25% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}

ul.adrs-links li a:hover i {
  animation: float 1s ease-in-out infinite;
  font-size: 20px;
}

.foot2 {
  padding-right: 0px;
  margin-top: 40px;
  padding-left: 17px;
}

form.footerForm button {
  border-radius: 0;
}

form.footerForm button:hover {
  color: #000;
}

form.footerForm button::before,
form.footerForm button::after {
  border-radius: 0;
}

ul.adrs-links li:first-child,
ul.adrs-links li:last-child {
  gap: 12px;
  display: flex;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  align-items: baseline;
  font-family: "Montserrat";
  transition: 0.7s ease-in-out;
}

ul.footer-social li a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  transition: 0.5s;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  transition: ease-out;
  justify-content: center;
  transition-duration: 0.5s;
  border: 1px solid var(--themeColor);
  background-color: var(--themeColor);
}

ul.footer-social li a:hover {
  transition: 0.5s;
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: var(--themeColor2);
}

.social-icon ul {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding: 0 0 0 0%;
  align-items: center;
}

.social-icon h5 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
  font-family: "Montserrat";
}

.quick-links-ft ul {
  column-count: 1;
  line-height: 35px;
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.payment-card {
  float: inline-end;
}

section.copyrite-txt .row {
  align-items: center;
}

.social-icon ul li a:hover {
  background: #fff;
}

/*Footer End*/

/* ==================================== Customizer Start =================================== */
/* ==================================== Customizer Start =================================== */
/* ==================================== Customizer Start =================================== */
/* ==================================== Customizer Start =================================== */

.blog-text h4 a {
  color: #333;
  text-decoration: none;
  font-family: "Montserrat";
}
.post-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: black;
  font-family: Montserrat !important;
  line-height: 45px;
}
span {
  font-family: "Montserrat" !important;
  font-size: 15px;
}

.blog-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: "Montserrat";
}

.blog-detail-banner h1 {
  font-family: "Montserrat" !important;
  line-height: 70px;
  font-weight: 400;
}

h1.post-title {
  display: none;
}

.certificates-sec {
  padding: 70px 0;
  text-align: center;
}

.sec-heading {
  font-size: 36px;
  margin-bottom: 35px;
}

/* Gallery */
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cert-gallery img {
  width: 100%;
  height: 260px; /* 🔥 equal size */
  object-fit: contain;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.cert-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
}

.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.lightbox .prev {
  left: 30px;
}
.lightbox .next {
  right: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .cert-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cert-gallery {
    grid-template-columns: 1fr;
  }
}

.our-story {
  padding-top: 0px;
  padding-bottom: 80px;
}
.our-story h2 {
  font-size: 38px;
  margin-bottom: 25px;
}
.our-story p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.banner_img img {
  margin-left: 10px;
}

.lower-text-content-12 {
  margin-bottom: 40px;
}

.lower-text-content-12 h2 {
  padding-bottom: 20px;
  padding-top: 20px;
  color: white;
}

.lower-text-content-12 h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

.lower-text-content-12 h4 {
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

p.last-text {
  font-weight: 700;
  color: black;
  margin-left: 70px;
}

.stroy-cap {
  padding-top: 20px;
}

.about-button {
  display: flex;
  gap: 30px;
}

.main_slider::before {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background: #0000008c;
}

.main_slider {
  display: flex;
  min-height: 850px;
  position: relative;
  align-items: flex-end;
  padding: 100px 4% 0px;
  justify-content: center;
  background-image: url(https://nurturehugs.com/wp-content/uploads/2026/01/20260120203914_0-stock-photo-three-month-baby-girl.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section.client-sec {
  margin-bottom: 30px;
}

h1.ms1 {
  color: black;
}

section.about-lower-text {
  background: #9db089;
}

.lower-text-content-12 p {
  color: white;
}

section.about-lower-text {
  margin-bottom: 0px;
}

.gform_wrapper.gravity-theme input[type="color"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="datetime-local"],
.gform_wrapper.gravity-theme input[type="datetime"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="month"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="time"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="week"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 8px;
  border: 1px solid #00000030;
  border-radius: 7px;
}

.gform_wrapper.gravity-theme .gfield_label {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 0;
  color: black;
}

.gform-body.gform_body p {
  color: black;
}

.gform_wrapper.gravity-theme .gfield-choice-input + label {
  margin-bottom: 0;
  max-width: calc(100% - 32px);
  vertical-align: middle;
  color: black;
}

.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 8px;
  padding-right: 32px;
  padding-left: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #9db089;
  color: white;
  border: 1px solid white;
}

p.gform_required_legend {
  display: none;
}

.pum-theme-448,
.pum-theme-default-theme {
  background-color: rgb(0 0 0 / 28%);
}

.pum-container.pum-responsive.pum-responsive-medium {
  margin-left: -35%;
  width: 60%;
  margin-top: 15% !important;
}

div#popmake-457 {
  top: 10% !important;
}

.mission-list {
  list-style: disc;
  padding-left: 20px;
}

section.about-lower-text {
  padding-top: 60px;
  padding-bootom: 40px;
}
section.about-lower-text h2 {
  color: white;
}

section.about-lower-text p {
  color: white !important;
}

.lower-text-content-12 ul li {
  color: white;
  list-style: disc;
}

.mission-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 225px;
}

.post-content ul li {
  list-style: disc;
  font-family: "Montserrat" !important;
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  color: black;
}

.post-content h4 {
  line-height: 46px;
}

.post-content p {
  margin-bottom: 20px;
  color: black;
}

/* Center single blog card */
.blog-page-sec .row {
  justify-content: center;
}

.related-posts {
  display: none;
}

.error404 h1.page-title {
  color: black;
}

.error404 .page-content {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 83px;
}

section.about-lower-text {
    display: none;
}

section.about-sec.page-sec1 {
    padding: 0px 0 30px;
}

section.page-sec1 .stroy-cap {
    display: inline-block;
    margin-top: 30px;
}