@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "poppins", sans-serif;
  color: rgba(0, 0, 0, 0.7);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  position: relative;
}

@font-face {
  font-family: "americanCaptain";
  src: url("../fonts/American-Captain.ttf");
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "americanCaptain";
  color: #1a1a1a;
  text-transform: uppercase;
}

h1 {
  font-size: 74px;
  line-height: 1;
}

h2 {
  font-size: 60px;
  line-height: 65px;
}

h3 {
  font-size: 30px;
  line-height: 35px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 16px;
  line-height: 26px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.wPara {
  color: rgba(0, 0, 0, 0.7);
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  height: 56px;
  padding: 0 14px;
  background-color: #007bff;
  border-radius: 45px;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  border: 1px solid transparent;
}

.pbtn span {
  padding-left: 10px;
}

.pbtn span.bt-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 32px;
  background-color: #fe8501;
  border-radius: 45px;
  transition: 0.3s;
}

.pbtn span.bt-white-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 32px;
  background-color: #fe8501;
  border-radius: 45px;
  transition: 0.3s;
}

.pbtn:hover {
  color: #ffff;
  /* background: #1a1a1a; */
  background: #fe8501;
  border: 1px solid #fff;
}

.pbtn:hover span.bt-icn {
  background: #007bff;
}

.pbtn:focus {
  color: #fff;
}

.maxWidth {
  max-width: 1440px;
}

.gr {
  color: #007bff;
}

/* ---------------------------------- */

/* general btn css start  */

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 20px;
  padding: 0;
  list-style-type: none;
}

/***** Font Files *****/

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec .header-logo img {
  margin-bottom: 10px;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec li > ul {
  margin-top: 10px;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 18px 13px;
  font-size: 13px;
  text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 12;
}

.menuSec ul li.active a {
  border-bottom: 1px solid #fff;
}

.menuSec ul li a:hover:before {
  opacity: 1;
  transform: unset;
  width: 100%;
}

/* Header End  */

/* --------------------- Banner Start --------------------- */

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  background: #00000044;
}

section.main_slider {
  position: relative;
  background: #00000044;
}

.banner_text {
  position: relative;
}

section.main_slider .bottomRow {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0px;
}

section.main_slider .banner_img {
  position: absolute;
  bottom: 0;
  z-index: 12;
}

.homeBanerImg {
  object-fit: cover;
  height: 850px;
  width: 100%;
  filter: brightness(0.7);
}

.banner_text h1 {
  display: inline-block;
}

.banner_text h1 span {
  display: block;
  font-size: 90px;
}

.banner_text h6 {
  color: #79857b;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 12px;
}

.border-bottom-c {
  border-bottom: 1px solid #dee2e642;
}

.border-top-c {
  border-top: 1px solid #dee2e642;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 6px;
  height: 6px;
  padding: 0;
  text-indent: -999px;
  cursor: pointer;
  background-color: #8f918c;
  border: 0;
  transition: opacity 0.6s ease;
  margin: 0px 10px;
  opacity: 1;
  border-radius: 100px !important;
  font-size: 0px !important;
}

.carousel-indicators {
  left: unset;
  right: 2%;
  margin: 0px !important;
  display: flex;
  flex-direction: column;
  gap: 27px;
  top: -10%;
}

.carousel-indicators [data-bs-target].active {
  outline: 2px solid #79857b;
  outline-offset: 8px;
}

.txtBox {
  transition: 0.2s;
  opacity: 80%;
  padding: 24px 0;
  border-top: 1px solid transparent;
}

.txtBox:hover {
  opacity: 1;
  /* border-color: #fff; */
}

.bottomRow .row .col-auto {
  padding: 0px;
}

/* ------------------------------ Banner End ----------------------- -------*/

/* ------------------------------ About Us Start  ----------------------- */

.abt-iner {
  position: relative;
  margin: 40px 30px 14px 0;
}

.ab-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #007bff;
  border-radius: 45px;
  margin-bottom: 18px;
}

.abt-iner:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  right: 50%;
  background: #1a1a1a;
  opacity: 30%;
}

img.ab1-img {
  height: 680px;
  width: 100%;
  object-fit: cover;
}

.abtWrap {
  width: 90%;
  margin: 0px auto;
}

.ab-left {
  position: relative;
  margin-right: 10px;
}

.ab-right {
  position: relative;
}

.miles-bx {
  background: #007bff;
  padding: 40px 22px;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  border-left: 10px solid #fff;
  border-top: 10px solid #fff;
}

.miles-bx .milest-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: #fff;
}

.miles-bx .milest-counter span {
  font-family: "americanCaptain";
  color: #1a1a1a;
  line-height: 30px;
  font-size: 41px;
  display: inline-block;
}

.miles-bx h6 {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  margin: 0px;
  letter-spacing: 2px;
}

/* ------------------------------ About Us End ----------------------- */

/* ------------------------------ Solution Start ----------------------*/

section.sol-sec {
  background: url(../images/solution-bg-img.png) no-repeat center center / cover;
  padding: 60px 0;
}

.sol-top {
  border-bottom: 1px solid #ffffff30;
  padding-bottom: 12px;
}

.sol-card {
  position: relative;
  overflow: hidden;
}

img.solution_card-img {
  height: 380px;
  object-fit: cover;
  transition: 0.2s;
}

.solution_card-txt {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0px 0px;
  transition: 0.3s;
}

.solution_card-txt p {
  font-size: 13px;
  line-height: 21px;
}

.sol-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, transparent, #fe85016b);
  bottom: 0;
  transition: 0.3s;
}

.sol-card:hover:before {
  background: linear-gradient(180deg, transparent, #fe850194);
  height: 100%;
}

.sol-card:hover .solution_card-txt {
  transform: translate(0px, -7px);
}

/* ------------------------------ Solution End ----------------------- */

/* ------------------------------ Fancing Start ----------------------- */

.fanWrap {
  width: 92%;
  margin: 0px auto;
}

img.fanc-img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

img.fanc2-img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

/* ------------------------------ Fancing End ----------------------- */

/* ------------------------------ Reviews Start ----------------------- */

.sliderTesti {
  width: 100%;
}

.sliderTesti .child-element {
  transition: all 0.4s ease;
  width: 100%;
  opacity: 1;
}

.rev-bx {
  background: #fff;
  filter: drop-shadow(11px 21px 8px #ffffff3a);
  padding: 24px;
  position: relative;
  box-shadow: -1px 3px 20px 1px #44444433;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img.auth-memeber {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f0eeec;
  position: absolute;
  top: -27px;
  right: 30px;
}

.rev-bx h5 {
  margin: 0;
}

.rev-bx span.design {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 25px;
  color: #7c7c7c;
}

.rev-bx i.fas.fa-star {
  color: #ff9702;
  margin-top: 5px;
  font-size: 11px;
}

.rev-bx p {
  line-height: 25px;
  color: #7c7c7c;
}

.sliderTesti .slick-slide {
  transition: width 0.3s ease;
  opacity: 0;
  margin: 40px 14px 20px;
}

.slide.slick-slide.slick-active {
  opacity: 1 !important;
}

.sliderTesti .slide {
  width: 380px;
}

.sliderTesti .slick-center {
  width: 540px !important;
}

.sliderTesti .slick-center .rev-bx {
  background: #007bff;
}

.sliderTesti .slick-center .rev-bx h5 {
  color: #fff;
}

.sliderTesti .slick-center .rev-bx p {
  color: #ffffff82;
}

.sliderTesti .slick-center .rev-bx span.design {
  color: #ffffff82;
}

.sliderTesti .slick-center .rev-bx i.fas.fa-star {
  color: #fff;
  margin: 10px 4px 0;
  transform: scale(1.3);
}

.sliderTesti .slick-center .rev-bx img.auth-memeber {
  transform: scale(1.2);
}

/* ----------------------------------- Gallery Start --------------------------- */

.slidergall .child-element {
  transition: all 0.2s ease;
  opacity: 1;
}

.slidergall .slick-slide {
  margin: 10px 18px 10px;
  transition:
    transform 0.4s ease,
    width 0.4s ease,
    opacity 0.4s ease;
  opacity: 1;
}

.gl-card {
  position: relative;
}

.slidergall .slick-slide.slick-current img.galler-img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s;
}

.gl-card .gal-txt {
  position: absolute;
  bottom: 10px;
  left: 40px;
  transition: 0.3s;
  opacity: 0;
}

.slidergall .slick-slide.slick-current img.galler-img {
  opacity: 1 !important;
}

.slidergall .slick-slide.slick-current h4 {
  color: #fff;
}

.slidergall .slick-slide.slick-current p {
  color: #ffffffbf;
}

.gl-card:before {
  height: 50%;
  bottom: 0;
  transition: 0.3s;
  content: "";
  height: 100%;
  width: 100%;
  background: #00000094;
  bottom: 0;
  position: absolute;
}

.slidergall .slick-slide.slick-current .gl-card:before {
  background: linear-gradient(180deg, transparent, #007bff7d);
  opacity: 1 !important;
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  transition: 0.3s;
}

.slidergall .slick-slide.slick-current .gl-card .gal-txt {
  opacity: 1 !important;
}

img.galler-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.slidergall button.slick-next:before {
  display: none;
}

.slidergall button.slick-prev:before {
  display: none;
}

.slidergall button.slick-next {
  width: 50px;
  height: 50px;
  background-image: url(../images/slide-next-btn.png);
  background-repeat: no-repeat;
  right: 50px;
  top: 53%;
  background-color: #007bff;
  border-radius: 50px;
  background-position: center;
}

.slidergall button.slick-prev {
  width: 50px;
  height: 50px;
  background-image: url(../images/slide-prev-btn.png);
  background-repeat: no-repeat;
  left: 80px;
  top: 53%;
  border-radius: 50px;
  z-index: 9;
  background-color: #007bff;
  background-position: center;
}

.gal-sec .slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.gal-sec img.image-after.slider-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.gal-sec .slick-prev,
.slick-next {
  z-index: 99;
}

/* ----------------------------------- Gallery End --------------------------- */

/* ----------------------------------- Footer Start --------------------------- */

footer {
  overflow: hidden;
  padding-top: 10px;
  background-color: #1a1a1a;
}

footer a {
  color: #fff;
}

footer ul {
  text-align: center;
}

ul.footer-link {
  display: flex;
  padding-top: 14px;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 67%;
  margin: 0px auto 30px;
}

ul.footer-link li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-txt {
  padding: 20px 0px;
  margin-top: 15px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-txt::before {
  top: 0;
  left: 0;
  height: 1px;
  content: "";
  width: 100vw;
  position: absolute;
  background-color: #484848;
}

.footer-txt::after {
  top: 0;
  right: 0;
  height: 1px;
  content: "";
  width: 100vw;
  position: absolute;
  background-color: #484848;
}

.footer-links-2 {
  margin-top: 20px;
  text-align: center;
  padding: 30px 0px 20px;
}

.footer-links-2 p {
  color: #fff;
  max-width: 640px;
  text-align: center;
  margin: 30px auto 0px;
}

.footer-txt p {
  color: #ffffff80;
}

.footer-links-2 .row {
  align-items: center;
}

.footer-contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 640px;
  align-items: center;
  margin: 10px auto 20px;
  justify-content: space-evenly;
}

.footer-links-2 img {
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

ul.footer-link li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-news {
  width: 53%;
  margin: 0px auto;
  padding: 10px 0 24px;
  position: relative;
}

.subscribe-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ffffff3d;
  padding: 4px;
  border-radius: 40px;
  gap: 24px;
}

.subscribe-form input {
  width: 100%;
  flex-grow: 1;
  padding: 10px 18px;
  background: transparent;
  border: 0px;
  color: #fff;
}

.subscribe-form button {
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 45px;
  border: 0px;
  text-transform: uppercase;
  font-weight: 500;
  background: #007bff;
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #fe8501;
}

.subscribe-form input::placeholder {
  color: #ffffff87;
}

ul.social {
  display: flex;
  margin: 0px;
  align-items: center;
  gap: 12px;
}

ul.social li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #5f5f5f;
  transition: 0.3s;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid #5f5f5f;
  font-size: 12px;
}

ul.social li a i:hover {
  background: #007bff;
  color: #ffffff;
  border: transparent;
}

/* -------------------------- Footer End -----------------------*/

/* ----------------------- Inner Banner --------------------- */

section.innerbaner {
  position: relative;
  overflow: hidden;
  padding: 250px 0 200px;
}

img.innerbaner-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inbanner_text {
  position: relative;
  z-index: 1;
}

/* ----------------------- Inner Banner --------------------- */

/* ----------------------- Gallery Detail --------------------- */

img.galler-detail-img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gl-detail-txt h3 {
  font-size: 40px;
  line-height: 50px;
  margin-top: 24px;
}

.gl-wraper {
  width: 90%;
  margin: 0px auto;
}

/* ----------------------- Gallery Detail  --------------------- */

/* ----------------------- Prdoduct Start --------------------- */

.pd_item {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin: 10px 0;
}

.pd_item .pd_item-txt {
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

img.pd_item-img {
  height: 350px;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  transition: 0.3s;
}

.pd_item:hover img.pd_item-img {
  filter: brightness(0.8);
  transform: translate(0px, -8px);
}

.pd_item .pd_item-txt h4 {
  transition: 0.3s;
}

.pd_item:hover .pd_item-txt h4 {
  color: #000;
  letter-spacing: 2px;
}

/* ----------------------- Prdoduct End --------------------- */

/* ----------------------- Service Detail Start --------------------- */

section.inner_sol-page .sol-card:before {
  background: linear-gradient(180deg, transparent, #fe850154);
}

section.inner_sol-page .sol-card:hover:before {
  background: linear-gradient(180deg, transparent, #fe85016b);
  height: 100%;
}

section.inner_sol-page .sol-card:hover * {
  color: #fff;
}

.ss-wraper {
  width: 90%;
  margin: 0px auto;
}

img.ss-detail-img {
  height: 580px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.sol-card p {
  color: rgba(0, 0, 0, 0.7);
}

/* ----------------------- Service Detail End --------------------- */

/* ----------------------- Reviews Start --------------------- */

.inner-rev-sec .col-12 {
  width: 28%;
  transition: ease-in-out;
  transition-duration: 0.8s;
}

.inner-rev-sec .rev-box-hover:hover {
  width: 40%;
  transition: ease-in;
  transition-duration: 0.8s;
}

section.inner-rev-sec .rev-bx {
  margin: 30px 0px;
}

.inner-rev-sec .rev-box-hover:hover .rev-bx {
  background: #007bff;
}

.inner-rev-sec .rev-box-hover:hover .rev-bx h5,
.inner-rev-sec .rev-box-hover:hover .rev-bx span,
.inner-rev-sec .rev-box-hover:hover .rev-bx p {
  color: #fff;
}

.inner-rev-sec .rev-box-hover:hover .rev-bx i {
  color: #fff;
  margin: 0px 3px;
  transform: scale(1.2);
}

.inner-rev-sec .rev-box-hover:hover .rev-bx img.auth-memeber {
  transform: scale(1.2);
}

/* ----------------------- Reviews End --------------------- */

/* ----------------------- fancing Start --------------------- */

.fan-center {
  margin-right: 12px;
  margin-left: 5px;
}

.fanceForm {
  margin-top: 100px;
}

.fanceForm-bx {
  border-radius: 8px;
  border: 2px solid #c2c2c2;
  padding: 32px 24px;
  margin-top: 32px;
}

.fanceForm-bx button.pbtn {
  border: 0px;
}

.fanceForm-bx .fm-block {
  margin-bottom: 24px;
}

.fan-iput-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #c2c2c2;
  padding: 6px 10px;
  border-radius: 6px;
}

.fan-iput-wrap input {
  width: 100%;
  flex-grow: 1;
  border: 0px;
  font-weight: 500;
  padding: 10px 0;
  color: #000;
}

.fan-iput-wrap span {
  font-weight: 600;
  color: #000;
}

.fanceForm .total-price {
  position: relative;
  padding-left: 50px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ----------------------- fancing End --------------------- */

/* ----------------------- Contact Start --------------------- */

.contact_left img {
  height: 640px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.contact_right form {
  margin-top: 18px;
}

.contact_right input[type="text"],
.contact_right input[type="email"],
.contact_right input[type="tel"],
.contact_right select,
.contact_right textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 8px;
  border: 1px solid #dedcda;
  border-radius: 6px;
  transition: border-color 0.3s;
  height: 52px;
  color: #000;
  background-color: #fdfdfd;
  font-weight: 500;
}

.contact_right input:focus,
.contact_right select:focus,
.contact_right textarea:focus {
  border-color: #79857b;
  outline: none;
}

.contact_right textarea {
  resize: none;
  min-height: 150px;
}

button.inrcontbtn {
  background: none;
  border: none;
  margin-top: 10px;
}

.contact_right input::placeholder {
  color: #8c8c8c;
}

.contact_right textarea::placeholder {
  color: #8c8c8c;
}

.info_box {
  background: #007bff;
  padding: 30px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 6px;
}

.info_box a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.info_icon {
  margin-bottom: 15px;
  background-color: #f8f8f8;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_icon i {
  font-size: 30px;
  color: #fe8501;
  transition: 0.3s;
}

.info_text h5 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: capitalize;
}

.info_text p {
  color: #ffffffd9;
  margin: 0;
  line-height: 20px;
}

.info_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #fe8501;
}

.info_box:hover .info_icon i {
  color: #1a1a1a;
}

.pbtn:hover span.bt-white-icn {
  background: #007bff;
}

.cntWraper {
  width: 90%;
  margin: 0px auto;
}

.contact_left {
  margin-right: 12px;
}

.contact_right .select-bx {
  position: relative;
}

.contact_right .select-bx i {
  position: absolute;
  right: 20px;
  top: 20px;
}

.contact_right .select-bx select {
  padding-right: 50px;
  position: relative;
  cursor: pointer;
}

/* ----------------------- Contact End --------------------- */

.bottom-img-log img {
  height: 140px;
  width: 90%;
  object-fit: fill;
  background: #fff;
}

section.main_slider .bottomRow .row {
  align-items: center;
}

.txtBox p {
  font-size: 13px;
  line-height: 21px;
}

.pbtn span.bt-white-icn img {
  filter: brightness(0) invert(1);
}

/* ================================= */

/* Products Page Styles */

.product {
  background-color: #f9f9f9;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.product-section {
  margin-bottom: 80px;
}

.product-btm-content {
  margin: 40px 0 40px;
}

.product-btm-content th,
.product-btm-content td {
  border: 1px solid #000;
  font-size: 15px;
  padding: 13px;
}

.product-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

.product-desc {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-bullets,
.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-bullets li,
.product-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.product-bullets li::before,
.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fe8501;
  font-weight: bold;
}

.product-desc h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Responsive */

@media (max-width: 991px) {
  .product-section {
    text-align: center;
  }
  .product-section .col-lg-6 {
    order: unset !important;
  }
}

/* ============================= */

/*Inner Faqs Start*/

.inner-faqs-row {
  margin-top: 30px;
}

.inner-faqs-sec {
  padding: 100px 0;
}

.inner-faqs-heading {
  text-align: center;
}

.inner-faqs-sec .accordion-item h2 {
  line-height: 40px;
}

.inner-faqs-sec .accordion-button {
  width: 100%;
  padding: 10px 30px;
  color: #fff;
  text-align: left;
  font-weight: 400;
  background: #007bff;
  font-size: 18px;
  border: 0px;
}

.inner-faqs-sec .accordion-button:focus {
  z-index: 3;
  border-color: inherit;
  outline: 0;
  box-shadow: inherit;
}

.inner-faqs-sec .accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: inherit;
  box-shadow: inherit;
  background: #007bff;
}

.inner-faqs-sec .accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 0 !important;
  margin-bottom: 10px;
}

.inner-faqs-sec .accordion-body {
  padding: 1rem 1.25rem 0;
  color: #4c4c4c;
  font-size: 15px;
  line-height: 25px;
}

.inner-faqs-sec .accordion-button::after {
  content: "\f067";
  position: absolute;
  background-image: inherit !important;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  right: 25px;
  font-size: 22px;
  color: #fff;
  top: 10px;
}

.inner-faqs-sec .accordion-button:not(.collapsed)::after {
  background-image: inherit !important;
  transform: inherit;
  content: "\f068";
}

/*Inner Faqs Ends*/

.slidergall .before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}

.slidergall .slider-image {
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.slidergall .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  filter: grayscale(100%);
}

.slidergall .slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slidergall .slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: 0.5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
}

/* ============================= Gallery Page ============================*/

section.gallery-sec-ex .nav-tabs .nav-link {
  background: #fff;
  color: #007bff;
  box-shadow: 0px 0px 9px 0px #44444436;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "roboto";
  border-radius: 45px;
  padding: 12px 24px;
  margin: 0px 10px;
}

section.gallery-sec-ex .nav-tabs .nav-link.active {
  background: #007bff;
  color: #fff;
}

.gallery-box-img {
  overflow: hidden;
}

.gallery-box-img img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  display: inline-block;
}

.gallery-box-img img:hover {
  transform: scale(1.2);
}

/* ============================= Gallery Page ============================*/

.menuSec ul li a i {
  margin-left: 10px;
  font-size: 10px;
}

section.gallery-sec-ex .nav-man-tabs .nav-link {
  font-size: 24px;
  line-height: 34px;
  padding: 14px 60px;
}

.prod-color h6 {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 24px;
  text-transform: capitalize;
}

.prod-color img {
  border-radius: 80px;
  width: 150px;
  height: 150px;
  display: table;
  margin: 0px auto;
}
