/** Shopify CDN: Minification failed

Line 1698:2 "ont-size" is not a known CSS property
Line 4501:0 Unexpected "{"
Line 4501:1 Expected identifier but found "%"
Line 4501:31 Expected identifier but found "%"
Line 4857:5 Expected identifier but found "."
Line 5171:32 Expected identifier but found "!"

**/
:root {
  /* colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --text-color: #101010;
  --color-blue: #0f1194;
    /* Core Palette */
  --color-navy: #000e29;
  --color-king: #0f1190;
  --color-mustard: #eba727;
  --color-mustard-hover: #c88e21; /* Derived from client doc */
  
  /* Neutrals & Support */
  --color-cloud: #f1f3f4;
  --color-dark-grey: #5d6771;
  --color-dusty-blue: #47628f;
  --color-silver: #c8cbd0;

  /* Font Weights */
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  /* Font familty */

  --ff-AkGr:  "Aktiv Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Text Transforms */
  --t-upper: uppercase;
  --t-lower: lowercase;
  --t-cap: capitalize;
}

/* =========================================
   BACKGROUND UTILITIES
========================================= */
.bg-navy { background-color: var(--color-navy); }
.bg-king { background-color: var(--color-king); }
.bg-mustard { background-color: var(--color-mustard); }
.bg-cloud { background-color: var(--color-cloud); }
.bg-dark-grey { background-color: var(--color-dark-grey); }
.bg-dusty-blue { background-color: var(--color-dusty-blue); }
.bg-silver { background-color: var(--color-silver); }

/* ========================================= TEXT COLOR UTILITIES========================================= */
.color-navy { color: var(--color-navy); }
.color-king { color: var(--color-king); }
.color-mustard { color: var(--color-mustard); }
.color-cloud { color: var(--color-cloud); }
.color-dark-grey { color: var(--color-dark-grey); }
.color-dusty-blue { color: var(--color-dusty-blue); }
.color-silver { color: var(--color-silver); }

/* ========================================= HOVER UTILITIES (Text & Background)========================================= */

/* Text Hovers */
.color-hover-navy { &:hover { color: var(--color-navy); } }
.color-hover-king { &:hover { color: var(--color-king); } }
.color-hover-mustard { &:hover { color: var(--color-mustard); } }
.color-hover-cloud { &:hover { color: var(--color-cloud); } }
.color-hover-dark-grey { &:hover { color: var(--color-dark-grey); } }
.color-hover-dusty-blue { &:hover { color: var(--color-dusty-blue); } }
.color-hover-silver { &:hover { color: var(--color-silver); } }

/* Background Hovers (Useful for buttons) */
.bg-hover-navy { &:hover { background-color: var(--color-navy); } }
.bg-hover-king { &:hover { background-color: var(--color-king); } }
.bg-hover-mustard { &:hover { background-color: var(--color-mustard-hover); } } /* Uses specific hover hex */
.bg-hover-cloud { &:hover { background-color: var(--color-cloud); } }
.bg-hover-dark-grey { &:hover { background-color: var(--color-dark-grey); } }
.bg-hover-dusty-blue { &:hover { background-color: var(--color-dusty-blue); } }
.bg-hover-silver { &:hover { background-color: var(--color-silver); } }

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    display: none;
}


/* Firefox */
html {
    scrollbar-width: none;
}

/* IE and old Edge */
*{
    transition:all 0.3s;
}
body {
    -ms-overflow-style: none;
}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.page-width {
  max-width: 1340px !important;
  width: 100%;
  padding-left: 30px !important;
  padding-right: 30px !important;
  margin: 0 auto !important;
}

.button,
button {
  max-width: 195px;
  width: 100%;
  padding: 14.5px 0;
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid #0f1194;
  line-height: 25px;
  transition: 0.3s all ease-in;
}

.header-wrapper {
  border-bottom: 0px !important;
  width: 100%;
  transition: 0.3s all ease-in;
  background: var(--color-navy) !important;
  transition: 0.3s all ease-in;
}

body.index .header-wrapper {
  background: var(--color-navy) !important;
}

.scrolled-past-header .header-wrapper {
  background: var(--color-navy) !important;
}

body.collection .header-wrapper,
body.article .header-wrapper,
body.page\.policy .header-wrapper,
body.search .header-wrapper,
body.cart .header-wrapper,
body.list-collections .header-wrapper {
  background: var(--color-blue) !important;
}

.header-wrapper header.header {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

header.header .header__heading a.header__heading-link,
header.header a.header__heading-link {
  margin-left: 0px;
}

header.header ul.list-menu li a.header__menu-item {
  position: relative;
  padding: 0px;
}

header.header ul.list-menu li a.header__menu-item span {
  font-size: 16px;
  line-height: 24px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
}

header.header ul.list-menu li {
  padding: 1.2rem;
}

header.header ul.list-menu li a.header__menu-item::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-mustard);
  transform-origin: bottom left;
  transition: transform 0.3s ease-in;
}

header.header ul.list-menu li a.header__menu-item:hover::after {
  transform: scaleX(1);
}

header.header ul.list-menu li a.header__menu-item:hover span {
  text-decoration: none;
}

header.header ul.list-menu li .header__active-menu-item {
  text-decoration: none !important;
}

header.header ul.list-menu li summary.header__menu-item {
  padding: 0px;
}

header.header ul.list-menu li summary.header__menu-item svg path {
  fill: #fff;
}

header.header ul.list-menu li summary.header__menu-item a {
  text-decoration: none !important;
}

header.header {
  grid-template-columns: auto 2fr auto;
}

header.header .header__inline-menu {
  text-align: center;
}

header.header ul.list-menu li summary.header__menu-item span {
  font-size: 16px;
  line-height: 24px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
}

header.header ul.list-menu li summary.header__menu-item {
  padding-right: 15px;
}

header.header ul.list-menu li summary.header__menu-item svg {
  right: 0px;
}

header.header .header__inline-menu > ul.list-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
}

header.header ul.list-menu li .header__submenu {
  top: 36px;
  border: 0px;
  border-radius: 0px;
  padding: 10px 0;
  width: 22rem;
  box-shadow: 0px 3px 2px 1px #00000042;
  border-radius:5px;
}

header.header ul.list-menu li details[open] > .header__menu-item {
  text-decoration: none !important;
}

header.header ul.list-menu li summary.header__menu-item:hover span {
  text-decoration: none !important;
}

header.header ul.list-menu li summary.header__menu-item span {
  position: relative;
}

header.header ul.list-menu li summary.header__menu-item span::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color:var(--color-mustard);
  transform-origin: bottom left;
  transition: transform 0.3s ease-in;
}

header.header ul.list-menu li summary.header__menu-item:hover span::after {
  transform: scaleX(1);
}

header.header ul.list-menu li .header__submenu li a {
  font-size: 14px;
  line-height: 19px;
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  max-width: fit-content;
  text-align:left;
}

header.header ul.list-menu li .header__submenu li a:hover {
  text-decoration: none;
}

header.header ul.list-menu li .header__submenu li a::after {
  background-color: var(--color-navy);
}

.homepage-slider {
  margin-top: -72px;
}

.banner.slideshow {
  height: 100vh;
}

.banner.banner--small {
  min-height: 500px !important;
}

.banner .slideshow__slide .slideshow__text .banner__buttons a.button::before,
.banner .slideshow__slide .slideshow__text .banner__buttons a.button::after {
  content: none;
}

.banner .slideshow__slide .slideshow__text .banner__buttons {
  max-width: 188px;
  width: 100%;
}

.banner .slideshow__slide .slideshow__text .banner__buttons a.button {
  max-width: 188px;
  width: 100%;
  padding: 14.5px 0;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
  transition: 0.3s all ease-in;
}

.banner .slideshow__slide .slideshow__text .banner__buttons a.button:hover {
  background: var(--color-white);
  color: var(--color-blue);
  border: 1px solid var(--color-white);
}

/* Multicolumn trusted brand css */
.multicolumn ul.multicolumn-list {
  gap: 100px;
}

.multicolumn ul.multicolumn-list .multicolumn-card .media {
  padding: 0px !important;
  max-width: 180px !important;
  width: 100% !important;
  height: 48px;
}

.multicolumn ul.multicolumn-list .multicolumn-card .media img {
  position: unset;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.multicolumn ul.multicolumn-list .multicolumn-list__item {
  max-width: calc(16.66% - 100px * 5 / 6);
  width: 100%;
}

.multicolumn
  ul.multicolumn-list
  .multicolumn-list__item
  .multicolumn-card__image-wrapper {
  padding-top: 0px;
}

.multicolumn ul.multicolumn-list .multicolumn-list__item .multicolumn-card {
  background: transparent;
}

/* image with text section css */
.image-with-text .image-with-text__media {
  border: 0px;
  height: 450px;
}

.image-with-text .image-with-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-with-text .image-with-text__content .image-with-text__heading {
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: #101010;
}

.image-with-text .image-with-text__content .image-with-text__text p {
  color: #3a3a3a;
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 28px;
}
.image-with-text .image-with-text__content .image-with-text__text ul{
  list-style-position: outside;
}
.image-with-text .image-with-text__content .image-with-text__text ul li::marker{
  color: #0f1194;
}
.image-with-text .image-with-text__content .image-with-text__text ul li{
  line-height:1.5;
  margin-bottom:12px;
}
.image-with-text .image-with-text__content .image-with-text__text ul li strong{    color: #000;}
.image-with-text .image-with-text__grid {
  column-gap: 75px !important;
  align-items: flex-start;
}

.image-with-text .image-with-text__grid .grid__item {
  max-width: calc(50% - 75px / 2);
  width: 100%;
}

.image-with-text .image-with-text__content {
  padding: 0px;
  border-radius: 0px !important;
}

.image-with-text .image-with-text__content a.button::before,
.image-with-text .image-with-text__content a.button::after {
  content: none;
}

.image-with-text .image-with-text__content a.button {
  max-width: 188px;
  width: 100%;
  padding: 14.5px 0;
  color: var(--color-king);
  font-size: 18px;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid var(--color-king);
  line-height: 25px;
  transition: 0.3s all ease-in;
  background-color:transparent
}

.image-with-text .image-with-text__content a.button:hover {
  background: var(--color-king);
  color: #fff;
}
.image-with-text .image-with-text__media img {
  border-radius: 0;
}

/* collection list section css */
.collection .collection__title h2 {
  text-align: center;
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: #101010;
}

.collection .product-grid .card {
  background: transparent !important;
}

.collection .product-grid {
  margin-top: 0px;
  gap: 32px;
}

.collection .product-grid li.grid__item {
  max-width: calc(33.33% - 32px * 2 / 3);
  width: 100%;
  opacity: 1 !important;
  cursor:pointer;
}

.collection .product-grid .card > .card__content,
.collection .product-grid .card > .card__content .card__information {
  padding: 0px;
}

.collection .product-grid li.grid__item.scroll-trigger.animate--fade-in,
.collection .product-grid li.grid__item.scroll-trigger.animate--slide-in {
  opacity: 1 !important;
}

.collection
  .product-grid
  li.grid__item.scroll-trigger:not(
    .scroll-trigger--offscreen
  ).animate--slide-in {
  animation: none !important;
}

.collection .product-grid .card > .card__content {
  margin-top: 0px;
}

.collection .product-grid .card .card__inner .card__media {
  margin: 0px;
  width: 100%;
}

.collection .product-grid .card .card__inner .card__media .media,
.collection .product-grid .card .card__inner {
  height: 260px;
}

.collection .product-grid .card .card__inner {
  margin-bottom: 20px;
  box-shadow: #63636333 0 1px 4px;
}

.collection .product-grid .card .card__inner .card__media .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .rfq-collection-btn {
  margin: 0px !important;
  color: var(--color-white);
  font-size: 18px !important;
  /* font-weight: var(--fw-semibold); */
  line-height: 25px;
  border: 1px solid var(--color-blue);
  transition: 0.3s all ease-in;
  max-width: 100%;
}

.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .rfq-collection-btn:hover {
  /* background: transparent !important;
  color: var(--color-blue); */
}

.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .card__heading {
  margin-bottom: 15px;
}

.collection
  .product-grid
  .card-wrapper:hover
  .card__content
  .card__information
  .card__heading
  a {
  text-decoration: none;
  color: #101010;
}

.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .rfq-collection-btn::before,
.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .rfq-collection-btn::after {
  content: none;
}

.collection .product-grid .card > .card__content .card__information {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap:6px;
      min-height: 110px;
}

.collection
  .product-grid
  .card
  > .card__content
  .card__information
  .rfq-variant-selector {
  margin-bottom: 45px !important;
  color: #101010;
  font-size: 16px;
  line-height: 20px;
  font-weight: var(--fw-medium);
  
}

/* testimonial section css */
.section-testimonials-wrapper .testimonial-top {
  display: flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-testimonials-wrapper .testimonial-top .arrows .slick-arrow {
  position: unset;
  transition: 0.3s all ease-in;
}

.section-testimonials-wrapper .testimonial-top .arrows .slick-arrow:hover {
  transform: scale(1.1);
}

.section-testimonials-wrapper .testimonial-top .arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-testimonials-wrapper
  .testimonial-top
  .arrows
  .slick-arrow.slick-disabled {
  /* opacity: 0.4; */
}
.section-testimonials-wrapper
  .testimonial-top
  .arrows
  .slick-arrow.slick-disabled svg{
    border:1px solid var(--color-king);
    border-radius:50%;
  }
.section-testimonials-wrapper
  .testimonial-top
  .arrows
  .slick-arrow.slick-disabled svg rect{
  fill:transparent;
}
.section-testimonials-wrapper
  .testimonial-top
  .arrows
  .slick-arrow.slick-disabled svg path{
    stroke:var(--color-king);
  }
/* .section-testimonials-item-outter {
  padding: 0px !important;
} */

/* blog news section css */
.blog ul.blog__posts {
  gap: 32px;
}

.blog ul.blog__posts .blog__post {
  max-width: calc(50% - 32px / 2);
  width: 100%;
}

.blog ul.blog__posts .blog__post .card .card__inner {
  height: 332px;
}

.blog ul.blog__posts .blog__post .card .card__inner .card__media {
  border-radius: 4px;
}

.blog
  ul.blog__posts
  .blog__post
  .card
  .card__information
  .article-card__footer
  a.button::before,
.blog
  ul.blog__posts
  .blog__post
  .card
  .card__information
  .article-card__footer
  a.button::after {
  content: none;
}

.blog
  ul.blog__posts
  .blog__post
  .card
  .card__information
  .article-card__footer
  a.button {
  max-width: 188px;
  width: 100%;
  padding: 14.5px 0;
  border: 1px solid var(--color-blue);
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
  transition: 0.3s all ease-in;
}

.blog ul.blog__posts .blog__post .card .card__information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog
  ul.blog__posts
  .blog__post
  .card:hover
  .card__information
  .article-card__footer
  a.button {
  background: transparent;
  color: var(--color-blue);
}

.blog ul.blog__posts .blog__post .card-wrapper:hover .card__heading a {
  text-decoration: none;
}

.blog
  ul.blog__posts
  .blog__post
  .card
  .card__information
  .article-card__footer {
  width: 100%;
  text-align: left;
}

.blog
  ul.blog__posts
  .blog__post
  .card
  .card__information
  .article-card__excerpt {
  text-align: left;
}

/* badges section css */
.section-badge-wrapper .badge-item-wrapper {
  display: flex;
  gap: 48px;
}

/* Footer css */
footer.footer
  .footer__blocks-wrapper
  ul.footer-block__details-content
  li
  a:hover {
  text-decoration: none;
}

footer.footer .footer__blocks-wrapper ul.footer-block__details-content li a {
  position: relative;
}

footer.footer
  .footer__blocks-wrapper
  ul.footer-block__details-content
  li
  a.list-menu__item--active {
  text-decoration: none;
}

footer.footer
  .footer__blocks-wrapper
  ul.footer-block__details-content
  li
  a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-white);
  transform-origin: bottom left;
  transition: transform 0.3s ease-in;
}

footer.footer
  .footer__blocks-wrapper
  ul.footer-block__details-content
  li
  a:hover::after {
  transform: scaleX(1);
}

footer.footer .footer__blocks-wrapper .lli-des a {
  position: relative;
  max-width: fit-content;
}

footer.footer .footer__blocks-wrapper .lli-des a:hover {
  text-decoration: none;
}

footer.footer .footer__blocks-wrapper .lli-des a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #d6d6d6;
  transform-origin: bottom left;
  transition: transform 0.3s ease-in;
}

footer.footer .footer__blocks-wrapper .lli-des a:hover::after {
  transform: scaleX(1);
}

footer.footer .footer__blocks-wrapper ul.list-social li svg {
  transition: 0.3s all ease-in;
}

footer.footer .footer__blocks-wrapper ul.list-social li svg:hover {
  transform: scale(1.1);
}

footer.footer .footer__policy_content ul li a:hover {
  text-decoration: none;
}

footer.footer .footer__policy_content ul li a {
  position: relative;
}

footer.footer .footer__policy_content ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #d6d6d6;
  transform-origin: bottom left;
  transition: transform 0.3s ease-in;
}

footer.footer .footer__policy_content ul li a:hover::after {
  transform: scaleX(1);
}

footer.footer .footer__content-top .footer-block--menu {
  margin-bottom: 0px;
}

footer.footer .footer__content-top .footer__blocks-wrapper {
  margin-bottom: 0px;
}
footer.footer .footer__content-top.page-width {
  padding-bottom: 40px;
}

/* collection hero section css */
.collection-hero {
  padding: 50px 0 26px !important;
}

.collection-hero .collection-hero__title {
  margin: 0px;
  text-align: center;
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: #101010;
}

.facets-wrapper .facets-container {
  padding-top: 0px;
}

.facets-wrapper .facets-container .facets__summary {
  margin-bottom: 0px;
}

.facets-wrapper .facets-container .facets__heading {
  margin-top: 0px;
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .facets-container .facets__form {
  margin-bottom: 20px;
}

.facets-wrapper .facets-container .facets__summary span,
.facets-wrapper .facets-container .sorting .select select {
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .facets-container .facets__summary svg path,
.facets-wrapper .facets-container .sorting .select svg path {
  fill: #101010;
}

.facets-wrapper .facets-container .sorting label {
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .facets-container .sorting .select select:focus,
.facets-wrapper .facets-container .sorting .select select:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.facets-wrapper .facets-container .sorting h2.facet-filters__label {
  margin-right: 1rem;
}

.facets-wrapper .facets-container .sorting .select select {
  padding-left: 10px;
}

.facets-wrapper .facets-container .facets__form .product-count.light {
  opacity: 1;
}

.facets-wrapper
  .facets-container
  .facets__summary:hover
  .facets__summary-label {
  text-decoration: none;
}

.facets-wrapper .facets-container details .facets__header span.facets__selected,
.facets-wrapper .facets-container details .facets__header .facets__reset {
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .facets-container details ul li .facet-checkbox svg rect {
  stroke: #101010;
}

.facets-wrapper
  .facets-container
  details
  ul
  li
  .facet-checkbox
  .facet-checkbox__text {
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .facets-container details .facets__price .field-currency,
.facets-wrapper .facets-container details .facets__price .field .field__label {
  color: #101010;
  font-weight: var(--fw-medium);
}

.facets-wrapper .active-facets .active-facets__button span {
  padding: 8px 10px;
  line-height: 20px;
  min-width: max-content;
}

.facets-wrapper .active-facets .active-facets__button svg {
  margin-right: 0px;
  margin-top: 0px;
}

.facets-wrapper .active-facets .active-facets__button .hidden {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 0px !important;
}

/* product detail page css */
.product > .grid__item {
  max-width: 50% !important;
  width: 100% !important;
}

.product .product__info-wrapper {
  padding: 137px 80px 88px 20px !important;
  background: linear-gradient(180deg, #1b1ed1, #0f1194);
  display: flex;
  align-items: center;
}

.product .product__info-wrapper .product__info-container {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}

.product .product__info-wrapper .product__info-container > * + * {
  margin: 0px;
}

.product .product__info-wrapper .product__title h1 {
  font-size: 52px;
  line-height: 64px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
}

.product .product__info-wrapper .product__title {
  margin-bottom: 40px;
  width: 100%;
}

.product .product__info-wrapper variant-selects {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 36px;
  margin-bottom: 48px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  width: 100%;
}

.product .product__info-wrapper .product-form__input label {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  margin-bottom: 10px;
}

.product .product__info-wrapper .product-form__input {
  max-width: 100%;
}

.product .product__info-wrapper .product-form__input:nth-of-type(2) {
  max-width: calc(70% - 16px / 2);
  width: 100%;
  min-width: auto;
}

.product .product__info-wrapper .product-form__input:nth-of-type(3) {
  max-width: calc(30% - 16px / 2);
  width: 100%;
  min-width: auto;
  margin-left: 0px;
}

.product .product__info-wrapper .product-form__input:nth-of-type(1) {
  margin-bottom: 8px;
}

.product .product__info-wrapper .product-form__input .select::before,
.product .product__info-wrapper .product-form__input .select::after {
  content: none;
}

.product .product__info-wrapper .product-form__input .select select {
  border: 1px solid var(--color-white);
  background: #2a2caf;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  min-height: auto;
  height: auto;
  padding: 11px 20px;
  margin: 0px;
}

.product .product__info-wrapper .product-form__input .select select:focus,
.product
  .product__info-wrapper
  .product-form__input
  .select
  select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.product .product__info-wrapper .product-form__input .select option {
  color: #fff !important;
}

.product .product__info-wrapper .product-form__input .select svg {
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.product .product__info-wrapper .product-form__input .select svg path {
  fill: var(--color-white);
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity {
  max-width: 149px;
  width: 100%;
  padding-right: 12px;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  + div {
  max-width: calc(100% - 164px);
  width: 100%;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  .quantity__label {
  display: none;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input::before,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input::after {
  content: none;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input {
  border: 1px solid var(--color-white);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  background: transparent;
  border-radius: 4px;
  max-width: 152px;
  width: 100%;
}
.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input
  button {
  width: 18px;
  height: 18px;
  margin: 0px;
}
.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input
  button
  span {
  display: none;
}
.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input
  button
  svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input
  button
  svg
  path {
  fill: var(--color-white);
}

.product .product__info-wrapper .product__info-container .product-form {
  margin: 0px;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__quantity
  quantity-input
  .quantity__input {
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
  padding: 0px !important;
  opacity: 1;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote::before,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote::after,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit::before,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit::after {
  content: none;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit {
  padding: 15px 0;
  min-height: auto;
  height: auto;
  border: 1px solid var(--color-white);
  background: var(--color-white) !important;
  border-radius: 4px;
  transition: 0.3s all ease-in;
  max-width: 100%;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote:hover,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit:hover {
  background: transparent !important;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote
  span,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit
  span {
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: #0f1194;
  text-transform: var(--t-upper);
  transition: 0.3s all ease-in;
}

.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__quote:hover
  span,
.product
  .product__info-wrapper
  .product__info-container
  .product-form__buttons
  .product-form__submit:hover
  span {
  color: var(--color-white);
}

.product .product__media-wrapper {
  padding: 137px 40px 60px;
  background: var(--color-white);
}

.product
  .product__media-wrapper
  ul.product__media-list
  li
  .product-media-container {
  background-color: var(--color-white) !important;
  border-radius: 0px;
  border: 0px;
}

.product .product__media-wrapper slider-component:nth-of-type(1) {
  height: 394px;
  margin-bottom: 72px;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  ul
  li.product__media-item,
.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  ul
  li.product__media-item
  .media {
  height: 394px;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  ul
  li.product__media-item
  .media {
  padding: 0px !important;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  ul
  li.product__media-item
  video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .product__media-wrapper slider-component ul.thumbnail-list {
  padding: 0px;
  gap: 20px;
  justify-content: center;
}

.product
  .product__media-wrapper
  slider-component
  ul.thumbnail-list
  .thumbnail-list__item {
  max-width: 80px;
  width: 100% !important;
  height: 80px;
  /* display: block; */
}

.product
  .product__media-wrapper
  slider-component
  ul.thumbnail-list
  .thumbnail-list__item
  button[aria-current="true"] {
  border: 3px solid #0f1194;
}

.product
  .product__media-wrapper
  slider-component
  ul.thumbnail-list
  .thumbnail-list__item
  button {
  border-radius: 4px !important;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons
  .slider-counter {
  display: none;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons
  button {
  max-width: 48px;
  width: 100%;
  height: 48px;
  background: grey;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  transition: 0.3s all ease-in;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons
  button:hover {
  transform: scale(1.1);
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons
  button
  svg {
  width: 20px;
  height: 20px;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  .slider-buttons
  button
  svg
  path {
  fill: var(--color-white);
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(2)
  .slider-button {
  display: none;
}

.product
  .product__media-wrapper
  slider-component:nth-of-type(1)
  ul.product__media-list {
  max-width: 745px;
  width: 100%;
  margin: 0 auto;
  padding: 0 65px;
}

.section-product-feature-wrapper {
  padding: 100px 0 !important;
}

.section-product-feature-wrapper .page-width {
  align-items: flex-start;
}

.section-product-feature-wrapper .section-product-feature-images {
  max-width: calc(48.6% - 84px / 2) !important;
  width: 100% !important;
  padding-top: 0px !important;
}

.section-product-feature-wrapper .section-product-feature-inners {
  max-width: calc(52.4% - 84px / 2) !important;
  width: 100% !important;
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul {
  margin-bottom: 28px;
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(2)
  ul {
  padding: 0px;
  gap: 26px;
  justify-content: center !important;
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul
  li
  .deferred-media.media {
  padding: 0px !important;
  width: 100%;
  height: 440px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul
  li
  .deferred-media
  video,
.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul
  li
  .deferred-media
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul
  li
  .product-media-container {
  border: 0px;
}

.section-product-feature-wrapper
  ul.thumbnail-list
  .thumbnail-list__item.slider__slide {
  max-width: 95px !important;
  width: 100% !important;
  height: 95px;
}

.section-product-feature-wrapper
  .section-product-feature-inners
  .spfi-features-boxes-list
  .spfi-box {
  padding: 12px 16px;
}

.section-product-feature-wrapper
  .section-product-feature-images
  media-gallery
  slider-component:nth-of-type(1)
  ul
  li
  .product__media {
  padding: 0px !important;
  height: 440px;
}

.section-product-feature-wrapper
  .section-product-feature-inners
  .spfi-subtitle {
  text-transform: uppercase;
}

.section-product-feature-wrapper
  .section-product-feature-inners
  .spfi-description
  h4,
.section-product-feature-wrapper
  .section-product-feature-inners
  .spfi-description
  ul
  li {
  font-size: 18px;
  line-height: 28px;
  color: #3a3a3a;
}

.section-product-feature-wrapper
  .section-product-feature-inners
  .spfi-description
  ul
  li {
}

/* collapsible content css */

.collapsible-content .collapsible-content-wrapper-narrow {
  max-width: 918px;
}

.collapsible-content .collapsible-content-wrapper-narrow .accordion {
  padding: 25px 26px;
}

.collapsible-content
  .collapsible-content-wrapper-narrow
  .btn-contact-us::before,
.collapsible-content
  .collapsible-content-wrapper-narrow
  .btn-contact-us::after {
  content: none;
}

.collapsible-content .collapsible-content-wrapper-narrow a.btn-contact-us {
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-king);
  padding: 14.5px 0;
  transition: 0.3s all ease-in;
  border: 1px solid var(--color-king);
  background-color:transparent;
  svg{
    path{
      fill:currentColor;
    }
  }
}

.collapsible-content
  .collapsible-content-wrapper-narrow
  a.btn-contact-us:hover {
  background-color: var(--color-king);
  color: #fff;
}

.collapsible-content
  .collapsible-content-wrapper-narrow
  a.btn-contact-us
  svg
  path {
  transition: 0.3s all ease-in;
}

.collapsible-content
  .collapsible-content-wrapper-narrow
  a.btn-contact-us:hover
  svg
  path {
  fill: #0f1194;
}

/* Related products section css */
.related-products p.caption {
  font-size: 20px;
  line-height: 31px;
  font-weight: var(--fw-medium);
  color: #0f1194;
  margin-top: 0px;
  margin-bottom: 16px;
  text-align: left;
}

.related-products h2.related-products__heading {
  ont-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
  color: var(--text-color); 
  text-align: left;
}

.related-products .product-grid {
  column-gap: 32px;
  margin-bottom:1px;
}

.related-products .product-grid .grid__item {
  max-width: calc(25% - 32px * 3 / 3);
  width: 100%;
  border: 1px solid #e2e2e2;
    border-radius: 8px;
        overflow: hidden;
        margin-bottom:2px;
}

.related-products .product-grid .grid__item .card .card__inner .card__media {
  margin: 0px;
  width: 100%;
}

.related-products .product-grid .grid__item .card .card__inner,
.related-products
  .product-grid
  .grid__item
  .card
  .card__inner
  .card__media
  .media {
  height: 290px;
}

.related-products .product-grid .grid__item .card > .card__content {
  padding: 14px;
  margin-top: 0px;
  grid-template-columns: auto;
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information {
  padding: 0px;
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card-information {
  display: none;
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  h3 {
  margin-bottom: 12px;
  
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  h3
  a {
  font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
  color: #010101;
}
.related-products
  .product-grid
  .grid__item
  .card
  > .card__content .card__description{
  font-size: 10px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}
/*.related-products
  .product-grid
  .grid__item
  .card
  > */.card__content .card__viewmore{
      font-size: 11px;
    font-weight: 700;
    color: #0f1194;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height:1;
}
.card__content .card__viewmore svg{
width: 10px;
    height: 10px;
    stroke:#0f1194;
        vertical-align: bottom;
}
.related-products
  .product-grid
  .grid__item
  .card
  > .card__content .card__viewmore svg{
    display:inline-block;
  }
.related-products
  .product-grid
  .grid__item
  .card-wrapper:hover
  h3.card__heading
  a {
  text-decoration: none;
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  button.button {
  margin: 0px;
  max-width: 188px;
  width: 100%;
  font-size: 18px !important;
  line-height: 25px !important;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid var(--color-blue);
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  button.button:hover {
  background: transparent !important;
  color: var(--color-blue);
}

.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  button.button::before,
.related-products
  .product-grid
  .grid__item
  .card
  > .card__content
  .card__information
  button.button::after {
  content: none;
}

/* inner banner css */
.banner.banner--small .banner__box h2.banner__heading {
  font-size: 52px;
  line-height: 64px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
}

.banner.banner--small .banner__box {
  min-width: 100%;
  width: 100%;
  background: transparent;
}

/* contact form css */
.contact h2.title {
  text-align: center;
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: #101010;
}

body.page\.contact .contact h2.title {
  font-size: 24px;
  line-height: 30px;
  /* font-weight: var(--fw-semibold); */
  color: var(--text-color);
  text-align: center;
}

.contact form .contact__button {
  margin-top: 20px;
  text-align: center;
}

.contact form .contact__button button::before,
.contact form .contact__button button::after {
  content: none;
}

.contact form .contact__button button {
  max-width: 188px;
  width: 100%;
  padding: 14.5px 0;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-king);
  border: 1px solid var(--color-king);
  transition: 0.3s all ease-in;
  background-color:transparent;
}

.contact form .contact__button button:hover {
  background: var(--color-king);
  color: #fff;
}

/* main blog section css */

.main-blog {
  background: var(--color-white);
}

.main-blog h1 {
  display: none;
}

.main-blog .blog-articles {
  column-gap: 32px;
  row-gap: 56px;
  display: flex;
  flex-wrap: wrap;
}

.main-blog .blog-articles .blog-articles__article {
  max-width: calc(33.33% - 32px * 2 / 3);
}

.main-blog .blog-articles__article .card .card__inner {
  height: 332px;
  margin-bottom: 24px;
}

.main-blog .blog-articles__article .card > .card__content .card__information {
  padding: 0px;
}

.main-blog .blog-articles__article .card > .card__content .article-card__info {
  padding-top: 0px;
  margin-bottom: 16px;
  letter-spacing: normal;
}

.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__info
  time,
.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__info
  span {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--fw-regular);
  color: #666d80;
  text-transform: capitalize;
}

.main-blog .blog-articles__article .card > .card__content .card__heading {
  margin-bottom: 12px;
  letter-spacing: normal;
}

.main-blog .blog-articles__article .card > .card__content .card__heading a {
  font-size: 32px;
  line-height: 42px;
  font-weight: var(--fw-medium);
  color: #010101;
}

.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__excerpt {
  margin: 0px;
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: #3a3a3a;
  letter-spacing: normal;
}

.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__footer {
  margin-top: 24px;
}

.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__footer
  .button {
  max-width: 188px;
  width: 100%;
  padding: 15.5px 0;
  font-size: 18px;
  line-height: 25px;
  /* font-weight: var(--fw-semibold); */
  color: var(--color-white);
  text-transform: uppercase;
  transition: 0.3s all ease-in;
  border: 1px solid var(--color-blue);
}

.main-blog
  .blog-articles__article
  .card-wrapper:hover
  .card
  > .card__content
  .article-card__footer
  .button {
  background: transparent;
  color: var(--color-blue);
  text-decoration: none;
}

.main-blog
  .blog-articles__article
  .card-wrapper:hover
  .card
  > .card__content
  .card__heading
  a {
  text-decoration: none;
}

.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__footer
  .button::before,
.main-blog
  .blog-articles__article
  .card
  > .card__content
  .article-card__footer
  .button::after {
  content: none;
}

.contact.page-width {
  max-width: 840px !important;
}

.contact form .field::before,
.contact form .field::after {
  content: none;
}

.contact form .field .field__input {
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-regular);
  color: var(--text-color);
  padding: 15px !important;
}

.contact form .field .field__input {
  border: 1px solid var(--text-color);
  border-radius: 8px;
}

.contact form .field .field__input::placeholder {
  opacity: 1 !important;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-regular);
}

.contact form .field .contact__field-error .form__message {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 19px;
  font-weight: var(--fw-regular);
  color: var(--text-color);
}

.contact form .form-status-list {
  display: none;
}

.contact form > .form__message {
  margin-bottom: 20px;
}

.contact form > .form__message:focus {
  outline: none !important;
  box-shadow: none !important;
}

.contact form > .form__message .form-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 19px;
  font-weight: var(--fw-regular);
  color: var(--text-color);
}

.contact form > .form__message .form-status svg {
  margin: 0px;
}

.contact form .field .contact__field-error .form__message svg {
  margin: 0px;
}

.contact form .field label {
  display: none;
}

.contact form .field textarea.field__input {
  min-height: 140px;
}

.blog slider-component .slider-dots {
  display: none;
}

.product.product--small,
.featured-product.product {
  margin-top: -72px;
}

.featured-product.product .product__info-wrapper .product__text {
  display: none;
}

.footer__content-top.page-width {
  padding-bottom: 60px !important;
}

/* main.content-for-layout .shopify-section:nth-of-type(1) {
  margin-top: 72px;
} */

/* main.content-for-layout .shopify-section + .shopify-section {
  margin-top: 0px !important;
} */

/* blog detail page css */
article.article-template {
  padding: 50px 0;
}

article.article-template .article-template__hero-container {
  max-width: 1340px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto 30px;
}

article.article-template .article-template__hero-container .media {
  height: 500px;
}

article.article-template .article-template__hero-container .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article.article-template header {
  margin-bottom: 20px !important;
}

article.article-template header .article-template__title {
  font-size: 34px;
  line-height: 45px;
  letter-spacing: normal;
  margin-bottom: 15px;
}

article.article-template header span time,
article.article-template header span {
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--fw-medium);
  letter-spacing: normal;
}

article.article-template .article-template__social-sharing {
  display: none;
}

article.article-template .article-template__content p,
article.article-template .article-template__content li {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: #3a3a3a;
}

article.article-template .article-template__content ol,
article.article-template .article-template__content ul {
  padding-left: 40px;
  list-style-position: initial;
  margin: 20px 0;
}

article.article-template .article-template__back {
  margin-top: 50px;
  margin-bottom: 0px;
}

article.article-template .article-template__back a {
  max-width: 220px;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  color: var(--color-king);
  margin: 0 auto;
  gap: 12px;
  font-size: 18px;
  line-height: 25px;
  text-transform: var(--t-upper);
  border: 1px solid var(--color-king);
  transition: 0.3s all ease-in;
}

article.article-template .article-template__back a:hover {
  background: var(--color-king);
  color: #fff;
}

article.article-template .article-template__back a .icon-wrap {
  margin: 0px;
}

.article-images {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 50px !important;
  /* margin-top: 40px !important; */
}

.article-images .article-image {
  max-width: calc(25% - 32px * 3 / 4);
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.article-images .article-image a {
  width: 100%;
  height: 100%;
  display: block;
}

.article-images .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in;
}

.article-images .article-image:hover img {
  transform: scale(1.1);
}

.article-images .article-image a {
  position: relative;
}

.article-images .article-image a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  content: "";
  mix-blend-mode: multiply;
}

.error_page.banner,
body.page\.thankyou .banner {
  margin-top: -72px;
}

.error_page.banner h2 {
  font-size: 80px !important;
  line-height: 90px !important;
  margin-bottom: 10px;
}

.error_page.banner .banner__text {
  margin-top: 0px;
  margin-bottom: 15px;
}

.error_page.banner p {
  font-size: 30px !important;
  line-height: 42px !important;
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

.error_page.banner .banner__buttons .button::before,
.error_page.banner .banner__buttons .button::after {
  content: none;
}

.error_page.banner .banner__buttons {
  width: 100%;
  justify-content: center;
  margin-top: 0px;
}

.error_page.banner .banner__buttons .button {
  max-width: 220px;
  width: 100%;
  padding: 14.5px 0;
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid #0f1194;
  line-height: 25px;
  transition: 0.3s all ease-in;
}

.error_page.banner .banner__buttons .button:hover {
  border: 1px solid var(--color-white);
  color: var(--color-blue);
  background: var(--color-white);
}

/* Home Page Banner css */
.home-banner {
  height: auto;
  /* margin-top: -72px; */
}
.home-banner .slick-dotted.slick-slider{margin-bottom:0;}

.home-banner .home-slide .banner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}


.home-banner .home-slide {
  height: 75vh;
  position: relative;
}

.home-banner .home-slide::after {
  position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 1;
    pointer-events: none;
    background: linear-gradient(to right,
      rgba(0,15,33,.92) 0%,
      rgba(0,15,33,.82) 28%,
      rgba(0,15,33,.45) 48%,
      rgba(0,15,33,0)   68%);
}

@media (max-width: 749px) {
    .home-banner .home-slide::after {
      background: linear-gradient(to top,
        rgba(0,15,33,.92) 0%,
        rgba(0,15,33,.78) 45%,
        rgba(0,15,33,.35) 75%,
        rgba(0,15,33,.15) 100%);
    }
  }

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

.home-banner .banner-content h2 {
  font-size: 40px;
  line-height: 0.9 !important;
  font-weight: var(--fw-bold);
  margin-top: 0px;
  margin-bottom: 20px;
  color: var(--color-white);
  max-width: 500px;
}

.home-banner .banner-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin-top: 0px;
  margin-bottom: 20px;
}

.home-banner .banner-content a {
  max-width: 188px;
  width: 100%;
  display: block;
  padding: 14.5px 0;
  border-radius: 4px;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  transition: 0.3s all ease-in;
  text-align: center;
  text-decoration: none;
}

.home-banner .banner-content a:hover {
}

.home-banner .slick-dots {
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-banner .slick-dots li {
  margin: 0px;
  width: 8px;
  height: 8px;
}

.home-banner .slick-dots li button {
  padding: 0px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.home-banner .slick-dots li button::before {
  content: none;
}

.home-banner .slick-dots li.slick-active button {
  background: var(--color-white);
}

/* Thank you page css */

body.page\.thankyou .banner .banner__box {
  max-width: 100%;
}

body.page\.thankyou .banner .banner__heading {
  font-size: 48px;
  line-height: 59px;
  margin-bottom: 15px;
}

body.page\.thankyou .banner .banner__text {
  margin-top: 0px;
  margin-bottom: 15px;
}

body.page\.thankyou .banner .banner__text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
}

body.page\.thankyou .banner .banner__buttons {
  margin-top: 0px;
  width: 100%;
  justify-content: center;
}

body.page\.thankyou .banner .banner__buttons .button::before,
body.page\.thankyou .banner .banner__buttons .button::after {
  content: none;
}

body.page\.thankyou .banner .banner__buttons .button {
  max-width: 188px;
  width: 100%;
  padding: 14.5px 0;
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid #0f1194;
  line-height: 25px;
  transition: 0.3s all ease-in;
}

body.page\.thankyou .banner .banner__buttons .button:hover {
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-blue);
}

/* Privacy Policy page css */
body.page\.policy .main-page-title {
  font-size: 48px;
  line-height: 59px;
  color: #3a3a3a;
  margin-bottom: 20px;
}

body.page\.policy .rte p,
body.page\.policy .rte h1,
body.page\.policy .rte h2,
body.page\.policy .rte h3,
body.page\.policy .rte h4,
body.page\.policy .rte h5,
body.page\.policy .rte h6 {
  color: #3a3a3a;
}

body.page\.policy .rte p,
body.page\.policy .rte li {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: #3a3a3a;
  margin-top: 0px;
  margin-bottom: 15px;
}

body.page\.policy .rte ul,
body.page\.policy .rte ol {
  margin-top: 0px;
  margin-bottom: 15px;
}

body.page\.policy .rte p:nth-last-of-type(1) {
  margin-bottom: 0px;
}

body.page\.policy .rte h3 {
  margin-top: 0px;
  margin-bottom: 15px;
}

body.page\.policy .rte a {
  color: #3a3a3a;
  font-weight: var(--fw-bold);
}

body.page\.about-us .banner,
body.page\.contact .banner,
body.blog .banner,
body.page\.gallery .banner {
  margin-top: -72px;
}

.template-search h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 59px;
  color: var(--text-color);
}

.template-search .template-search__search form {
  margin-top: 0px;
}

.template-search.template-search--empty {
  min-height: 600px;
}

.template-search.template-search--empty .template-search__header > p {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: var(--text-color);
  text-align: center;
}

.template-search
  predictive-search
  .predictive-search__results-list
  .predictive-search__item
  .predictive-search__image {
  height: 60px;
  object-fit: cover;
}

/* Gallery list section css */

.gallery-list {
  padding: 100px 0;
}

.gallery-list .gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 12px;
  row-gap: 12px;
}

.gallery-list .gallery-wrapper .gallery-item {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.gallery-list .gallery-wrapper .gallery-item a::after {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.4;
  mix-blend-mode: multiply;
  content: "";
}

.gallery-list .gallery-wrapper .gallery-item a.demo {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-list .gallery-wrapper .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in;
}

.gallery-list .gallery-wrapper .gallery-item:hover img {
  transform: scale(1.1);
}

.lb-nav a.lb-prev {
  background: url(../assets/lightbox-arrow-left.svg) !important;
  background-repeat: no-repeat !important;
  display: block !important;
  opacity: 1 !important;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  left: -40px !important;
}

.lb-nav a.lb-next {
  background: url(../assets/lightbox-arrow-right.svg) !important;
  background-repeat: no-repeat !important;
  display: block !important;
  opacity: 1 !important;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  right: -50px !important;
}

.lightbox {
  position: fixed !important;
  top: 50% !important;
  transform: translate(0, -50%);
}

.lightbox .lb-dataContainer {
  display: none !important;
}

.lightbox .lb-nav {
  top: 50% !important;
  transform: translate(0, -50%) !important;
  height: 30px !important;
  padding: 0 20px !important;
}
.related-products .slick-slide > div {
  display: flex;
  height: 100%;
}

/* cart page css */
body.cart cart-items {
  padding-top: 100px;
  padding-bottom: 100px;
}

body.cart cart-items .cart__warnings {
  padding: 0px;
}

body.cart cart-items .cart__warnings h1.cart__empty-text {
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: var(--text-color);
}

body.cart cart-items .cart__warnings a.button {
  max-width: 240px;
  width: 100%;
  padding: 14.5px 0;
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: var(--fw-semibold); */
  border: 1px solid #0f1194;
  line-height: 25px;
  transition: 0.3s all ease-in;
  margin-bottom: 20px;
}

body.cart cart-items .cart__warnings a.button::before,
body.cart cart-items .cart__warnings a.button::after {
  content: none;
}

body.cart cart-items .cart__warnings a.button:hover {
  background: transparent;
  color: var(--color-blue);
}

body.cart cart-items .cart__warnings h2.cart__login-title {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 30px;
  /* font-weight: var(--fw-semibold); */
  color: var(--text-color);
}

body.cart cart-items .cart__warnings .cart__login-paragraph,
body.cart cart-items .cart__warnings .cart__login-paragraph a {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--fw-regular);
  color: var(--text-color);
  margin: 0px;
}

body.cart cart-items .cart__warnings .cart__login-paragraph a {
  font-weight: var(--fw-bold);
}

/* collection list page css */
.collections .title {
  margin: 0px;
  text-align: center;
  font-size: 48px;
  line-height: 59px;
  /* font-weight: var(--fw-semibold); */
  color: #101010;
}

.collections .collection-list {
  margin-top: 50px;
  gap: 32px;
}

.collections .collection-list .collection-list__item {
  max-width: calc(33.33% - 32px * 2 / 3);
  width: 100%;
}

.collections .collection-list .collection-list__item .card .card__inner {
  height: 350px;
  /* margin-bottom: 20px; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
}

.collections
  .collection-list
  .collection-list__item
  .card
  .card__inner
  .card__media {
  border-radius: 0px !important;
}

.collections .collection-list .collection-list__item .card {
  background: transparent;
}

.collections .collection-list .collection-list__item .card > .card__content {
  padding: 12px 10px;
  background: var(--color-blue);
}

.collections
  .collection-list
  .collection-list__item
  .card
  > .card__content
  .card__information {
  padding: 0px;
}

.collections
  .collection-list
  .collection-list__item
  .card
  > .card__content
  .card__heading
  a {
  font-size: 13px;
  line-height: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.collections
  .collection-list
  .collection-list__item
  .card
  > .card__content
  .card__heading
  .icon-wrap {
  display: none;
}

body.page\.contact
  #shopify-section-sections--18830604894434__contact_form_kPVTYF {
  display: none;
}

body.article .collection .card-wrapper .card .card__inner {
  margin-bottom: 0px;
}

body.article .collection .card-wrapper .card .card__content {
  background: var(--color-white);
  padding: 30px 0;
  border-top: 1px solid #cccccc40;
}

.collection .product-grid li.grid__item.scroll-trigger.animate--slide-in {
  transform: none !important;
}

body.cart .contact,
body.page\.thankyou .contact,
body.page\.policy .contact {
  display: none;
}

body.cart .collection .product-grid .grid__item {
  padding: 0px !important;
  max-width: calc(25% - 32px * 3 / 4);
}

body.cart .collection .product-grid {
  padding-left: 30px;
  /* margin-bottom: 0px; */
}

body.cart .collection .slider-buttons .slider-button {
  padding: 0px;
  width: 20px;
  height: 20px;
}

body.cart .collection .slider-buttons .slider-button svg path {
  fill: #101010;
}

body.cart .collection .slider-buttons .slider-counter span {
  color: #101010;
}

body.product\.glb .collection .card .card__inner {
  margin-bottom: 0px;
}

body.product\.glb .collection .card .card__content {
  background: var(--color-white);
}

body.search .contact {
  display: none;
}

body.product\.glb .collection .grid__item:first-child {
  margin-left: 0px;
}

body.product\.glb
  .collection
  .grid__item
  .card
  .card__content
  .card-information {
  display: none !important;
}

body.product\.glb .collection .product-grid {
  scroll-padding-left: 0px !important;
}

body.error-404 .contact {
  display: none;
}


/* ############ New Page 2 design css ###############*/
body.page.equipment-page .header-wrapper {
  background: var(--color-blue) !important;
}
.home-banner-design2 .banner-content .sub-title p {
  text-transform: uppercase;
  color: rgb(190 197 239);
  font-size: 15px;
  line-height: 1.2;
}

.home-banner-design2 .home-slide {
  background-color: #06073b;
  vertical-align:top;
}

.home-banner-design2 .slick-arrow {
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #000000;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-banner-design2 .slick-arrow.slick-prev {
  left: calc(((100% - 1340px) / 2) - 20px);
}

.home-banner-design2 .slick-arrow.slick-next {
  right: calc(((100% - 1340px) / 2) - 20px);
}

.home-banner-design2 .slick-arrow::before {
  content: "";
  background-image: url('data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cg08ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCIvPgoNPGcgaWQ9IlNWR1JlcG9fdHJhY2VyQ2FycmllciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cg08ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik02IDEySDE4TTE4IDEyTDEzIDdNMTggMTJMMTMgMTciIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
}

.home-banner-design2 .slick-arrow.slick-prev::before {
  transform: rotateY(180deg);
}

.home-banner-design2 .slick-dots li.slick-active, .home-banner-design2 .slick-dots li.slick-active button {
  width: 25px;
  border-radius: 50px;
  transform-origin: center;
}

.home-banner .banner-content .home-btnWrap .btn-secondary {
  background-color: transparent;
  border:2px solid rgba(255,255,255,1);
  color: #ffffff;
  border-radius: 0;
  &:hover{
     background-color:#fff;
    color:var(--color-navy);
  }
}

.btn-secondary {
  border-radius: 0;
}

.home-banner .banner-content a, .btn--primary {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
  max-width: fit-content;
  padding: 14.5px 24px;
  max-width: fit-content;
  line-height: 1.5;
  letter-spacing: 2px;
  font-size: 14px;
  border-radius: 0;
  border:1px solid var(--color-foreground);
}

.home-banner .banner-content a:hover:after, .btn--primary:hover:after {
  /* background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+CjxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik02IDEySDE4TTE4IDEyTDEzIDdNMTggMTJMMTMgMTciIHN0cm9rZT0iIzBmMTE5NCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgo8L3N2Zz4='); */
   background-color:var(--color-navy);
}

.btn--primary {
  background: var(--color-blue);
  /* border: 1px solid var(--color-blue); */
  color: #FFFFFF;
  text-decoration: none;
  transition: all ease 0.3s;
}

.btn--primary:hover {
  background: #ffffff;
  color: var(--color-blue);
}

.home-banner .banner-content a::after, .btn--primary:after {
  content: "";
  mask-image: url('data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cg08ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCIvPgoNPGcgaWQ9IlNWR1JlcG9fdHJhY2VyQ2FycmllciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cg08ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik02IDEySDE4TTE4IDEyTDEzIDdNMTggMTJMMTMgMTciIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  display: block;
  transition: all ease 0.3s;
  mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    /* background-color:var(--color-navy); */
    background-color:rgba(var(--color-foreground), 1);
    display:none;
}

.home-banner .banner-content .home-btnWrap .btn-secondary::after {
  display: none;
}

.home-banner .home-btnWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-with-text .image-with-text__content a.button {
  letter-spacing: 2px;
  font-size: 14px;
  border-radius: 0;
  max-width: fit-content;
  min-width: 165px;
}


/* product collection  */
.collection-design-2 .product-grid.grid--3-col-desktop li.grid__item {
  max-width: calc((100% - 64px) / 3);
}

.collection-design-2 .product-grid.grid--4-col-desktop li.grid__item {
  max-width: calc((100% - 96px) / 4);
}

.collection-design-2 .product-grid .card-wrapper .card {
  padding: 15px;
  border: 1px solid #dadada;
  background-color: #ffffff !important;
  border-radius: 0;
      transition: box-shadow .2s, border-color .2s;
  &:hover{
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    border-color: #ccc;
  }
}

.collection-design-2 .product-grid .card-wrapper .card .card__inner {
  box-shadow: unset;
  border: 1px solid #dadada;
}

.collection-design-2 .card__description {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0; 
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  }

  body .collection-design-2.collection .product-grid .card>.card__content .card__information .rfq-collection-btn {
    line-height: 1.1;
    min-height: unset;
    padding: 0;
    background: unset !important;
    color: #0f1194;
    font-weight: 600;
    font-size: 12px !important;
    text-align: left;
    border: 0 !important;
    justify-content: flex-start;
    max-width: fit-content;
        text-transform: none;
        position:absolute;
        bottom:0;
    &:hover{
      text-decoration:underline;
    }
  }

 body .collection-design-2.collection .product-grid .card>.card__content .card__information .rfq-divider{position: absolute;bottom: -40px;left: 0;right: 0;}

  .collection-design-2 .card__information h3 {
    margin-bottom: 0 !important;
  }

  .collection-design-2.collection .product-grid .card>.card__content .card__information .rfq-variant-selector {
      padding: 7px 24px 7px 7px !important;
      height: unset;
      line-height: normal;
      font-size: 12px;
      border: 1px solid #000;
  }

  .collection.collection-design-2 .product-grid .card>.card__content .card__information {
    position: relative;
  }

  .collection.collection-design-2 .product-grid .card>.card__content .card__information::after{
     content: "View →";
    font-size: 11px;
    color: #0f1194;
    font-weight: 700;
    display: block;
    position: absolute;
    bottom: -4px;
    right: 0;
    text-transform: capitalize; 
    opacity:0;
  }
.collection.collection-design-2 .product-grid .card>.card__content .card__information:hover::after{
  text-decoration:underline
}
.collection.collection-design-2 .product-grid .card>.card__content .card__information i {
   content: "View →";
    font-size: 11px;
    color: #0f1194;
    font-weight: 700;
    display: block;
    position: absolute;
    bottom: -4px;
    right: 0;
    text-transform: capitalize;
        font-style: normal;
        z-index:1;
    &:hover{
      text-decoration:underline
    }
}
/* feature content with image */
.cwi-section .page-width {
  padding-left: calc(((100% - 1340px) / 2) + 30px) !important;
  max-width: 100% !important;
  padding-right: 0 !important;
}

.cwi-section.cwi-section-design2 {
  padding: 60px 0;
  padding-bottom:0;
}

.cwi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .cwi-section-design2 .page-width {
    max-width: 1340px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .cwi-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0;
  }

  .cwi-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0F1194;
    margin: 0;
  }

  .cwi-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
  }

  .cwi-description {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
  }

  .cwi-description p {
    margin: 0;
  }

  .cwi-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    .cta-btn{
          padding: 12px 20px;
    }
  }

  .cwi-btn {
    width: 100%;
    padding: 14.5px 0;
    border-radius: 4px;
    font-size: 18px;
    line-height: 25px;
    /* font-weight: var(--fw-semibold); */
    color: var(--color-white);
    text-transform: uppercase;
    transition: .3s all ease-in;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    padding-inline: 14.5px;
    max-width: fit-content;
    text-transform: unset;
  }

  .cwi-btn::after {
    content: "";
    mask-image: url('data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cg08ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCIvPgoNPGcgaWQ9IlNWR1JlcG9fdHJhY2VyQ2FycmllciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cg08ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik02IDEySDE4TTE4IDEyTDEzIDdNMTggMTJMMTMgMTciIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+');
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    display: block;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: var(--color-navy);
  }

  .cwi-btn--primary {
    color: #ffffff;
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
  }

  .cwi-btn--primary:hover {
    background: transparent;
    border-color: var(--color-blue);
    color: var(--color-navy);
  }

  .cwi-btn--outline {
    background: transparent;
    color: #101010;
    border: 2px solid #101010;
  }

  .cwi-btn--outline:hover {
    background: #101010;
    color: #ffffff;
  }

  .cwi-btn--outline::after {
    display: none;
  }

  .cwi-media {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
  }

  .cwi-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cwi-media__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 4px;
  }

  .cwi-placeholder-svg {
    width: 48px;
    height: 48px;
    color: #999;
  }

  .cwi-media__caption {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin: 0;
    padding: 0 24px;
    line-height: 1.4;
  }


  /* content with image design 2 */
  .cwi-section-design2 .cwi-grid {
    border: 1px solid #dadada;
        border-radius: 14px;
    overflow: hidden;
  } 

   .cwi-section-design2 .cwi-content {
      padding: 20px 0 20px 40px;
   }

   .cwi-section-design2 .cwi-title {
      font-size: 32px;
   }

   .cwi-section-design2 .cwi-description {
    font-size: 16px;
   }

   .cwi-section-design2 .cwi-btn--outline {
    color: var(--color-king);
    background: transparent;
    border: 1px solid var(--color-king);
    max-width: 100%;
    &:hover{
      color:#fff;
      background-color:var(--color-king);
    }
   }

   .cwi-section-design2 .cwi-btn--outline:after {
    display: none;
   }


   .cwi-section-design2 .cwi-media {
    border-radius: 0;
   }

   .cwi-section .cwi-media {
    border-radius: 0;
   }


  /* collection faq section and insights */
  .fi-section {
    padding: 60px 0;
    background: #fff;
  }

  .fi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 36px;
    align-items: start;
  }

  .fi-title {
        font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 6px;
    margin: 0 0 4px;
    line-height: 1.3;
  }

  .fi-subtitle {
    font-size: 11px;
    color: #8a8a8a;
    margin-bottom: 20px;
    margin: 0 0 24px;
    line-height: 1.5;
  }

  /* ── FAQ ── */
  .fi-faq__list {
    /* border-top: 1px solid #e5e7eb; */
  }

  .fi-faq__item {
    border-bottom: 1px solid #e5e7eb;
  }

  .fi-faq__question {
   gap: 12px;
    padding: 18px 0;
    
    color: #111827;
    list-style: none;

        font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding:0;
  }
  .fi-faq__question:not([open]){
    padding:10px 0;
  }

  .fi-faq__question::-webkit-details-marker {
    display: none;
  }

  .fi-faq__icon {
    flex-shrink: 0;
    color: #0d0d0d;
        background-color: #f7f7f7;
        height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .fi-icon-minus {
    display: none;
  }
  details[open] .fi-icon-plus {
    display: none;
  }
  details[open] .fi-icon-minus {
    display: block;
  }

  .fi-faq__answer {
    padding: 0 0 18px;
    font-size: 11px;
    color: #555;
    line-height: 1.55;
    padding-top: 10px;
    padding-bottom:0;
    p{
      margin-top:0;
    }
  }

  .fi-faq__answer a {
    color: #2563eb;
  }

  /* ── Insights ── */
  .fi-insights__list {
    display: flex;
    flex-direction: column;
  }

  .fi-insights__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
  }

  .fi-insights__item:first-child {
    border-top: 1px solid #e5e7eb;
  }

  .fi-insights__item:hover .fi-insights__title {
    color: #2563eb;
  }

  .fi-insights__thumb {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
  }

  .fi-insights__img,
  .fi-insights__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fi-insights__category {
     
    color: #0f1194;
    margin: 0 0 4px;

        font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase; 
    margin-bottom: 3px;
  }

  .fi-insights__title {
     
    color: #0d0d0d;
    margin: 0 0 4px;
     
    transition: color 0.15s;

        font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .fi-insights__desc {
     
    color: #8a8a8a;
    margin: 0; 

        font-size: 10px; 
    line-height: 1.4;
  }

  /* ── CTA link ── */
  .fi-viewall { 
   color: #0f1194; 

    font-size: 12px;
    font-weight: 700; 
    text-decoration: none;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .fi-viewall:hover {
    text-decoration: underline;
  }

  body:has(.cwi-section) .header-wrapper {
    background: var(--color-navy) !important;
  }

  /* feature content with image end */

  /* Main Collection Product css */
  .collection-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
  }

  .collection-top-bar__heading {
    margin: 0;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
  }

  .collection-top-bar__count {
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(var(--color-foreground), 0.7);
  }


  /* Main Faq page css */
  .faq-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-section__heading {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.2;
  }

  .faq-section__content {
    margin-bottom: 32px;
  }

  .faq-section__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgb(var(--color-background));
  }

  .faq-item__question {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    list-style: none;
    position: relative;
  }

  .faq-item__question::-webkit-details-marker {
    display: none;
  }

  .faq-item__question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }

  .faq-item[open] .faq-item__question::after {
    content: '−';
  }

  .faq-item__answer {
    padding: 0 20px 20px;
  }


  /* Insight page css */
  .insights-section__wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  .insights-section__heading {
    margin: 0 0 25px;
    font-size: 42px;
    line-height: 1.1;

    text-align:center;
  }

  .insights-section__content {
    margin-bottom: 40px;
    max-width: 720px;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .insight-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgb(var(--color-background));
    border: 1px solid rgba(0,0,0,0.08);
    height: stretch;
    transition: box-shadow .2s, border-color .2s;
  &:hover{
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    border-color: #ccc;
  }
  }

  .insight-card__image-link {
    display: block;
    overflow: hidden;
    text-decoration:none;
    color:#3a3a3a;
    position:relative;
  }

  .insight-card__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.3s ease;
  }



.insight-video-play-icon {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

  .insight-card:hover .insight-card__image {
    transform: scale(1.04);
  }

  .insight-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
  }

  .insight-card__category {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
    color:#0f1194;
  }

  .insight-card__title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
  }

  .insight-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .insight-card__excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
  }

  .insight-card__link {
    margin-top: auto;
    font-weight: 600;
    text-decoration: none;
  }

  .insights-empty {
    padding: 32px;
    border-radius: 16px;
    border: 1px dashed rgba(0,0,0,0.2);
    text-align: center;
    grid-column: 1 / -1;
  }


  body main:has(.get-quote-section) ~ div.shopify-section:has(.get-quote-section) {
    display: none;
  }

  body:has(.download-resources) .header-wrapper {
    background: var(--color-blue) !important;
  }

  /* Download catalogue and pdf */

  .download-resources {
    padding: 60px 20px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-header h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
  }

  .section-description {
    max-width: 700px;
    margin: 0 auto;
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .resources-grid.layout-2{
        grid-template-columns: repeat(1, 1fr);
        .resource-card{flex-direction:row;align-items: center;    justify-content: space-between;}
        .resource-wrap{flex: 0 1 calc(100% - 250px);}
        .resource-badge{display:none;}
        .resource-text{}
        .resource-title{margin-bottom:0;        flex: 0 1 calc(100% - 250px);}
  }

  .resource-card {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .resource-card .btn--primary{
        /* margin-right: 0;
    margin-left: auto; */
    background-color:transparent;
    border:1px solid var(--color-king);
    color:var(--color-king);
    &:hover{
      background-color:var(--color-king);
      color:#fff;
    }
  }

  .resource-card:hover {
    transform: translateY(-4px);
  }

  .resource-badge {
    max-width: fit-content;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #f3f3f3;
    padding: 6px 15px;
    border-radius: 30px;
    line-height: 1;
  }

  .resource-title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
  }

  .resource-text {
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .resource-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .resource-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    background: #000;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
  }

  .resource-button:hover {
    opacity: 0.85;
  }

  /* 29-05-2026 */
  body:has(.custom-product-hero) .header-wrapper {
    /* background: var(--color-blue) !important; */
  }


  /* product hero section */
  .custom-product-hero__content .download-buttons .download-btn {
    padding: 10px 20px;
    border: 1px solid var(--color-king);
    color:var(--color-king);
    font-size: 11px;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    flex:1;
    transition:all 0.3s;
        justify-content: center;
        svg{
          path{
            fill:currentColor;
          }
        }
  }

  .custom-product-hero__content .download-buttons .download-btn:hover{
        /* box-shadow: 1px 1px 1px 1px #00000047; */
        background-color:var(--color-king);
        color:#fff;
  }

  .custom-product-hero__content .product-quote-button {
    max-width: 100%;
    justify-content: center;
  }

  /*-------product-hero.liquid--------*/

.custom-product-hero {
  padding: 32px 0 40px 0;
  background-color: #ffffff;
      border-bottom: 1px solid #e2e2e2;
}

.custom-product-hero__wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  align-items: start;
}

.custom-product-hero__media {
    max-width: 47.8%;
    padding-top:48px;
}

.custom-product-hero__content {
        max-width: 533px;
    width: 100%;
}

.custom-product-hero__main-media {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.custom-product-hero__main-media img,
.custom-product-hero__main-media video {
  width: 100%;
  display: block;
}

.custom-product-hero__thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.thumbnail-item {
  border: 1px solid #ddd;
  background: #fff;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  min-width: 90px;
}

.thumbnail-item.active {
  border-color: #000;
}

.thumbnail-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  display: block;
}

.video-thumb {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

.custom-breadcrumb {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 11px;
  padding-top: 8px;
}

.custom-breadcrumb a, .custom-breadcrumb a:visited, .custom-breadcrumb a:active, .custom-breadcrumb a:focus {
   color: #8a8a8a;
    text-decoration: none;font-weight:400;
}
.custom-breadcrumb a:hover {
    color: #0f0f0f;
}

.custom-breadcrumb a + span{margin: 0 6px;opacity: .5;}
.custom-breadcrumb a + span ~ span{color: #8a8a8a;}

.product-title {
  margin: 0 0 20px;
  font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}

.product-short-description {
  color: #555;
  padding-bottom:16px;
  border-bottom: 1px solid #dadada;
  font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.product-option-group {
  margin-bottom: 20px;
  padding-bottom:16px;
  border-bottom: 1px solid #dadada;
}

.option-label {
 font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.option-values input {
  display: none;
}

.option-values label {
  border: 2px solid var(--color-king);
  color:var(--color-king);
  background-color:transparent;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 16px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
}

.option-values input:checked + label, .option-values label:hover {
      border-color: var(--color-king);
    background-color: var(--color-king);
    color: #fff;
}

.quote-box {
  margin-top:18px;
}

.quote-label {
      font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #555;
}

.short-label {
    font-size: 14px;
    font-weight: 500;
}

.product-form-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.quantity-wrapper {
  display: flex;
  border: 2px solid #dadada;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-wrapper .qty-btn {
  width: 36px;
  border: 0;
  background: #f5f5f5;
  cursor: pointer;
  color: #000000;
  padding:11px 0;
}

.quantity-wrapper input {
  width: 40px;
  text-align: center;
  border: 0;
  font-weight:600;
}

.quantity-wrapper input::-webkit-inner-spin-button{
  display:none;
}


body .product-quote-button {
  flex: 1;
  font-size: 14px !important;
}

body .product-quote-button:hover {
   
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.download-btn {
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
}

.product-gallery-slider {
  position: relative;
}
.product-gallery-slider .slider-buttons{
  display:none;
}

.product-gallery-slider__list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.product-gallery-slider__list::-webkit-scrollbar {
  display: none;
}

.product-gallery-slider__slide {
  min-width: 100%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 611/420;
}

.product-gallery-image, .product-gallery-video {
    height: 100%;
}

.product-gallery-image img,
.product-gallery-video video,
.product-gallery-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.slider-buttons {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  padding: 0 16px;
  opacity: 0;
  display: none;
}

.product-gallery-slider:hover .slider-buttons {
    opacity: 1;
    display: none;
}

.slider-button {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.6);
  color: #fff;
  cursor: pointer;
}

.product-gallery-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-thumbnail {
  border: 2px solid #ddd;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 auto;
  max-width: fit-content;
}

.product-thumbnail.active {
  border-color: #3b2fd4;
}

.product-thumbnail img,
.video-thumbnail {
  width: 111px;
  height: 76px;
  object-fit: cover;
  display: block;
}

.video-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11111136;
  color: #fff;
}
.product-gallery-thumbnails img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;   /* clicks land on the button, not the img */
}
.product-gallery-thumbnails {
  cursor: grab;
  user-select: none;
}
.product-gallery-thumbnails.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
  /*------product-hero.liquid-------*/

  /*-------product-video.liquid------*/
 .product-video-section {
    padding: 30px 0;
  }

  .product-video-header {
    margin-bottom: 40px;
    max-width: 850px;
  }

  .product-video-title {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: rgb(var(--color-foreground));
  }

  .product-video-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(var(--color-foreground), 0.72);
  }

  .product-video-text p {
    margin: 0;
  }

  .product-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    max-width: 1000px;
  }

  .product-video-element,
  .product-external-video iframe {
  
    display: block;
    /* aspect-ratio: 16 / 9; */
    border: 0;

    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    aspect-ratio:16/9;
  }

  .product-external-video {
    line-height: 0;
    width:100%;
  }

  

  /*--------product-video.liquid------*/

  /*--------product-tabs.liquid-------*/

  .product-tabs-section {
  padding: 32px 0 40px 0;
}
.product-tabs-section, .technical-specifications, .product-video-section, .product-faq-section, .product-testimonial-section{
  background-color:#fff;
}
.product-tabs-nav {
  display: flex;
  gap: 40px;
  border-bottom: 2px solid #e2e2e2;
  margin-bottom: 40px;
}

.product-tab-button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(var(--color-foreground), .9);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}

.product-tab-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  background: var(--color-blue);
  transition: width .3s ease;
}

.product-tab-button.active {
  color: rgb(var(--color-foreground));
}

.product-tab-button.active::after {
  width: 100%;
}

.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content .rte {
  max-width: 950px;
}

.product-tab-content .rte p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.product-tab-content .rte h1,
.product-tab-content .rte h2,
.product-tab-content .rte h3,
.product-tab-content .rte h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.product-tab-content .rte ul,
.product-tab-content .rte ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.product-tab-content .rte li {
  margin-bottom:6px;
  line-height: 1.7;
      list-style-position: outside;
}

.empty-tab-content {
  opacity: .6;
}

@media screen and (max-width: 749px) {

  .product-tabs-section {
    padding: 32px 0;
  }

  .product-tabs-nav {
    gap: 24px;
    margin-bottom: 30px;
  }

  .product-tab-button {
    font-size: 16px;
    padding-bottom: 14px;
  }

}


{% comment %} product options {% endcomment %}
 .technical-specifications-note {
  max-width: 760px;
}

.technical-specifications h1,
.technical-specifications h2,
.technical-specifications h3,
.technical-specifications h4 {
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.2;
}

.technical-specifications-note h4 {
font-size: 20px;
font-weight: 600;
}

.technical-specifications table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0px;
}

.technical-specifications table tr {
  border-bottom: 1px solid rgba(var(--color-foreground), .12);
}

.technical-specifications table td {
  padding: 18px 0;
  vertical-align: top;
  line-height: 1.6;
}

.technical-specifications table td:first-child {
  width: 320px;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  padding-right: 30px;
  font-style: normal;
}

.technical-specifications table td:last-child {
  color: rgba(var(--color-foreground), .72);
}

.technical-specifications p {
  margin-bottom: 24px;
}

.technical-specifications-note {
  margin-top: 0px;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(var(--color-foreground), .6);
}

/*-----------------product-tabs.liquid--------------------*/

/*------------------product-detail-faq.liquid-------------*/

.product-faq-section {
  padding: 30px 0;
}
.faq-parent-wrapper{
  max-width:900px;
}
.product-faq-header {
  margin-bottom: 35px;
  max-width: 800px;
}

.product-faq-header p{
  margin-bottom:0;
  line-height:100%;
}

.product-faq-title {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.product-faq-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(var(--color-foreground), .72);
}

.product-faq-wrapper {
  border-top: 1px solid rgba(var(--color-foreground), .12);
}

.product-faq-item {
  border-bottom: 1px solid rgba(var(--color-foreground), .12);
}

.product-faq-question {
  max-width: 100%;
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), .05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .3s ease;
}

.product-faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.product-faq-answer {
  display: none;
  padding-bottom: 28px;
  max-width: 900px;
}

.product-faq-answer-inner {
  color: rgba(var(--color-foreground), .72);
  line-height: 1.8;
  font-size: 16px;
}

.product-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.product-faq-answer-inner p {
    margin-top: 0;
}

.product-faq-item.active .product-faq-answer {
  display: block;
}

/*--------------product-detail-faq.liquid---------*/
/*---------------product-quote.liquid-------------*/
.product-testimonial-section {
  padding: 30px 0;
}

.product-testimonial-card {
  display: flex;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 8px;
  background: rgba(var(--color-foreground), .03);
  align-items: flex-start;
  max-width:800px;
}

.product-testimonial-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #ece7ff;
  color:#3b2fd4;
  /* color: #5b4bff; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
}

.product-testimonial-icon svg{
  /* fill: #5b4bff; */
  fill: #3b2fd4;
  height: 22px;
    width: 22px;
  
}

.product-testimonial-content {
  flex: 1;
}

.product-testimonial-quote {
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(var(--color-foreground), .78);
  margin-bottom: 24px;
}

.product-testimonial-author-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.product-testimonial-author {
  font-size: 11px;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.product-testimonial-company {
  font-size: 11px;
  font-weight:400;
  color: rgba(var(--color-foreground), .55);
}

/*---------------product-quote.liquid-------------*/
.shopify-section:has(.two-card-section){background-color:#fff;}
.header__icon{height:32px;width:32px;}
.header__icon .icon{height:16px;width:16px;}
.header__search, .header__icon--cart{
    /* background: rgba(255, 255, 255, .06) !important; */
    border-radius: 4px;
}
.header__search svg path{
  fill: rgba(255, 255, 255, 1);
}
.header__icon--cart svg{
  stroke: rgba(255, 255, 255, 1);
}
.header__icon--cart svg path{

}

.cta-btn{
  background:var(--color-mustard);
    color: var(--color-navy);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    line-height: 1;
    text-align:center;
        justify-content: center;
    &:hover{
     background: #c8890a;
     /* color:var(--color-navy); */
     /* border-color:#c8890a; */
    }
    svg{
      stroke:var(--color-navy);
    }
}
.cta-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-navy);
}

.home-page .cta-btn{
   /* background:#fff; */
   color:var(--color-blue);
   /* border:1px solid #fff; */
   border: 1px solid var(--color-mustard);
   border-radius:0;
   text-transform: uppercase;
   color:var(--color-navy);
   &:hover{
    background:#c8890a;
    color:var(--color-navy);
    svg{
      stroke:var(--color-navy);
    }
   }
}
.home-page .cta-btn svg{
    stroke:var(--color-blue);
}

.product-quote-button.btn--primary.rfq-btn{
  
    border-radius: 5px;
    cursor: pointer;
    line-height: 1;
}
.product-quote-button.btn--primary.rfq-btn:hover{
    
    }
.product-quote-button.btn--primary.rfq-btn:hover:after{
      background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cg08ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCIvPgoNPGcgaWQ9IlNWR1JlcG9fdHJhY2VyQ2FycmllciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cg08ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik02IDEySDE4TTE4IDEyTDEzIDdNMTggMTJMMTMgMTciIHN0cm9rZT0iI0ZGRkZGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+);
}

.full-unstyled-link svg{
  display:none;
}

/*get quote popup */
    .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 20px;
    }

    .popup-overlay.active {
        display: flex;
    }

    .popup-box {
        position: relative;
        background: #fff;
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
        padding: 20px 35px 30px 35px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .popup-close {
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        color: #333;
    }

    .popup-close:hover {
        color: #000;
    }
    ..popup-content{margin-top:0;}

    .popup-content {
        margin-top: 10px;
    }
/*get quote popup*/




/*related product in PDP page*/
.color-scheme-1.gradient:has(product-recommendations.related-products){
  background-color:#fff;
}
.custom-hr{
  margin:7rem 0 0;
}
/*related product in PDP page*/

/*home page*/
.utility-bar.utility-bar--bottom-border{background:var(--color-navy);border-color:rgba(255,255,255,0.12);}
.announcement-bar__message a{color:#fff !important;}
.image-with-text .grid .image-with-text__media{
  /* margin-top:6rem; */
}
.collection__view-all a{    margin-top: 30px !important;border-radius:0;line-height: 1;
    font-weight: 600;
    letter-spacing: 0.1em;font-size:14px;overflow:hidden;    max-width: fit-content;
    border:1px solid var(--color-king);
    box-shadow:none;
    background-color:transparent;
    color:var(--color-king);
      &:hover{
        border-radius:0;
        background: var(--color-king);
        color: #fff;
        &:after{
          border-radius:0;
        }
      }
      &:after{
        box-shadow:none;
      }
      &:before{
        box-shadow:none;
      }
  }
  .collection.collection-design-2{padding-top:48px !important;padding-bottom:48px !important}
    .grfq__popupForm__modal .grfq__popupForm__button, .grfq__popupForm__modal .grfq__popupForm__buttonPrimary{margin:0 auto !important;}
/*home page*/
/*header quote form*/
  .popup-box .hcf-form-group input, .hcf-form-group textarea{
   padding: 13px 20px 13px;border-radius:5px;
  }
  .popup-box  .hcf-submit-btn{
    border-radius:5px;
    height:auto;
    background:transparent;
    color:var(--color-king);
    border:1px solid var(--color-king);
  &:hover{
    background-color:var(--color-king);
    color:#fff;
  }
  }
  .popup-box .hcf-form-group label{
    top:9px;    color: #939393;
  }
  .popup-box .hcf-form-group{
        margin-bottom: 15px;
  }
 .popup-box .hcf-form-group textarea{
    height:70px;border-radius:5px;
  }
/*header quote form*/
/*home featured*/
.home-featured{
  background-color: #f5f5f8 !important;
}
/*home featured*/
/*equipment page*/
.collection\.equipments .multicolumn.gradient{background:#fff;}
.equipment-page{background:#fff !important;padding-top:48px !important;}
.equipment-main{
                gap:56px;grid-template-columns: 0.75fr 1.25fr;
              .cwi-content{gap:0;}
              .custom-breadcrumb{margin-bottom:0;}
              .cwi-subtitle { font-size: 11px;font-weight: 800;letter-spacing: .16em;text-transform: uppercase;margin: 14px;margin-left:0;}
              .cwi-title{font-size: 38px;font-weight: 800;line-height: 1.08;letter-spacing: -.03em;margin-bottom: 18px;}
              .cwi-description{font-size: 15px;color: #555;line-height: 1.6;margin-bottom: 24px;max-width: 480px;}
              .cwi-buttons{gap:12px;}
              .cwi-btn--outline{padding: 10.5px 26px;border-radius: 5px;font-size: 12px;font-weight: 500;letter-spacing: .02em;text-decoration: none;
                  border: 2px solid var(--color-king);color: var(--color-king);display: flex;align-items: center;gap: 6px;transition: all .15s;line-height:1;background-color:transparent;}
              .cwi-btn--outline svg{width: 14px;height: 14px;stroke: currentColor;}

              .cwi-btn--outline:hover{background-color:var(--color-king);color:#fff;}
}
.equipment-slider{background-color:#fff !important;    border-bottom: 1px solid #e2e2e2;}
.equipment-page{
              .collection-top-bar{margin-bottom: 28px;    position: absolute;}
              .collection-top-bar__heading{font-size: 24px;font-weight: 800;letter-spacing: -.02em;}
}

.equipment-download-brochure{
              .cwi-grid{gap:0;        grid-template-columns: 0.93fr 1.07fr;border-radius:8px;}
              .cwi-content{gap:0;padding: 36px 40px;display: flex;flex-direction: column;justify-content: center;}
              .cwi-subtitle{font-size: 10px;font-weight: 800;letter-spacing: .14em;text-transform: uppercase;margin-bottom: 10px;}
              .cwi-title{font-size: 22px;font-weight: 800;letter-spacing: -.01em;margin-bottom: 10px;}
              .cwi-description{font-size: 12px;color: var(--mid);line-height: 1.55;margin-bottom: 20px;max-width: 400px;}
              .cwi-btn--outline{display: inline-flex;align-items: center;gap: 8px;padding: 12px 22px;color: var(--color-king);border-radius: 6px;font-size: 12px;text-align:center;
                                 font-weight: 700;text-decoration: none;transition: background .15s;line-height: 1;background-color: transparent;transition: 0.3s all ease-in;
                                     justify-content: center;
                                &:hover{
                                  background-color:var(--color-king);color: #fff;
                                }}
              .cwi-media{min-height: auto;aspect-ratio: 591 / 248;}
}
.mobile-facets__wrapper{display:none !important;}
#FacetsWrapperDesktop{display:none;}
/*equipment page*/

/*footer*/
.get-quote-section__right .btn span{line-height:1;}

footer.footer{
  position:relative;
  overflow:hidden;
  padding-top:60px !important;
  .footer__blocks-wrapper{    align-items: flex-start;}
  .footer-block{
    &:nth-child(1){width:100%;flex:2;}
    &:nth-child(2){width:100%;flex:1;}
    &:nth-child(3){width:100%;flex:1;}
    &:nth-child(4){width:100%;flex:1;}
  }
  .footer-block-image{max-width: 260px;}
  .footer-logo-description{    font-size: 12px; line-height: 1.6;}
  .footer-social-wrapper{display:none;}
  .footer-block--menu{display: flex;flex-direction: column;
    .link-list-wrapper{display: flex;flex-direction: column;}
   .footer-block__details-content{display:flex;flex-direction:column;color:#fff;}
  }
  .footer-block__heading{font-size: 10px;text-transform: uppercase;font-weight: 800;letter-spacing: .14em;margin-bottom: 14px;}
  .footer-block__details-content p{font-size:12px;}
  .footer-block__details-content a{color:#fff;font-size:12px;}

  .copyright__content{font-size:10px;line-height: 1;}
  .copyright__content_right{font-size:10px;}
  .footer__policy_content{line-height:1;}
  .footer__copyright caption{line-height:1;}
  .footer__content-bottom-wrapper{padding: 20px 0 28px;}
  &:before{
    content:'';
    background-image:url(./rapta-brandmark-white.png);
    height: 420px;
        width: 392px;
        object-fit: cover;
        position: absolute;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        right: -150px;
        top: -60px;
        opacity: 0.22;
    @media (max-width:749px){
      top: auto;
        bottom: -40px;
        right:-90px;
        width:240px;
        height:224px;
        opacity:0.16;
    }
  }
}

/*footer*/
/* product detail */
.custom-product-hero__media{
  position:relative;
  &:before{
    content:'';
    background-image:url(./rapta-brandmark-white.png);
    height: 80px;
        width: 80px;
        object-fit: cover;
        position: absolute;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        right: 0px;
        top: 50px;
        opacity: 0.22;
        z-index:1;
        @media (max-width:749px){
          top:5px;
          height: 50px;
          width: 50px;
        }
      }
}
/* product detail */

.collection-default .collection .product-grid .card > .card__content .card__information .rfq-variant-selector {
  margin-bottom: 0px !important;
}

.collection-default .collection .product-grid .card > .card__content .card__information .card__heading {
    margin-bottom: 0px;
}

.collection-default h2.collection-top-bar__heading {
    display: none;
}


.collection-default .collection .product-grid p.card__description {
    margin: 0px;
}


.template-equipments .collection.collection-design-2, .template-component .collection.collection-design-2{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5{
  font-family: var(--ff-AkGr) !important;
  line-height:1 !important;
  font-synthesis: none;
}
body, a, p, table, th, tbody, span{
  font-family: var(--ff-AkGr) !important;
  font-weight:400 !important;
  font-synthesis: none;
}
h1, h2, .h1, .h2, h3, .h3{
  font-weight:700 !important;
  font-synthesis: none;
  letter-spacing: 0.05em !important;
  span{
    font-weight:700 !important;
  font-synthesis: none;
  }
}
 h4, h5, .h0, .h4, .h5, h6, .h6, .list-menu__item, .list-menu__item span, .footer-block__details-content a, .footer-block__details-content p {
  font-weight:500 !important;
  font-synthesis: none;
}
b, strong{
  font-weight:500 !important;
  font-synthesis: none; 
}
a.btn, .btn, .get-quote, a.button, .grfq-quote-widget-label span, a.fill, a.download-btn, button[type="submit"], button[type="button"] {
  font-weight:700 !important;
  span{
    font-weight:700 !important;
  }
}

/* global theme buttons */
/* text transform uppercase */
a.btn, .btn, .get-quote, a.button, .grfq-quote-widget-label span, a.fill, button[type="submit"], button[type="button"], h1, h2, .section-testimonials-title, a.download-btn{
  text-transform:uppercase !important;
  letter-spacing: 0.05em !important;
  span{
    text-transform:uppercase !important;
  letter-spacing: 0.05em !important;
  }
}
.h5.card__heading{
 a {
text-transform:capitalize;
  }
}
/* text transform uppercase */

 a.fill, button.fill{
  &:hover{
  background-color:#c8890a;
  }
}
a.outline, button.outline{
  &:hover{
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
  }
}

/* thankyou page */
.banner__buttons{
  a.button--primary{
    min-width:fit-content;
    border:1px solid #fff;
    color:#fff;
    background-color:transparent;
    &:after{box-shadow:none;}
    &:before{box-shadow:none;}
    &:hover{
      color:var(--color-navy);
      background-color:#fff;
      &:after{box-shadow:none;}
    &:before{box-shadow:none;}
    }

  }
}
/* thankyou page */
/* quote popup */
.grfq-quote-widget-half-bottom{
  background-color:var(--color-mustard) !important;
  border:1px solid var(--color-navy) !important;
  .grfq-quote-widget-label{
    color:var(--color-navy) !important;
  }
&:hover{   background: #c8890a; !important}
}
#rfq_popup_form{
  .grfq__popupForm__button{
    border-color:var(--color-king) !important;
    color:var(--color-king) !important;
    background-color:transparent;
    &:hover{
      color:#fff !important;
      background-color:var(--color-king) !important;
    }
  }
  .grfq__popupForm__buttonPrimary{
    background-color:transparent;
    color:var(--color-king);
    border-color:var(--color-king);
    &:hover{
      color:#fff !important;
      background-color:var(--color-king) !important;
    }
  }
}
/* quote popup */
/* search page */
.rfq-collection-btn.rfq-btn{
  background-color:var(--color-mustard) !important;
  border-color:var(--color-navy) !important;
  color:var(--color-navy) !important;
  &:hover{   background: #c8890a !important;}
}
/* search. page */