@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&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&display=swap");

/***** General CSS *****/

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 {
  color: #2ca089;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
  margin: 0 auto 20px auto;
  gap: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/***** 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 {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  height: 55px;
  border: 1px solid #0000;
  background-color: #2ca089;
  border-radius: 100px;
  overflow: hidden;
  padding: 3px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  background-color: #fff;
  border: 1px solid #0000008a;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  font-size: 15px;
  line-height: 20px;
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
  font-weight: 500;
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
  color: #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  background-color: #000;
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px 0 10px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(2%)
    hue-rotate(240deg) brightness(115%) contrast(100%);
}

.theme1:hover span.theme1-icon img {
  filter: none;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  height: 55px;
  /* border: 1px solid #0000; */
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
  padding: 3px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  background-color: #fff;
  /* border: 1px solid #0000008a; */
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  font-size: 15px;
  line-height: 20px;
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
  font-weight: 500;
  background-color: #2ca089;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
  background-color: #000;
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px 0 10px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2 span.theme2-icon img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(14%) saturate(1809%)
    hue-rotate(118deg) brightness(90%) contrast(85%);
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon img {
  filter: none;
  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: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 65px;
  color: #000;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 65px;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  font-weight: 200;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #0b2822;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  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: 10px 0;
  margin: 0 auto 0 0;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.menuSec {
  padding: 0px 0;
}

.menuSec .container-fluid {
  width: 90%;
  margin: 0 0 0 50px;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 100%;
}

.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: 40px;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 25px;
  font-family: "Cormorant Garamond";
  color: #000;
  font-weight: 400;
}

.menu-box ul li a:hover,
.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-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

/*Header Css Ends */

/*Banner Sec Css start */

.carousel-caption .container,
.carousel-caption .row {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 60%;
  width: 100%;
}

section.main_slider .carousel-item {
  height: 130vh;
}

.main-banner-img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators {
  position: relative;
  height: 100%;
  width: 73%;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 0 auto;
  gap: 10px;
}

.carousel-indicators [data-bs-target] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px;
  height: 20px;
  width: 20px;
  border-radius: 100px;
  border: 1px solid #0000;
  background-color: #0000;
  /* opacity: 1; */
}

.carousel-indicators .active {
  border: 1px solid #fff;
}

.carousel-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  margin: 0 auto;
  height: 5px;
  width: 5px;
  background-color: #fff;
  border-radius: 100px;
}

.carousel-indicators .active::before {
  height: 8px;
  width: 8px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-heading h1 span {
  display: block;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-heading {
  padding: 0 0 20px 0;
  position: relative;
}

.banner-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95%;
  border-bottom: 1px solid #0000003d;
}

.bannner-socials-box {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 7vw;
  background-color: #2ca089;
  z-index: 9;
}

.bannner-socials-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 600px;
}

.bannner-socials-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  margin: 0 auto;
  height: 85%;
  border-right: 1px solid #fff;
  z-index: 0;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100%; */
}

.socials ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #ffffff7a;
  background-color: #2ca089;
  position: relative;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover {
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 14px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover i {
  color: #2ca089;
  transition: ease-out;
  transition-duration: 0.5s;
}

.bannner-socials-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannner-socials-txt h6 {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  writing-mode: sideways-rl;
}

.bannner-bottom-box {
  position: absolute;
  bottom: 0;
  height: 10%;
  width: 100vw;
  background-color: #2ca089;
  z-index: 99;
}

.bannner-scroll-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 40vh;
  width: 25%;
  margin: 0 auto;
  /* padding: 0 0 0 100px; */
  position: absolute;
  bottom: 0;
  left: 0;
}

.bannner-scroll-link {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  height: 70%;
}

.bannner-scroll-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  margin: 0 auto;
  height: 70%;
  border-left: 1px solid #00000047;
}

.bannner-scroll-main a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33%;
  width: 100%;
  background-color: #238c77;
}

.bannner-scroll-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.bannner-scroll-txt h6 {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.bannner-scroll-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 30px;
}

.bannner-scroll-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  background-color: #0000;
  border-radius: 20px;
  overflow: hidden;
}

.bannner-scroll-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Progress UI position (bottom-right like screenshot) */
.slider-progress-ui {
  position: absolute;
  right: 7%;
  bottom: 4%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 999;
  height: 30px;
}

/* Bar track */
.slider-progress-ui .sp-bar {
  width: 300px; /* adjust as needed */
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

/* Bar fill */
.slider-progress-ui .sp-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 300ms ease;
}

/* Optional: make numbers fixed-width like 02, 04 */
.slider-progress-ui .sp-current,
.slider-progress-ui .sp-total {
  min-width: 28px;
  text-align: center;
  font-family: "Cormorant Garamond";
  height: 100%;
}

/*Banner Sec Css end*/

/*About Us Sec Css Starts*/

section.about-sec .row {
  position: relative;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 525px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 50px 0 0 0;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-txt-main {
  position: absolute;
  top: 0;
  left: 35%;
  background-color: #e8f5f2;
  padding: 20px 20px 20px 320px;
  overflow: hidden;
  border-radius: 5px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.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;
  height: 800px;
}

section.services-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background-color: #2ca089;
  z-index: -1;
}

section.services-sec .container-fluid {
  width: 98%;
  margin: 0 0 0 auto;
}

.services-heading-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 30px;
  height: auto;
  width: 100%;
  padding: 70px 0 60px 30px;
  border-radius: 5px;
  overflow: hidden;
  border: 6px solid #fff;
  width: 95%;
  margin: 0 auto 0 0;
}

.services-heading {
  position: relative;
  padding: 0 0 20px 0;
}

.services-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #ffffff94;
}

.services-heading-txt {
  width: 80%;
  margin: 0 auto 0 0;
}

.services-card-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-radius: 10px;
  overflow: hidden;
  transition-duration: 0.5s;
}

.services-card-box:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 40px 0 40px 0;
}

.services-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
  padding: 5px 5px 0 5px;
  overflow: hidden;
  background-color: #fff;
}

.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%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.services_slider .slick-active,
.services_slider .slick-slide {
  opacity: 1;
}

.services_slider .slick-slide {
  margin: 0px 10px;
}

.services_slider .draggable {
  padding: 0 310px 0 0 !important;
}

.services-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.services-card-txt-box .services-card-btn {
  height: 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-box:hover .services-card-btn {
  height: 55px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 50px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-heading {
  position: relative;
}

.services-card-heading h5 {
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-heading h5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-heading h5:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-box:hover .services-card-txt {
  height: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-heading h5 {
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-box:hover .services-card-heading h5 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt-box {
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-box:hover .services-card-txt-box {
  padding: 40px 10px 40px 10px;
  background-color: #2ca089;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt-box p {
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-box:hover .services-card-txt-box p {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-heading h2 {
  color: #fff;
}

.services-heading-txt p {
  color: #fff;
}

/*Services Sec Css Ends*/

/*Choose Sec Css Starts*/

section.choose-sec {
  padding: 0;
}

section.choose-sec .container-fluid {
  width: 75%;
  margin: 0 auto;
}

section.choose-sec .row {
  position: relative;
}

.choose-txt-box {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  /* gap: 20px; */
  text-align: end;
  border-radius: 10px;
  padding: 0 15px 0 0;
  overflow: hidden;
  position: absolute;
  top: 15%;
  right: 40%;
}

.choose-txt {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: 20px;
}

.choose-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 800px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.choose-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.choose-txt-main {
  background-color: #2ca089;
  padding: 0 30px 30px 30px;
  width: 86%;
  margin: 0 auto 0 0;
  border-radius: 0 0 5px 5px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: 20px;
}

.choose-heading {
  background-color: #2ca089;
  width: 100%;
  padding: 30px;
  border-radius: 5px 5px 5px 0;
  overflow: hidden;
}

.choose-heading h2 {
  color: #fff;
  width: 55%;
  margin: 0 0 0 auto;
}

.choose-txt p {
  color: #fff;
}

/*Choose Sec Css Ends*/

/*Testimonial Sec Css Starts*/

section.testimonial-sec .container-fluid {
  width: 85%;
  margin: 0 auto;
}

.testimonial_slider .slick-active,
.testimonial_slider .slick-slide {
  opacity: 1;
}

.testimonial-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.testimonial-card-user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.testimonial-card-user-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  padding: 0 0 0 8px;
}

.testimonial-card-user-img::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  height: 80%;
  border-right: 3px solid #2ca089;
}

.testimonial-card-user-txt-main {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.testimonial-card-user-txt h5 {
  text-transform: capitalize;
}

.testimonial-card-user-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.testimonial-card-user-txt h6 {
  color: #2ca089;
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

.testimonial-card-user-star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.testimonial-card-user-star ul li a i {
  color: #ffcd37;
  font-size: 12px;
}

.testimonial-card-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial-card-txt p {
  color: #4e4e4e;
  font-weight: 500;
}

.testimonial_slider .slick-slide {
  margin: 0;
}

.testimonial_slider .slick-current .testimonial-card-main {
  border: 1px solid #00000036;
  border-top: none;
  border-bottom: none;
}

.testimonial_slider .slick-current .testimonial-card-main {
  padding: 0 20px !important;
  margin: 0 20px !important;
}

/*Testimonial Sec Css Ends*/

/*Resources Sec Css Starts*/

section.quote-sec {
  position: relative;
  background-image: url("../images/quote-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0 0 0;
}

section.quote-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 53%;
  height: 60%;
  border-right: 1px solid #ffffff2e;
}

.quote-form {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.quote-input {
  width: 100%;
}

.quote-input input,
.quote-select select,
.quote-input textarea {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 50px;
  border: 1px solid #00000024;
  border-radius: 5px;
  overflow: hidden !important;
  padding: 0 20px;
  margin: 0 0 20px 0;
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 9;
  background-color: #0000;
}

.quote-input input::placeholder,
.quote-select select::placeholder,
.quote-input textarea::placeholder {
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  text-transform: uppercase;
  font-weight: 500 !important;
}

.quote-input textarea::placeholder {
  position: absolute;
  bottom: 10%;
  left: 3%;
}

.quote-select-main {
  position: relative;
}

.quote-select-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 30%;
  right: 5%;
}

.quote-input textarea {
  resize: none;
  height: 200px;
  padding: 20px;
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.quote-heading h2 {
  color: #fff;
}

.quote-txt p {
  color: #fff;
  opacity: 1;
}

/*Quote Sec Css Ends*/

/*Resources Sec Css Starts*/

section.blog {
  padding: 20px 0px 80px;
}

.blog-txt {
  /* text-align: center; */
  /* margin-bottom: 40px; */
}

.blog-txt h2 {
  margin-bottom: 10px;
  color: #111111;
}

.blog-txt p {
  font-size: 14px;
  margin: 0 auto;
  width: 73%;
}

.blog-img {
  position: relative;
  margin: 25px 0px;
}

.blog-img img {
  width: 95%;
  height: 380px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 5px;
}

.blog-detail {
  padding: 30px 20px 10px 20px;
  background: #fff;
  box-shadow: 0 0 20px #80808021;
  width: 80%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.blog-detail h5 {
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  /* margin: 0 0 20px; */
  width: 75%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.blog-detail h5:hover {
  color: #2ca089;
  transition: ease-out;
  transition-duration: 0.5s;
}

.blog-detail h5 span {
  display: block;
}

.alignlist {
  display: flex;
  gap: 10px;
  justify-content: end;
  text-align: end;
  margin-left: 0;
}

.blog-slider .slick-active {
  opacity: 1;
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before {
  display: block;
  content: "";
  background: url(../images/arrow2.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1 !important;
  width: 75px;
  height: 45px;
  transition: 0.35s ease-in-out;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
  width: 75px;
  height: 45px;
  z-index: 2;
  bottom: -90px;
  top: unset;
}

.blog-slider .slick-prev {
  left: 0;
  right: 0px;
  /* transform: rotate(180deg); */
  margin: 0 auto;
  display: block;
  bottom: -90px;
  width: 18%;
}

.blog-slider .slick-next {
  right: 300px;
  width: 27%;
}

.blog-slider .slick-prev:before {
  transform: rotate(180deg);
}

.blog-slider .slick-prev:hover:before,
.blog-slider .slick-next:hover:before {
  filter: brightness(0);
}

.blog-detail-ex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-links-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.blog-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.blog-links-icon i {
  color: #2ca089;
}

.blog-links-txt h6 {
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-weight: 500;
}

/*Resources Sec Css Ends*/

/* Footer Start */

section.footer {
  background: #0b2822;
  padding: 60px 0 50px 0;
}

section.footer p {
  color: #fff;
}

ul.adrs-links li a {
  gap: 8px;
  display: flex;
  color: #aaacae;
  font-size: 13px;
  line-height: 25px;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
}

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: #2ca089;
}

section.footer h2 {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  /* margin-bottom: 25px; */
  text-transform: uppercase;
  width: 100%;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #ffffff29;
}

ul.linkList li a {
  font-size: 14px;
  transition: 0.5s;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat";
  text-transform: capitalize;
  opacity: 0.7;
}

ul.linkList li a i {
  color: #ffffff94;
}

form.footerForm input {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 0;
  width: 100%;
  height: 55px;
  padding: 0 20px;
}

form.footerForm input::placeholder {
  text-transform: uppercase;
  color: #b9babb;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
}

ul.linkList li a:hover {
  color: #2ca089;
  padding: 0 0 0 10px;
  opacity: 1;
}

.foot1 {
  /* padding: 0 0% 0 0; */
  /* margin-top: 24px; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.foot2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  padding: 0 20px;
}

.foot3 {
  /* padding: 0; */
}

.foot1 .w-100 {
  padding: 0 0 20px 0;
  /* border-bottom: 2px solid #ffffff29; */
  display: inline-flex;
  align-items: center;
  justify-content: start;
  height: 39px;
}

.foot1 .w-100 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(2%)
    hue-rotate(328deg) brightness(110%) contrast(101%);
  object-fit: contain;
}

.foot1 h4 {
  color: #fff;
}

.foot4 {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

section.copyrite-txt {
  background: #0b2822;
  border-top: 1px solid #475157;
}

section.copyrite-txt p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  text-align: start;
  color: #fff;
  font-family: "Montserrat";
  opacity: 1;
}

section.copyrite-txt p a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Montserrat";
  opacity: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.copyrite-txt p a:hover {
  color: #2ca089;
  transition: ease-out;
  transition-duration: 0.5s;
}

@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;
}

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;
}

form.footerForm button {
  background: #c7293d;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 35px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

button.btn:hover {
  background-color: #ffe1a8;
  border: 1px solid #ffe1a8;
}

ul.footer-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #0000;
  border-radius: 100px;
  overflow: hidden;
  color: #ffffff;
  background-color: #2ca089;
  font-size: 16px;
  transition: ease-out;
  transition-duration: 0.5s;
  transition: 0.5s;
}

ul.footer-social li a:hover {
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: #0000;
  border: 1px solid #fff;
  transition: 0.5s;
}

.social-icon ul {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
  margin-top: 10px;
  padding: 0 0 0 0%;
}

.social-icon h5 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
  font-family: "Montserrat";
}

.quick-links-ft ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

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-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 0 0 0 auto;
  background-color: #2ca089;
}

.footer-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.footer-arrow a i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.footer-logo-main a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0 0 0;
}

/*Footer End*/
