/* fonts CDN */
@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Target the scrollbar track */
::-webkit-scrollbar {
  width: 10px; /* You can change height if horizontal */
}
/* Scrollbar thumb (the moving part) */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif !important;

  /* For smooth transition */
  transition: opacity 0.5s ease;
}
body,
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #ffae00;
  --secondary-color: #f8f8f8;
  --tertiary-color: #8d8d8d;
}
::selection {
  background-color: var(--primary-color);
  color: white;
}
input::placeholder,
textarea::placeholder {
  color: #b0b0b0;
  font-size: 14px;
  text-transform: capitalize;
}
input,
textarea {
  background-color: #f2f2f2;
  border: none;
  outline: none;
  border-radius: 5px;
}
label {
  display: inline-block;
  margin-bottom: 13px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-wrap: nowrap;
  color: #575757;
  text-transform: capitalize;
  font-weight: 500;
}
/* Common classes */

.container {
  max-width: 1308px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}
.sm-container {
  max-width: 1110px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-33 {
  width: 33.33%;
  padding: 0 15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}

ul li {
  list-style-type: none;
}
a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
span {
  display: inline-block;
}
.main-heading {
  font-size: 48px;
  font-weight: 600;
}
.cmn-heading {
  font-size: 45px;
  color: #000000;
  font-weight: 600;
}
.heads {
  font-size: 35px;
  font-weight: 600;
  color: #000000;
}
.normal-head {
  font-size: 24px;
  font-weight: 500;
}
.cmn-para {
  font-size: 14px;
  font-weight: normal;
  color: var(--tertiary-color);
}
.cmn-gap {
  padding: 100px 0;
}
.cmn-hover::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background-color: black;
  transition: width 0.7s ease;
}
.cmn-hover:hover::before {
  width: 100%;
}
.btn-effect {
  position: relative;
  overflow: hidden;
}
.btn-effect::before {
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.7s ease;
}
.btn-effect:hover::before {
  width: 100%;
}

/* prevents from scrolling the body when navbar is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
}
body.fade-out {
  opacity: 0;
}

/* Header section */
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.nav-logo {
  max-width: 200px;
  position: relative;
  top: 8px;
  height: 90px;
}
.nav-logo > a > img {
  width: 100%;
  object-fit: contain;
}
.nav-wrpr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-right {
  display: flex;
  gap: 67px;
  align-items: center;
}
.nav-right > ul {
  display: flex;
  gap: 23px;
  align-items: center;
}
.nav-right > ul a {
  color: #000000;
  text-transform: capitalize;
  position: relative;
  transition: color 0.7s ease;
}

ul a.active {
  color: var(--primary-color);
}
ul a:hover {
  color: var(--primary-color);
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-btn > a:first-child {
  color: #000000;
  text-transform: capitalize;
  transition: transform 0.7s ease;
}
.nav-btn > a:first-child:hover {
  transform: scale(1.1);
}
.nav-btn > a:last-child {
  padding: 4px 8px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
  text-transform: capitalize;
}

/* hambuger */
.toggler {
  border: none;
  background: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 2px;
  display: none;
}
.toggler:hover {
  background-color: lightgray;
}
.hamburger > span {
  width: 100%;
  background-color: var(--primary-color);
  height: 3px;
  width: 20px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Mobile menu */
.mobview {
  width: 50%;
  height: 100vh;
  background-color: var(--primary-color);
  position: fixed;
  z-index: 999999;
  transform: translate(100%, -100%);
  transition: transform 0.7s ease;
  right: 0;
  top: 0;
  padding-top: 10rem;
  text-align: center;
}
.mobview.open-active {
  transform: translate(0, 0);
}
.clsbtn {
  border: none;
  outline: none;
  background: none;
  font-size: 2.5rem;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  cursor: pointer;
}
.phn-wrpr {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.phn-wrpr > ul > li {
  padding: 15px;
  text-transform: capitalize;
}
.phn-wrpr > ul > li > a {
  color: white;
}
.phn-btn {
  padding: 20px;
  border-top: 1px solid white;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.phn-btn > a {
  color: black;
}
.phn-btn > a:last-child {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.phn-btn > a:hover {
  color: white;
}

/* Banner section */
.banner-sec {
  background: url("../assets/Banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
  position: relative;
  padding: 140px 0 20px;
  color: white;
}
.banner-row {
  align-items: center;
}
.banner-content > h1 {
  max-width: 480px;
  margin-bottom: 31px;
}
.banner-content > h1 > span {
  color: var(--primary-color);
  font-size: 48px;
  display: inline;
}
.banner-content > p {
  max-width: 433px;
  margin-bottom: 31px;
  font-size: 19px;
  color: #ffffff;
}

.banner-btn > a {
  padding: 13px 34px;
  background-color: var(--primary-color);
  color: #000000;
  border-radius: 7px;
  font-size: 19px;
  border: none;
}

/* .map {
  position: absolute;
  max-width: 928px;
  width: 100%;
  z-index: 0;
} */
.banner-imgs {
  max-width: 774px;
  background: url("../assets/worldmap.png");
  background-position: top;
  background-size: contain;
}
.banner-imgs > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-bottom-float {
  position: absolute;
  bottom: -88px;
  width: 100%;
  padding: 55px 63px 48px 75px;
  background-color: #f8f8f8;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  max-width: 1122px;
  left: 50%;
  transform: translateX(-50%);
}
.loc > h4 {
  color: #000000;
  margin-bottom: 4px;
}
.loc > div {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #b0b0b0;
}
.banner-sec .fa-solid {
  color: #8d8d8d;
  font-size: 1.3rem;
}
.banner-sec .fa-solid:hover {
  color: var(--primary-color);
}
.loc > div:last-child > span:last-child {
  font-size: 15px;
}
.bn-flt-btn {
  display: flex;
  gap: 2px;
  align-items: center;
  padding: 11px 16px 12px 26px;
  background-color: var(--primary-color);
  color: white;
  justify-content: center;
  color: #000000;
  font-size: 19px;
  border-radius: 5px;
  cursor: pointer;
}

/* checkout section */
.checkout-sec {
  padding: 150px 0 65px;
}
.checkout-top {
  text-align: center;
}
#slider1 {
  max-width: 1238px;
  height: 200px;
  margin: 0 auto;
  padding: 0 42px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiperbtn-prev::after,
.swiperbtn-next::after {
  display: none;
}

.swiperbtn-prev,
.swiperbtn-next {
  position: absolute;
  top: 60%;
  z-index: 10;
  transform: translateY(-50%);
  color: #b0b0b0;
  width: 37px;
  height: 35px;
  border: 2px solid #b0b0b0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#slider1 .swiper-slide {
  transform: scale(0.85) !important;
  transition: transform 0.3s ease !important;
}

#slider1 .swiper-slide-active {
  transform: scale(1) !important;
}
.swiperbtn-prev {
  left: 10px;
}
.swiperbtn-next {
  right: 10px;
}
.checkout-card {
  padding: 19px 14px 5px 20px;
  background-color: #f3f6f8;
  border-radius: 5px;
}
.kol {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kol-img {
  max-width: 84px;
}
.kol-img > img {
  width: 100%;
  object-fit: contain;
}
.kol-content {
  padding-bottom: 5px;
  border-bottom: 1px solid #b0b0b0;
}
.kol-content > div:first-child {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
.kol-content > div:last-child {
  color: #8d8d8d;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.chk-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chk-btm > p {
  font-size: 14px;
  color: #b0b0b0;
}
.chk-btm > p > span {
  color: #000000;
  font-weight: 600;
}
.chk-btm > a {
  padding: 8px 28px;
  background-color: var(--primary-color);
  color: #000000;
  font-size: 11px;
  font-weight: 600;
  border-radius: 5px;
}
/* Categoreis section */
.cat-sec {
  background-color: #f8f8f8;
  padding: 100px 0 40px;
}
.cat-top {
  text-align: center;
  margin-bottom: 10px;
}
.cat-top > h2 {
  margin-bottom: 16px;
}
.cat-top > p {
  max-width: 474px;
  margin: 0 auto;
}
.cat-img {
  max-width: 1600px;
}
.cat-img > img {
  width: 100%;
  object-fit: contain;
}

/* Why choose section */
.why-hdr {
  text-align: center;
  margin-bottom: 65px;
}
.why-hdr > h2 {
  margin-bottom: 6px;
}
.why-hdr > p {
  max-width: 474px;
  margin: 0 auto;
}
.why-img {
  max-width: 552px;
}
.why-img > img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.7s ease-in-out;
}
.why-img > img:hover {
  transform: scale(1.1);
}
.why-content > div {
  display: flex;
  gap: 18px;
}
.why-content p {
  max-width: 345px;
  margin: 0 auto;
}
.why-content > div:first-child {
  margin-bottom: 85px;
}
.why-content > div:nth-child(2) {
  margin-bottom: 65px;
}
.why-content > div > div:last-child > div {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 11px;
}
.calling {
  background-color: var(--primary-color);
  font-size: 1.5rem;
  min-width: 50px;
  height: 50px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calling:hover .fa-phone-volume {
  color: #000000;
  transition: color 0.9s ease;
}
.calling a {
  color: white;
}

/* Client reviews section */
.reviews-hdr {
  text-align: center;
  margin-bottom: 26px;
}
.reviews-hdr > h2 {
  margin-bottom: 6px;
}
.reviews-hdr > p {
  max-width: 850px;
  margin: 0 auto;
}
.client-content > div:first-child {
  max-width: 330px;
  margin-bottom: 41px;
}
.client-content > p {
  max-width: 450px;
}
.client-content > p:nth-child(2) {
  margin-bottom: 31px;
}
.client-content > p:nth-child(3) {
  margin-bottom: 61px;
}
.search {
  border: 1px solid var(--primary-color);
  max-width: 388px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  background-color: #fff9f9;
  padding: 16px 16px 18px 10px;
}
.search > input[type="text"] {
  width: 100%;
  border: none;
  outline: none;
  background-color: #fff9f9;
}

#slider2 {
  height: 450px;
  width: 100%;
}

#slider2 .swiper-button-prev::after,
#slider2 .swiper-button-next::after {
  display: none;
}
#slider2 .swiper-button-next,
#slider2 .swiper-button-prev {
  width: 37px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}
#slider2 .swiper-button-next > i,
#slider2 .swiper-button-prev > i {
  color: var(--primary-color);
}
.reviews-img {
  max-width: 402px;
  margin: 0 auto;
}
.reviews-img > img {
  width: 100%;
  object-fit: contain;
}
.reviews-content {
  padding: 20px 25px 21px 29px;
  box-shadow: 0 0 11px 5px #e7e2e2;
  border-radius: 11px;
  max-width: 437px;
}
.reviews-content > p {
  max-width: 383px;
  font-size: 11px;
  color: #b0b0b0;
}
.reviews-content > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews-content > div p {
  font-size: 9px;
  color: #b0b0b0;
}
.reviews-content > div > div {
  text-align: center;
}
.reviews-content > div > div img {
  width: 10px;
  height: 10px;
}

/* Achievement section */
.acch-sec {
  background-color: var(--primary-color);
}
.acch-contain {
  text-align: center;
}
.acch-contain > h2 {
  font-size: 40px;
  text-wrap: nowrap;
}
.acch-contain > p {
  font-size: 22px;
  text-wrap: nowrap;
}

/* Contact section */
.contact-sec {
  padding-top: 180px;
  position: relative;
  z-index: 2;
  margin-bottom: -270px;
}
.form-wrpr {
  max-width: 896px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px -3px 20px 6px;
  border-radius: 16px;
  padding: 31px 88px 14px 100px;
  background-color: white;
}
.form-head {
  font-size: 47px;
  font-weight: normal;
  margin-bottom: 33px;
  text-align: center;
}
.formcar {
  max-width: 691px;
  margin: 29px auto 0;
}
.formcar > img {
  width: 100%;
  object-fit: contain;
}
.form-content > p:first-child {
  position: relative;
  z-index: 999;
  font-size: 24px;
  margin-bottom: 13px;
}
.form-content > p:first-child > img {
  position: absolute;
  bottom: -44px;
  left: 114px;
  max-width: 180px;
  width: 100%;
  object-fit: contain;
}
.form-content > p:nth-child(2) {
  color: #ada9a9;
  margin-bottom: 18px;
}
.form-content > a:last-child {
  max-width: 180px;
}
.form-content > a:last-child > img {
  width: 100%;
  object-fit: contain;
}
.form > div {
  margin-bottom: 28px;
  width: 100%;
}
.form > div > input,
.form textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #b0b0b0;
  outline: none;
  resize: none;
}
.form > div > input {
  padding: 12px 0 16px 11px;
  background-color: white;
}
.form textarea {
  padding: 11px 0 65px 12px;
  background-color: white;
}
.form a {
  padding: 11px 6px 10px 9px;
  color: white;
  background: var(--primary-color);
  border-radius: 5px;
}
.form-content > a:last-child:hover {
  transform: scale(1.1);
}
/* Footer section */
.ft-line {
  width: 100%;
  background-color: var(--primary-color);
  height: 0.5px;
  margin: 28px 0 8px;
}
.ft-sec {
  padding: 380px 0 20px;
  background: #000000;
  color: white;
  position: relative;
  z-index: 0;
}
.ft-btm {
  display: flex;
  gap: 7px;
  align-items: center;
  color: white;
  justify-content: center;
  font-size: 14px;
}

.logo {
  max-width: 90px;
  height: 100px;
}
.logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2) translateX(10px);
}

.comp-logo > p {
  margin-bottom: 10px;
}
.comp-logo ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
.comp-logo ul a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 246, 248, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comp-logo .fa-brands {
  color: var(--primary-color);
  font-size: 20px;
}
.comp-logo .fa-facebook:hover {
  color: #1877f2;
  transition: color 0.5s ease;
}
.comp-logo .fa-instagram:hover {
  color: #c32aa3;
  transition: color 0.5s ease;
}
.comp-logo .fa-x-twitter:hover {
  color: #1da1f2;
  transition: color 0.5s ease;
}
.comp-logo .fa-youtube:hover {
  color: #ff0000;
  transition: color 0.5s ease;
}
.company,
.help,
.letter {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ft-title-sm {
  font-weight: 400;
  color: white;
}
.company ul,
.help ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company a,
.help a {
  position: relative;
  color: white;
}
.company a:hover,
.help a:hover {
  color: var(--primary-color);
  transition: color 0.7s ease;
}

.company a::before,
.help a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.7s ease;
}
.company a:hover::before,
.help a:hover::before {
  width: 100%;
}
.letter input[type="text"] {
  width: 100%;
  background-color: #d9d9d9;
  border: none;
  outline: none;
  padding: 11px 0 12px 7px;
  border-radius: 3px;
}

.letter a {
  padding: 7px 11px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  margin-top: 23px;
}

@media screen and (max-width: 1300px) {
  .banner-bottom-float {
    /* display: none; */
  }
}

@media screen and (max-width: 1024px) {
  /* Header section */
  .nav-right {
    display: none;
  }
  .toggler {
    display: block !important;
  }
  .contact-sec {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1113px) {
  .nav-right {
    gap: 25px;
  }
}
@media screen and (max-width: 992px) {
  /* Header section */
  .header-section {
    background-color: black;
  }
  .cmn-gap {
    padding: 80px 0;
  }
  /* Banner section */
  .banner-sec {
    background-position: right;
    /* background: linear-gradient(to bottom, black 73%, #fff4ed 27%); */
  }

  .banner-sec .col-50 {
    width: 100%;
  }
  .banner-sec > div > div {
    flex-direction: column-reverse;
  }
  .banner-content > h1,
  .banner-content > p {
    color: black;
    max-width: 100%;
  }
  .banner-imgs {
    margin: 0 auto 20px;
  }

  /* Categories section */
  .cat-sec {
    padding: 80px 0 30px;
  }

  /* Why Choose section */
  .why-sec .col-50 {
    width: 100%;
  }
  .why-sec > div > div:last-child {
    flex-direction: column-reverse;
  }
  .why-img {
    margin: 0 auto 30px;
  }
  .why-content > div {
    justify-content: center;
  }
  .why-content > div:first-child,
  .why-content > div:nth-child(2) {
    margin-bottom: 40px;
  }

  /* Client reviews section */
  .client-reviews .col-50 {
    width: 100%;
  }
  .client-row {
    row-gap: 30px;
  }
  .client-content > div:first-child,
  .client-content > p {
    max-width: 100%;
    text-align: center;
  }
  .search {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .cmn-gap {
    padding: 70px 0;
  }

  /* Chekout section */
  .checkout-sec {
    padding: 70px 0 50px;
  }
  /* Categories section */
  .cat-sec {
    padding: 70px 0 30px;
  }
  /* Achievement section */
  .acch-contain > h2 {
    font-size: 35px;
  }
  .acch-contain > p {
    font-size: 20px;
  }
  /* Contact section */
  .contact-sec {
    padding-top: 80px;
  }
  .form-head {
    font-size: 37px;
  }
  .form-content > p:first-child {
    font-size: 20px;
  }
  .form-wrpr {
    padding: 31px 60px 14px 60px;
    max-width: 650px;
  }
  .form textarea {
    padding: 11px 0 40px 12px;
  }
  .form-content > p:first-child > img {
    bottom: -29px;
    max-width: 140px;
    left: 93px;
  }
  /* Footer section */
  .ft-sec .col-25 {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .cmn-gap {
    padding: 40px 0;
  }
  .nav-logo > a > img {
    width: 50%;
  }
  .mobview {
    width: 100%;
  }
  .nav-logo {
    top: 27px;
  }
  /* Banner section */
  .banner-btn > a {
    padding: 10px 18px;
  }
  .banner-content > p {
    font-size: 16px;
  }

  .banner-content > h1,
  .banner-content > p {
    margin-bottom: 25px;
  }
  /* Checkout section */
  .checkout-sec {
    padding: 50px 0;
  }
  /* Categories section */
  .cat-sec {
    padding: 40px 0 30px;
  }
  .cat-top > h2 {
    font-size: 24px;
  }
  /* Why choose section */
  .why-hdr > h2 {
    font-size: 24px;
  }
  .why-content > div > div:last-child > div {
    font-size: 20px;
  }
  .why-content p {
    font-size: 12px;
  }

  /* Client reviews section */
  .reviews-hdr > h2 {
    font-size: 24px;
  }
  .reviews-content {
    padding: 15px 20px;
  }
  .search {
    max-width: 100%;
  }
  /* Achievement section */
  .acch-sec .col-33 {
    width: 100%;
  }
  .acch-sec > div > div {
    gap: 30px;
  }
  /* Contact section */
  .contact-sec {
    padding-top: 60px;
    margin-bottom: -300px;
  }
  .contact-sec .col-50 {
    width: 100%;
  }
  .form-head {
    font-size: 24px;
  }
  .form {
    margin-bottom: 30px;
  }
  .form > div,
  .formcar {
    margin-bottom: 18px;
  }
  .form-content {
    text-align: center;
  }
  .form-content p {
    display: none;
  }

  /* Footer section */
  .comp-logo .fa-brands {
    font-size: 16px;
  }
  .comp-logo ul a {
    width: 30px;
    height: 30px;
  }
  .comp-logo ul {
    gap: 5px;
  }
  .company ul,
  .help ul {
    gap: 20px;
  }
  .company,
  .help,
  .letter {
    gap: 25px;
  }
}
@media screen and (max-width: 491px) {
  .reviews-content {
    max-width: 300px;
    margin: 0 auto;
  }
  .reviews-content > p {
    font-size: 9px;
  }
  /* Contact section*/
}
@media screen and (max-width: 425px) {
  /* Banner section */
  .banner-content > h1,
  .banner-content > h1 > span {
    font-size: 38px;
  }
  /* Checkout section */
  #slider1 {
    padding: 0;
  }
  .checkout-card {
    padding: 10px;
  }
  .swiperbtn-next,
  .swiperbtn-prev {
    display: none;
  }
  /* why choose us section*/
  .why-content > div:first-child,
  .why-content > div:nth-child(2) {
    margin-bottom: 15px;
  }
  .why-content > div {
    gap: 10px;
  }
  .calling {
    font-size: 1.2rem;
    min-width: 40px;
    height: 40px;
  }
  .why-content > div > div:last-child > div {
    font-size: 18px;
    margin-bottom: 4px;
  }
  /* Contact section */
  .contact-sec {
    padding-top: 40px;
  }
  .form-wrpr {
    padding: 18px 25px 14px 25px;
  }
  .form-head {
    font-size: 19px;
  }
  .form-content > div:last-child > img {
    height: 80px;
  }
}
@media screen and (max-width: 320px) {
  /* Banner section */
  .banner-content > h1,
  .banner-content > h1 > span {
    font-size: 28px;
  }

  /* Client reviews section */
  .reviews-content {
    max-width: 277px;
  }
  /* Footer section */

  .ft-sec .col-25 {
    width: 100%;
  }
  .ft-sec > div > div:first-child {
    flex-direction: column;
    text-align: center;
  }
  .logo {
    margin: 0 auto;
  }
  .logo > img {
    transform: translateY(14px) scale(2);
  }
  .comp-logo ul {
    justify-content: center;
  }
  .company,
  .help,
  .letter {
    gap: 15px;
  }
  .company ul,
  .help ul {
    gap: 10px;
  }
}

/* Float section update */
@media screen and (max-width: 1163px) {
  .banner-sec {
    padding-bottom: 158px;
  }
  .banner-bottom-float .col-20 {
    width: 50%;
    margin: 0 auto;
  }
  .banner-bottom-float {
    width: 80%;
    text-align: center;
    padding: 34px 63px 21px 42px;
  }
  .loc > div {
    justify-content: center;
  }
  .float-row {
    row-gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .banner-sec {
    padding-bottom: 195px;
  }
  .banner-bottom-float {
    padding: 31px 63px 15px 42px;
  }
  .checkout-sec {
    padding: 174px 0 65px;
  }
}
@media screen and (max-width: 576px) {
  .loc > div:last-child > span:last-child {
    font-size: 10px;
  }
  .banner-sec .fa-solid {
    font-size: 0.8rem;
  }
  .bn-flt-btn {
    padding: 8px 10px 8px 14px;
  }
  .loc > h4 {
    font-weight: 600;
    font-size: 14px;
  }
  .banner-bottom-float {
    padding: 26px 46px 25px 42px;
  }
  .banner-sec {
    padding-bottom: 172px;
  }
  .bn-flt-btn > span:first-child {
    font-size: 14px;
  }
  .bn-flt-btn > span:last-child > img {
    width: 18px;
  }
}

@media screen and (max-width: 425px) {
  .banner-sec {
    padding-bottom: 148px;
  }
  .banner-bottom-float {
    padding: 26px 28px 13px 24px;
    text-align: left;
  }
  .loc > div {
    justify-content: start;
  }
}
@media screen and (max-width: 375px) {
  .banner-bottom-float {
    padding: 20px 21px 13px 18px;
  }
  .loc > h4 {
    font-size: 13px;
  }
  .loc > div:last-child > span:last-child {
    font-size: 8px;
  }
}
