@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  --ff-mulish: "Mulish", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --lh-heading: 1.2;
  --lh-body: 1.4;
  --fs-xl: 1.25rem;
  --fs-lg: 1.125rem;
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-64: 4rem;
  --fs-40: 2.5rem;
  --fs-36: 2.25rem;
  --fs-32: 2rem;
  --fs-24: 1.5rem;
  --c-heading: #262626;
  --c-body: #7B7B7B;
  --c-body-light: #969696;
  --c-primary: #173B4F;
  --c-secondary: #8f9893;
  --c-success: #1cb81c;
  --c-danger: #de3434;
  --c-warning: #ff701c;
  --c-info: #7189ff;
  --c-dark: #01111a;
  --c-white: #ffffff;
  --c-black: #000000;
  --border-default: #C2C2C2;
  --border-dark: #8C8C8C;
  --bg-default: #F3F5F6;
  --bg-primary-light: #1A75A6;
  --bg-primary-gradient: linear-gradient(180deg, #023C51 0%, #0095D8 100%);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-mulish);
  font-size: var(--fs-base);
  color: var(--c-body);
  line-height: var(--lh-body);
  position: relative;
  z-index: 1;
}
body::before {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #173B4F 0%, #0095d8 100%);
  height: 100dvh;
  z-index: -1;
}

a {
  text-decoration: none;
  color: var(--c-body);
}

span,
sub,
sup,
a {
  display: inline-block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: var(--lh-heading);
  font-family: var(--ff-mulish);
  color: var(--c-heading);
}

h1 {
  font-weight: 800;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: var(--c-heading);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 111;
  opacity: 0;
  visibility: hidden;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.text-primary {
  color: var(--c-primary) !important;
}

@media (max-width: 1399px) {
  :root {
    --fs-64: 56px;
  }
}
@media (max-width: 1199px) {
  :root {
    --fs-64: 48px;
    --fs-40: 36px;
    --fs-36: 30px;
    --fs-24: 22px;
  }
}
@media (max-width: 575px) {
  :root {
    --fs-64: 38px;
    --fs-40: 28px;
    --fs-36: 28px;
    --fs-24: 20px;
  }
}
/* button css start */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-base);
  font-weight: 700;
  padding: 6px 25px;
  height: 44px;
  transition: all ease 0.3s;
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px rgba(123, 123, 123, 0.2);
}
.btn.shadow-none:focus {
  box-shadow: 0 0 0 2px var(--c-black) !important;
}
.btn:focus {
  box-shadow: 0 0 0 2px var(--c-black);
}
.btn svg path {
  transition: all ease 0.3s;
}
.btn.btn-light {
  background-color: var(--c-white);
  color: var(--c-primary);
  border-color: transparent;
}
.btn.btn-light:hover, .btn.btn-light:active, .btn.btn-light:focus {
  color: var(--c-white);
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn.btn-primary {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  background-color: var(--c-white);
  color: var(--c-primary);
}
.btn.btn-outline-primary {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:active, .btn.btn-outline-primary:focus {
  background-color: var(--c-primary);
  color: var(--c-white);
}
.btn.btn-outline-primary:hover svg path, .btn.btn-outline-primary:active svg path, .btn.btn-outline-primary:focus svg path {
  fill: var(--c-white) !important;
}

/* button css end */
.form-label,
.form-check-label {
  color: var(--c-heading);
  font-weight: 500;
}

.form-control {
  height: 44px;
  color: var(--c-body);
  font-weight: 500;
  padding: 0px 12px;
  border-radius: 12px;
  border-color: transparent;
  background-color: var(--bg-default);
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 59, 79, 0.1450980392);
  border-color: var(--c-primary);
}
.form-control::-moz-placeholder {
  color: #7b7b7b;
}
.form-control::placeholder {
  color: #7b7b7b;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border-color: var(--c-primary);
}
.form-check-input:checked {
  background-color: var(--c-primary);
  border-color: var(--c-primary) !important;
}
.form-check-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 0.25rem rgba(23, 59, 79, 0.1450980392);
}

textarea.form-control {
  height: 135px;
}

.pagination {
  gap: 12px;
}
.pagination li:first-child {
  padding-right: 20px;
}
@media (max-width: 575px) {
  .pagination li:first-child {
    margin-inline-end: auto;
  }
}
@media (min-width: 768px) {
  .pagination li:first-child {
    padding-right: 48px;
  }
}
.pagination li:first-child .page-link {
  background-color: var(--c-primary);
  color: var(--c-white);
  font-size: 16px;
}

.pagination li:last-child {
  padding-left: 20px;
}
@media (max-width: 575px) {
  .pagination li:last-child {
    margin-inline-start: auto;
  }
}
@media (min-width: 768px) {
  .pagination li:last-child {
    padding-left: 48px;
  }
}
.pagination li:last-child .page-link {
  background-color: var(--c-primary);
  color: var(--c-white);
  font-size: 16px;
}
.pagination li .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-white);
  box-shadow: none;
  border: none;
  border-radius: 12px !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-primary);
}
@media (min-width: 992px) {
  .pagination li .page-link {
    font-size: 22px;
    width: 44px;
    height: 44px;
  }
}
.pagination li .page-link.disabled {
  background-color: var(--c-primary);
  opacity: 0.4;
  color: var(--c-white);
  font-size: 16px;
}
.pagination li .page-link.active {
  background-color: #f3f5f6;
}

.custom-select-wrapper {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  color: #262626;
}
.custom-select-wrapper .custom-select-trigger {
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  padding-block: 6px;
}
.custom-select-wrapper .custom-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #eaeaea;
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  padding: 16px;
  gap: 16px;
  min-width: 200px;
}
.custom-select-wrapper .custom-options.show {
  display: flex;
  animation: fadeIn 0.15s ease;
}
.custom-select-wrapper .custom-option {
  padding: 6px 8px;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.custom-select-wrapper .custom-option:hover {
  background: #f2f2f2;
}
.custom-select-wrapper .custom-option.selected {
  background: #f2f2f2;
}
.custom-select-wrapper svg {
  transition: transform 0.15s;
}
.custom-select-wrapper .open svg {
  transform: rotate(180deg);
}

.header-top {
  padding-block: 7px;
  background-color: var(--c-white);
}
@media (max-width: 991px) {
  .header-top {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    display: none;
  }
}

.logo {
  max-width: 184px;
  transition: all 0.3s linear;
}
@media (min-width: 992px) {
  .logo {
    transform: translateY(-50%);
  }
}
@media (max-width: 991px) {
  .logo {
    max-width: 113px;
  }
}
.logo img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s linear;
}

.horizontal {
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
}

.search-toggler {
  color: var(--c-body);
  font-size: 18px;
  border: none;
  box-shadow: none;
}

.search-toggler .fa-xmark {
  display: none;
}

.search-toggler i {
  animation: fadeIn 0.3s linear;
}

.search-wrapper {
  position: relative;
}
.search-wrapper .search-box-wrapper {
  position: absolute;
  right: 0;
  top: 100%;
  max-width: 400px;
  width: 100%;
  min-width: 350px;
  z-index: 1111;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transform-origin: center;
  transition: all 0.3s linear;
}
.search-wrapper .search-box-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.search-wrapper .search-box {
  position: relative;
}
.search-wrapper .search-box input {
  height: 50px;
  padding-inline: 26px;
  border-color: var(--border-default);
}
.search-wrapper .search-box input::-moz-placeholder {
  color: var(--c-body);
}
.search-wrapper .search-box input::placeholder {
  color: var(--c-body);
}
@media (max-width: 991px) {
  .search-wrapper .search-box input {
    transition: all ease 0.3s;
    min-width: 280px;
    z-index: 10;
    height: 44px;
    padding-inline: var(--fs-base);
    padding-right: 46px;
  }
  .search-wrapper .search-box input.search-input.open {
    opacity: 1;
    visibility: visible;
  }
}
.search-wrapper .search-box button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background-color: var(--c-primary);
  width: 38px;
  height: 38px;
  padding: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: none;
  transition: all ease 0.3s;
  color: var(--c-white);
  font-size: var(--fs-base);
}
@media (max-width: 991px) {
  .search-wrapper .search-box button {
    position: absolute;
    transform: translateY(0%);
    position: absolute;
    top: 3px;
    bottom: 3px;
    right: 3px;
    z-index: 11;
  }
}

.header-bottom {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s linear;
}
.header-bottom:has(.show)::before {
  opacity: 0;
}
.header-bottom.bg-white .main-menu li a {
  color: var(--c-black);
}
.header-bottom.bg-white .main-menu li a:focus, .header-bottom.bg-white .main-menu li a:hover, .header-bottom.bg-white .main-menu li a.active {
  color: var(--c-body);
}
.header-bottom.sticky {
  background-color: var(--c-primary) !important;
}
.header-bottom.sticky::before {
  opacity: 0;
}
.header-bottom.sticky .main-menu > li > a {
  color: var(--c-white);
}
.header-bottom.sticky .navbar {
  transform: translateY(0%) !important;
}
@media (min-width: 992px) {
  .header-bottom.sticky .logo {
    transform: translate(0);
  }
  .header-bottom.sticky .logo img {
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .header-bottom::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 35px;
    background-color: var(--c-white);
    transition: all 0.3s ease;
  }
  .header-bottom .navbar {
    padding-block: 12px !important;
    transition: all 0.3s linear;
  }
  .header-bottom.scrolled .navbar-collapse .main-menu {
    height: 100dvh;
  }
}
@media (max-width: 991px) {
  .header-bottom .navbar-collapse .main-menu {
    padding-top: 20px;
    height: calc(100dvh - 190px);
    overflow-y: auto;
  }
}
.header-bottom .search-toggler {
  height: 44px;
  width: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
}
.header-bottom .search-toggler img {
  max-width: 70%;
}

.main-menu {
  gap: var(--fs-base);
}
@media (max-width: 1199px) {
  .main-menu {
    gap: 12px;
  }
}
.main-menu li {
  line-height: 1;
}
.main-menu li:hover .mega-menu {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.main-menu li a {
  font-weight: 600;
  color: var(--c-white);
  transition: all ease 0.3s;
}
@media (max-width: 1199px) {
  .main-menu li a {
    font-size: var(--fs-sm);
  }
}
.main-menu li a.nav-link {
  padding-block: 24px;
  padding-inline: var(--fs-sm) !important;
}
@media (min-width: 1200px) {
  .main-menu li a.nav-link {
    padding-inline: var(--fs-base) !important;
  }
}
@media (max-width: 991px) {
  .main-menu li a.nav-link {
    padding-block: var(--fs-base);
  }
  .main-menu li a.nav-link.menu-open i {
    transform: rotate(-180deg);
  }
}
.main-menu li a i {
  transition: all ease 0.3s;
  padding: 2px 10px;
}
@media (min-width: 992px) {
  .main-menu li a:focus i {
    transform: rotate(-180deg);
  }
}
.main-menu li a.active, .main-menu li a:hover {
  color: #bbbbbb;
}
@media (min-width: 992px) {
  .main-menu li a.active i, .main-menu li a:hover i {
    transform: rotate(-180deg);
  }
}

@media (min-width: 992px) {
  .main-menu .nav-item .nav-link:focus {
    /*
    background-color: var(--c-white);
    */
    color: var(--c-white);
  }
}
@media (max-width: 991px) {
  .main-menu .nav-item .nav-link:focus {
    border-radius: 12px;
    color: var(--c-white);
  }
}

.main-menu .nav-item .nav-link:focus ~ .mega-menu {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--c-white);
  z-index: 99;
  padding-top: 36px;
  padding-bottom: 36px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .mega-menu {
    transform: scaleY(0.9);
  }
}
.mega-menu:focus-within {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media (max-width: 991px) {
  .mega-menu {
    padding-bottom: 60px;
    display: none;
    position: initial;
    transition: none;
    padding-top: 10px;
    box-shadow: none;
    padding-bottom: 40px;
    opacity: 1;
    visibility: visible;
    z-index: 9999999;
  }
}
.mega-menu li {
  margin-bottom: 7px;
}
.mega-menu li a {
  font-weight: 400;
  color: var(--c-black);
  line-height: 1.3;
}
.mega-menu li a:hover {
  background-color: transparent;
}
.mega-menu .lees-voor {
  text-align: right;
  margin-bottom: 24px;
}
.mega-menu .lees-voor img {
  max-width: 175px;
}
@media (max-width: 991px) {
  .mega-menu .lees-voor {
    text-align: start;
  }
}

.mega-about-content {
  max-width: 340px;
}
.mega-about-content .about-title {
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--c-black);
  padding: 6px;
  text-transform: uppercase;
}
.mega-about-content .about-link-list li {
  position: relative;
}
.mega-about-content .about-link-list li:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.mega-about-content .about-link-list li a {
  border-radius: 6px;
  padding: 6px;
  font-weight: 600;
  display: block;
}
.mega-about-content .about-link-list li a:hover {
  background-color: #f2f2f2;
  color: var(--c-heading);
}

.has-submenu {
  margin-bottom: 0 !important;
  padding-bottom: 18px;
}
.has-submenu > a {
  padding-right: 40px;
}
.has-submenu .submenu-open-icon {
  position: absolute;
  right: 0;
  top: -5px;
  cursor: pointer;
  padding: 6px;
  margin-inline-start: auto;
  transition: all 0.3s linear;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.has-submenu .submenu-open-icon:hover {
  background-color: rgba(0, 0, 0, 0.0823529412);
}
.has-submenu .submenu-open-icon {
  transform: rotate(-90deg);
}
.has-submenu .submenu-open-icon.active {
  transform: rotate(0);
}

.submenu {
  background-color: var(--c-white);
  z-index: 2;
  display: none;
  padding-top: 12px;
  padding-left: var(--fs-base);
}

.submenu-open-icon:focus {
  outline: 1px solid var(--c-black);
}

.dropdown-wrapper {
  position: relative;
  z-index: 100;
}

.lang-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3803921569);
  padding: 2px 8px;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 500;
}

.lang-button:hover {
  background-color: #f1f5f9;
}

.flag-icon {
  width: 1rem;
  margin-right: 6px;
}

.lang-button .arrow-icon {
  margin-left: 6px;
  transition: all 0.3s linear;
}

.c-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-bottom: 0.5rem;
  width: 10rem;
  background-color: var(--c-white);
  z-index: 10000;
  box-shadow: 0px 3.52px 40px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 12px;
  padding: 12px;
  max-height: 200px;
  overflow-y: auto;
}
.c-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  line-height: 1;
}
.c-dropdown-menu .dropdown-item.selected {
  background-color: var(--c-primary);
  color: var(--c-white);
}
.c-dropdown-menu .dropdown-item:hover {
  color: var(--c-primary);
  background-color: #e5e5e5;
}
.c-dropdown-menu .dropdown-text {
  font-size: var(--fs-sm);
  font-family: inherit;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

.phone-text, .phone-text a {
  font-size: var(--fs-sm);
  color: var(--c-primary);
  font-weight: 500;
  text-decoration: none;
}

.navbar-toggler {
  height: 44px;
  width: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
}
.navbar-toggler img {
  max-width: 70%;
}

@media (min-width: 992px) {
  .opacity-lg-1 {
    opacity: 1 !important;
    visibility: visible;
  }
}
/* header area end */
/* footer section start */
.footer-section {
  padding-block: 40px;
}
@media (min-width: 576px) {
  .footer-section {
    padding-block: 60px;
  }
}

.footer-left-content .footer-logo img {
  max-width: 170px;
}
@media (min-width: 576px) {
  .footer-left-content .footer-logo img {
    max-width: 100%;
  }
}
.footer-left-content p {
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .footer-left-content p {
    margin-bottom: 30px;
  }
}

.subscribe-form {
  margin-top: 25px;
}
@media (min-width: 576px) {
  .subscribe-form {
    margin-top: 40px;
  }
}
.subscribe-form form .form-control {
  height: 36px;
  background-color: transparent;
  border-color: var(--border-dark);
  border-radius: 6px;
}
.subscribe-form h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .subscribe-form h3 {
    margin-bottom: 24px;
  }
}
.subscribe-form .btn,
.text-newsletter-button {
  height: 40px;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.social-icons li a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-primary);
  transition: all 0.3s ease;
}
.social-icons li a:hover {
  background-color: #0095D8;
}

.footer-widget h3 {
  font-weight: 500;
  color: var(--c-primary);
  font-size: var(--fs-24);
  margin-bottom: 12px;
}
.footer-widget.footer-contact p {
  margin: 0; padding: 0;
}
.footer-widget.footer-contact li,
.footer-widget.footer-contact p {
  font-size: var(--fs-sm);
}
.footer-widget.footer-contact li:not(:last-child),
.footer-widget.footer-contact p:not(:last-child) {
  margin-bottom: 8px;
}
.footer-widget.footer-contact li a,
.footer-widget.footer-contact p a {
  color: var(--c-primary);
  text-decoration: underline;
}
.footer-widget .footer-links.style-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer-widget .footer-links p {
  margin: 0; padding: 0;
}
.footer-widget .footer-links li,
.footer-widget .footer-links p {
  font-size: var(--fs-sm);
}
.footer-widget .footer-links li:not(:last-child),
.footer-widget .footer-links p:not(:last-child) {
  margin-bottom: 8px;
}
.footer-widget .footer-links li a,
.footer-widget .footer-links p a {
  color: var(--c-body);
}
.footer-widget .footer-links li a:hover,
.footer-widget .footer-links p a:hover {
  color: var(--c-primary);
}

/* footer section end */
/* sub footer start */
.sub-footer {
  background-color: var(--c-primary);
  padding-block: 12px;
}
@media (min-width: 768px) {
  .sub-footer {
    padding-block: 8px;
  }
}

.copyright-text {
  color: var(--c-white);
  font-size: var(--fs-sm);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .copyright-text {
    margin-bottom: 0;
  }
}
.copyright-text p { margin: 0; padding: 0; }

.privacy-terms p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .privacy-terms p {
    justify-content: end;
  }
}
.privacy-terms a {
  color: var(--c-white);
  font-size: var(--fs-sm);
  transition: all ease 0.3s;
}
.privacy-terms a:hover {
  text-decoration: underline;
}
.privacy-terms p { margin: 0; padding: 0; }

/* sub footer end */
/* hero area start */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 60px;
}
@media (min-width: 992px) {
  .hero-section {
    padding: 60px 0 160px;
  }
}
@media (max-width: 991px) {
  .hero-section .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}
.hero-section .hero-shape1 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 992px) {
  .hero-section .hero-shape1 {
    top: auto;
    bottom: 0;
  }
}
.hero-section .slick-dots {
  z-index: 2;
}
.hero-section .slick-dots li {
  width: auto;
  height: auto;
}
.hero-section .slick-dots li.slick-active button {
  opacity: 1;
}
.hero-section .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: var(--c-white);
  border-radius: 50%;
  opacity: 0.3;
  transition: 0.4s;
}
.hero-section .slick-dots li button::before {
  display: none;
}
.hero-section .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  position: absolute;
  left: 25px;
  z-index: 3;
  background-color: var(--c-white);
  bottom: 15px;
  top: auto;
  border: none;
  transition: all 0.4s linear;
}
.hero-section .slick-arrow::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 32px;
  opacity: 1 !important;
  transform: translateY(-3px);
}
.hero-section .slick-arrow.slick-disabled {
  opacity: 0.3;
}
.hero-section .slick-right-arrow {
  left: auto;
  right: 25px;
}

.hero-content {
  background-color: var(--c-white);
  border-radius: 32px;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-content {
    min-height: 640px;
  }
}
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column-reverse;
    border-radius: 16px;
  }
}
.hero-content .hero-shape2 {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
}
.hero-content .left-content {
  padding: 100px 0 150px 60px;
  max-width: 530px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .hero-content .left-content {
    padding-top: 50px;
    padding-bottom: 110px;
  }
}
@media (max-width: 1399px) {
  .hero-content .left-content {
    max-width: 480px;
    padding-top: 60px;
    padding-bottom: 120px;
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-content .left-content {
    padding-top: 30px;
    padding-bottom: 100px;
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .hero-content .left-content {
    max-width: 100%;
    padding: 24px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hero-content .left-content {
    padding: 12px;
    padding-bottom: 40px;
  }
}
.hero-content .left-content h1 {
  font-size: 3rem;
  color: var(--c-primary);
}
.hero-content .left-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-content .right-thumb {
  max-width: 48%;
  margin-inline-start: auto;
}
.hero-content .right-thumb .slick-dots {
  bottom: 30px;
}
@media (max-width: 991px) {
  .hero-content .right-thumb {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero-content .right-thumb .single-slide img {
    aspect-ratio: 1;
  }
}
.hero-content .right-thumb img {
  width: 100%;
}
.hero-content .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 575px) {
  .hero-content .button-group {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .hero-content .button-group .btn {
    width: 100%;
  }
}

.hero-content-slider {
  display: flex;
  align-items: center;
}
.hero-content-slider .slick-list {
  margin-right: -30px;
}
.hero-content-slider .slick-track {
  display: flex;
}
.hero-content-slider .single-slide {
  margin-block: auto;
  padding-right: 30px;
}

@media (min-width: 992px) {
  .hero-thumb-slider {
    height: 100%;
  }
  .hero-thumb-slider .slick-list,
  .hero-thumb-slider .slick-track {
    height: 100%;
  }
  .hero-thumb-slider .slick-list img,
  .hero-thumb-slider .slick-list video,
  .hero-thumb-slider .slick-track img,
  .hero-thumb-slider .slick-track video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .hero-thumb-slider img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* hero section end */
/* about us section start */
.component-text,
.component-newsletter {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: var(--c-white);
}
@media (max-width: 991px) {
  .component-text + .component-text,
  .component-newsletter + .component-newsletter { padding-top: 0; }
}
@media (min-width: 992px) {
  .component-text,
  .component-newsletter {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.about-thumb {
  max-width: 596px;
}
.about-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(123, 123, 123, 0.2);
}

.about-content span {
  font-weight: 600;
  color: var(--c-primary);
  font-family: var(--ff-inter);
  margin-bottom: 12px;
  display: inline-block;
}
.about-content h2,
.store-locator-h2 {
  margin-bottom: 12px;
  font-size: var(--fs-36);
}
.about-content p {
  font-weight: 500;
}

/* about us section end */
/* popular categories section start */
.popular-categories {
  padding-top: 40px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .popular-categories {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.popular-categories__content {
  max-width: 515px;
}
.popular-categories__content span {
  color: var(--c-white);
  font-weight: 600;
  font-family: var(--ff-inter);
  display: inline-block;
  margin-bottom: 12px;
}
.popular-categories__content h2 {
  margin: 0;
  font-size: var(--fs-36);
  font-weight: 500;
  color: var(--c-white);
}

.category-slider {
  margin-top: 20px;
  margin-inline: -16px;
}
@media (min-width: 992px) {
  .category-slider {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .category-slider .slick-list {
    padding-right: 70px;
  }
}
.category-slider .single-slide {
  padding-inline: 16px;
}
.category-slider .slick-track {
  padding-bottom: 20px;
}
.category-slider .slick-dots {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-inline: auto;
  bottom: -10px;
}
@media (min-width: 992px) {
  .category-slider .slick-dots {
    bottom: -25px;
  }
}
.category-slider .slick-dots li {
  width: auto;
  height: auto;
  margin-inline: 3px;
}
.category-slider .slick-dots li.slick-active button {
  opacity: 1;
}
.category-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.3;
  transition: 0.4s;
}
.category-slider .slick-dots li button::before {
  display: none;
}
.category-slider .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--c-white);
  transition: all 0.4s linear;
  position: absolute;
  left: 34.5%;
  bottom: -40px;
  z-index: 3;
  display: none !important;
  color: var(--c-primary);
  cursor: pointer;
  font-size: 18px;
  border: none;
}
@media (min-width: 992px) {
  .category-slider .slick-arrow {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
.category-slider .slick-arrow::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 25px;
  opacity: 1 !important;
  transform: translateY(-3px);
}
.category-slider .slick-arrow.slick-disabled {
  opacity: 0.3;
}
.category-slider .slick-arrow.slick-right-arrow {
  left: auto;
  right: 34.5%;
}

.category-card {
  background-color: var(--c-white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3019607843);
  border-radius: 20px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 420px;
  transition: all ease 0.3s;
}
@media (min-width: 992px) {
  .category-card {
    height: 456px;
  }
}
.category-card__content h3 {
  font-size: var(--fs-24);
  font-weight: 500;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.category-card__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-bottom: 32px;
}
.category-card__thumb {
  overflow: hidden;
}
.category-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 0.3s;
}
.category-card:hover .category-card__thumb img {
  transform: scale(1.05);
}

/* popular categories section end */
/* location finder section start */
.location-finder {
  padding-top: 40px;
  padding-bottom: 140px;
}

.location-finder.bg-white { padding-bottom: 20px; }

.location-finder.dealer-page-location-finder .location-finder__content span {
  font-weight: 600;
  color: var(--c-white);
  font-family: var(--ff-inter);
  margin-bottom: 12px;
  display: inline-block;
}
.location-finder.dealer-page-location-finder .location-finder__content h2 {
  font-size: var(--fs-36);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--c-white);
}
.location-finder.dealer-page-location-finder .location-filters-form .form-check-input {
  border-color: var(--c-white);
  background-color: transparent;
}
.location-finder.dealer-page-location-finder .location-filters-form .form-check-input:checked {
  border-color: var(--c-white) !important;
  background-color: var(--c-white);
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23173B4F' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E");
}
.location-finder.dealer-page-location-finder .location-filters-form .form-check-label {
  color: var(--c-white);
}
.location-finder .contact-bg-shape2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
@media (min-width: 992px) {
  .location-finder {
    padding-top: 120px;
    padding-bottom: 160px;
  }
  .location-finder.bg-white { padding-bottom: 40px; }
}
.location-finder__content span {
  font-weight: 600;
  font-family: var(--ff-inter);
  margin-bottom: 12px;
  display: inline-block;
}
.location-finder__content h2 {
  font-size: var(--fs-36);
  font-weight: 500;
  margin-bottom: 12px;
}
.location-finder__thumb img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .location-finder__thumb img {
    height: 358px;
  }
}

.location-filters-form {
  max-width: 460px;
}
.location-filters-form .form-control {
  border-radius: 14px;
  height: 48px;
}
.location-filters-form .form-check-input:checked {
  background-color: var(--c-primary);
}
.location-filters-form .form-check-label {
  font-size: var(--fs-sm);
}
.location-filters-form .checkbox-group {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .location-filters-form .checkbox-group {
    margin-bottom: 40px;
  }
}
.location-filters-form .btn {
  width: 100%;
}
@media (min-width: 576px) {
  .location-filters-form .btn {
    width: auto;
  }
}

.location-card-wrapper {
  /*
  max-width: 1180px;
  margin-left: auto;
  */
  padding-top: 40px;
}
@media (min-width: 992px) {
  .location-card-wrapper {
    padding-top: 100px;
  }
}

.location-card {
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.0784313725);
  background-color: var(--c-white);
  padding: 12px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.location-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.location-card__header h3 {
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-base);
  max-width: 300px;
}
.location-card__header span {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-heading);
}
.location-card__details {
  margin-bottom: 20px;
}
.location-card__details p {
  margin: 0;
}
.location-card__details p span,
.location-card__details p a,
.location-card__details p a:hover,
.location-card__details p a:focus {
  color: var(--c-primary);
}
.location-card .button-group {
  gap: 10px;
  margin-top: auto;
}
.location-card .button-group .btn {
  font-size: var(--fs-sm);
  width: calc(100% - 125px);
  padding-inline: 10px;
  gap: 8px;
}
@media (min-width: 992px) {
  .location-card .button-group .btn {
    padding-inline: 16px;
    width: calc(100% - 150px);
    gap: 10px;
  }
}
.location-card .button-group .btn:last-child {
  width: 125px;
}
@media (min-width: 992px) {
  .location-card .button-group .btn:last-child {
    width: 150px;
  }
}

/* location finder section end */
/* contact section start */
.contact-section {
  position: relative;
  padding-block: 80px;
}
@media (min-width: 992px) {
  .contact-section {
    padding-block: 100px;
  }
}
.contact-section .contact-bg-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.contact-section .contact-bg-shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.contact-content {
  text-align: center;
}
@media (min-width: 768px) {
  .contact-content {
    padding-block: 25px;
  }
}
@media (min-width: 992px) {
  .contact-content {
    padding-block: 60px;
  }
}
.contact-content h2 {
  margin: 0;
  font-size: var(--fs-64);
  font-weight: 800;
  color: var(--c-white);
}
.contact-content h3 {
  font-size: var(--fs-40);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 12px;
}
.contact-content p {
  color: var(--c-white);
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 680px;
  margin-inline: auto !important;
}

/* contact section end */
/* breadcrumb start */
.breadcrumb {
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 575px) {
  .breadcrumb {
    margin-bottom: 0;
  }
}
.breadcrumb.text-heading .breadcrumb-item::before {
  color: var(--c-heading);
}
.breadcrumb.text-heading .breadcrumb-item a {
  color: var(--c-heading);
}
.breadcrumb .breadcrumb-item {
  flex-shrink: 0;
  font-size: var(--fs-sm);
}
.breadcrumb .breadcrumb-item::before {
  color: #f2f2f2;
}
.breadcrumb .breadcrumb-item a {
  color: #f2f2f2;
}
.breadcrumb .breadcrumb-item.active {
  color: #bbbbbb;
}

/* breadcrumb end */
/* product category overview page start */
.component-product-category-list .popular-categories,
.product-category-list .popular-categories {
  padding-top: 16px;
  padding-bottom: 60px;
}
.component-product-category-list .category-card-wrapper .row,
.product-category-list .category-card-wrapper .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

/* product category overview page end */
/* product listing overview page start */
.product-listing-overview {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .product-listing-overview {
    padding-bottom: 70px;
  }
}

.filters-btn {
  background-color: var(--bg-default);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: none;
}

.product-listing-header {
  max-width: 900px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .product-listing-header {
    margin-bottom: 24px;
  }
}
.product-listing-header h1,
.product-listing-header h2 {
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 500;
}
.product-listing-header p {
  font-weight: 500;
}

.sidebar {
  padding: 10px;
  background-color: var(--bg-default);
  border-radius: 20px;
}
.sidebar ::-webkit-scrollbar {
  width: 4px;
}
.sidebar ::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 10px;
}
.sidebar ::-webkit-scrollbar-thumb {
  background-color: #c8c8c8;
  border-radius: 10px;
}
.sidebar .accordion {
  padding-right: 10px;
}
@media (min-width: 992px) {
  .sidebar .accordion {
    overflow-y: auto;
    height: 950px;
  }
}
.sidebar .accordion-item {
  background-color: var(--bg-default);
  border: none;
}
.sidebar .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}
.sidebar .accordion-item ::-webkit-scrollbar {
  width: 4px;
}
.sidebar .accordion-item ::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 10px;
}
.sidebar .accordion-item ::-webkit-scrollbar-thumb {
  background-color: #c8c8c8;
  border-radius: 10px;
}
.sidebar .accordion-item .accordion-button {
  border: none;
  background-color: rgba(23, 59, 79, 0.1019607843);
  box-shadow: none;
  border-radius: 12px !important;
}
.sidebar .accordion-item .accordion-button.collapsed {
  background-color: var(--bg-default);
}
.sidebar .accordion-item .accordion-button.collapsed:focus {
  background-color: rgba(23, 59, 79, 0.1019607843);
}
.sidebar .accordion-item .accordion-body {
  padding-top: 16px;
  height: 80px;
  overflow-y: auto;
}

.sidebar .accordion-item .accordion-body.body-medium { height: 140px; }
.sidebar .accordion-item .accordion-body.body-large { height: 205px; }

.sidebar .accordion-item .form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  padding-left: 0px;
  padding-block: 11px;
}
.sidebar .accordion-item .form-check:not(:last-child) {
  margin-bottom: 16px;
}
.sidebar .accordion-item .form-check input {
  transform: translateY(-2px);
}
.sidebar .accordion-item .form-check label {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--c-primary);
}

.sidebar .form-check .form-check-input { margin-left: 0; float: none; }

.product-card {
  background-color: var(--bg-default);
  border-radius: 16px;
  padding: 16px;
  transition: all ease 0.3s;
  width: 100%;
  height: 100%;
  display: block;
}
.product-card__thumb {
  height: 326px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .product-card__thumb {
    height: 224px;
  }
}
.product-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
  transition: all ease 0.3s;
}
.product-card__content {
  padding-top: 20px;
}
.product-card__content h3 {
  font-size: var(--fs-lg);
  margin-bottom: 8px;
  font-weight: 600;
}
.product-card__content h3 a {
  color: var(--c-black);
  transition: all ease 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product-card__content h3 a:hover {
  color: var(--c-primary);
}
.product-card__content p {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product-card__content .product-btn {
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 12px;
  background-color: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px 0px rgba(123, 123, 123, 0.2);
}
.product-card:hover {
  box-shadow: 0px 3px 24px 0px rgba(123, 123, 123, 0.062745098);
}
.product-card:hover .product-card__thumb img {
  transform: scale(1.05);
}

/* product listing overview page end */
/* lang section start */
.lang-section {
  padding: 60px 0;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/thumb/lang.png');
}

.lang-wrapper {
  padding: 24px 70px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  max-width: 716px;
  margin-inline: auto;
  border-radius: 24px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .lang-wrapper {
    padding-inline: 24px;
  }
}
@media (max-width: 575px) {
  .lang-wrapper {
    padding-inline: 12px;
    margin-bottom: 0;
  }
}
.lang-wrapper .logo-container {
  margin-bottom: 24px;
}
.lang-wrapper .Copyright {
  margin-top: 40px;
}

.lang-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lang-list li label {
  display: block;
  position: relative;
  height: 100%;
}
.lang-list li label:hover span,
.lang-list li label:hover .lang-external {
  background-color: rgba(0, 0, 0, 0.0588235294);
}
.lang-list li label span,
.lang-external {
  border: 1px solid var(--c-primary);
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  height: 100%;
}
.lang-external { position: relative; z-index: 99; }
.lang-list li label p {
  margin: 0;
}
.lang-list li label input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
.lang-list li label input:checked ~ span,
.lang-list li label input:checked ~ .lang-external {
  background-color: rgba(0, 0, 0, 0.0784313725);
}
.lang-list li label img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* lang section end */
/* product section start */
.product-details {
  background-color: var(--c-white);
  padding-bottom: 60px;
}
.product-details .slider-for img,
.product-details .slider-nav img {
  width: 100%;
  height: auto;
  max-height: 550px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.product-details .slider-nav {
  margin-top: 10px;
}
.product-details .slider-nav .slick-slide {
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.product-details .slider-nav .slick-current {
  opacity: 1;
  border: 1px solid var(--c-primary);
  border-radius: 6px;
}
.product-details .slider-nav div img {
  aspect-ratio: 1.1;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-details-wrapper {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .product-details-wrapper {
    flex-direction: column;
  }
}
.product-details-wrapper .left-thumb {
  max-width: 55%;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.0588235294);
  padding: 24px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .product-details-wrapper .left-thumb {
    max-width: 100%;
  }
}
.product-details-wrapper .left-thumb .full-screen-toggle {
  position: absolute;
  z-index: 9;
  background-color: transparent;
  border: none;
  right: 24px;
  top: 24px;
}
.product-details-wrapper .right-content {
  max-width: 45%;
}
@media (max-width: 991px) {
  .product-details-wrapper .right-content {
    max-width: 100%;
  }
}
.product-details-wrapper .right-content span {
  font-weight: 500;
  font-size: 18px;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.read-more-btn {
  padding: 9px 18px;
  color: var(--c-primary);
  font-weight: 500;
  text-decoration: underline;
}

.table-container {
  background: white;
  border-radius: 20px;
  padding: 20px;
  max-width: 830px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.0588235294);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr td:first-child {
  color: black;
}
.spec-table tr:nth-child(odd) td {
  background-color: #f6f6f6;
}
.spec-table tr:nth-child(odd) td:first-child {
  border-radius: 12px 0 0 12px;
}
.spec-table tr:nth-child(odd) td:last-child {
  border-radius: 0 12px 12px 0;
}

.spec-table th {
  font-size: 20px;
  font-weight: 500;
  color: var(--c-primary);
  text-align: center;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .spec-table th {
    font-size: 16px;
  }
}

.spec-table td {
  padding: 14px 10px;
  text-align: center;
  font-size: 16px;
  width: 50%;
}
@media (max-width: 991px) {
  .spec-table td {
    font-size: 14px;
  }
}

/* product section end */
/* product specification section start */
.product-specification-section {
  position: relative;
  padding-block: 80px;
}
@media (min-width: 992px) {
  .product-specification-section {
    padding-block: 100px;
  }
}
.product-specification-section .contact-bg-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product-specification-section .contact-bg-shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .product-specification-section .contact-content {
    text-align: left;
  }
}
.product-specification-section .contact-content h3 {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .product-specification-section .contact-content h3 {
    margin-bottom: 16px;
  }
}

/* product specification section end */
/* download section start */
.download-wrapper {
  max-width: 650px;
  margin-inline: auto;
}

.download-wrapper h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.download-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.0588235294);
  border: 1px solid #ebebeb;
  padding: 0;
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.download-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid #ebebeb;
  color: var(--c-primary);
  text-decoration: none;
}

.download-row:last-child {
  border-bottom: none;
}

.download-btn {
  flex-shrink: 0;
  background-color: var(--c-primary);
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease;
}
.download-row:hover .download-btn {
  background-color: #0095d8;
}

.download-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(1.5);
}

/* download section end */
/* login page start */
.login-page {
  padding-bottom: 60px;
}

.login-wrpaper {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.0588235294);
}
@media (min-width: 576px) {
  .login-wrpaper {
    border-radius: 32px;
  }
}
.login-wrpaper .login-bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.login-wrpaper .login-thumb img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 576px) {
  .login-wrpaper .login-thumb img {
    height: auto;
  }
}

.login-form {
  max-width: 540px;
  margin-inline: auto;
  padding: 0px 10px 80px;
}
@media (min-width: 576px) {
  .login-form {
    padding-inline: 20px;
    padding: 20px 20px 100px;
  }
}
.login-form h2 {
  font-size: var(--fs-40);
  margin-bottom: 8px;
}
.login-form p {
  font-weight: 500;
  margin-bottom: 20px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .button-group {
  gap: 20px;
}

/* login page end */
/* about hero section start */
.about-hero-section {
  position: relative;
  height: 644px;
  margin-top: -124px;
}
@media (min-width: 992px) {
  .about-hero-section {
    height: 783px;
  }
}
.about-hero-section .about-bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.about-hero-section .about-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.about-hero-wrapper {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding-top: 86px;
}

.about-hero-content {
  padding-top: 300px;
}
@media (min-width: 768px) {
  .about-hero-content {
    padding-top: 250px;
  }
}
@media (min-width: 992px) {
  .about-hero-content {
    padding-top: 46px;
  }
}
.about-hero-content h1 {
  color: var(--c-white);
  font-size: 38px;
  margin-bottom: 8px;
}
@media (min-width: 576px) {
  .about-hero-content h1 {
    font-size: var(--fs-64);
  }
}
.about-hero-content p {
  font-weight: 500;
  color: var(--c-white);
  font-size: var(--fs-40);
}

/* about hero section end */
/* history section start */
.history-section {
  padding-block: 40px;
}
@media (min-width: 992px) {
  .history-section {
    padding-block: 60px;
  }
}

.history-thumb img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(123, 123, 123, 0.2);
}

.history-content h2 {
  font-size: var(--fs-36);
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .history-content h2 {
    margin-bottom: 24px;
  }
}
.history-content p {
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .history-content p {
    margin-bottom: 20px;
  }
}
.history-content .btn {
  margin-top: 15px;
}
@media (max-width: 575px) {
  .history-content .btn {
    width: 100%;
  }
}

/* history section end */
/* values section start */
.values-section {
  padding-block: 40px;
}
@media (min-width: 992px) {
  .values-section {
    padding-block: 60px;
  }
}
@media (min-width: 576px) {
  .values-section {
    /*border-bottom: 1px solid var(--c-primary);*/
  }
}
.values-section h2 {
  font-size: var(--fs-36);
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .values-section h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .values-section .btn {
    width: 100%;
  }
}

.values-card {
  display: block;
}
.values-card__thumb {
  overflow: hidden;
  height: 283px;
  margin-bottom: 24px;
  border-radius: 20px;
}
.values-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  transition: all ease 0.4s;
}
.values-card__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.values-card__content p {
  font-weight: 500;
}
.values-card:hover .values-card__thumb img {
  transform: scale(1.05);
}

/* values section end */
/* service subpage section start */
.service-subpage-section {
  position: relative;
  padding-bottom: 90px;
}
@media (min-width: 576px) {
  .service-subpage-section {
    padding-bottom: 150px;
  }
}
.service-subpage-section .s-subpage-bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.service-subpage-content {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  padding-top: 20px;
}
@media (min-width: 576px) {
  .service-subpage-content {
    padding-top: 30px;
  }
}
.service-subpage-content img {
  margin-bottom: 12px;
}
.service-subpage-content h1 {
  font-size: var(--fs-64);
  color: var(--c-white);
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .service-subpage-content h1 {
    font-weight: 500;
  }
}
.service-subpage-content p {
  font-weight: 500;
  color: var(--c-white);
}

/* service subpage section end */
/* service section start */
.service-section {
  padding-block: 40px;
}
@media (min-width: 576px) {
  .service-section {
    padding-block: 60px;
  }
}

@media (max-width: 575px) {
  .service-wrapper {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0588235294);
    border-radius: 16px;
    background-color: var(--c-white);
    padding: 16px;
  }
}
.service-wrapper.image-right .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .service-wrapper.image-right .row .service-content {
    padding-left: 0;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .service-wrapper.image-right .row .service-content {
    padding-right: 52px;
  }
}
.service-wrapper:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .service-wrapper:not(:last-child) {
    margin-bottom: 40px;
  }
}
.service-wrapper .service-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 6px 0px 17px 0px rgba(0, 0, 0, 0.0588235294);
}
@media (min-width: 992px) {
  .service-wrapper .service-content {
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .service-wrapper .service-content {
    padding-left: 52px;
  }
}
.service-wrapper .service-content h2 {
  font-size: var(--fs-36);
  margin-bottom: 12px;
}
.service-wrapper .service-content p {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .service-wrapper .service-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
  }
}
@media (max-width: 575px) {
  .service-wrapper .service-content .btn {
    width: 100%;
  }
}

/* service section end */
/* contact template start */
.contact-template {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .contact-template {
    padding-bottom: 60px;
  }
}
.contact-template .container {
  position: relative;
  z-index: 1;
}
.contact-template .world-map {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90%;
}
.contact-template .contact-template-content {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 32px;
}
@media (min-width: 576px) {
  .contact-template .contact-template-content {
    margin-bottom: 40px;
  }
}
.contact-template .contact-template-content h1 {
  font-size: var(--fs-64);
  color: var(--c-primary);
  margin-bottom: 12px;
}
.contact-template .contact-template-content p {
  color: var(--c-primary);
  font-weight: 500;
}
.contact-template .form-check-input {
  width: 18px;
  height: 18px;
  border-color: var(--c-white);
  background-color: transparent !important;
}
.contact-template .form-check-input:checked {
  background-color: var(--c-primary);
  border-color: var(--c-white) !important;
}
.contact-template .form-check-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 0.25rem rgba(23, 59, 79, 0.1450980392);
}

.contact-form-wrapper {
  background-color: var(--c-primary);
  border-radius: 20px;
  padding: 12px;
  max-width: 1024px;
  margin-inline: auto;
}
.contact-form-wrapper__content h2 {
  font-size: var(--fs-32);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 12px;
}
.contact-form-wrapper__content p.form-info {
  color: #eeeeee;
  font-weight: 500;
}
.contact-form-wrapper .contact-form__whitebox {
  padding: 12px;
  border-radius: 12px;
}
.contact-form-wrapper .contact-form__whitebox strong {
  color: var(--c-primary);
  margin-bottom: 10px;
  display: inline-block;
}
.contact-form-wrapper .contact-form__whitebox .btn {
  max-width: 270px;
}

.contact-us-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 44px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.contact-us-wrapper .contact-template-content {
  max-width: 800px;
  margin: 0;
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-template-content {
    max-width: 100%;
  }
}
.contact-us-wrapper .contact-form-wrapper {
  max-width: 455px;
  margin: 0;
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-form-wrapper {
    max-width: 100%;
  }
}
.contact-us-wrapper .contact-form-wrapper .btn {
  max-width: 100%;
}
.contact-us-wrapper .btn {
  max-width: 100%;
  width: auto !important;
  flex-grow: 1;
}
.contact-us-wrapper .btn svg {
  flex-shrink: 0;
}
.contact-us-wrapper .btn.btn-outline-primary {
  padding-inline: 4px;
}
@media (max-width: 575px) {
  .contact-us-wrapper .btn.btn-outline-primary {
    font-size: 12px;
  }
}

/* contact template end */
/* search results page start */
.search-results-page {
  padding-bottom: 60px;
}
.search-results-page .showing-text p {
  margin: 0;
  font-size: var(--fs-sm);
}
.search-results-page .nav-pills {
  flex-wrap: nowrap;
  overflow-y: auto;
}
.search-results-page .nav-pills li button {
  white-space: nowrap;
}
.search-results-page .sort-filter-wrapper {
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.search-results-page .sort-filter-wrapper .title {
  margin-bottom: 0;
  font-weight: 600;
  color: #000000;
}
.search-results-page .sort-filter-wrapper .form-select {
  width: auto;
  border: none;
  font-weight: 300;
}
@media (max-width: 575px) {
  .search-results-page .result-count-text {
    font-size: 14px;
  }
}

.search-form {
  max-width: 672px;
}
.search-form .search-container {
  position: relative;
  width: 100%;
}
.search-form .search-input {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 14px;
  height: 52px;
  border: 1px solid #ddd;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.0784313725);
  background-color: var(--c-white);
  display: inline-block;
  width: calc(100% - 140px);
}
.search-result-button { height: 52px; margin-left: 10px; }
@media (max-width: 575px) {
  .search-form .search-input,
  .search-result-button {
    height: 44px;
  }
}
.search-form .search-icon,
.search-form .clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #cccccc;
  z-index: 33;
}
.search-form .search-icon {
  left: 15px;
}
.search-form .clear-icon {
  right: 15px;
  cursor: pointer;
  display: none;
}

.nav {
  gap: 16px;
}
.nav li .nav-link {
  color: var(--c-black);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: all ease 0.4s;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav li .nav-link.active {
  background-color: var(--bg-default);
  border-radius: 12px;
  color: var(--c-black);
}

.tab-content {
  padding-bottom: 40px;
}
@media (max-width: 575px) {
  .tab-content {
    padding-bottom: 8px;
  }
}

.blog-card {
  padding: 16px;
  border-radius: 16px;
  background-color: var(--bg-default);
}
.blog-card:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .blog-card {
    display: flex;
  }
  .blog-card:not(:last-child) {
    margin-bottom: 24px;
  }
}
.blog-card__thumb {
  height: 206px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .blog-card__thumb {
    width: 178px;
    margin-bottom: 0;
  }
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
  background-color: var(--c-white);
}
@media (min-width: 768px) {
  .blog-card__content {
    width: calc(100% - 178px);
    padding-left: 16px;
    padding-right: 20px;
  }
  .blog-card-full-with { width: 100%; }
}
.blog-card__content .btn {
  text-decoration: none;
  text-align: end;
  margin-left: auto;
}
@media (max-width: 575px) {
  .blog-card__content .btn {
    width: 100%;
  }
}
.blog-card__content a {
  text-decoration: underline;
}
.blog-card__content h3 {
  font-size: var(--fs-24);
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-card__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-bottom: 30px;
}

/* search results page end */



/*** CUSTOM ***/
.lang-wrapper { min-height: 330px; }
.products-switcher,
.uk-info-text { display: none; }
[class^="component-"] a.btn + a.btn { margin-left: 20px; }
.content-spacer { background-color: var(--c-white); }
.p-last p:last-of-type { margin: 0; padding: 0; }
.component-cta .btn.btn-primary { background-color: var(--c-white); color: var(--c-primary); border-color: transparent; }
.component-cta .btn.btn-primary:hover, 
.component-cta .btn.btn-primary:active,
.component-cta .btn.btn-primary:focus {
  color: var(--c-white);
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.component-cta .btn.text-primary { color: var(--c-white) !important; }
.header-bottom.bg-white.sticky .btn.btn-primary { background-color: var(--c-white); color: var(--c-primary); border-color: transparent; }
.product-details-wrapper #description #visible-text p:last-of-type { display: inline; }
.product-listing-overview { padding-top: 16px; }
.breadcrumb-wrapper { position: relative; z-index: 2; }
.breadcrumb-wrapper.bg-transparent .breadcrumb.text-heading .breadcrumb-item a,
.breadcrumb-wrapper.bg-transparent .breadcrumb.text-heading .breadcrumb-item::before { color: var(--c-white); }
.about-hero-content .btn.text-primary { background-color: var(--c-white); color: var(--c-primary); border-color: var(--c-white); }
.about-hero-content .btn.text-primary:hover, 
.about-hero-content .btn.text-primary:active, 
.about-hero-content .btn.text-primary:focus { color: var(--c-white) !important; background-color: var(--c-primary); border-color: var(--c-primary); }

div[class^='component-'] ul:not(.pagination),
div[class^='component-'] ol { margin-top: 0; margin-bottom: 1rem; padding-left: 2rem; list-style: revert; }
div[class^='component-'] ol ol,
div[class^='component-'] ol ul,
div[class^='component-'] ul ol, 
div[class^='component-'] ul ul { margin-bottom: 0px; }

.alert.alert-success strong,
.alert.alert-success p:last-child { margin-bottom: 0; padding-bottom: 0; }

.form-row-hidden { display: none; }
.store-locator-info { max-width: 800px; }
#map { width: 100%; height: 420px; border-radius: 20px; overflow: hidden; }
.location-filters-form .alert.alert-warning { border-radius: 14px; }

.gm-style .premium-info-window { background: #ffffff; border-radius: 8px; padding: 0 16px 8px; max-width: 280px; }
.premium-info-window__title { margin: 0 0 8px; font-size: 18px; font-weight: 600; color: var(--c-primary); }
.premium-info-window__line { margin: 4px 0; font-size: 14px; line-height: 1.4; color: var(--c-primary); }
.premium-info-window__email a, .premium-info-window__website a, .premium-info-window__email a:hover, .premium-info-window__website a:hover { color: (var(--c-primary)); }
.premium-info-window__phone a,
.premium-info-window__route a { color: var(--c-primary); text-decoration: none; font-weight: 500; margin-top: 6px; }
.premium-info-window__phone a:hover,
.premium-info-window__route a:hover { text-decoration: none; }
.gm-style-iw-chr button { height: 30px !important; width: 36px !important; }
.gm-style-iw-chr button span { margin: 6px !important; }

.component-pdf-reader .about-us-section { padding-block: 60px; }

.newsletter-feedback { display: none; }

.text-no-image .about-content { max-width: 800px; margin: 0 auto; }

.menu-icon { max-width: 22px; }

span.highlight { font-weight: 600; color: var(--c-primary); font-family: var(--ff-inter); display: inline-block; }

.footer-slogan { font-size: var(--fs-sm); }

.uk-info-text .highlight { font-size: 1.25rem; }
.uk-info-text a,
.uk-info-text a:hover,
.uk-info-text a:focus { text-decoration: underline; }
.uk-info-text .btn { text-decoration: none !important; height: 100%; }

.sidebar .accordion-item .accordion-body.body-full-height { height: auto; }

.dealer-location, .dealer-email, .dealer-website { position: relative; padding-left: 28px; white-space: normal; word-break: break-word; overflow-wrap: break-word; }
.dealer-location::before, .dealer-email::before, .dealer-website::before { position: absolute; top: 3px; left: 2px; font-family: "Font Awesome 6 Pro"; font-size: 0.875rem; color: var(--c-primary); }
.dealer-location::before { content: "\f3c5"; }
.dealer-email::before { content: "\f0e0"; }
.dealer-website::before { content: "\f0c1"; }