@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

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

:root {
  --ct1: #1f2a44;
  --ct2: #3a816a;
  --ct3: #b4a542;
  --g1: linear-gradient(
    0deg,
    rgba(180, 165, 66, 1) 0%,
    rgba(58, 129, 106, 1) 100%
  );
  --g2: linear-gradient(
    0deg,
    rgba(180, 165, 66, 1) 50%,
    rgb(208 195 104) 40%,
    rgba(58, 129, 106, 1) 60%
  );
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  overflow-x: hidden;
}

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 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

.txt-color {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80%;
  margin: 0 auto 50px auto;
  gap: 10px;
}

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

.sec {
  padding: 80px 0;
}

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

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

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

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 35px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--g1);
  border: none;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 0;
  border-radius: 100px;
  background-color: var(--wt);
  border: 1px solid var(--bk);
  border-right: none;
  border-left: none;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 16px;
  line-height: 1;
  font-family: "Poppins";
  color: var(--wt);
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  z-index: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  color: var(--bk);
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  border-bottom: 1px solid var(--ct3);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.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: "Rajdhani", sans-serif;
  font-size: 54px;
  line-height: 60px;
  color: var(--wt);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 54px;
  line-height: 60px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 48px;
  line-height: 55px;
  color: var(--bk);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  line-height: 41px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--bk);
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: vr;
  font-weight: 500;
  opacity: 0.7;
  margin: 0;
}

p {
  color: var(--bk);
  font-size: 16px;
  line-height: 25px;
  font-family: "Poppins", serif;
  font-weight: 400;
  margin: 0;
  opacity: 0.7;
}

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 Starts */
header {
  padding: 30px 0;
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

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

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

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-family: "Poppins";
  color: var(--bk);
  font-weight: 400;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a:hover {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid var(--ct3);
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;

  transition: ease-out;

  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background: var(--g1);
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  height: 100%;

  transition: ease-out;

  transition-delay: 0.5s;

  transition-duration: 0.5s;
}

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

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

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

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

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

.menu-box 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;
}

/*Header Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 105vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}

section.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #1f2a44f0;
}

.banner_slider .draggable {
  padding: 0 !important;
}

.banner_slider .slick-slide {
  opacity: 1;
}

.banner_slider .slick-slide {
  height: 560px;

  margin: 0 10px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: end;

  transition: ease-in;

  transition-duration: 0.5s;
}

.banner_slider .slick-current {
  height: 560px;

  transition: ease-out;

  transition-duration: 0.5s;
}

.banner_slider .slick-slide .banner-img-main {
  height: 400px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner_slider .slick-current .banner-img-main {
  height: 525px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner_slider .slick-prev,
.banner_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  z-index: 99;
  border-radius: 100px;
  overflow: hidden;
  opacity: 1;
  background-color: var(--wt);
  border: 2px solid var(--text-white);
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner_slider .slick-prev:hover,
.banner_slider .slick-next:hover {
  background-color: var(--ct3);
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner_slider .slick-prev {
  left: -3%;
}

.banner_slider .slick-next {
  right: -3%;
}

.banner_slider .slick-prev::before,
.banner_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.banner_slider .slick-prev::before {
  background-image: url("../images/arrow-left1.png");
}

.banner_slider .slick-next::before {
  background-image: url("../images/arrow-right1.png");
}

.banner-wrap {
  position: relative;
  z-index: 9;
  margin: 50px 0 0 0;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 0;
}

.banner-txt {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 10px;
}

.banner-txt h4 {
  letter-spacing: 2px;
}

.banner-btn-main {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;
}

.banner-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.banner-img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;
}

.banner-img img {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  width: 100%;

  object-fit: cover;

  object-position: center;
}

/*Banner Sec Css Ends */

/*Inner Banner Sec Css Starts */

section.inner-banner-sec .banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

section.inner-banner-sec {
  height: 585px;
  padding: 50px 0 0 0;
}

/*Inner Banner Sec Css Ends */

/*About Us Sec Css Starts */

.about-img-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 660px;
  width: 100%;
}

.about-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 564px;
  width: 95%;
  /* border-radius: 10px; */
  /* overflow: hidden; */
  margin: 20px auto 0 0;
}

.about-img::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  height: 100%;
  width: 100%;
  background-color: var(--ct1);
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}

.about-ex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  width: 365px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 7px solid var(--wt);
  box-shadow: 0 0 20px 0 #00000036;
  overflow: hidden;
  border-radius: 5px;
}

.about-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 95%;
  margin: 0 0 0 auto;
}

.about-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

/*About Us Sec Css Ends */

/*Services Sec Css Starts */

section.services-sec {
  position: relative;
}

section.services-sec .container {
  position: relative;
  z-index: 9;
}

section.services-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

section.services-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-color: #1f2a44f0;
}

.services-heading h2,
.services-heading p {
  color: var(--wt);
  opacity: 1;
}

.services-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  overflow: hidden;
  padding: 0 20px 20px 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover {
  padding: 20px;
  border-radius: 20px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ct1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover::before {
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 375px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-img-main {
  padding: 10px;
  background-color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.services-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-txt-main * {
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.theme2 span.theme2-txt {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Poppins";
}

/*Services Sec Css Ends */

/*Gallery Sec Css Starts */

.gallery-heading h4 {
  font-size: 54px;
}

.gallery-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 385px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
}

.gallery-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gallery-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gallery-card-img a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

.gallery_slider .slick-slide.slick-active {
  scale: 0.9;
}

.gallery_slider .slick-current {
  scale: 1 !important;
}

.gallery_slider .slick-slide {
  scale: 0.9;
}

.gallery_slider .slick-prev,
.gallery_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  z-index: 99;
  border-radius: 100px;
  overflow: hidden;
  opacity: 1;
  background-color: var(--ct1);
  border: 2px solid var(--text-white);
  transition: ease-in;
  transition-duration: 0.5s;
}

.gallery_slider .slick-prev:hover,
.gallery_slider .slick-next:hover {
  background-color: var(--ct3);
  transition: ease-out;
  transition-duration: 0.5s;
}

.gallery_slider .slick-prev {
  left: -3%;
}

.gallery_slider .slick-next {
  right: -3%;
}

.gallery_slider .slick-prev::before,
.gallery_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(106deg) brightness(106%) contrast(104%);
}

.gallery_slider .slick-prev::before {
  background-image: url("../images/arrow-left1.png");
}

.gallery_slider .slick-next::before {
  background-image: url("../images/arrow-right1.png");
}

/*Gallery Sec Css Ends */

/* Contact Sec Css Starts */

section.contact-sec {
  padding: 0;
  background-color: var(--ct1);
  overflow: hidden;
}

.contact-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 610px;
  width: 100%;
}

.contact-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.contact-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  background-color: var(--ct1);
  padding: 50px 150px 50px 40px;
  gap: 30px;
}

.contact-heading h2 {
  color: var(--wt);
}

.contact-form-wrap form {
  width: 100%;
}

.contact-form-wrap form .row {
  row-gap: 25px;
}

.contact-field {
  position: relative;
  width: 100%;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  height: 50px;
  width: 100%;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 6px;
  padding: 0 20px;
  color: var(--wt);
  font-size: 14px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  box-shadow: none;
}

.contact-field textarea {
  height: 165px;
  resize: none;
  padding: 18px 20px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgb(255 255 255 / 85%);
  opacity: 1;
}

.contact-field select {
  color: rgb(255 255 255 / 85%);
  padding-right: 55px;
  background-image: none;
  cursor: pointer;
}

.contact-field select option {
  background-color: var(--ct1);
}

.contact-field input[type="date"] {
  color: rgb(255 255 255 / 85%);
  padding-right: 55px;
}

.contact-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 15px;
  cursor: pointer;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--ct3);
}

.contact-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--wt);
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
}

.contact-field textarea + .contact-icon {
  top: 28px;
  transform: none;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 5px;
}

.contact-btn .theme1 span.theme1-txt {
  font-size: 18px;
}

/* Contact Sec Css Ends */

/* Testimonial Sec Css Starts */

section.testimonial-sec {
  background-color: #f7f7f7;
  overflow: hidden;
}

.testimonial-heading {
  margin-bottom: 40px;
}

.testimonial_slider {
  margin: 0 -18px;
}

.testimonial_slider .slick-slide {
  padding: 0 18px 20px;
}

.testimonial-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  background-color: #fdfdfd;
  border: 1px solid #72b9b4;
  border-radius: 14px;
  box-shadow: 0 8px 20px 0 rgb(0 0 0 / 8%);
  padding: 40px 42px;
  min-height: 340px;
}

.testimonial-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.testimonial-client-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 110px;
  border-radius: 100px;
  overflow: hidden;
  border: 3px solid var(--ct1);
  flex-shrink: 0;
}

.testimonial-client-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial-client-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 4px;
}

.testimonial-client-info h3 {
  font-size: 30px;
  line-height: 34px;
  color: var(--bk);
}

.testimonial-client-info p {
  font-size: 18px;
  line-height: 24px;
  color: var(--ct3);
  text-transform: uppercase;
  opacity: 1;
}

.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-quote i {
  font-size: 88px;
  line-height: 1;
  color: #6e6e6e;
  opacity: 0.85;
}

.testimonial-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.testimonial-card-txt p {
  font-size: 18px;
  line-height: 34px;
  color: #6b6b6b;
  opacity: 1;
}

.testimonial_slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 25px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial_slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  opacity: 1;
}

.testimonial_slider .slick-dots li button {
  width: 56px;
  height: 10px;
  padding: 0;
  border-radius: 20px;
  background-color: var(--ct1);
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonial_slider .slick-dots li button::before {
  display: none;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial_slider .slick-dots li.slick-active button {
  background: var(--g1);
  transition: ease-out;
  transition-duration: 0.5s;
}

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

.testimonial_slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 35px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.testimonial_slider .slick-dots li button:before {
  display: none;
}

.testimonial_slider .slick-dots li button {
  width: 60px;
  height: 10px;

  border-radius: 50px;

  padding: 0;

  background: var(--ct1);

  transition: 0.4s ease;
}

.testimonial_slider .slick-dots li.slick-active button {
  background: var(--g1);
}

/* Testimonial Sec Css Ends */

/* Footer Sec Css Starts */

footer.footer-sec {
  position: relative;
  background-image: url("../images/footer-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}

footer.footer-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(58, 129, 106, 0.88) 0%,
      rgba(180, 165, 66, 0.82) 100%
    ),
    rgba(31, 42, 68, 0.45);
  z-index: 0;
}

.footer-overlay {
  position: relative;
  z-index: 1;
  padding: 75px 0 30px;
}

.footer-sec .container {
  position: relative;
  z-index: 2;
}

.footer-brand-main,
.footer-links-main,
.footer-contact-box-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.footer-brand-main {
  gap: 20px;
  /* padding-right: 35px; */
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: start;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-brand-subtitle h5 {
  color: var(--wt);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer-brand-txt p {
  color: var(--wt);
  opacity: 1;
  font-size: 15px;
  line-height: 32px;
}

.footer-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-title h4 {
  color: var(--wt);
  font-size: 28px;
  line-height: 35px;
}

.footer-title::after {
  content: "";
  width: 130px;
  height: 3px;
  background: var(--ct3);
  border-radius: 100px;
}

.footer-contact-list,
.footer-menu-list,
.footer-social-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.footer-contact-list {
  gap: 22px;
}

.footer-contact-list li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 14px;
}

.footer-contact-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  margin-top: 4px;
}

.footer-contact-list li span i {
  color: var(--wt);
  font-size: 18px;
}

.footer-contact-list li a {
  color: var(--wt);
  font-size: 14px;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-contact-list li a:hover {
  color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-menu-list {
  gap: 10px;
}

.footer-menu-list li a {
  color: var(--wt);
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-menu-list li a:hover {
  color: var(--ct1);
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-contact-box-main {
  gap: 20px;
  align-items: start;
}

.footer-call-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 18px;
  background-color: var(--ct1);
  padding: 20px;
  border-radius: 6px;
  min-width: 320px;
  box-shadow: 0 10px 25px 0 rgb(0 0 0 / 14%);
}

.footer-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 58px;
  border-radius: 100px;
  background: var(--ct3);
  flex-shrink: 0;
}

.footer-call-icon i {
  color: var(--wt);
  font-size: 24px;
}

.footer-call-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 4px;
}

.footer-call-txt span {
  color: var(--wt);
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  opacity: 0.9;
}

.footer-call-txt a {
  color: var(--wt);
  font-size: 30px;
  line-height: 35px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-call-txt a:hover {
  color: var(--ct3);
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-social-list {
  flex-direction: row;
  gap: 16px;
}

.footer-social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid rgb(255 255 255 / 65%);
  border-radius: 100px;
  color: var(--wt);
  font-size: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-social-list li a:hover {
  background: var(--ct1);
  border-color: var(--ct1);
  color: var(--wt);
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  width: 100%;
  background-color: var(--ct1);
  border-radius: 6px;
  margin-top: 55px;
  padding: 15px 20px;
}

.footer-copyright p {
  color: var(--wt);
  opacity: 1;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

/* Footer Sec Css Ends */

/* About Us Page Css Sttarts */

section.quote-sec {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}

section.quote-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #1f2a44f0;
}

.about-bottom {
  margin: 50px 0 0 0;
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 60%;
  text-align: center;
}

section.quote-sec .container {
  position: relative;
  z-index: 1;
}

.quote-txt h2 {
  color: var(--wt);
}

/* About Us Page Css Ends */

/* Services Page Css Starts */

section.inner-services-sec.sec::before,
section.inner-services-sec.sec::after {
  display: none;
}

section.inner-services-sec .services-heading h2,
section.inner-services-sec .services-heading p {
  color: var(--bk);
}

/* Services Page Css Ends */

/* Contact Page Sec Css Starts */

section.contact-page-sec {
  background-color: #f8f8f8;
}

.contact-page-info-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 45px;
  padding-right: 30px;
}

.contact-page-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.contact-page-heading h2,
.contact-page-form-heading h2 {
  font-size: 60px;
  line-height: 66px;
}

.contact-page-heading p {
  width: 80%;
}

.contact-page-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 35px;
}

.contact-page-list li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 18px;
}

.contact-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
}

.contact-page-icon i {
  font-size: 42px;
  color: var(--bk);
}

.contact-page-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 4px;
}

.contact-page-txt h5 {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}

.contact-page-txt p,
.contact-page-txt a {
  font-size: 16px;
  line-height: 26px;
  color: #5e5e5e;
  opacity: 1;
  font-family: "Poppins", sans-serif;
}

.contact-page-txt a:hover {
  color: var(--ct2);
}

.contact-page-form-main {
  background-color: #fcfcfc;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 40px 35px;
}

.contact-page-form-heading {
  margin-bottom: 30px;
}

.contact-page-field {
  width: 100%;
}

.contact-page-form-main form .row {
  row-gap: 18px;
}

.contact-page-field input,
.contact-page-field textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background-color: transparent;
  padding: 0 18px;
  font-size: 15px;
  line-height: 1;
  color: #5e5e5e;
  font-family: "Poppins", sans-serif;
  box-shadow: none;
}

.contact-page-field input {
  height: 52px;
}

.contact-page-field textarea {
  height: 155px;
  padding: 18px;
  resize: none;
}

.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
  border-color: var(--ct3);
}

.contact-page-btn {
  margin-top: 5px;
}

.contact-page-btn .theme1 {
  min-width: 170px;
}

section.contact-map-sec {
  line-height: 0;
}

section.contact-map-sec iframe {
  filter: grayscale(0%);
}

/* Contact Page Sec Css Ends */

/* Contact Page Sec Css Ends */

/* Book Page Css Starts */

.book-sec {
  background: #f6f6f6;
}

.book-form .row {
  row-gap: 25px;
}

.book-field {
  width: 100%;
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  height: 55px;

  border: 1px solid #d8d8d8;
  border-radius: 4px;

  padding: 0 18px;

  font-size: 15px;
  font-family: "Poppins";

  background: #fff;

  color: #6b6b6b;
}

.book-field textarea {
  height: 180px;
  padding: 18px;
  resize: none;
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  border-color: var(--ct3);
}

.book-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.book-btn button {
  height: 55px;
  width: 420px;

  background: var(--ct1);

  border: none;
  border-radius: 4px;

  color: #fff;

  font-size: 16px;
  font-family: "Poppins";
  font-weight: 500;

  letter-spacing: 1px;

  transition: 0.4s;
}

.book-btn button:hover {
  background: var(--ct2);
}

/* Book Page Sec Css Ends */

/* Services Setail Page Css Starts */

section.inner-services-detail-sec .services-card-img-main {
  height: 540px;
}

section.inner-services-detail-sec .services-card-main {
  padding: 0;
  border-radius: 0;
}

section.inner-services-detail-sec .services-card-main::before {
  display: none;
}

section.inner-services-detail-sec
  .services-card-main:hover
  .services-card-img-main {
  padding: 0;
  background-color: #0000;
}

section.inner-services-detail-sec
  .services-card-main:hover
  .services-card-txt-main
  * {
  color: var(--bk);
}

/* Services Setail Page Css Ends */
