*,
::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 {
  --arialFont: Arial;
  --blueColor1: #00489b;
  --blueColor2: #7bade8;
  --blueColor3: #d9eaff;
}

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

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--arialFont);
}

.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: 100px 0;
}

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

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

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

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

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

/* p {
  margin: 0;
} */

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

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

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

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  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: #565656;
}

.mm-navbar__title > span {
  color: #fff;
}

.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 =================== */
.site-main {
  padding-top: 80px;
}

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  transition: 0.5s all ease-in-out;
}

.header_top {
  padding: 7px 0;
  background: #00489b;
}

/* .header_top .container-fluid {
  padding: 0 25px;
} */

#menu-main-menu li a {
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
}

#menu-main-menu li.current-menu-item a,
#menu-main-menu li.current-menu-parent a {
  color: #000;
}

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

.header_top_hldr .logo_1 {
  position: relative;
  height: 100%;
  z-index: 1;
  padding-right: 20px;
}

.header_top_hldr .logo_1::before {
  position: absolute;
  content: "";
  background-color: #004a99;
  height: calc(100% + 14px);
  width: 100vw;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}

#menu-main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

#menu-main-menu li {
  position: relative;
}

#menu-main-menu li i {
  margin-left: 5px;
}

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

#menu-main-menu li ul.sub-menu li a:hover {
  background: linear-gradient(90deg, #00489b 0%, #7bade8 100%);
  color: var(--whitecolor);
  padding-left: 19px;
  color: #fff;
}

#menu-main-menu li ul.sub-menu li a {
  justify-content: space-between;
  font-size: 14px;
  color: #000;
  padding: 10px 15px;
}

#menu-main-menu li ul.sub-menu li:not(:last-child),
#menu-main-menu li ul.sub-menu 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;
}

#menu-main-menu li a:hover {
  color: var(--yellowColor);
}

.toll-free-box .timing {
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}

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

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

.srch_bx input::placeholder {
  color: #fff;
}

.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;
  /* font-size: 12px; */
}
.toll-free-box a:hover {
  color: var(--yellowColor);
}

.form_toll_free_hldr {
  display: flex;
  align-items: center;
  gap: 35px;
}

.logo_2 {
  position: relative;
  height: 100%;
  z-index: 1;
  padding-left: 10px;
}

.logo_2::after {
  position: absolute;
  content: "";
  height: calc(100% + 46px);
  width: 100vw;
  background: #f4f4f4;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}

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

/*========================== banner start ==========================*/
.banner_slide_hldr {
  position: relative;
  overflow: hidden;
}

.banner_slide_hldr figure {
  margin: 0;
  width: 100%;
  height: 680px;
}

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

.banner_hd {
  max-width: 500px;
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
}

.banner_hd h1 {
  font-family: Arial;
  font-weight: 700;
  font-size: 55px;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
  /* text-transform: uppercase; */
  color: #ffffff;
  margin-bottom: 30px;
}

.banner_hd h2 {
  font-family: Arial;
  font-weight: 700;
  font-size: 55px;
  line-height: 65px;
  letter-spacing: 0%;
  text-align: center;
  /* text-transform: uppercase; */
  color: #ffffff;
  margin-bottom: 30px;
}

.banner_hd p {
  font-family: Arial;
  font-weight: 700;
  font-size: 31px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}

.bnr_desc {
  position: absolute;
  bottom: 50px;
  left: 100px;
}

.bnr_desc h6 {
  font-family: Arial;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  text-align: left;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.bnr_desc ul li {
  position: relative;
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}

.bnr_desc ul li:not(:first-child)::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: #fff;
  border-radius: 50%;
  left: -17px;
  top: 10px;
}

.banner_slider .slick-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translate(0, -50%);
}

.banner_slider .slick-dots li button {
  font-size: 0;
  border: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--blueColor3);
  transition: all 0.5s ease-in-out;
}

.banner_slider .slick-dots li.slick-active button {
  height: 14px;
  width: 14px;
  background: var(--blueColor2);
}

/*=========================== banner end ===========================*/
.main_hd {
  position: relative;
  margin-bottom: 40px;
}

.main_hd h2 {
  font-family: Arial;
  font-weight: 700;
  font-size: 40px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.product_card figure {
  padding: 30px 35px;
  background: var(--blueColor3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

.product_card figure img {
  margin: auto;
  height: 105px;
  width: auto;
  object-fit: contain;
  object-position: top center;
}

.pp_txt {
  border-radius: 10px;
  overflow: hidden;
  background: var(--blueColor2);
  padding: 23px;
}

.pp_txt h6 {
  font-family: Arial;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.cmn_btn {
  padding: 7px 30px;
  border-radius: 40px;
  background: var(--blueColor1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.5s ease-in-out;
}

.cmn_btn span {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}

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

.cmn_btn:hover img {
  rotate: 45deg;
}

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

.product_slider .slick-list {
  margin: 0 -10px;
}

.product_slider .slick-dots {
  display: flex;
  position: absolute;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  bottom: -40px;
}

.product_slider .slick-dots li button {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 0;
  background: #b9babc;
  font-size: 0;
  transition: all 0.5s ease-in-out;
}

.product_slider .slick-dots li.slick-active button {
  height: 10px;
  width: 10px;
  background: #00489b;
}

.why {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.why_img {
  width: 40%;
  margin: 0;
}

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

.why_cont {
  width: 60%;
  padding: 30px 50px 30px 50px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
}

.why_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.why_list li {
  width: 45%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

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

.why_txt h6 {
  font-family: Arial;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #000;
  margin-bottom: 15px;
}

.why_txt {
  width: calc(100% - 95px);
}

.pdf_sec ul li {
  list-style-type: disc;
  padding-bottom: 5px;
}

.pdf_sec ul {
  padding: 0 0 0 15px;
}

.site-footer {
  background: #00489b;
  padding: 86px 0 0;
  /* border-top: 5px solid #FFCC00; */
}

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

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

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

.qrImg {
  padding: 1px;
  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 #fff;
  padding-left: 10px;
  display: inline-grid;
  margin-bottom: 30px;
  display: none;
}

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

.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: #000;
  color: #fff;
  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 img {
  transition: 0.5s;
  filter: invert(0);
  height: 12px;
  width: 12px;
}

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

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

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

.footernav {
  display: grid;
}

.footernav li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  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: 10px;
  left: 0;
  border-radius: 50%;
  transition: 0.5s;
}

.footernav li a:hover {
  color: #000;
  transition: 0.5s;
}

.footernav li a:hover::before {
  background: #000;
  transition: 0.5s;
}

.footerContact {
  display: flex;
}

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

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

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

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

.fcContent {
  flex: 1;
}

.fcContent h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}

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

.footerContact {
  margin-top: 90px;
  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: 18px;
  width: 1px;
  background: #fff;
  position: absolute;
  top: 5px;
  right: -15px;
}

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

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

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

.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;
}

.why_sec h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  padding-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

/* 24.7.2025 */

.missedCallWrapper h5 span {
  margin-right: 2px;
  background: #d9eaff;
  width: 38px;
  display: inline-grid;
  height: 38px;
  place-content: center;
  border-radius: 4px;
  color: #002753;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* 28.8.2025 */
.inner_hd {
  margin-bottom: 40px;
  text-align: center;
}

.inner_hd h2 {
  font-family: Arial;
  font-weight: 700;
  font-size: 40px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  position: relative;
  display: inline-block;
  padding: 0 0 30px;
}

.inner_hd h1 {
  font-family: Arial;
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  position: relative;
  display: inline-block;
  padding: 0 0 30px;
}

.quote-form-wrapper.enqury_frm {
  display: block;
}

.product {
  padding-bottom: 140px;
}

.quote-form-wrapper.enqury_frm input[type="checkbox"] {
  height: 15px;
  border: 1px solid #000;
  display: inline-block;
  width: 15px;
  padding: 0;
  border-radius: 3px;
  position: relative;
  top: 1px;
}
/* .inner_hd h2::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 3px;
  background: var(--blueColor1);
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
} */

.product_service h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #004a99;
  display: inline-block;
  padding: 8px 18px;
}

.service_area {
  margin-top: 85px;
}

.service_area figure {
  margin-bottom: 0;
}

/* .product_service p {
  padding-top: 15px;
  color: #000;
  font-family: Arial;
} */

.product_service h5 {
  padding: 40px 0 30px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  font-family: Arial;
}

.product_service h5 i {
  color: #00489b;
}

.product_service ul {
  padding-top: 15px;
  padding-left: 5px;
}

.product_service ul li {
  padding-bottom: 10px;
  font-size: 16px;
  font-family: Arial;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product_service ul li i {
  color: #00489b;
  padding-right: 5px;
}

.enquiry_sec {
  border-top: 1px solid #0000002b;
  padding: 30px 0;
}

.enqury_frm {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 15px;
  /* position: sticky;
  top: 90px; */
  background: #f1f1f1;
  border-radius: 10px;
  padding: 25px;
}

.outer_right_panel {
  position: sticky;
  top: 90px;
}

.enqury_frm h3 {
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 30px;
}

.enqury_frm input {
  height: 45px;
  border: transparent;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.enqury_frm textarea {
  height: 85px;
  border: transparent;
}

.form-check .form-check-input {
  margin-right: 10px;
  display: inline-block;
  clear: none;
  cursor: pointer;
  line-height: 0;
  height: 1.4em;
  border-radius: 0.2em;
  text-align: center;
  vertical-align: middle;
  width: 1.4em;
  min-width: 1.4em;
  transition: all 0.2s linear;
  padding: 0;
  border: 1px solid #ccc;
  position: relative;
  top: 5px;
}

.form-check a {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

.get_quote_form .enq_btn {
  width: 100%;
  padding: 7px 0;
  border: none;
  border-radius: 40px;
  background-color: #003b82;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: 0.4s all ease-in-out;
  height: auto;
  padding: 13px 35px;
  margin: 0;
}

.get_quote_form .form-submit p {
  margin-bottom: 0;
}

.get_quote_form .form-check {
  margin-bottom: 0;
  text-align: left;
}

.get_quote_form .form-check .wpcf7-list-item {
  margin-left: 0;
}

.enqury_frm button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* Choose a vibrant color for the effect */
  z-index: -1;
  /* Place behind the text */
  transform: translateX(-100%);
  /* Start off-screen to the left */
  color: #fff;
  transition: transform 0.4s ease-in-out;
  /* Slide-in transition */
}

.enqury_frm button:hover:before {
  transform: translateX(0);
  /* Slide in completely on hover */
}

.product_service .dwnld {
  background-color: #00489b;
  color: #fff;
  padding: 7px 15px;
  border: none;
  font-size: 15px;
  border-radius: 30px;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

.product_service .dwnld:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* Choose a vibrant color for the effect */
  z-index: -1;
  /* Place behind the text */
  transform: translateX(-100%);
  /* Start off-screen to the left */
  color: #fff;
  transition: transform 0.4s ease-in-out;
  /* Slide-in transition */
}

.product_service .dwnld:hover:before {
  transform: translateX(0);
  /* Slide in completely on hover */
}

/* .manual_bx {
  box-shadow: 0 23px 28px rgb(0 0 0 / 5%), 0 2px 22px rgb(0 0 0 / 7%);
  padding: 35px;
  border-radius: 15px;
} */

.service_left {
  box-shadow:
    0 23px 28px rgb(0 0 0 / 5%),
    0 2px 22px rgb(0 0 0 / 7%);
  padding: 35px;
  border-radius: 0 0 15px 15px;
}

.inner_hd.text-left h2 {
  text-align: left;
}

.inner_hd.text-left {
  text-align: left;
}

.parts_left {
  margin-top: 50px;
}

.product_card_inner .product_card figure {
  padding: 30px 35px;
  background: var(--blueColor3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
}

.product_card_inner .product_card figure::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(0px);
  /* ✅ must have unit */
  opacity: 0;
  transition: 0.4s all ease-in-out;
}

/* Show blur on hover */
.product_card_inner .product_card figure:hover::before {
  opacity: 1;
  filter: blur(12px);
  /* adjust if you want it less blurry */
}

.product_card_inner .product_card:hover figure::before {
  opacity: 1;
}

.product_card_inner .product_card figure img {
  margin: auto;
  height: 200px;
  width: auto;
  object-fit: contain;
  object-position: center;
  display: flex;
  align-items: center;
}

.product_card_inner .product_card .pp_txt {
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  padding: 23px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(0, 50%);
  opacity: 0;
  transition: 0.4s all ease-in-out;
  z-index: -1;
}

.product_card_inner .pp_txt h6 {
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.product_card_inner .product_card:hover .pp_txt {
  opacity: 1;
  transform: translate(0, 0);
  z-index: 1;
}

.product_card_inner .product_card {
  position: relative;
}

.product_card_inner p {
  padding: 0 10%;
}

.service_left ul li img {
  width: 45px;
}

.map {
  border-radius: 15px;
  padding: 15px;
  margin-top: 20px;
}

/* 20.9.2005 */

.product_imgs figure {
  padding: 0 10px;
}

.share_blk {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 10px;
}

.share_blk .share {
  background-color: #003b82cf;
  padding: 16px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.share_blk .share span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.share_icon {
  background-color: #003b82;
  padding: 17px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.share_icon ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.share_icon ul li a {
  background-color: #fff;
  padding: 5px;
}

.prodct_inr_sec {
  padding-bottom: 100px;
}

.pdf_sec h1 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  padding-bottom: 30px;
}

.btn_blk {
  margin-top: 40px;
}

.btn_blk .quote {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 7px 40px;
  border-radius: 40px;
  background-color: #003b82;
  transition: 0.4s all ease-in-out;
  border: 1px solid #003b82;
}

.btn_blk a img {
  transition: 0.4s all ease-in-out;
  margin-left: 5px;
}

.btn_blk .quote:hover {
  background-color: transparent;
  color: #003b82;
  border: 1px solid #003b82;
}

.btn_blk .quote:hover img {
  transform: rotate(45deg);
  filter: brightness(1) invert(0);
}

.btn_blk .brochure {
  font-size: 20px;
  font-weight: 700;
  color: #003b82;
  padding: 7px 40px;
  border-radius: 40px;
  transition: 0.4s all ease-in-out;
  border: 1px solid #003b82;
  margin-left: 15px;
}

.btn_blk .brochure:hover img {
  transform: rotate(-90deg);
  filter: brightness(1) invert(0);
}

.overview_sec {
  padding: 100px 0 100px 0;
  background-color: #f1f1f1;
}

.overview_sec h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.overview_sec h5 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  padding-bottom: 20px;
}

/* .sem_navs {
  padding-top: 40px;
} */

.sem_navs .nav {
  border-bottom: none;
}

.sem_navs ul {
  gap: 10px;
}

.sem_navs ul li .nav-link {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.sem_navs ul li .nav-link.active {
  background-color: #003b82;
  color: #fff;
}

.sem_navs ul li .nav-link:hover {
  border-color: transparent;
}

.nav_cards {
  padding-top: 20px;
}

.nav_cards .nav_card_right {
  background-color: #003b82;
  padding: 25px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 100%;
}

.nav_card_right h5 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}

.nav_card_right ul li {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border-top: 1px solid #ffffff33;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
}

.nav_card_right ul li span {
  font-weight: 700;
}

.nav_cards figure {
  height: 100%;
  margin-bottom: 0;
}

.nav_cards figure img {
  /* object-fit: cover; */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 100%;
  width: 100%;
}

.enquiry_frm {
  padding: 20px;
  background-color: #003b82;
  border-radius: 10px;
}

.enquiry_frm h5 {
  font-size: 20px;
  padding-bottom: 5px;
  font-weight: 700;
  color: #fff;
}

.enquiry_frm input {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
}

.enquiry_frm input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.enquiry_frm textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.enquiry_frm textarea:focus {
  box-shadow: none;
  border-color: transparent;
}

.enquiry_frm .form-check input {
  width: auto;
  height: 10px;
  padding: 7px;
  background-color: transparent;
  border: 1px solid #fff;
}

.enquiry_frm .form-check label {
  font-size: 13px;
  font-weight: 400;
  padding-left: 5px;
  color: #fff;
}

.enquiry_frm .form-check label a {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

.enquiry_frm .form-check {
  margin-bottom: 0;
}

.enquiry_frm .form-check input:focus {
  box-shadow: none;
}

.enquiry_frm button {
  width: 100%;
  padding: 7px 0;
  border: none;
  border-radius: 40px;
  background-color: #000;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: 0.4s all ease-in-out;
}

.enquiry_frm button img {
  padding-left: 5px;
  transition: 0.4s all ease-in-out;
}

.enquiry_frm button:hover img {
  transform: rotate(45deg);
  filter: brightness(1) invert(0);
}

/* .product_detail_slider_sec h2 {
  font-size: 34px;
} */

.prodct_inr_sec figure img {
  border: 1px solid #ccc;
  border-radius: 10px;
}

.inner_bnr figure {
  margin-bottom: 0;
}
/* =======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: #00489b;
  color: #fff;
  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;
  filter: invert(1);
}

.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;
}

.get_quote h2 {
  font-weight: bold;
}
.get_quote_form .form-select {
  height: 45px;
  border: transparent;
}
.get_quote_form .d-flex {
  justify-content: space-between;
  align-items: center;
}
.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: absolute;
}
.overview_sec ul li {
  list-style-type: disc;
}
.overview_sec ul {
  padding: 0 0 0 15px;
}

.overview_sec ul.nav.nav-tabs li {
  list-style: none;
}

.overview_sec ul.nav.nav-tabs {
  padding: 0;
}

.product_service .product_hldr .inner_hd.text-left h1 {
  text-align: left;
  line-height: 45px;
  padding-bottom: 0;
  font-size: 37px;
}
/* ========================== responsive ========================== */
/* @media (min-width:1920px) {
  .product_card figure img {
    margin: auto;
    height: 135px;
    width: auto;
    object-fit: contain;
    object-position: top center;
  }

  .why_img {
    width: 685px;
    margin: 0;
  }

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

  .why_cont {
    width: calc(100% - 685px);
    padding: 91px 175px 91px 60px;
    background: #F1F1F1;
  }

  .why_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .why_list li {
    width: 45%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }
} */

@media (max-width: 1440px) {
  .pdf_sec h1 {
    font-size: 35px;
  }
  .container-fluid {
    padding: 0 30px;
  }

  .srch_bx {
    width: 250px;
  }

  #menu-main-menu {
    gap: 20px;
  }

  .form_toll_free_hldr {
    gap: 20px;
  }

  .logo_2 {
    width: 200px;
  }
  .main_hd h2 {
    font-size: 38px;
  }
}

@media (max-width: 1366px) {
  .logo_2::after {
    height: calc(100% + 57px);
  }
  .main_hd h2 {
    font-size: 35px;
  }
  .container-fluid {
    padding: 0 30px;
  }

  .toll-free-box .timing {
    margin-bottom: 0;
  }

  .srch_bx {
    width: 215px;
  }

  /* #menu-main-menu {
    gap: 15px;
  } */

  .form_toll_free_hldr {
    gap: 9px;
  }

  .logo_2 {
    width: 190px;
  }
}

@media (max-width: 1199px) {
  /* .logo_2::after {
    position: absolute;
    content: "";
    height: calc(100% + 58px);
    width: 100vw;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
  } */
  .mobileMenuButton {
    text-decoration: none;
    width: 25px;
    position: absolute;
    top: 22px;
    right: 15px;
    z-index: 11;
  }
  .main_menu {
    /*display: none !important;*/
  }

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

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

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

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

  .why_img {
    width: auto;
    margin: 0;
  }

  /* .why_list li {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  } */

  .why_cont {
    width: calc(100%);
    padding: 50px 15px;
    background: #f1f1f1;
  }

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

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

  .main_menu {
    display: none;
  }

  .mobileMenuButton {
    display: none;
  }

  .mm-menu--position-bottom,
  .mm-menu--position-left-front,
  .mm-menu--position-right-front,
  .mm-menu--position-top {
    z-index: 10;
    -webkit-transform: translate3d(
      var(--mm-translate-horizontal),
      var(--mm-translate-vertical),
      0
    );
    transform: translate3d(
      var(--mm-translate-horizontal),
      var(--mm-translate-vertical),
      0
    );
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property:
      transform,
      -webkit-transform;
  }

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

  .mm-listitem.active {
    background: transparent;
  }

  .mm-btn--prev:before {
    border-color: #fff;
  }

  .mm-btn--next:after {
    border-color: #000;
  }
}

@media (max-width: 1024px) {
  .wpcf7 .wpcf7-recaptcha iframe {
    margin-bottom: 0;
    transform: scale(0.8);
    position: relative;
    left: -32px;
  }
  .header_top_hldr .logo_1 {
    padding-right: 0;
    width: 130px;
  }
  .logo_2 {
    width: 130px;
  }
  .logo_2::after {
    height: calc(100% + 45px);
  }
  #menu-main-menu li a {
    font-size: 14px;
  }
  .site-main {
    padding-top: 67px;
  }
  .inner_hd h1,
  .product_service .product_hldr .inner_hd.text-left h1 {
    text-align: left;
    padding-bottom: 0;
    font-size: 32px;
    line-height: 39px;
  }
  .product_service h5 {
    padding: 25px 0 10px;
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .logo_2 {
    width: 200px;
  }
  .toll-free-box,
  .toll-free-box a,
  .toll-free-box .timing {
    color: #000;
  }
  .toll_free {
    position: absolute;
    z-index: 9;
    right: 74px;
  }
  .main_menu {
    display: none !important;
  }
  .banner_hd {
    max-width: 100%;
    width: 100%;
    top: 19%;
  }

  .banner_hd h1,
  .banner_hd h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .banner_hd p {
    font-size: 25px;
  }
  .inner_hd h1,
  .product_service .product_hldr .inner_hd.text-left h1 {
    font-size: 35px;
    line-height: 44px;
  }
  .sem_navs {
    padding-top: 0;
  }
  .overview_sec {
    padding: 80px 0 80px 0;
  }
  .bnr_desc {
    top: 193px;
    bottom: inherit;
    left: 50%;
    transform: translateX(-50%);
  }

  .header_top_hldr {
    gap: 30px;
    justify-content: inherit;
  }

  .mobileMenuButton {
    text-decoration: none;
    width: 25px;
    position: absolute;
    top: 22px;
    right: 15px;
    z-index: 11;
    display: block;
  }

  .bnr_desc h6 {
    text-align: center;
  }

  .banner_slide_hldr figure {
    height: 500px;
  }

  .why_list li {
    width: 100%;
  }

  .product_card_inner .product_card figure {
    padding: 15px;
  }

  .product_card_inner {
    padding: 80px 0;
  }

  .footerContact {
    margin-top: 30px;
  }

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

@media (max-width: 768px) {
  .inner_hd h1,
  .product_service .product_hldr .inner_hd.text-left h1 {
    font-size: 32px;
    line-height: 39px;
  }
  .enqury_frm {
    padding: 15px;
  }
  .get_quote_form .enq_btn {
    padding: 13px 28px;
  }
  .service_left {
    padding: 15px;
  }
  .service_area {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .overview_sec .nav_card_right ul {
    padding: 0;
  }
  .product_service .inner_hd {
    margin-bottom: 0;
  }
  .product_service h4 {
    font-size: 16px;
    padding: 4px 13px;
    display: table;
    margin: auto;
  }
  .parts_left {
    margin-top: 30px;
  }
  .inner_hd h1,
  .product_service .product_hldr .inner_hd.text-left h1 {
    font-size: 25px;
    line-height: 30px;
    padding-bottom: 20px;
    text-align: center;
  }
  .main_hd h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .get_quote_form .form-check {
    padding: 0;
  }
  .service_area .get_quote_form .form-check,
  .product_service .get_quote_form .form-check {
    padding-left: 1.5em;
  }
  .logo_2:after {
    display: none;
  }
  .product_card_inner p {
    padding: 0;
  }
  .get_quote .d-flex {
    display: block !important;
  }
  .wpcf7 .wpcf7-recaptcha iframe {
    transform: scale(0.8);
    position: relative;
    left: -27px;
  }
  .followUs.hide {
    opacity: 0;
    visibility: hidden;
    /* transform: translateX(100%); */
  }
  .footerContent .footernav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .footerContent.active .footernav {
    max-height: 500px;
  }
  .footerContent h3::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;
  }
  .footerContent.active h3::after {
    transform: translateY(-50%) rotate(-135deg);
  }
  .banner_slide_hldr:after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
  }
  .header_top_hldr .logo_1 {
    padding-right: 10px;
  }
  .header_top {
    padding: 9px 0;
    background: #f4f4f4;
  }
  .logo_2::after {
    height: calc(100% + 41px);
    background: transparent;
  }
  .toll_free {
    position: absolute;
    z-index: 9;
    right: 53px;
  }
  /* 4.3.2026 */
  .social_links {
    background: var(--yellowColor);
    width: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .followUs {
    top: 60%;
    display: block;
    right: 5px !important;
  }
  .followUs ol {
    opacity: 0;
    transition: all 0.5s;
    max-height: 0;
    overflow: hidden;
  }
  .followUs.cameIn ol {
    opacity: 1;
    transition: all 0.5s;
    max-height: 400px;
  }
  .enqury_frm {
    margin-top: 25px;
  }
  /* end */
  .site-main {
    padding-top: 52px;
  }
  .main_menu {
    display: none !important;
  }

  .header_top_hldr .logo_1::before {
    height: calc(100% + 18px);
  }
  .service_left {
    padding: 25px;
  }
  .get_quote_form .enq_btn {
    width: auto;
  }
  .product_service h5 {
    display: flex;
    gap: 10px;
    padding-bottom: 0;
  }

  .inner_hd h2::after {
    display: none;
  }

  .inner_bnr img {
    height: 250px;
    object-fit: cover;
  }

  .product_inner_slider .slick-next {
    position: absolute;
    bottom: 50%;
    right: 0;
    left: auto;
    transform: translate(0%, 50%);
    font-size: 0;
    background: url("../images/next.png") no-repeat;
    height: 41px;
    width: 41px;
    border: none;
  }

  .product_inner_slider .slick-prev {
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translate(0%, 50%);
    font-size: 0;
    background: url("../images/prev.png") no-repeat;
    height: 41px;
    width: 41px;
    border: none;
    z-index: 1;
  }

  .share_icon {
    background-color: #003b82;
    padding: 13px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .share_blk .share span {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
  }

  .prodct_inr_sec {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .inner_bnr {
    padding-bottom: 0 !important;
  }

  .overview_sec {
    padding: 40px 0;
    background-color: #f1f1f1;
  }

  .pdf_sec h2 {
    font-size: 28px;
  }

  .btn_blk .brochure {
    font-size: 15px !important;
    padding: 7px 15px !important;
    width: auto;
    margin-left: 5px;
  }

  .btn_blk .quote {
    font-size: 15px !important;
    font-weight: 700;
    padding: 7px 15px !important;
  }

  .overview_sec h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    padding-bottom: 20px;
  }

  .overview_sec h5 {
    padding-bottom: 0;
    font-size: 25px;
  }

  .overview_sec p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding-top: 15px;
  }

  .nav_card_right h5 {
    color: #fff;
    font-size: 20px;
  }

  .nav_card_right ul li {
    border-top: 1px solid #ffffff33;
    padding: 10px 0;
  }

  .nav_cards figure img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .nav_cards .nav_card_right {
    background-color: #003b82;
    padding: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: 10px;
  }

  /* .enqury_frm {
    margin-top: 50px;
  } */

  .product_service .dwnld {
    padding: 8px 13px;
    font-size: 14px;
    margin-top: 10px;
  }

  .inner_bnr {
    padding: 40px 0;
  }

  .footerContent {
    margin-bottom: 15px;
  }

  section {
    padding: 60px 0;
  }

  .inner_hd h2 {
    font-size: 35px;
  }
  .service_area {
    margin-top: 45px;
  }

  .product.product_card_inner {
    padding-bottom: 60px;
  }

  .pdf_sec h1 {
    font-size: 25px;
    padding-bottom: 15px;
  }

  .share_icon ul {
    gap: 7px;
  }

  .footerContent h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
  }

  .bnr_desc {
    position: absolute;
    bottom: 86px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1;
    top: inherit;
  }

  .header_top .container-fluid {
    padding: 0 15px;
  }

  .why {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }

  .why_img {
    width: auto;
    margin: 0;
  }

  .why_list li {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }

  .why_cont {
    width: calc(100%);
    padding: 40px 15px;
    background: #f1f1f1;
  }

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

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

  .site-footer {
    background: #00489b;
    padding: 40px 0 0;
    /* border-top: 5px solid #FFCC00; */
  }

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

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

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

  .copyrightbar p {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #fff;
    text-align: center;
  }

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

  .product {
    padding: 50px 0 100px 0;
  }

  .why_cont_txt h2 {
    text-align: center !important;
  }

  .product_card figure img {
    margin: auto;
    height: 130px;
    width: auto;
    object-fit: contain;
    object-position: top center;
  }

  .header_top_hldr {
    padding-right: 0;
    gap: 10px;
    align-items: center;
  }

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

  .logo_2 {
    width: 140px;
    padding-left: 0;
  }

  .form_toll_free_hldr {
    width: 100%;
  }

  .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;
  }

  .banner_slide_hldr figure {
    margin: 0;
    width: 100%;
    height: 270px;
  }

  .banner_hd {
    top: 28%;
    z-index: 1;
  }

  .banner_hd h1,
  .banner_hd h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 35px;
  }

  .banner_hd p {
    font-size: 16px;
  }

  .bnr_desc h6 {
    font-size: 21px;
    margin-bottom: 15px;
    text-align: center;
  }

  .bnr_desc ul li {
    font-size: 17px;
  }

  .bnr_desc ul {
    gap: 22px;
  }

  .bnr_desc ul li:not(:first-child)::after {
    left: -14px;
    top: 7px;
  }

  .banner_slider .slick-dots {
    flex-direction: inherit;
    left: 50%;
    bottom: 15px;
    transform: translate(0, -50%);
    top: inherit;
  }

  .mobileMenuButton span {
    width: 25px;
    height: 2px;
    border-radius: 4px;
    background: #000;
    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 {
    top: 17px;
  }

  .site-header.sticky {
    transform: translateY(0px);
  }

  .site-header {
    transform: translateY(0px);
  }
}

@media (max-width: 360px) {
  .logo_2 {
    width: 139px;
  }
}
