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

.heading0 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 90%;
  margin: 0 0 0 auto;
}

.heading0 h4 {
  position: relative;
  color: #233324;
  font-weight: 600;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.heading0 h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 65%;
  border: 1px solid #ffad1d;
}

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

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

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

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

@font-face {
  font-family: "BlenderProBold";
  src: url("../fonts/blender-pro-bold.ttf");
}

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

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
  /* gap: 10px; */
  height: 55px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #00000040;
  padding: 2px;
  transition: ease-in;
  transition-duration: 0.5s;
}

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

.theme1 span.theme1-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #344c36;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
  background-color: #ffad1d;
  border-radius: 5px;
  text-transform: uppercase;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  color: #fff;
  background-color: #344c36;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50px;
  padding: 0 15px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  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: "BlenderPro";
  font-size: 75px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "BlenderPro";
  font-size: 75px;
  line-height: 80px;
  color: #000;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "BlenderPro";
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "BlenderPro";
  font-size: 25px;
  line-height: 21px;
  color: #000;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

h5 {
  font-family: "BlenderPro";
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "BlenderPro";
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  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: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
}
.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: start;
  gap: 10px;
}

.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 15px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  color: #fff;
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover {
  color: #ffad1d;
  transition: ease-out;
  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.main_slider {
  position: relative;
}

section.main_slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #233324;
  z-index: 1;
}

.carousel-caption {
  padding: 150px 0 0 0;
}

.main-banner-img {
  width: 100%;
  height: 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: 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;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.carousel-item {
  height: 120vh;
}

.banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  height: 735px;
  width: 100%;
  gap: 200px;
  position: relative;
  z-index: 1;
}

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

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-text h1 span {
  font-size: 71px;
}

.banner-text p {
  color: #fff;
  opacity: 1;
}

.banner_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 735px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.banner-socials-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  height: 40px;
}

.banner-socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
}

.banner-socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #ffffff52;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner-socials ul li a:hover {
  background-color: #fff;
  scale: 1.05;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-socials ul li a i {
  color: #ffffff52;
  transition: ease-in;
  transition-duration: 0.5s;
}

.banner-socials ul li a:hover i {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.banner-socials-txt h6 {
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff;
  text-transform: capitalize;
}

.banner-socials-txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 100%;
}

.banner-socials-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: 60%;
  border: 1px solid #ffffff30;
}

.carousel-caption {
  padding: 80px 0 0 0;
}

/*Banner Sec Css Ends */

/*About Us Sec Css Starts */

.about-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 50px;
  width: 100%;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 88%;
  border-radius: 10px;
  overflow: hidden;
}

.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: 20px;
  width: 80%;
  margin: 0 200px 0 auto;
}

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

/*About Us Sec Css Ends */

/*Services Sec Css Starts */

section.services-sec {
  position: relative;
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  padding: 150px 0;
}

section.services-sec::before {
  content: "";
  position: absolute;
  top: 360px;
  left: 12%;
  right: 0;
  margin: 0 auto;
  height: 1702px;
  width: 1110px;
  background-image: url("../images/services-ex.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

section.services-sec .services-top,
section.services-sec .services-mid,
section.services-sec .services-bottom {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}

section.services-sec .services-mid {
  margin: 0 0 0 200px;
  width: 85%;
}

.services-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 500px;
  border-radius: 300px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #fff;
}

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

.services-heading * {
  color: #fff;
}

.services-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.services-txt h2,
.services-txt p {
  color: #fff;
}

/*Services Sec Css Ends */

/*Choose Sec Css Starts */

.choose-sec {
  position: relative;
  overflow: visible;
  padding: 180px 0 250px 0; /* thora extra spacing like screenshot */
}

/* Big light background panel */
.choose-sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: min(1400px, 94%);
  height: 700px;
  background: #f3f3f3;
  border-radius: 12px;
  z-index: 0;
}

/* bring content above panel */
.choose-sec .container {
  position: relative;
  z-index: 2;
}

/* LEFT IMAGES */
.choose-img-box {
  position: relative;
  min-height: 640px; /* space for overlap */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.choose-img1 {
  width: 430px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.choose-img1 img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* small image overlapping bottom */
.choose-img2 {
  position: absolute;
  left: 80px;
  bottom: -155px;
  width: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.choose-img2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* RIGHT TEXT */
.choose-txt-main {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 560px; /* align with panel height */
}

.choose-heading {
  text-align: end;
  margin: 0 auto 25px auto;
  width: 92%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  text-align: end;
}

.choose-heading h2 {
  font-size: 77px; /* big heading like screenshot */
  line-height: 80px;
}

.choose-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #777;
  opacity: 1;
}

/* LIST */
.choose-list {
  width: 92%;
  margin: 0 auto;
}

.choose-list ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.choose-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.choose-list li:last-child {
  border-bottom: 0;
}

.choose-list-txt {
  display: flex;
  align-items: center;
  justify-content: space-between; /* text center feel + icon right */
  gap: 18px;
}

.choose-list-txt p {
  flex: 1;
  text-align: end;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #222;
  opacity: 1;
  margin: 0;
}

/* icon on right */
.choose-list-txt img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* BUTTON alignment like screenshot (right side) */
.choose-btn {
  width: 92%;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: flex-end;
}

/*Choose Sec Css Ends */

/*Testimonial Sec Css Starts */

section.testimonial-sec {
  background-image: url(../images/testimonial-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.testimonial-heading * {
  color: #fff;
}

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

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

.testimonial-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

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

.testimonial-card-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 0 20px 0 #0000002b;
}

.testimonial-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
  border-top: 1px solid #0000002b;
}

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

.testimonial-card-user-txt h5 {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-card-user-txt h6 {
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat";
  color: #7c7c7c;
  font-weight: 400;
}

.testimonial-card-star ul {
  display: flex;
  align-items: center;
  justify-content: end;
}

.testimonial-card-star ul li a i {
  font-size: 14px;
  color: #f4a600;
}

/*Testimonial Sec Css Ends */

/*Gallery Sec Css Starts */

.gallery-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.gallery-card-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.gallery-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.gallery-card a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

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

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

.gallery-card a .gallery-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background-color: #ffad1dcf;
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.gallery-card a:hover .gallery-txt {
  width: 90%;
  height: 90%;
  padding: 10px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.gallery-card a .gallery-txt h4 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}

.gallery-card a .gallery-txt p {
  color: #fff;
}

/*Gallery Sec Css Ends */

/*Footer Css Starts */

.footer-links.footer-links-contact li {
  margin: 20px 0;
  gap: 20px;
  display: flex;
  align-items: center;
}

.footer-links.footer-links-contact li a {
  color: #ffffffbf;
  font-family: "Montserrat";
}

.footer-links.footer-links-contact li i {
  color: white;
}

footer {
  background-image: url("../images/footer-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5%;
}

.bar {
  display: block;
  margin: 0 0 60px 0;
  color: #ffffff;
  padding: 0 0 20px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 22px;
}

.ftr_box {
  position: relative;
  z-index: 2;
  padding: 20px 20px 40px 40px;
  height: 100%;
}

.ftr_box::before {
  position: absolute;
  height: 80%;
  width: 1px;
  content: "";
  background-color: #ffffff2b;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.ftr_box1::after {
  position: absolute;
  height: 100%;
  width: 1px;
  content: "";
  background-color: #ffffff2b;
  bottom: 0;
  right: -2px;
}

.ftr_logo p {
  width: 100%;
  margin: 0 0 30px 0px;
  color: #fff;
}

.ftr_logo h5 {
  color: #fff;
}

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

ul.footer_social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff38;
  transition: 0.3s ease-in-out;
}

ul.footer_social li a:hover i {
  transition: 0.3s ease-in-out;
  color: #fff;
}

ul.footer_social li a:hover {
  transition: 0.3s ease-in-out;
  background: #ffad1d;
}

ul.footer_social li a i {
  color: #ffffff38;
  font-size: 15px;
  transition: 0.3s ease-in-out;
}

ul.services a {
  font-size: 14px;
  margin: 0 0 10px 0;
  transition: 0.3s ease-in-out;
}

ul.services {
  column-count: 1;
}

.ftr_box a {
  font-size: 14px;
  font-family: "Montserrat";
  color: #ffffffbf;
  display: block;
  width: fit-content;
  margin: 15px 0;
}

.footer-links.footer-links-contact ul li img {
  object-fit: scale-down;
  width: auto;
}

.copy_right p {
  margin: 0;
  text-align: center;
  /* border-top: 1px solid #2a2a2a; */
  color: #ffffffbf;
}

.banner_main_box::before {
  position: absolute;
  width: 37%;
  height: 220px;
  right: -20%;
  bottom: 0;
  content: "";
  background: #d12128;
}

ul.our-happy-box-ul img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 1px 1px 7px 4px #00000029;
}

.ftr_logo a {
  font-family: "VintageKing";
  font-size: 22px;
  text-align: left;
  display: flex;
  align-items: self-start;
  justify-content: left;
  width: fit-content;
  color: #fff;
  line-height: 40px;
}

.ftr-right-bar {
  position: relative;
  z-index: 6;
}

.ftr-right-bar::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: #ffad1d;
  content: "";
  z-index: 2;
}

.footer-links.footer-links-contact a {
  margin: 0px 0;
}

ul.services a:hover {
  padding: 0 0 0 15px;
  transition: 0.3s ease-in-out;
  color: #ffad1d;
}

ul.quick a {
  transition: 0.3s ease-in-out;
}

ul.quick a:hover {
  padding: 0 0 0 15px;
  transition: 0.3s ease-in-out;
  color: #ffad1d;
}

.ftr_logo a img {
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1509%)
    hue-rotate(332deg) brightness(120%) contrast(100%);
}

.footer-box {
  padding-left: 50px;
  border: 1px solid #ffffff2b;
}

.ftr_logo {
  margin-top: 50px;
}

img.payment {
  object-fit: scale-down;
  width: auto;
}

.copy_right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.footer-links.footer-links-contact li a:hover {
  color: #ffad1d;
}

.feat-pro-slider .slick-slide {
  margin: 0px 10px;
}

/*Footer Css Ends */
