@font-face {
  font-family: "univers_condensedbold";
  src:
    url("../fonts/univers-condensed-bold-webfont.woff2") format("woff2"),
    url("../fonts/univers-condensed-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: "univers_condensedbold";
  --bodyFont: ;
  --primaryColor: ;
  --secondaryColor: ;
  --yellowColor: #ffcc00;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: Arial;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* adjust based on your header height */
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

section {
  padding: 130px 0;
  position: relative;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding: 0 60px;
}

.custom-container {
  width: 100%;
  padding: 0 220px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  font-family: "univers_condensedbold";
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0 0 1rem;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 30px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #000;
}

.mm-navbar__title > span {
  color: var(--yellowColor);
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  background: #000;
}

.header_hldr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 254px;
}

.main_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main_menu li a {
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.5s ease-in-out;
}

.main_menu li.active a {
  color: var(--yellowColor);
}

.main_menu li {
  position: relative;
}

.main_menu li ul.has-submenu {
  position: absolute;
  top: 40px;
  border-radius: 0 0 5px 5px;
  z-index: 100;
  background: #fff;
  width: 250px;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--yellowColor);
  display: none;
}

.main_menu li ul.has-submenu li a:hover {
  background: linear-gradient(90deg, #ffd633 0%, #ff9900 100%);
  color: var(--whitecolor);
  padding-left: 19px;
}

.main_menu li ul.has-submenu li a {
  justify-content: space-between;
  font-size: 14px;
  color: #000;
  padding: 10px 15px;
}

.main_menu li ul.has-submenu li:not(:last-child),
.main_menu li ul.has-submenu ul.super-submenu li:not(:last-child) {
  /* margin-bottom: 10px; */
  border-bottom: 1px dashed #ccc;
  /* padding-bottom: 10px; */
  transition: all 0.5s ease-in-out;
}

.main_menu li a:hover {
  color: var(--yellowColor);
}

.main_menu li ul.has-submenu ul.super-submenu {
  top: 0;
  left: 250px;
  /* width: 300px; */
  width: 250px;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--yellowColor);
  display: none;
  position: absolute;
  background: #fff;
}
li.hashchild_submenu ul.super-submenu li:hover ul.super-submenu {
  display: block;
}

.main_menu li ul.has-submenu ul.super-submenu li a {
  padding: 13px 15px;
}

.main_menu li a i {
  color: #ffcc00;
  /* position: relative;
  right: 12px; */
}

.main_menu li li a i {
  color: #000;
}

.search_link {
  background: var(--yellowColor);
  border-radius: 50%;
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}

.search_link img {
  width: 20px;
}

.serch-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 85px;
  /* background: #fff; */
  /* padding: 15px; */
  z-index: 9;
  transform: translateY(-200px);
  /* box-shadow: 0px 0px 10px rgb(0 0 0 / 6%); */
}

.serch-wrapper form {
  position: relative;
  width: calc(100% - 50px);
  display: inline-block;
  align-items: center;
}

.serch-wrapper form input {
  height: 45px;
  width: 100%;
  padding: 0 20px;
  box-shadow: none !important;
  border-radius: 4px 0 0 4px;
}

.serch-wrapper.show-search,
.serch-wrapper {
  transition: all 0.3s;
}

.serch-wrapper.show-search {
  transform: translateY(0);
}

.serch-wrapper .d-flex {
  position: absolute;
  right: 275px;
  width: 500px;
}

a.search-close {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  text-decoration: none;
  background: var(--yellowColor);
  color: var(--yellowColor);
  font-size: 20px;
  border-radius: 0 4px 4px 0;
  position: relative;
  right: 37px;
}

/* .srch_bx {
  position: relative;
  width: 300px;
}

.srch_bx input {
  width: 100%;
  padding: 10px 15px;
  border: 0;
  border-radius: 40px;
  color: #B9BABC;
  background: #FFFFFF33;
}

.srch_bx button {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  border: 0;
  background: transparent;
} */

.toll_free {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.toll-free-box {
  font-family: Arial;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
}

.toll-free-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

.toll-free-box a:hover {
  color: var(--yellowColor);
}

.form_toll_free_hldr {
  display: flex;
  align-items: center;
  gap: 43px;
  position: relative;
}

/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.site-main {
  padding-top: 84px;
}

.banner figure {
  margin: 0;
  width: 100%;
}

.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_text_hldr {
  position: absolute;
  width: 100%;
  left: 0;
  top: 65%;
  transform: translate(0, -50%);
}

.banner_text_hldr .d-flex {
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.banner_text_hldr .d-flex a.sol_btn {
  background: var(--yellowColor);
  color: #000;
  padding: 13px 30px 11px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--headingFont);
  font-size: 18px;
  letter-spacing: 2px;
  border: 2px solid var(--yellowColor);
}

.banner_text_hldr .d-flex a.sol_btn:hover {
  border: 2px solid #000;
}

.banner_text_hldr .d-flex a.send_enq_btn {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px) saturate(200%);
  color: #fff;
  padding: 13px 30px 11px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--headingFont);
  font-size: 18px;
  letter-spacing: 2px;
  border: 2px solid #fff;
}

.banner_text_hldr .d-flex a:hover {
  background: #000;
}

.banner_text_hldr .d-flex a:hover.sol_btn {
  color: #fff;
}

.banner_text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* justify-content: flex-end; */
}

.banner_text h1 {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  left: 0;
  /* left: 75px; */
}

.banner_form {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
}

.banner_frm_hldr {
  padding: 20px;
  border-radius: 10px;
  background: #00000099;
}

.banner_frm_hldr label {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}

.banner_frm_hldr select {
  width: 100%;
  border-radius: 5px;
  padding: 15px 20px;
  border: none;
}

.banner_frm_hldr button {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellowColor);
  gap: 8px;
  color: #000000;
}

/* .banner video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: top center;
} */

.video_inner {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  overflow: hidden;
}

.video_inner:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video_inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-btn {
  position: absolute;
  bottom: 65px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px) saturate(200%);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 0;
  cursor: pointer;
  z-index: 9;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.video-btn:hover {
  opacity: 1;
  background-color: #2a2a2a;
}

.main_hd {
  text-align: center;
  margin-bottom: 50px;
}

.main_hd h2 {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  display: inline-block;
}

.main_hd h2:after {
  position: absolute;
  content: "";
  height: calc(100% - 28px);
  width: 3px;
  background: var(--yellowColor);
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
}

.catagory_tabs {
  justify-content: center;
  gap: 10px;
  border: 0;
  margin-bottom: 50px;
}

.catagory_tabs li button {
  padding: 10px 18px;
  border: 1px solid #b9babc !important;
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  border-radius: 30px !important;
  transition: all 0.5s ease-in-out;
}

.catagory_tabs li button.active {
  border-color: var(--yellowColor) !important;
  background: var(--yellowColor) !important;
}

.cmn_btn {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000000;
  /* justify-content: center; */
  justify-content: space-between;
}

.cmn_btn span {
  font-family: "univers_condensedbold";
  font-size: 23px;
  line-height: 1.05;
}

.cmn_btn svg {
  width: 32px;
  stroke: var(--yellowColor);
  fill: transparent;
  transition: all 0.5s ease-in-out;
  transform-origin: left center;
}

.cmn_btn:hover svg {
  transform: rotate(45deg) translate(0, -5px);
  fill: var(--yellowColor);
}

.cat_box {
  padding: 30px 40px;
  background: #f1f1f1;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.cat_box figure {
  width: 100%;
  margin-bottom: 20px;
}

.cat_box figure img {
  height: 147px;
  width: 100%;
  object-fit: contain;
  object-position: top center;
  transition: all 0.5s ease-in-out;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}

.catagory_cont_hldr {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.cat_box:hover figure img {
  scale: 1.05;
}

.cat_box:hover {
  background: #ececec;
}

.booking_btn_hldr {
  position: absolute;
  top: 7%;
  transform: translateY(-50%);
  left: -83px;
  gap: 10px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.booking_btn_hldr.cameInleft {
  left: 15px;
  transition: 0.5s;
}

.bookingwrapper {
  display: grid;
  gap: 8px;
}

#bookingBtn {
  background: var(--yellowColor);
  color: #000;
  padding: 14px 0;
  border-radius: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-family: Arial;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0%;
}

#bookingBtn img {
  transition: 0.5s;
}

.booking_btn_hldr.cameInleft #bookingBtn img {
  transition: 0.5s;
  transform: rotate(180deg);
}

.booking_btn_hldr a {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 0;
  border-radius: 10px;
  background: var(--yellowColor);
  transition: all 0.5s ease-in-out;
  max-width: 80px;
  text-align: center;
}

.booking_btn_hldr a img {
  display: table;
  margin: auto;
}

.booking_btn_hldr a span {
  font-family: Arial;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #000000;
  transition: all 0.5s ease-in-out;
}

.booking_btn_hldr a img {
  transition: all 0.5s ease-in-out;
}

.booking_btn_hldr a:hover {
  transform: translate(0, -5px);
  background: #000;
}

.booking_btn_hldr a:hover span {
  color: var(--yellowColor);
}

.booking_btn_hldr a:hover img {
  filter: invert(1) hue-rotate(30deg);
}

.our_achievement_hldr .main_hd h2 {
  text-align: left;
  color: #fff;
}

.our_achievement {
  padding: 100px 0;
  background: url(../images/achivement_bg.jpg) no-repeat left center / cover;
}

.ac_counter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-left: 50px;
  margin: 0 0 50px;
}

.ac_counter h3 {
  font-family: Arial;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0%;
  margin-bottom: 11px;
  color: var(--yellowColor);
}

.ac_counter p {
  font-family: var(--headingFont);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0;
}

.ac_counter span {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff33;
}

.ac_counter span img {
  width: 45px;
}

.our_achievement_hldr .row > div {
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.our_achievement_hldr .main_hd {
  margin-bottom: 44px;
}

/* .our_achievement_hldr .row>div:nth-child(2),
.our_achievement_hldr .row>div:nth-child(3) {
  margin-top: 25px;
} */

.our_achievement_hldr .row>div:nth-child(3),
/* .our_achievement_hldr .row>div:nth-child(1), */
.our_achievement_hldr .row>div:nth-child(6) {
  border-right: 0;
}

.our_achievement_hldr .row > div:nth-child(4),
.our_achievement_hldr .row > div:nth-child(5),
.our_achievement_hldr .row > div:nth-child(6) {
  border-bottom: 0;
  padding-top: 50px;
}

/* .our_achievement_hldr .row>div:nth-child(4) .ac_counter {
  padding-left: 0;
} */

.most_viewed .main_hd {
  margin-bottom: 0;
}

.most_viewed .main_hd h2 {
  color: #000;
  text-align: left;
}

.most_viewed .main_hd h2::after {
  background: #fff;
}

.most_viewed {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.most_left {
  width: 30%;
  padding: 113px 88px 113px 113px;
  background: var(--yellowColor);
  height: 439px;
  display: flex;
  align-items: center;
}

.most_left p {
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000;
}

.most_viewed {
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
}

.most_right {
  width: calc(70% - 11px);
}

.most_product_cont {
  padding: 60px 25px;
  background: #f1f1f1;
  height: 439px;
}

.most_viewed_product_slider .slick-slide {
  margin: 0 5px;
}

.most_viewed_product_slider .slick-list {
  margin: 0 -5px;
}

.most_viewed_product_slider .slick-prev {
  position: absolute;
  top: 39%;
  left: -25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/left_arrow.svg) #f1f1f1 no-repeat center center /
    8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
}

.most_viewed_product_slider .slick-prev:hover {
  border-color: var(--yellowColor);
  background: url(../images/left_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

.most_viewed_product_slider .slick-next {
  position: absolute;
  top: 51%;
  left: -25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/right_arrow.svg) #f1f1f1 no-repeat center center /
    8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
}

.most_viewed_product_slider .slick-next:hover {
  border-color: var(--yellowColor);
  background: url(../images/right_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

.most_product_cont figure {
  margin-bottom: 40px;
}

.most_product_cont {
  text-align: center;
}

.most_product_cont h4 {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  color: #000;
  margin-bottom: 35px;
  min-height: 45px;
}

.most_product_cont figure img {
  object-fit: cover;
  object-position: center;
  margin: auto;
  width: 100%;
  aspect-ratio: 16 / 11;
}

.dtl_btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  background: #000;
  border-radius: 40px;
  gap: 10px;
}

.dtl_btn span {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.dtl_btn img {
  width: 12px;
  transition: all 0.5s ease-in-out;
}

.dtl_btn:hover img {
  transform: rotate(45deg);
}

.why_choose {
  position: relative;
  background: #b9babc;
}

.why_card {
  padding: 20px;
  box-shadow: 0px -3px 6px 0px #00000014;
  background: #fff;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.why_card:hover {
  box-shadow: 0px -3px 15px 15px #00000025;
  transform: translate(0, -10px);
}

.why_card figure {
  width: 100%;
  height: 152px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.why_card figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.why_card h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.why_card h5 span {
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #000;
}

.why_card p {
  font-family: Arial;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  min-height: 121px;
  margin-bottom: 0;
}

.leader_card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: 100%;
  text-align: center;
}

a.click_here {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #000;
  font-weight: bold;
  font-size: 17px;
}

a.click_here img {
  transition: all 0.5s ease-in-out;
}

a:hover.click_here img {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.leader_card figure {
  /* height: 260px; */
  width: 100%;
  border-bottom: 3px solid #fff;
  border-radius: 10px 10px 0 0;
  margin: 0;
  overflow: hidden;
}

.leader_card figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.5s ease-in-out;
}

.leader_card:hover figure img {
  scale: 1.05;
}

.leader_card h5 {
  padding: 8px 0;
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #000000;
  background: var(--yellowColor);
  border-radius: 0 0 10px 10px;
  margin-bottom: 12px;
}

.leader_card p {
  font-family: Arial;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  /* min-height: 50px; */
}

.leadership_hldr .dtl_btn {
  margin-top: 10px;
}

.testimonial_hldr .main_hd h2 {
  gap: 18px;
  text-align: left;
}

.testimonial_hldr .main_hd img {
  width: 56px;
  position: relative;
  top: -48px;
}

.testimonial_hldr .testi .main_hd h2::after {
  display: none;
}

.testi .main_hd {
  text-align: left;
}

.test_user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.test_user img {
  height: 80px;
  width: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.test_user h6 {
  max-width: 308px;
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 10px;
  color: #000;
}

.test_user p {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #6b7073;
}

.testi_txt p,
.testi_txt ul li {
  font-family: Arial;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  position: relative;
}

.testi_txt ul {
  padding-left: 15px;
}

.testi_txt ul li:not(:last-child) {
  margin-bottom: 5px;
}

.testi_txt ul li::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #000;
  top: 10px;
  left: -15px;
}

.testi_slider .slick-prev,
.item_view_slider .slick-prev,
.model_slider .slick-prev {
  position: absolute;
  top: 20px;
  right: 45px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/left_arrow.svg) #fff no-repeat center center / 8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
}

.testi_slider .slick-prev:hover,
.item_view_slider .slick-prev:hover,
.model_slider .slick-prev:hover {
  border-color: var(--yellowColor);
  background: url(../images/left_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

.testi_slider .slick-next,
.item_view_slider .slick-next,
.model_slider .slick-next {
  position: absolute;
  top: 20px;
  right: -5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/right_arrow.svg) #fff no-repeat center center / 8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
}

.testi_slider .slick-next:hover,
.item_view_slider .slick-next:hover,
.model_slider .slick-next:hover {
  border-color: var(--yellowColor);
  background: url(../images/right_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

.testimonial_hldr .catagory_tabs {
  justify-content: flex-start;
}

.vfr iframe {
  width: 100%;
  height: 312px;
}

.online_order {
  background: #f1f1f1;
}

.online_parts_hldr {
  width: 100%;
}

.onlineProduct {
  position: relative;
}

.onlineProduct::before {
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: #f1f1f1;
  position: absolute;
}

.onlineProduct .container {
  max-width: 1720px;
  margin: auto;
  position: relative;
}

.online_parts_hldr .slick-slide {
  margin: 0 15px;
}

.online_parts_hldr .slick-list {
  margin: 0 -15px;
}

.online_parts {
  width: 100%;
}

.online_parts img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center center;
}

.testi_video_slider_hldr {
  width: 100%;
}

.testi_video_slider_hldr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.big_slider_hldr {
  width: 55%;
}

.small_slider_hldr {
  width: calc(45% - 11px);
}

.big_card iframe {
  width: 100%;
  height: 443px;
}

.small_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
}

.small_card img {
  width: 210px;
}

.small_card h6 {
  width: calc(100% - 240px);
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  padding-right: 0;
}

.small_slider .slick-prev {
  position: absolute;
  top: 39%;
  left: -25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/left_arrow.svg) #f1f1f1 no-repeat center center /
    8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
  transform: rotate(90deg);
}

.small_slider .slick-prev:hover {
  border-color: var(--yellowColor);
  background: url(../images/left_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

.small_slider .slick-next {
  position: absolute;
  top: 51%;
  left: -25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* border: 1px solid #6B7073; */
  border: 0;
  font-size: 0;
  background: url(../images/right_arrow.svg) #f1f1f1 no-repeat center center /
    8px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000040;
  transform: rotate(90deg);
}

.small_slider .slick-next:hover {
  border-color: var(--yellowColor);
  background: url(../images/right_arrow.svg) var(--yellowColor) no-repeat center
    center / 8px;
}

/* ====in the press== */
.inthePress {
  background: #f1f1f1;
}

.pressItem {
  text-align: center;
}

.pressImgouter {
  padding: 10px;
  background: #fff;
  box-shadow: 0px -3px 6px 0px #00000014;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pressImg {
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.newplay {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellowColor);
  color: #000;
  display: inline-grid;
  border-radius: 50%;
  place-content: center;
  font-size: 23px;
}

.newplay i {
  transform: translate(1px, 2px);
}

.pressImg iframe {
  display: block;
}

.pressImg img {
  transition: 0.5s;
}

.pressItem:hover .pressImg img {
  transform: scale(1.2);
  transition: 0.5s;
}

.pressItem a.newsTitle {
  font-weight: 600;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 15px;
  min-height: 46px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subscribe.Knowmore {
  background: #000;
  color: #fff;
  border-radius: 44px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 35px;
  position: relative;
  padding: 4px 12px;
  top: inherit;
  right: inherit;
  transition: 0.5s;
}

.subscribe.Knowmore i {
  color: var(--yellowColor);
}

#embedPlay {
  display: none;
}

.subscribe.Knowmore i {
  font-size: 28px;
  line-height: 1;
  transform: rotate(-40deg);
}

.subscribe.Knowmore:hover i {
  transform: rotate(0deg);
  color: #000;
}

.subscribe.Knowmore:hover {
  background: var(--yellowColor);
  color: #000;
  transition: 0.5s;
}

.inthePress .main_hd h2 {
  line-height: 66px;
}

/* ====footer start====== */
.site-footer {
  background: #000;
  padding: 86px 0 0;
  border-top: 5px solid var(--yellowColor);
}

.footerlogo figure {
  margin-bottom: 0px;
}

.footerlogo {
  display: inline-block;
  margin-bottom: 55px;
}

.qrWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qrImg {
  padding: 7.5px;
  background: #fff;
  border-radius: 5px;
}

.qrContent {
  flex: 1;
  max-width: 123px;
}

.qrContent p {
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0%;
  color: #fff;
}

.playstore {
  margin: 15px 0 53px;
}

.missedCallWrapper {
  /* border-left: 2px solid var(--yellowColor);
  padding-left: 10px; */
  display: none;
  margin-bottom: 30px;
}

.missedCallWrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #b9babc;
  margin-bottom: 5px;
}

.missedCallWrapper h5 span {
  margin-right: 2px;
  background: #202020;
  width: 38px;
  display: inline-grid;
  height: 38px;
  place-content: center;
  border-radius: 4px;
  color: var(--yellowColor);
  overflow: hidden;
  position: relative;
}

h5 span .digit-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 1s ease-out;
}

h5 span .digit-inner div {
  height: 38px;
  /* Match the span height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.missedCallWrapper a {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #ffffff;
  display: inline-block;
  transition: 0.5s;
}

.missedCallWrapper a:hover {
  letter-spacing: 1px;
  transition: 0.5s;
}

.subcribeform {
  position: relative;
}

.subcribeform input {
  background: #ffffff33;
  min-height: 35px;
  padding: 7px 18px;
  border-radius: 44px;
  border: none !important;
  box-shadow: none !important;
  width: 100%;
  color: #fff;
}

.subscribe {
  background: var(--yellowColor);
  color: #000;
  border-radius: 44px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 35px;
  position: absolute;
  padding: 4px 12px;
  top: 0;
  right: 0;
  transition: 0.5s;
}

.subscribe:hover {
  background: #fff;
  color: #000;
  transition: 0.5s;
}

.subscribe i {
  transition: 0.5s;
}

.subscribe:hover i {
  transform: rotate(45deg);
  transition: 0.5s;
}

.subscribe span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0%;
}

.btn.subscribe img {
  filter: brightness(0);
  transition: all 0.5s ease-in-out;
}

.btn.subscribe:hover img {
  rotate: 45deg;
}

.footerContent h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--yellowColor);
  margin-bottom: 20px;
}

.footernav {
  display: grid;
}

.footernav li a {
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #b9babc;
  position: relative;
  display: inline-block;
  padding-left: 15px;
  transition: 0.5s;
}

.footernav li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #b9babc;
  position: absolute;
  top: 12px;
  left: 0;
  border-radius: 50%;
  transition: 0.5s;
}

.footernav li a:hover {
  color: var(--yellowColor);
  transition: 0.5s;
}

.footernav li a:hover::before {
  background: var(--yellowColor);
  transition: 0.5s;
}

.footerContact {
  display: flex;
}

.footerContactItem {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 3px solid #000;
  width: 33.33%;
  background: #ffcc00;
  padding: 14px 18px;
}

.footerContact .footerContactItem:nth-child(2) {
  background: #ffd326;
}

.footerContact .footerContactItem:nth-child(3) {
  background: #ffde59;
  border: none;
}

.fcIcon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #00000066;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 18px;
}

.fcContent {
  flex: 1;
}

.fcContent h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #997b00;
}

.fcContent a {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #000;
}

.footerContact {
  margin-top: 45px;
  margin-bottom: -50px;
}

.fcContent p {
  font-size: 13.5px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 0;
}

.bottomnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.bottomnav li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #fff;
  display: block;
  position: relative;
}

.bottomnav li:not(:last-child) a::before {
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -15px;
}

.copyrightbar {
  padding: 77px 0 27px;
  background: #333333;
}

.copyrightbar p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}

.copyrightbar p a {
  font-weight: 700;
  color: #fff;
}

.copyrightbar p a:hover,
.bottomnav li a:hover {
  color: var(--yellowColor);
}

.pl-30 {
  padding-left: 60px;
}

.aw_text .subscribe {
  position: relative;
}

section.awards {
  border-radius: 0 !important;
  z-index: 5;
  position: relative;
  background: #fff;
}

.fcIcon {
  transition: all 0.5s ease-in-out;
}

.footerContactItem:hover .fcIcon {
  background: #000;
}

/* ====footer close====== */
/* =======follow us start====== */
.followUs {
  position: fixed;
  top: 40%;
  right: -36px;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  gap: 7px;
  transition: 0.5s;
  align-items: center;
}

.followUs.cameIn {
  right: 15px;
  transition: 0.5s;
}

.followUs li:nth-child(1) span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #b9babc;
  font-family: Arial;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0%;
}

#followBtn {
  background: var(--yellowColor);
  color: #000;
  padding: 14px 0;
  border-radius: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

#followBtn img {
  transform: rotate(180deg);
  transition: 0.5s;
}

.followUs.cameIn #followBtn img {
  transform: rotate(0deg);
  transition: 0.5s;
}

.followUs ol li a {
  border-radius: 50%;
  overflow: hidden;
}

.followUs ol li a {
  width: 35px;
  height: 35px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

.followUs ol li a {
  color: #fff;
}

.followUs ol li:nth-child(1) {
  background: #1976d2;
  border-radius: 50%;
}

.followUs ol li:nth-child(2) {
  background: linear-gradient(
    131.5deg,
    #fbd524 14.87%,
    #f33288 50.79%,
    #6e1ccf 85.13%
  );
  border-radius: 50%;
}

.followUs ol li:nth-child(3) {
  background: #000000;
  border-radius: 50%;
}

.followUs ol li:nth-child(4) {
  background: #0077b5;
  border-radius: 50%;
}

.followUs ol li:nth-child(5) {
  background: #e60000;
  border-radius: 50%;
}

.followUs li a:hover svg,
.followUs li a:hover i {
  transform: rotate(360deg);
  transition: 0.5s;
}

.followUs ol {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* =======follow us close====== */

.testi_card {
  margin: 0 30px;
}

/* 27.2.2026 */

.modal_gnl .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ebebeb;
  z-index: 1;
  opacity: 1;
  content: "X";
  color: #000;
  font-size: 14px;
  padding: 0 !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
/* end */

.footerContactItem .fcContent b {
  display: block;
}

/* 07.04.2026 */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  flex-flow: wrap;
  border-radius: 8px 8px 0 0;
}

.compare-items {
  display: flex;
  gap: 10px;
}

.compare-card {
  background: #fff;
  padding: 8px;
  position: relative;
  text-align: center;
  width: 120px;
}

.compare-card img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.compare-card p {
  font-size: 12px;
  margin: 5px 0 0;
}

.remove-item {
  position: absolute;
  top: 2px;
  right: 5px;
  cursor: pointer;
  font-weight: bold;
}
.compare-actions h4 {
  display: none;
  font-size: 16px;
  color: #fff;
}
.compareBtnWrapper {
  display: grid;
  gap: 10px;
}

.compare-btn-main {
  background: #ffc107;
  border: none;
}

.clear-btn {
  background: #dc3545;
  color: #fff;
}
.mobUpArrow {
  position: absolute;
  width: 35px;
  height: 35px;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
  background: var(--yellowColor);
  font-size: 30px;
  display: none;
  place-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 0px rgb(145 145 145 / 50%);
}
.compare_page {
  padding: 90px 0 30px;
}
.compare_page .cooling_system thead tr th:nth-child(even) span {
  background: #838486;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  display: block;
  margin: 0 20px;
  padding: 5px 8px;
}
.compare_page .cooling_system thead tr th:nth-child(odd) span {
  background: #000;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  display: block;
  margin: 0 20px;
  padding: 5px 8px;
}
.compare_page .cooling_system thead tr th:first-child {
  background: transparent;
  color: #000;
}
.compareImg {
  width: 200px;
  margin: auto;
  height: 140px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}
.compareImg img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare_page .cooling_system tbody tr td:first-child {
  text-align: left;
}
/* 07.04.2026 */

@media (max-width: 767px) {
  .why_card figure {
    height: 190px;
  }
  .catagory_cont_hldr .cat_box figure img {
    padding: 0;
  }
  .inthePress .main_hd h2 {
    line-height: 54px;
  }
  .followUs.hide,
  .booking_btn_hldr.hide {
    opacity: 0;
    visibility: hidden;
    /* transform: translateX(100%); */
  }
  .fcContent p {
    line-height: 19px;
  }
  .footerContent .footernav,
  .social-share {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .footerContent.active .footernav {
    max-height: 500px;
  }
  .social-share {
    padding: 0 20px !important;
    transition: all 0.4s ease-in-out;
  }
  .share.active .social-share {
    max-height: 300px;
    padding: 20px 20px !important;
    transition: all 0.4s ease-in-out;
  }
  .share h4 {
    position: relative;
  }
  .footerContent h3::after,
  .share h4:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
  }
  .share h4:after {
    right: 20px;
  }
  .footerContent.active h3::after,
  .share.active h4:after {
    transform: translateY(-50%) rotate(-135deg);
  }
  .cmn_btn span {
    width: calc(100% - 20px);
  }
  .banner .video_inner:after {
    height: 100%;
  }
  .catagory_cont_hldr .cat_box {
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .testi_slider .slick-prev,
  .testi_slider .slick-next {
    top: 0px !important;
  }

  .training_sec ul {
    display: block !important;
  }

  .training_sec ul li {
    padding-bottom: 10px !important;
  }

  /* .banner video {
    height: 550px;
  } */

  /* .video_inner {
    height: auto;
  } */

  .footerContact {
    flex-flow: wrap;
    margin-top: 30px;
  }

  .footerContactItem {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .pl-30 {
    padding-left: 15px;
  }
  .copyrightbar {
    padding: 65px 0 20px;
  }
  .copyrightbar p {
    text-align: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .bottomnav li a {
    font-size: 0.75rem;
    line-height: 1rem;
    color: #fff;
  }
  .footerContent {
    margin-bottom: 30px;
  }

  .footerContent.pl-30 {
    padding-left: 0;
  }

  .footerContent h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
  }

  .footerlogo {
    display: inline-block;
    margin-bottom: 35px;
  }

  .playstore {
    margin: 15px 0 20px;
  }

  .copyrightbar p {
    text-align: center;
    margin-bottom: 8px;
  }

  .bottomnav {
    justify-content: center;
  }
  .mobUpArrow {
    display: grid;
    transition: 0.5s;
  }
  .mobUpArrow i {
    transform: rotate(0deg);
    transition: 0.5s;
  }
  .upwards .mobUpArrow i {
    transform: rotate(180deg);
    transition: 0.5s;
  }
  .compare-actions h4 {
    display: block;
  }
  .compare-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: -1;
    margin-bottom: 10px;
  }
  .compareBtnWrapper {
    display: flex;
    gap: 10px;
  }
  .compare-bar {
    padding: 26px 10px 10px;
    bottom: inherit;
    top: calc(100% - 74px);
    transition: 0.5s;
    top: calc(100% - 74px);
    transition: 0.5s;
  }
  .compare-bar.upwards {
    top: inherit;
    transition: 0.5s;
    bottom: 0;
  }

  .testi .main_hd {
    text-align: left;
    padding-bottom: 30px;
  }
  .testi_txt ul {
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .leader_card p {
    min-height: auto;
    margin-bottom: 0;
  }
  .big_slider_hldr {
    width: 48%;
  }
  .small_slider_hldr {
    width: calc(52% - 11px);
  }
  .small_card h6 {
    width: calc(100% - 220px);
    padding-right: 0;
    font-size: 18px;
  }
  .most_viewed_product_slider .slick-prev {
    top: -94px;
    left: inherit;
    right: 75px;
  }

  .most_viewed_product_slider .slick-next {
    top: -94px;
    left: inherit;
    right: 25px;
  }

  .pl-30 {
    padding-left: 30px;
  }

  .footernav li a {
    font-size: 12px;
    line-height: 25px;
    padding-left: 10px;
  }

  .footernav li a::before {
    width: 5px;
    height: 5px;
    top: 9px;
  }

  .fcContent a {
    font-size: 15px;
    line-height: 17px;
    word-break: break-all;
  }

  .fcContent p {
    font-size: 11.5px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #000;
  }
}

.timing {
  font-family: Arial;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #b9babc;
  margin-bottom: 0;
}
.training_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ========================== responsive ========================== */

@media (max-width: 1700px) {
  .container-fluid,
  .custom-container {
    padding: 0 15px;
  }

  .class-backhoe-loader {
    padding-bottom: 0;
  }

  /* .cat_info_cont .white_bg {
    margin-bottom: 175px !important;
  } */
}

@media (max-width: 1440px) {
  .cmn_btn span {
    font-size: 20px;
  }

  .serch-wrapper .d-flex {
    right: 200px;
  }

  .serch-wrapper {
    top: 70px;
  }

  /* .container-fluid,
  .custom-container {
    padding: 0 15px;
  } */

  .main_menu {
    gap: 18px;
  }

  .main_menu li a {
    font-size: 15px;
    gap: 6px;
    transition: all 0.5s ease-in-out;
  }
  .most_product_cont h4 {
    font-size: 20px;
  }
  .most_product_cont {
    padding: 25px 25px;
    height: 380px;
  }
  .logo img {
    width: 185px;
  }

  .srch_bx {
    width: 220px;
  }

  .banner_text h1 {
    font-size: 57px;
    line-height: 60px;
    left: 0;
  }

  .banner_text_hldr {
    top: 40%;
  }

  .cat_box {
    padding: 10px;
  }

  .cat_box figure img {
    height: 110px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
  }

  .most_left {
    padding: 80px 44px 80px 44px;
    height: 381px;
  }

  .why_card p {
    min-height: 145px;
  }

  .small_card h6 {
    width: calc(100% - 228px);
    padding-right: 10px;
  }

  .form_toll_free_hldr {
    gap: 20px;
  }

  .online_parts img {
    height: 270px;
  }

  .gray_bg figure img {
    height: 130px;
  }

  .site-main {
    padding-top: 64px !important;
  }

  .cat_info_cont .white_bg {
    margin-bottom: 180px;
  }

  .video-btn {
    bottom: 35px;
    right: 30px;
  }
}

@media (max-width: 1366px) {
  .why_card {
    padding: 15px;
  }

  .form_toll_free_hldr {
    gap: 22px;
  }

  section {
    padding: 80px 0;
  }

  .logo img {
    width: 160px;
  }

  .toll-free-box {
    font-size: 12px;
  }

  .followUs {
    top: 50%;
  }

  .booking_btn_hldr a {
    padding: 10px 6px;
  }

  .booking_btn_hldr a span {
    font-size: 12px;
  }

  .most_left {
    padding: 113px 30px 113px 60px;
  }

  .most_left {
    width: 34%;
  }

  .most_right {
    width: calc(66% - 11px);
  }

  .most_product_cont h4 {
    font-size: 18px;
  }

  /* .why_card h5 span {
    font-size: 18px;
  } */

  .why_card h5 {
    margin-bottom: 15px;
  }

  .why_card p {
    min-height: 170px;
  }

  .site-main {
    padding-top: 60px !important;
  }

  .white_bg h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .main_menu {
    display: none;
  }

  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }

  /* mmenu end */
  .srch_bx {
    width: 300px;
  }

  #menu {
    z-index: 99;
  }

  .banner_text h1 {
    font-size: 53px;
    line-height: 59px;
  }

  section {
    padding: 60px 0;
  }

  .main_hd h2 {
    font-size: 40px;
  }

  .main_hd {
    margin-bottom: 30px;
  }

  .catagory_cont_hldr {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking_btn_hldr a {
    padding: 20px 0;
  }

  .header_hldr {
    padding-right: 55px;
  }

  .ac_counter h3 {
    font-size: 30px;
  }

  .ac_counter span {
    height: 60px;
    width: 60px;
  }

  .ac_counter span img {
    width: 30px;
  }

  .our_achievement_hldr .row > div:nth-child(2),
  .our_achievement_hldr .row > div:nth-child(3) {
    margin-top: 0;
  }

  .our_achievement_hldr .row > div:nth-child(4),
  .our_achievement_hldr .row > div:nth-child(5),
  .our_achievement_hldr .row > div:nth-child(6) {
    padding-top: 20px;
  }

  .our_achievement {
    padding: 60px 0;
  }

  .most_left {
    padding: 40px 30px 40px 23px;
  }

  .most_product_cont figure img {
    height: 120px;
  }

  .most_product_cont,
  .most_left {
    height: 392px;
  }

  .why_card p {
    min-height: 125px;
  }
}

@media (max-width: 1023px) {
  .srch_bx {
    width: 255px;
  }

  .banner figure {
    height: 515px;
  }

  .booking_btn_hldr {
    top: 300px;
    left: -80px;
  }

  .banner_text_hldr {
    top: 40%;
    left: 60px;
  }

  section,
  .our_achievement {
    padding: 80px 0;
  }

  .our_achievement_hldr .main_hd {
    margin-bottom: 30px;
  }

  .ac_counter {
    padding-left: 0;
  }

  .our_achievement_hldr .row > div:nth-child(3),
  .our_achievement_hldr .row > div:nth-child(1),
  .our_achievement_hldr .row > div:nth-child(6),
  .our_achievement_hldr .row > div {
    border-bottom: 0;
    border-right: 0;
  }

  .our_achievement_hldr .row > div:nth-child(4),
  .our_achievement_hldr .row > div:nth-child(5),
  .our_achievement_hldr .row > div:nth-child(6) {
    padding-top: 0;
  }

  .most_viewed {
    flex-wrap: wrap;
    gap: 10px;
  }

  .most_left {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .most_right {
    width: 100%;
    overflow: hidden;
  }

  .our_achievement_hldr .main_hd {
    margin-bottom: 10px;
  }

  .catagory_tabs {
    margin-bottom: 30px;
  }

  .online_order {
    flex-wrap: wrap;
    gap: 5px;
  }

  .online_parts_hldr,
  .testi_video_slider_hldr {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .banner_form {
    bottom: inherit;
    top: 50%;
  }
  .most_viewed .most_left {
    padding: 20px 30px 20px 23px;
  }
  /* .cat_info_details {
    right: 0px !important;
    top: 20px !important;
  } */
  /* .cat_info_cont .white_bg {
    margin-bottom: 75px !important;
  } */

  .banner_text_hldr .d-flex {
    gap: 13px;
    margin-top: 14px;
  }

  .banner_text_hldr .d-flex a.sol_btn,
  .banner_text_hldr .d-flex a.send_enq_btn {
    padding: 8px 16px 7px;
    font-size: 15px;
    letter-spacing: 0;
  }

  .booking_btn_hldr a {
    padding: 12px 7px;
  }

  .booking_btn_hldr {
    left: -46px;
    top: 4%;
  }

  .header_hldr {
    flex-wrap: wrap;
    padding-right: 0;
  }

  .logo img {
    width: 190px;
  }

  .serch-wrapper .d-flex {
    right: -18px;
    width: 100%;
  }

  .form_toll_free_hldr {
    gap: 25px;
    flex-wrap: wrap;
  }

  .mobileMenuButton {
    top: 25px;
  }

  .big_card iframe {
    width: 100%;
    height: 100%;
  }

  .form_toll_free_hldr form,
  .srch_bx {
    width: 100%;
  }

  .site-main {
    padding-top: 67px !important;
  }

  #bookingBtn {
    line-height: 30px;
  }

  .cat_info_cont {
    margin-top: 50px;
    padding-bottom: 0;
  }

  .cat_info_img figure {
    margin: 0 0 1rem;
  }

  .innercont h2 {
    font-size: 25px;
  }

  .banner_text h1 {
    font-size: 35px;
    line-height: 38px;
    left: 0;
  }

  .banner_text {
    justify-content: flex-start;
  }

  .banner figure {
    height: 560px;
  }

  .toll-free-box {
    display: none;
  }

  .header_hldr {
    justify-content: inherit;
    gap: 40px;
  }

  .banner_text_hldr {
    top: 170px;
    left: 0;
  }

  /* .banner_form {
    bottom: 180px;
  } */

  .video_inner .video-btn {
    bottom: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
  }

  .banner_frm_hldr select {
    padding: 0 10px;
    height: 35px;
    font-size: 12px;
  }

  .booking_btn_hldr a span {
    display: none;
  }

  .booking_btn_hldr a {
    padding: 10px;
  }

  .booking_btn_hldr a img {
    max-width: 20px;
  }

  .banner_frm_hldr {
    margin: 0 20px;
  }

  .catagory_tabs li {
    width: 48%;
  }

  .catagory_tabs li button {
    width: 100%;
    padding: 10px 6px;
    font-size: 14px;
  }

  .main_hd h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .catagory_hldr .main_hd h2:after,
  .why_choose_hldr .main_hd h2:after,
  .testimonial_hldr .main_hd h2:after,
  .leadership_hldr .main_hd h2:after,
  .online_order .main_hd h2:after {
    height: calc(100% - 11px);
  }

  .pressItem a.newsTitle,
  .leader_card p {
    min-height: auto;
  }
  .leader_card p {
    margin-bottom: 0;
  }

  .leader_card {
    margin-bottom: 20px;
  }
  .small_card img {
    width: 150px;
  }

  .test_user h6 {
    font-size: 18px;
    line-height: 21px;
  }

  .small_slider .slick-prev,
  .small_slider .slick-next {
    display: none !important;
  }

  .pressItem {
    margin-bottom: 30px;
  }

  section,
  .our_achievement {
    padding: 50px 0;
  }

  .main_hd {
    margin-bottom: 22px;
  }

  .catagory_cont_hldr {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .most_product_cont figure img {
    height: 250px;
    margin: 0;
    object-fit: cover;
    width: 100%;
    object-position: center;
  }
  .most_product_cont {
    height: auto;
    padding: 20px;
    width: 100%;
  }

  .most_viewed .main_hd h2:after {
    height: calc(100% - 6px);
  }

  .most_product_cont h4 {
    min-height: auto;
    margin-bottom: 27px;
    font-size: 20px;
  }

  .most_viewed_product_slider .slick-prev {
    top: 30%;
    right: inherit;
    left: 7px;
  }

  .most_viewed_product_slider .slick-next {
    top: 30%;
    right: 7px;
    left: inherit;
  }

  .small_card h6 {
    width: auto;
    padding-right: 0;
    font-size: 16px;
    padding-left: 13px;
  }

  .testi_video_slider_hldr {
    flex-wrap: wrap;
  }

  .big_slider_hldr,
  .small_slider_hldr {
    width: 100%;
  }

  .site-footer {
    padding: 40px 0 0;
  }

  .why_choose_hldr .why_card,
  .why_choose_hldr .why_card p {
    min-height: auto;
  }

  /* .modal.show .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
  } */
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main_hd h2:after {
    height: calc(100% - 17px);
  }
  .inthePress .main_hd h2:after {
    height: calc(100% - 33px);
  }
  .testimonial_hldr .main_hd img {
    width: 43px;
    top: -28px;
  }
  .test_user h6 {
    font-size: 18px;
    line-height: 21px;
  }
  .testimonial_hldr .catagory_tabs {
    justify-content: center;
  }
  .vfr iframe {
    height: 430px;
  }
  .why_card p {
    min-height: auto;
  }
  .booking_btn_hldr {
    left: -50px;
  }
  .banner_text_hldr {
    top: 45%;
    left: 0;
  }
  .banner_text h1 {
    font-size: 50px;
    line-height: 55px;
  }
  .booking_btn_hldr a span {
    display: none;
  }

  .booking_btn_hldr a {
    padding: 10px;
  }

  .booking_btn_hldr a img {
    max-width: 30px;
  }

  /* .banner_frm_hldr {
    margin: 0 50px;
  } */

  /* .ac_counter,
  .our_achievement_hldr .row>div:nth-child(4) .ac_counter {
    padding-left: 60px;
  } */

  .missedCallWrapper h5 span {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .booking_btn_hldr a {
    padding: 10px 0;
  }

  .missedCallWrapper h5 span {
    width: 35px;
    height: 35px;
  }

  .banner_frm_hldr {
    margin: 0 80px;
  }
}

@media (max-width: 360px) {
  .banner_text_hldr {
    top: 110px;
  }
  .form_toll_free_hldr {
    gap: 15px;
  }
  .banner_form {
    bottom: 99px;
  }
  .small_card img {
    width: 125px;
  }
  .facility_text_slider .slick-prev,
  .facility_text_slider .slick-next {
    top: 200px !important;
  }
}
