@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;
}

.slicknav_nav a:hover {
  background: #d1343d;
}

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;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 0 auto 50px auto;
  width: 80%;
}

/* 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;
}

@font-face {
  font-family: "BlenderPro";
  src: url("../fonts/BlenderPro-Medium.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;
  height: 55px;
  background-color: #d1343d;
  padding: 0 5px 0 20px;
  border-radius: 5px;
  overflow: hidden;
  border: none;
  gap: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  font-family: "BlenderPro";
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  background-color: #d1343d;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(3531%)
    hue-rotate(164deg) brightness(104%) contrast(104%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.themea1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.themea1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.themea1:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.themea1 span.themea1-txt {
  position: relative;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  font-family: "BlenderPro";
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

.themea2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.themea2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #d1343d;
  transition: ease-in;
  transition-duration: 0.5s;
}

.themea2:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.themea2 span.themea2-txt {
  position: relative;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #d1343d;
  font-family: "BlenderPro";
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in;
  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: "BlenderPro";
  font-size: 75px;
  line-height: 80px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "BlenderPro";
  font-size: 55px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  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: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

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", sans-serif;
  font-weight: 400;
  opacity: 0.7;
  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 Sec Css Starts */

header {
  padding: 20px 0;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.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;
  text-decoration: none;
  color: #000;
  padding: 0 15px;
  border-radius: 5px;
  overflow: hidden;
  font-family: "BlenderPro";
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  z-index: 0;
  font-weight: 500;
  text-transform: uppercase;
  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;
  transition-delay: 0.5s;
}

.menu-box li.active a {
  color: #fff;
  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 #d1343d;
  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-color: #d1343d;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box li.active a::after {
  height: 100%;
}

.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 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 li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

/*Header Sec Css Ends */

/*Banner Sec Css Starts */

section.main_slider {
  position: relative;
  padding: 0 50px 0 50px;
}

section.main_slider .carousel-item {
  height: 100vh;
}

.carousel {
  /* position: relative; */
  /* z-index: 9; */
}

.carousel::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  height: 70vh;
  width: 100vw;
  background-color: #d1343d;
  z-index: -999999;
}

.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: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 20%,
    rgb(0 0 0 / 64%) 60%,
    rgb(0 0 0) 80%
  );
}

.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: start;
  justify-content: start;
  gap: 20px;
}

.banner_text p {
  color: #fff;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.banner-ex-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  position: absolute;
  bottom: -110px;
  right: 0;
  width: 60%;
  padding: 30px 30px 0 30px;
  background-color: #d1343d;
  z-index: 9;
}

.banner-ex-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 35%;
  padding: 0 0 30px 0;
}

.banner-ex-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-ex-txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 60%;
  height: 200px;
  padding: 0 0 0 20px;
  border-left: 1px solid #ffffff3b;
}

.banner-ex-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  border-right: 1px solid #fff;
  height: 50%;
}

.banner-ex-txt h6 {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 200;
}

.banner-ex-txt p {
  color: #fff;
  opacity: 1;
}

/*Banner Sec Css Ends */

/*Inner Banner Sec Css Starts */

section.inner-banner .carousel::before {
  display: none;
}

section.inner-banner .carousel-item {
  height: 450px;
}

section.inner-banner .carousel-caption {
  background: linear-gradient(
    90deg,
    rgb(0 0 0) 0%,
    rgb(0 0 0) 45%,
    rgb(0 0 0 / 36%) 72%,
    rgb(0 0 0) 100%
  );
}

/*Inner Banner Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec {
  padding: 200px 0 80px 0;
}

.about-img-main {
  position: relative;
}

.about-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 570px;
  width: 100%;
}

.about-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 125px;
  height: 60px;
  background-color: #fff;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-img-ex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 60%;
  padding: 0 30px;
  background-color: #d1343d;
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.about-img-ex h6 {
  font-size: 25px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 0 0 0 20px;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #0000001a;
}

.about-txt h5 {
  font-size: 23px;
  line-height: 25px;
  color: #1f1d1d;
  text-transform: uppercase;
}

.about-txt-bottom {
  padding: 0;
  margin: 50px 0 0 0;
}

/*About Us Sec Css Ends */

/*Services Sec Css Starts */

section.services-sec .container-fluid {
  /* width: 90%; */
  margin: 0 0 0 auto;
  padding: 0;
}

.services-heading-main {
  border-bottom: 1px solid #0000004a;
  margin: 0 0 30px 0;
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 40%;
  margin: 0 auto 20px 0;
}

.services_slider .slick-slide {
  opacity: 1;
}

.services-card-img-main {
  width: 100%;
}

.services-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 495px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.services-card-img a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-img a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 20%,
    rgb(0 0 0 / 14%) 60%,
    rgb(0 0 0 / 76%) 80%
  );
  z-index: 1;
}

.services_slider .slick-current .services-card-img a::before {
  display: none;
}

.services-card-img img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 0 0 140px 0;
}

.services-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 50%;
  background-color: #fff;
  padding: 60px 30px 30px 30px;
  box-shadow: 0 0 20px 9px #00000026;
  position: absolute;
  top: 35%;
  left: 5%;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services_slider .slick-current .services-card-txt-main {
  top: 45%;
}

.services-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: #d1343d;
  padding: 25px;
  position: absolute;
  top: -10%;
}

.services_slider .slick-current .services-card-icon {
  top: -25%;
}

.services-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.services-card-txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.services-card-txt h5 {
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services-card-txt h5:hover {
  color: #d1343d;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services-card-txt-ex {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
  height: 200px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services_slider .slick-current .services-card-txt-ex {
  display: none;
  height: 0;
  overflow: hidden;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services_slider .draggable {
  padding: 0 0 0 0 !important;
  margin: 0 -100px 0 120px !important;
}

.services-card-txt-ex ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.services-card-txt-ex ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.services-card-txt-ex ul li img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  object-fit: contain;
}

.services-card-txt-ex ul li p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
  color: #000;
  font-family: "BlenderPro";
}

.services_slider .slick-prev,
.services_slider .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  top: -70px;
  height: 60px;
  width: 60px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #efefef;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services_slider .slick-prev:hover,
.services_slider .slick-next:hover {
  background-color: #d1343d;
  transition: ease-out;
  transition-duration: 0.5s;
}

.services_slider .slick-prev {
  left: unset;
  right: 13%;
}

.services_slider .slick-next {
  right: 8%;
}

.services_slider .slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/arrow-left.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  width: 20px;
  scale: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/arrow-right.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  width: 20px;
  scale: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.services_slider .slick-prev:hover::before,
.services_slider .slick-next:hover::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
    hue-rotate(217deg) brightness(106%) contrast(101%);
  scale: 1.2;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Services Sec Css Ends */

/*Quote Sec Css Start */

section.quote-sec {
  position: relative;
  background-image: url("../images/quote-img2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

section.quote-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgb(0 0 0 / 87%) 0,
    rgba(253, 187, 45, 0) 100%
  );
}

.quote-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.quote-txt-main {
  padding: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1d1de8;
}

.quote-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 9999;
}

.quote-txt h2 {
  color: #fff;
}

.quote-txt p {
  color: #fff;
  opacity: 1;
}

.quote-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.quote-left {
  width: 30%;
  height: 100%;
  z-index: -1;
}

.quote-mid {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-right {
  width: 30%;
  height: 100%;
  z-index: -1;
}

.quote-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
}

.quote-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*Quote Sec Css Ends */

/*Pro Sec Css Starts */

.pro-ex2 {
  padding: 30px 0 0 0;
  position: relative;
}

.pro-ex2::before {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 0;
  height: 85%;
  width: 95%;
  background: #d1343d;
  z-index: -1;
}

.pro-top .pro-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 95%;
  margin: 0 auto 0 0;
}

.pro-bottom .pro-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.pro-ex2 .pro-txt h2,
.pro-ex2 .pro-txt p {
  color: #fff;
}

.pro-bottom ul li img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(0%)
    hue-rotate(199deg) brightness(102%) contrast(100%);
}

.pro-bottom .pro-txt ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.pro-bottom ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pro-bottom ul li p {
  text-transform: capitalize;
  opacity: 1;
}

.pro-top ul {
  column-count: 2;
  display: inline-block;
}

.pro-top ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.pro-top ul li {
  justify-content: start;
  margin: 0 0 10px 0;
}

.pro-top ul li p {
  text-transform: uppercase;
  font-weight: 600;
  opacity: 1;
}

.pro-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.pro-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pro-ex1 .pro-img {
  width: 80%;
  height: 100%;
  margin: 0 0 0 auto;
}

.pro-ex2 .pro-img {
  width: 90%;
}

.pro-bottom {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 550px;
}

/*Pro Sec Css Ends */

/*Testimonl Start*/

.client_name h4 {
  font-size: 20px;
  color: #000;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.client_name ul {
  margin-bottom: 0;
}

.client_name p {
  font-size: 14px;
  font-style: italic;
  color: #7c7c7c;
  margin-bottom: 0;
  line-height: 15px;
}

.client_name ul li {
  display: inline-block;
  font-size: 14px;
  color: #ffc400;
}

.testimonial_content ul {
  gap: 10px;
  display: flex;
  align-items: center;
  margin: 0;
}

.testimonial_content ul li i {
  display: inline-block;
  font-size: 14px;
  color: #fd8f00;
}

.client_description {
  display: flex;
  align-items: end;
  margin-top: 0;
  padding: 0 15px;
  justify-content: space-between;
}

.client_iamge img {
  height: 100px;
  width: 100px;
  /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); */
  object-fit: cover;
  margin-top: -30px;
  border-radius: 100px;
  overflow: hidden;
}

.testimonial_content {
  gap: 30px;
  display: flex;
  padding: 50px;
  border-radius: 0;
  text-align: right;
  align-items: start;
  margin: 20px 0 0px 0px;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 54px 0px rgba(0, 0, 0, 0.08);
}

.testimonial-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  height: 100%;
}

.testimonial_content p {
  text-align: left;
  opacity: 1;
}

.testimonial_content img {
  width: initial;
}

.testimonial_slider .slick-slide {
  margin: 0px 10px;
  opacity: 1;
}

.testimonial_sec {
  padding: 100px 0 80px 0;
  position: relative;
}

.client_name h5 {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  color: #000000b5;
  margin: 0;
}

.property-head {
  margin: 0;
}

/* .testimonial_slider {
  width: 90%;
  margin: 0 auto;
} */

.testimonial_slider .draggable {
  padding: 0 150px !important;
}

/*Testi End*/

/*Gallery Sec Css Starts*/
.gallery-sec {
  text-align: center;
}

.gallery-wrap {
  margin-top: 40px;
}

.gallery-heading {
  width: 50%;
}

.coverflow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 60px;
  height: 430px;
  perspective: 1000px;
  overflow: visible;
}

.coverflow__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 600px;
  max-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 21%);
  transition: transform 0.4s ease, opacity 0.4s ease, z-index 0.4s ease;
  filter: brightness(0.25);
}

.coverflow__image--center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
  filter: brightness(1);
}

.coverflow__image--left1 {
  transform: translate(-70%, -50%) rotateY(0deg) scale(0.85);
  opacity: 1;
  z-index: 4;
}

.coverflow__image--left2 {
  transform: translate(-85%, -50%) rotateY(0deg) scale(0.7);
  opacity: 1;
  z-index: 3;
}

.coverflow__image--right1 {
  transform: translate(-30%, -50%) rotateY(0deg) scale(0.85);
  opacity: 1;
  z-index: 4;
}

.coverflow__image--right2 {
  transform: translate(-15%, -50%) rotateY(0deg) scale(0.75);
  opacity: 1;
  z-index: 3;
}

.coverflow__image--hidden {
  opacity: 0;
}

.coverflow__image--left1,
.coverflow__image--right1 {
  filter: brightness(0.45);
}

.coverflow__image--left2,
.coverflow__image--right2 {
  filter: brightness(0.25);
}

.coverflow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease;
}

.coverflow-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.08);
  background-color: #d1343dc7;
}

.prev-arrow {
  left: -100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.gallerysec:hover .prev-arrow {
  left: 7%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.next-arrow {
  right: -100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.gallerysec:hover .next-arrow {
  right: 7%;
  transition: ease-out;
  transition-duration: 0.5s;
}

@media (max-width: 991px) {
  .coverflow {
    height: 360px;
  }

  .coverflow__image {
    width: 90%;
  }

  .prev-arrow,
  .next-arrow {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .coverflow {
    height: 300px;
  }

  .prev-arrow {
    left: 2%;
  }

  .next-arrow {
    right: 2%;
  }
}

/*Gallery Sec Css Ends*/

/* Footer Start */

section.footer {
  background: #1f1d1d;
  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: #d1343d;
}

section.footer h2 {
  color: #fff;
  font-size: 17px;
  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: #d1343d;
  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: #1f1d1d;
  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: #d1343d;
  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 #ffffff36;
  border-radius: 100px;
  overflow: hidden;
  color: #ffffff;
  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: #d1343d;
  border: 1px solid #0000;
  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: #d1343d;
}

.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 End*/

/*About Us Page Css Starts*/

section.inner-about-sec {
  padding: 80px 0 0 0;
}

/*About Us Page Css Ends*/

/*Services Page Css Starts*/

.inner-services-heading {
  width: 40%;
}

section.inner-services-sec .services-card-main {
  padding: 0 0 300px 0;
}

section.inner-services-sec .services-card-txt-main {
  width: 80%;
  top: 40%;
}

section.inner-services-sec .services-card-img a::before {
  background: none;
}

/*Services Page Css Ends*/

/*Services Detail Page Css Starts*/

section.inner-services-detail-sec .services-card-txt-main {
  position: relative;
  width: 90%;
  top: unset;
  height: 100% !important;
  margin: -150px 0 0 0;
}

section.inner-services-detail-sec .services-card-img a::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 20%,
    rgb(0 0 0 / 14%) 60%,
    rgb(0 0 0 / 76%) 80%
  );
}

section.inner-services-detail-sec .services-card-main {
  padding: 0;
}

section.inner-services-detail-sec .services-card-txt-ex {
  height: 100%;
}

section.inner-services-detail-sec .services-card-txt-ex ul {
  display: block;
  column-count: 2;
}

section.inner-services-detail-sec .services-card-txt-ex ul li {
  margin: 0 0 20px 0;
}

section.inner-services-detail-sec .services-card-icon {
  top: -5%;
}

/*services Detail Page Css Ends*/

/*Gallery Page Css Starts*/

.gal-box-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* gap: 10px; */
}

.gal-box {
  display: flex;
  align-items: start;
  justify-content: start;
  /* gap: 10px; */
  width: 100%;
}

.gal-card-main {
  width: 100%;
}

.gal-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gal-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gal-card a img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  object-fit: cover;
  padding: 5px;
}

.gal-card-sml a img {
  height: 250px;
}

.gal-card-lrg a img {
  height: 300px;
}

/*Gallery Page Css Ends*/

/* Contact Us Page Css Starts */

.contact_detail_head {
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ffffff54;
  width: 80%;
}

.contact_detail_box h2 {
  font-size: 20px;
  line-height: 25px;
  color: #fff !important;
  font-weight: 400;
  /* margin: 30px 0 10px 0; */
}

.contact_detail_box p a {
  font-size: 14px;
  line-height: 25px;
  color: #fff !important;
  margin: 0;
  font-family: "Poppins";
  letter-spacing: 1px;
}

.contact_detail_box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  height: 230px;
  padding: 60px 20px;
  background-color: #d1343d;
  /* border-radius: 5px; */
  transition: ease-in;
  transition-duration: 0.5s;
}

.contact_detail_box:hover {
  background: black;
  color: white;
  transition: ease-out;
  transition-duration: 0.5s;
}

.contact_form {
  padding-bottom: 80px;
}

.contact_form label {
  font-size: 14px;
  font-weight: 400;
  color: #5d5d5d;
  margin-bottom: 10px;
  font-family: roboto;
}

.btn_contact {
  border: 0;
  right: 0;
  background-color: #00007c;
  color: #fff;
  padding: 10px 40px;
  border: 2px solid #00007c;
  transition: 0.3s ease-in-out;
}

.btn_contact:hover {
  border: 0;
  right: 0;
  background-color: #fff0;
  color: #00007c;
  padding: 10px 40px;
  border: 2px solid #00007c;
}

.centerCol {
  margin: 0 auto;
  float: none;
}

.contact-sec-h h6 {
  font-size: 70px;
  line-height: 60px;
  color: white;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-sec-h p {
  font-size: 14px;
  width: 85%;
  margin: auto;
  font-weight: 500;
}

.contact_page.all-section {
  padding: 100px 0 80px 0;
}

.btn_wrap.text-center button {
  border: none;
  background: #ffac1c;
  padding: 15px 71px;
  font-family: "Montserrat";
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

.contact_detail_con {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.btn_wrap.text-center button::before {
  background: #000;
  height: 0;
}

.contact_detail_box p {
  /* margin-bottom: 0; */
  /* margin: 0 auto; */
  /* width: 82%; */
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

figure img {
  width: 50px;
}

section.contact_form button.theme_btn.theme_btn2 {
  padding: 15px 45px;
  background: #333333;
  text-transform: uppercase;
}

input.form-control,
textarea.form-control {
  height: 50px;
  padding: 0 20px;
  margin: 0 0 20px 0;
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 500;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 500;
  text-transform: uppercase;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
  resize: unset;
}

textarea.form-control::placeholder {
  position: absolute;
  bottom: 16%;
  left: 2%;
}

.request-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.number-item input::-webkit-outer-spin-button,
.number-item input::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

.contact_detail_box.text-center * {
  color: white;
}

.contact_detail_box:hover h2 {
  color: white !important;
}

.contact_detail_box:hover p {
  color: #fff;
}

.contact_detail_box:hover a {
  color: #fff !important;
}

.btn_wrap.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Contact Us Page Css Ens */

/* Quote Start */
.btn-theme.snd {
  padding: 2%;
}

section.quote {
}

.quote-head h4 {
  font-size: 50px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 30px;
  color: #000;
}

.quote-input {
  position: relative;
}

.quote-input::before {
}

.quote-input.selectbox:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 45px;
  top: 5px;
  left: unset !important;
  background: url(../images/contact-input-bef.png) no-repeat;
  right: 60px;
  transform: rotateY(156deg);
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.quote-input input {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Montserrat";
  border-radius: 7px;
  outline: none;
}

.quote-input textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 12px 20px 12px 21px;
  font-size: 14px;
  font-weight: 400;
  color: #3d3d3d;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.quote-input input::placeholder,
.quote-input textarea::placeholder {
  color: #7e7e7e;
}

.quote-input i {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #42603e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  background: #0288d1;
  font-family: "Montserrat";
  border: none;
}

button.send-btn:hover {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  transition: 0.5s all ease-in-out;
}

.quote-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid #c1c1c1;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  background: #42603e;
  border-radius: 6px;
}

.quote-info-icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.quote-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: #42603e;
}

.quote-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.quote-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  line-height: 35px;
}

.quote-info-item-details a,
.quote-info-item-details p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-family: "Montserrat";
}

.quote-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Montserrat";
  border-radius: 7px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

section.quote .rates button.theme1 {
  border: 0px;
}

section.quote .get-in-touch.quote-head {
  padding-right: 30px;
}

.quote-input.selectbox i.fa-solid.fa-sort-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 20%;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

.quote-input.textaryea:before {
  display: none;
}

.quote-input.textaryea textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.quote .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.quote .heading {
  margin-bottom: 50px;
}

section.quote .heading p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.quote-map {
  position: relative;
  overflow: hidden;
}

section.quote-map iframe {
  width: 100%;
  margin-bottom: -7px;
}

section.quote.sec.withMap {
  padding: 60px 0px 80px;
}
/* Quote End */

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  /* Home css Ends */
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .sec {
    padding: 20px 0;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
  }

  p {
    font-size: 12px;
    line-height: 20px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  .theme1 {
    padding: 0 5px 0 10px;
    height: 45px;
  }

  .theme1 span.theme1-txt {
    font-size: 14px;
  }

  .theme1 span.theme1-icon {
    height: 40px;
    width: 40px;
  }

  /* Buttons css Ends */

  /* Home css Starts */

  /* Header Css Starts */

  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 100%;
    margin: 20px auto;
  }

  .header-btn {
    justify-content: center;
  }

  /* Header Css Ends */

  /* Banner Css Starts */

  section.main_slider {
    padding: 0;
  }

  section.main_slider .carousel-item {
    height: 500px;
  }

  .banner_text {
    gap: 10px;
  }

  .banner-btn-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .banner-ex-main {
    position: relative;
    bottom: unset;
    width: 95%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 10px;
    margin: 10px auto;
    gap: 10px;
  }

  .banner-ex-img {
    width: 100%;
    padding: 0;
  }

  .banner-ex-txt {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
  }

  .banner-ex-txt h6 {
    font-size: 25px;
    line-height: 30px;
  }

  .banner-ex-txt::before {
    display: none;
  }

  /* Banner Css Ends */

  /* About Us Sec Css Starts */

  section.about-sec {
    padding: 20px 0;
  }

  .about-img {
    height: 300px;
  }

  .about-img-ex {
    height: 50px;
    width: 90%;
    top: 60%;
    left: 0;
    right: 0;
  }

  .about-img-ex h6 {
    font-size: 18px;
    line-height: 1;
  }

  .about-txt-main {
    padding: 0;
    gap: 10px;
    margin: 20px 0 0 0;
  }

  .about-txt {
    gap: 10px;
    padding: 0 0 10px 0;
  }

  .about-txt h5 {
    font-size: 20px;
    line-height: 25px;
  }

  /* About Us Sec Css Ends */

  /* Home css Ends */
}

/*Media Query End*/
