@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..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;
  background-color: #f9f5f0;
  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;
}

.heading0 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}

.heading0::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  border: 1px solid #00000029;
}

.heading0 h2 {
  position: relative;
  z-index: 9999;
  background-color: #f9f5f0;
  padding: 0 20px;
  margin: 0 0 0 40px;
}

.heading1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}

.heading1::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  border: 1px solid #00000029;
}

.heading1 h2 {
  position: relative;
  z-index: 1;
  background-color: #f9f5f0;
  padding: 0 20px;
  margin: 0 auto;
}

/* 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: center;
  height: 60px;
  padding: 0 30px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #d8c4a2;
  border: none;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  background-color: #4a423a;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 18px;
  line-height: 1;
  color: #4a423a;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Lora";
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #d8c4a2;
  border-radius: 100px;
  overflow: hidden;
}

.theme2 span.theme2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.theme2 span.theme2-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 10px;
  object-fit: contain;
}

/* 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: "Lora", serif;
  font-size: 46px;
  line-height: 50px;
  color: #4a423a;
  font-weight: 300;
  margin: 0;
}

h2 {
  font-family: "Lora", serif;
  font-size: 45px;
  line-height: 50px;
  color: #4a423a;
  font-weight: 400;
  margin: 0;
}

h3 {
  font-family: "Lora", serif;
  font-size: 30px;
  line-height: 35px;
  color: #000;
  font-weight: 400;
  margin: 0;
}

h4 {
  font-family: "Lora", serif;
  font-size: 26px;
  line-height: 30px;
  color: #4a423a;
  font-weight: 400;
  margin: 0;
}

h5 {
  font-family: "Lora", serif;
  font-size: 23px;
  line-height: 30px;
  color: #4a423a;
  font-weight: 400;
  margin: 0;
}

h6 {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", serif;
  font-weight: 400;
  margin: 0;
}

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: 20px 0;
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 97%;
  margin: 20px auto 0 auto;
  border: 1px solid #00000042;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100% !important;
  margin: 0;
  background: #fff;
  border: unset;
  /* transition: 1s all; */
}

.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 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  color: #4a423a;
  font-weight: 600;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  /* transition-delay: 0.5s; */
}

.menu-box ul li a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 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 #ff8040;
    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;
  width: 0;
  height: 100%;
  background-color: #4a423a;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  width: 100%;
  transition: ease-out;
  /* transition-delay: 0.5s; */
  transition-duration: 0.5s;
}

.menu-box ul li.active a {
  color: #fff;
}

.menu-box ul li.active a::after {
  width: 100%;
}

.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.main_slider {
  width: 97%;
  margin: 0 auto 0 auto;
}

section.main_slider .carousel-caption .container,
section.main_slider .carousel-caption .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  /* margin-bottom: 139px; */
}

section.main_slider .carousel-item {
  height: 100vh;
}

.main-banner-img {
  width: 100%;
  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 {
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.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: unset;
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.banner_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  width: 65%;
  margin: 0 0 0 auto;
}

.banner_text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  width: 63%;
  margin: 0 auto;
}
.banner-btn a {
  height: 70px;
  padding: 0 40px;
}

.banner-btn a span {
  font-size: 22px !important;
}
/*Banner Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec .about-bg {
  padding: 50px;
  background-color: #f6efeb;
  border: 1px solid #00000029;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 435px;
  width: 100%;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 85%;
  margin: 0 auto 0 0;
}

.about-txt h5 {
  font-size: 23px;
  line-height: 1.8;
}

.about-btn a {
  height: 70px;
  padding: 0 40px;
}

.about-btn a span {
  font-size: 22px !important;
}

.about-sec.sec .container-fluid {
  width: 95%;
}

/*About Us Sec Css Ends */

/*Services Sec Css Starts */

.services-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 20px; */
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #f9f5f0;
  margin: 0 0 -25px 0;
  position: relative;
  z-index: 999;
}

.services-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 15px;
}

.services-card-txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 100%;
  border-radius: 100px;
  /* overflow: hidden; */
  border: 1px solid #00000042;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-main:hover .services-card-txt {
  scale: 1.03;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  width: 110px;
  margin: -76px auto 0 auto;
  background-image: url("../images/services-card-txt-ex.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.services-card-txt h5 {
  font-size: 20px;
  line-height: 30px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 9;
}

.services-card-btn {
  margin: -20px 0 0 0;
  position: relative;
  z-index: 9;
}

/*Services Sec Css Ends */

/*Testimonial Sec Css Ends */

.testimonial_slider .slick-active {
  opacity: 1;
  outline: none;
}

.testimonial-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid #00000029;
  background-color: #f6efeb;
  height: 550px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover {
  background-color: #f6eae3;
  border-radius: 5px;
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-card-txt {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 70%;
  flex-direction: column;
  gap: 10px;
}

.testimonial-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100px;
}

.testimonial-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-card-user {
  position: relative;
  display: flex;
  align-items: start;
  padding: 10px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonial-card-user::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d8c4a2;
  height: 100%;
  width: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-user {
  padding: 10px 10px;
}

.testimonial-card-main:hover .testimonial-card-user::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-user h6 {
  position: relative;
  font-size: 24px;
  line-height: 30px;
  color: #4a423a;
  z-index: 9;
}

.testimonial-card-txt p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 60%;
}

/*Testimonial Sec Css Ends */

/*Quote Sec Css Starts */

section.quote-sec {
  padding: 80px 0 0 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.quote-sec:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 100px 0;
  background-color: #f6efeb;
  border: 1px solid #00000029;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.quote-sec:hover .quote-txt-main {
  scale: 1.02;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 #0000000f;
  border: 1px solid #00000017;
  transition: ease-out;
  transition-duration: 0.5s;
}

.quote-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.quote-btn a {
  height: 70px;
  padding: 0 40px;
}

.quote-btn a span {
  font-size: 22px !important;
}

/*Quote Sec Css Ends */

/*Footer Css Starts */

footer {
  padding: 20px 0;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy p {
  font-family: "Montserrat";
  font-weight: 500;
  opacity: 0.7;
}

/*Footer Css Ends */

/* Quote Modal Starts  */

.quote-modal {
  border: 1px solid #00000029;
  background: #f9f5f0;
  border-radius: 12px;
  overflow: hidden;
}

.quote-modal-header {
  padding: 20px 22px;
  border-bottom: 1px solid #0000001f;
  background: #f6efeb;
}

.quote-modal-header .modal-title {
  font-family: "Lora";
  font-size: 26px;
  line-height: 1.2;
  color: #4a423a;
  font-weight: 500;
  margin: 0;
}

.quote-modal-header p {
  opacity: 0.7;
  margin-top: 6px;
}

.quote-modal-body {
  padding: 22px;
}

.quote-modal-footer {
  padding: 18px 22px;
  border-top: 1px solid #0000001f;
  background: #f6efeb;
}

.qf-section {
  margin-bottom: 22px;
}

.qf-title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 15px;
  color: #4a423a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req {
  color: #b24a3a;
  font-weight: 700;
}

.qf-help {
  display: inline-block;
  margin-top: 6px;
  opacity: 0.7;
  font-size: 12px;
}

.qf-input {
  border: 1px solid #00000029;
  background: #fff;
  border-radius: 10px;
  height: 50px;
  padding: 10px 14px;
  font-family: "Poppins";
  cursor: pointer;
}

.qf-input:focus {
  border-color: #d8c4a2;
  box-shadow: 0 0 0 0.2rem rgba(216, 196, 162, 0.35);
}

textarea.qf-input {
  height: 200px;
  resize: none;
  padding: 20px;
}

.qf-close {
  border-radius: 10px;
  height: 60px;
  padding: 0 26px;
}

/* Quote Modal Ends  */
