@font-face {
  font-family: 'Garet Book';
  src: url('../fonts/Garet-Book.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('../fonts/Garet-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/dm-sans-v15-latin-600.woff2') format('woff2');
}

:root {
  --bs-primary: #d6aa77;
  --bs-primary-rgb: 214, 170, 119;
  --bs-dark: #1e1f24;
  --bs-dark-rgb: 30, 31, 36;
  --bs-dark-31: #313236;
  --bs-gray-50: #f3f3f3;
  --bs-gray-100: #f5f5f5;
  --bs-gray-200: #dedede;
  --bs-gray-300: #d6d6d6;
  --bs-gray-400: #969696;
  --bs-fbf6f1: #fbf6f1;
  --bs-f7f7f9: #f7f7f9;
  --bs-f8f8f8: #f8f8f8;
  --bs-eaeaea: #eaeaea;
  --bs-ff3333: #ff3333;
  --bs-fff8ef: #fff8ef;
  --bs-f0f0f0: #f0f0f0;
  --bs-ff3333-rgb: 255, 51, 51;
  --bs-danger: #ee2445;
  --bs-danger-rgb: 238, 36, 69;
  --bs-body-color: var(--bs-dark);
  --bs-font-sans-serif: "Garet Book", sans-serif !important;
  --bs-font-monospace: "DM Sans", sans-serif !important;
  --bs-body-font-size: 14px;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.5;
  --bs-heading-color: var(--bs-dark);
  --bs-link-hover-color: #dab385;
  --bs-link-color: var(--bs-primary);
  --bs-border-color: var(--bs-gray-300);
  --bs-border-radius: 0;
  --bs-font-weight-300: 300;
  --bs-font-weight-600: 600;
  --bs-box-shadow: rgba(var(--bs-dark-rgb), 0.05) 0 6px 12px 2px;
  --swiper-theme-color: var(--bs-dark);
  --swiper-pagination-bullet-inactive-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bottom: 20px;
  --swiper-navigation-size: 40px;
  --swiper-pagination-bullet-horizontal-gap: 2px;
  --section-padding-x: 90px;
  --section-margin-bottom: 40px;
  --bs-border-radius-sm: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: var(--bs-dark);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 0;
  line-height: 28px;
}

ul {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-font-monospace);
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0;
}

textarea {
  resize: none;
}

b,
strong {
  font-weight: bold;
}

body {
  overflow-x: hidden;
}

/* HEADING */

.font-sans-serif {
  font-family: var(--bs-font-sans-serif) !important;
}

.heading-01 {
  font-size: 36px;
}

.heading-02 {
  font-size: 32px;
}

.heading-03 {
  font-size: 24px;
}

.heading-04 {
  font-size: 20px;
}

.heading-05 {
  font-size: 18px;
}

.heading-06 {
  font-size: 16px;
}

.small {
  font-size: 12px;
}

.lh-lg {
  line-height: 24px !important;
}

/* BUTTON */

.btn {
  --bs-btn-padding-x: 16px;
  --bs-btn-padding-y: 15px;
  --bs-btn-font-size: 14px;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 20px;
  --bs-btn-border-radius: 0;
  --bs-btn-box-shadow: rgba(var(--bs-dark-rgb), 0.05) 0 6px 12px 2px;
  --bs-btn-focus-box-shadow: var(--bs-btn-box-shadow);
  --bs-btn-font-family: var(--bs-font-monospace);
  box-shadow: var(--bs-btn-box-shadow);
  min-width: 150px;
  text-transform: capitalize;
}

.btn-sm {
  --bs-btn-padding-y: 11px;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: var(--bs-link-hover-color);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-link-hover-color);
  --bs-btn-active-border-color: var(--bs-link-hover-color);
  --bs-btn-active-shadow: var(--bs-btn-box-shadow);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-dark {
  --bs-btn-bg: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);
  --bs-btn-hover-bg: var(--bs-dark-31);
  --bs-btn-hover-border-color: var(--bs-dark-31);
  --bs-btn-focus-shadow-rgb: var(--bs-dark-rgb);
  --bs-btn-active-bg: var(--bs-dark-31);
  --bs-btn-active-border-color: var(--bs-dark-31);
  --bs-btn-active-shadow: var(--bs-btn-box-shadow);
  --bs-btn-disabled-bg: var(--bs-dark);
  --bs-btn-disabled-border-color: var(--bs-dark);
}

/* FORM CONTROL */

.form-control {
  box-shadow: none !important;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-font-weight-300);
  padding: 16px;
  height: 52px;
}

.form-control:focus {
  border-color: rgba(var(--bs-primary-rgb), 0.4);
}

.form-control::-webkit-input-placeholder {
  color: var(--bs-gray-400);
}

.form-control::-moz-placeholder {
  color: var(--bs-gray-400);
}

.form-control:-ms-input-placeholder {
  color: var(--bs-gray-400);
}

.form-control:-moz-placeholder {
  color: var(--bs-gray-400);
}

.form-select {
  box-shadow: none !important;
  padding: 12px 16px;
}

.form-select:focus {
  border-color: rgba(var(--bs-primary-rgb), 0.4);
}

.form-select-sm {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
}

.form-label {
  color: rgba(var(--bs-dark-rgb), 0.7);
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
  margin-bottom: 12px;
}

textarea.form-control {
  min-height: 104px;
  height: auto;
}

.text-animation,
.footer .menu a {
  position: relative;
}

.text-animation::before,
.footer .menu a::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background-color: var(--bs-dark);
  bottom: -4px;
  left: 0;
  margin: 0 auto;
  transition: width 0.4s ease;
}

.text-animation:hover::before,
.footer .menu a:hover::before {
  width: 100%;
}

.btn-cta {
  position: relative;
  display: inline-block;
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
}

.btn-cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--bs-dark);
  transition: width 0.4s ease, right 0.4s ease;
}

.btn-cta:hover::before {
  width: 0;
  right: 100%;
}

.btn-cta-light {
  color: var(--bs-white);
}

.btn-cta-light::before {
  background-color: var(--bs-white);
}

/* TEXT COLOR */

.text-dark-70 {
  color: rgba(var(--bs-dark-rgb), 0.70);
}

.bg-light-fbf {
  background-color: var(--bs-fbf6f1) !important;
}

.bg-light-f7f {
  background-color: var(--bs-f7f7f9) !important;
}


/* SWIPER SETTING */

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-light {
  --swiper-theme-color: var(--bs-white);
  --swiper-pagination-bullet-inactive-color: var(--swiper-theme-color);
}

/* HEADER */

.header {
  background-color: var(--bs-white);
  padding: 21px 0;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: var(--bs-dark);
  --bs-navbar-hover-color: var(--bs-dark);
  --bs-navbar-disabled-color: rgba(var(--bs-dark-rgb), 0.3);
  --bs-navbar-active-color: var(--bs-primary);
  --bs-navbar-nav-link-padding-x: 16px;
  --bs-navbar-toggler-padding-y: 0;
  --bs-navbar-toggler-padding-x: 0;
  --bs-navbar-toggler-border-radius: 0;
  --bs-navbar-toggler-focus-width: none;
  --bs-navbar-brand-margin-end: 0;
  --bs-btn-width: 150px;
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0;
  --bs-nav-link-font-weight: 300;
  --bs-nav-link-font-size: 16px;
}

.navbar-brand {
  max-width: 200px;
}

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67386 0.986487L4.82993 4.83041C4.77637 4.88417 4.71271 4.92682 4.64263 4.95592C4.57254 4.98502 4.4974 5 4.42151 5C4.34563 5 4.27049 4.98502 4.2004 4.95592C4.13032 4.92682 4.06666 4.88417 4.0131 4.83041L0.169172 0.986487C0.060853 0.878168 -1.61408e-09 0.731256 0 0.578069C1.61408e-09 0.424883 0.060853 0.277971 0.169172 0.169652C0.277491 0.0613334 0.424403 0.000480595 0.577589 0.000480593C0.730775 0.000480592 0.877687 0.0613334 0.986006 0.169652L4.422 3.60564L7.85798 0.169172C7.9663 0.0608532 8.11322 0 8.2664 0C8.41959 0 8.5665 0.0608532 8.67482 0.169172C8.78314 0.277491 8.84399 0.424403 8.84399 0.577589C8.84399 0.730775 8.78314 0.877687 8.67482 0.986006L8.67386 0.986487Z' fill='%231E1F24'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 8px;
  vertical-align: middle;
  border: 0;
}

.mega-dropdown-menu {
  --bs-dropdown-spacer: 0;
  --bs-dropdown-padding-y: 40px;
}

.mega-dropdown-col h6 {
  color: rgba(var(--bs-dark-rgb), 0.5);
  font-size: 12px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.mega-dropdown-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-dropdown-col li a {
  font-size: 14px;
}

.mega-dropdown-col-brand ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.navbar .btn {
  min-width: var(--bs-btn-width);
}

.navbar-toggler {
  border: 0;
  z-index: 1;
  height: 12px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}

.navbar-toggler span {
  display: flex;
  height: 2px;
  width: 100%;
  border-radius: 12px;
  background-color: var(--bs-dark);
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* FOOTER */

.footer .container {
  max-width: 1410px;
}

.footer-top {
  padding: 90px 0;
}

.footer-top-link h6 {
  margin-bottom: 32px;
}

.footer-top-link ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  list-style: none;
}

.footer-top-link a {
  font-size: 12px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--bs-gray-200);
}

.footer-bottom-link {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.footer-bottom-social a {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-social a:hover {
  background-color: var(--bs-primary);
}

.footer-bottom-social a:hover img {
  filter: brightness(0) invert(1);
}

/* SECTION HERO */

.section-hero {
  position: relative;
}

.hero-banner-image {
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bs-dark-rgb), 0.15);
}

.hero-banner-content {
  position: absolute;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 120px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px;
}

.hero-banner-content p {
  color: var(--bs-white);
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 36px;
}

/* SECTION SEARCH MODAL */

.section-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-white);
  z-index: 2;
  display: none;
  overflow: auto;
}

.search-modal {
  margin: 60px 0 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.search-modal-input {
  max-width: 1600px;
  width: 100%;
}

.search-modal-input .form-control {
  height: 80px;
  font-size: 32px;
  background-color: var(--bs-gray-100);
  padding: 16px 24px;
  border: 0;
}

.search-modal-icon {
  padding-right: 0;
  padding-left: 36px;
  border: 0;
  background-color: var(--bs-gray-100);
}

.search-modal-clear {
  background-color: var(--bs-gray-100);
  text-transform: uppercase;
  text-decoration: underline;
  padding: 16px;
  border: 0;
  cursor: pointer;
}

.search-modal-clear input {
  position: absolute;
  opacity: 0;
  height: 100%;
  top: 0;
  right: 0;
}

/* SECTION STRIP */

.section-strip {
  background-color: var(--bs-dark);
  padding: 5px 0;
  text-align: center;
  color: var(--bs-white);
}

.section-strip .btn-cta::before {
  bottom: 4px;
}

.swiper-strip {
  max-width: 634px;
  margin: 0 auto;
  --swiper-navigation-size: 0;
}

/* SECTION EYE CARE */

.section-eye-care {
  min-height: 916px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.eye-care-left {
  max-width: 805px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.eye-care-right {
  width: 100%;
}

.eye-care-top,
.eye-care-bottom {
  min-height: 458px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: var(--bs-white);
}

.eye-care-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 678px;
  margin: 0 auto;
  position: relative;
}

.eye-care-top-content img:nth-child(2) {
  margin: 0 -50px;
}

.eye-care-top-content-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(var(--bs-white-rgb), 0.4);
  backdrop-filter: blur(7px);
  text-align: center;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.eye-care-top-content-text span {
  font-size: 12px;
  color: var(--bs-primary);
  text-decoration: underline;
  margin-bottom: 40px;
}

.eye-care-top-content-text .heading-05 {
  font-weight: 500;
}

.eye-care-top-content-text p {
  font-size: 24px;
  font-family: var(--bs-font-monospace);
  color: var(--bs-dark-31);
  font-weight: var(--bs-font-weight-600);
  max-width: 445px;
  margin: 16px auto 0;
}

.eye-care-bottom {
  background-color: var(--bs-fbf6f1);
}

.eye-care-content {
  max-width: 840px;
  margin: 0 auto;
}

.eye-care-content p {
  margin-bottom: 8px;
}

.eye-care-line-top::before,
.eye-care-line-top::after,
.eye-care-line-left::before,
.eye-care-line-left::after {
  content: "";
  position: absolute;
  background-color: rgba(var(--bs-white-rgb), 0.25);
}

.eye-care-line-top::before,
.eye-care-line-top::after {
  width: 100%;
  height: 1px;
  top: 40px;
  left: 0;
}

.eye-care-line-top::after {
  top: 60px;
}

.eye-care-line-left::before,
.eye-care-line-left::after {
  width: 1px;
  height: 100%;
  left: 40px;
  top: 0;
}

.eye-care-line-left::after {
  left: 60px;
}

.py-90 {
  padding-top: var(--section-padding-x);
  padding-bottom: var(--section-padding-x);
}

.pt-90 {
  padding-top: var(--section-padding-x);
}

.pb-90 {
  padding-bottom: var(--section-padding-x);
}

.my-90 {
  margin-top: var(--section-padding-x);
  margin-bottom: var(--section-padding-x);
}

.mb-40 {
  margin-bottom: var(--section-margin-bottom);
}

.mt-40 {
  margin-top: var(--section-margin-bottom);
}

/* SECTION BRAND */

.swiper-brand {
  width: 100%;
  height: 128px;
  margin-left: auto;
  margin-right: auto;
}

.card-brand {
  height: 60px;
  background-color: var(--bs-f7f7f9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-brand-lg {
  height: 100px;
}

/* SECTION STYLE */

.section-style {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
}

.style-left-content,
.style-right-image {
  width: 50%;
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.style-left-content {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}

.style-left-content p {
  max-width: 750px;
  margin: 0 auto;
}

/* SECTION PRODUCT FRAMESA */

.section-product-frames {
  padding-top: var(--section-padding-x);
}

.row.products {
  border-left: 1px solid var(--bs-gray-200);
  --bs-gutter-x: 0;
}

.card-product {
  position: relative;
  /* border: 1px solid var(--bs-gray-200); */
  border-bottom: 1px solid var(--bs-gray-200);
  border-right: 1px solid var(--bs-gray-200);
  border-top: 1px solid var(--bs-gray-200);
  padding: 40px;
  /* margin-left: -1px; */
  margin-top: -1px;
  width: 100%;
}

.card-product-image {
  text-align: center;
  min-height: 320px;
  max-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product-image>img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.card-product-price {
  line-height: normal;
  text-align: end;
  opacity: 0.5;
}

.card-product-price del {
  display: block;
}

.card-product-color {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 30px;
}

.card-product-color span {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.card-product-color .card-product-color-multi {
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

.card-product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.card-product-heading span {
  color: var(--bs-gray-400);
  display: inline-block;
  margin-left: 4px;
}

/* SECTION CTA */

.cta-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 120px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(107deg, var(--bs-primary) 16.04%, rgba(var(--bs-white-rgb), 0) 70.13%);
}

.cta-banner.no-overlay::before {
  content: none;
}

.cta-content {
  position: relative;
  max-width: 100%;
  color: var(--bs-white);
}

.cta-content p {
  margin-top: 8px;
  font-size: 16px;
}

.cta-content .btn {
  margin-top: 32px;
}

/* SECTION PROMISES */

.section-promises {
  position: relative;
  overflow: hidden;
  min-height: 960px;
  display: flex;
}

/* ACCORDION */

.accordion {
  --bs-accordion-bg: var(--bs-fbf6f1);
  --bs-accordion-border-color: var(--bs-gray-200);
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 24px;
  --bs-accordion-btn-bg: var(--bs-fbf6f1);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67386 0.986487L4.82993 4.83041C4.77637 4.88417 4.71271 4.92682 4.64263 4.95592C4.57254 4.98502 4.4974 5 4.42151 5C4.34563 5 4.27049 4.98502 4.2004 4.95592C4.13032 4.92682 4.06666 4.88417 4.0131 4.83041L0.169172 0.986487C0.060853 0.878168 -1.61408e-09 0.731256 0 0.578069C1.61408e-09 0.424883 0.060853 0.277971 0.169172 0.169652C0.277491 0.0613334 0.424403 0.000480595 0.577589 0.000480593C0.730775 0.000480592 0.877687 0.0613334 0.986006 0.169652L4.422 3.60564L7.85798 0.169172C7.9663 0.0608532 8.11322 0 8.2664 0C8.41959 0 8.5665 0.0608532 8.67482 0.169172C8.78314 0.277491 8.84399 0.424403 8.84399 0.577589C8.84399 0.730775 8.78314 0.877687 8.67482 0.986006L8.67386 0.986487Z' fill='%231E1F24'/%3E%3C/svg%3E%0A");
  --bs-accordion-btn-icon-width: 9px;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67386 0.986487L4.82993 4.83041C4.77637 4.88417 4.71271 4.92682 4.64263 4.95592C4.57254 4.98502 4.4974 5 4.42151 5C4.34563 5 4.27049 4.98502 4.2004 4.95592C4.13032 4.92682 4.06666 4.88417 4.0131 4.83041L0.169172 0.986487C0.060853 0.878168 -1.61408e-09 0.731256 0 0.578069C1.61408e-09 0.424883 0.060853 0.277971 0.169172 0.169652C0.277491 0.0613334 0.424403 0.000480595 0.577589 0.000480593C0.730775 0.000480592 0.877687 0.0613334 0.986006 0.169652L4.422 3.60564L7.85798 0.169172C7.9663 0.0608532 8.11322 0 8.2664 0C8.41959 0 8.5665 0.0608532 8.67482 0.169172C8.78314 0.277491 8.84399 0.424403 8.84399 0.577589C8.84399 0.730775 8.78314 0.877687 8.67482 0.986006L8.67386 0.986487Z' fill='%23d6aa77'/%3E%3C/svg%3E%0A");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0 24px;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-active-color: var(--bs-primary);
  --bs-accordion-active-bg: var(--bs-fbf6f1);
}

.accordion-flush>.accordion-item:last-child {
  border-bottom: 1px solid var(--bs-accordion-border-color);
}

.accordion-button {
  font-size: 18px;
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  padding-bottom: 8px;
}

.accordion-light {
  --bs-accordion-bg: var(--bs-white);
  --bs-accordion-active-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
}

.promises-left {
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  display: flex;
  align-items: flex-end;
}

.promises-left-content {
  max-width: 600px;
  text-align: center;
  padding: 90px 16px;
  color: var(--bs-white);
  margin: 0 auto;
}

.promises-right {
  width: 50%;
  background-color: var(--bs-fbf6f1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promises-right-content {
  max-width: 548px;
  margin: 0 auto;
  padding: 24px 16px;
  width: 100%;
}

/* SECTION BLOG */

.section-blog-list .pagination {
  margin-top: 90px;
}

.card-blog {
  position: relative;
  border: 1px solid var(--bs-gray-200);
}

.card-blog:hover {
  box-shadow: var(--bs-box-shadow);
}

.card-blog-image {
  position: relative;
  background-color: var(--bs-white);
  height: 252px;
  overflow: hidden;
}

.card-blog-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.card-blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card-blog-image p {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--bs-white);
  font-weight: var(--bs-font-weight-600);
  z-index: 1;
}

.card-blog-image p span {
  font-size: 12px;
  font-family: var(--bs-font-sans-serif);
  font-weight: var(--bs-font-weight-300);
  display: block;
}

.card-blog-content {
  padding: 20px;
  color: rgba(var(--bs-dark-rgb), 0.7);
}

.card-blog-content .heading-04,
.card-blog-content .card-blog-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-newsletter {
  background-color: var(--bs-dark);
  padding: 56px 0;
  text-align: center;
  color: var(--bs-white);
}

.newsletter-content form {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-content .btn {
  min-width: 110px;
  position: absolute;
  top: 0;
  right: 0;
  height: 52px;
}

.newsletter-content form br {
  display: none;
}

.newsletter-content p {
  width: 100%;
}

.newsletter-content .wpcf7-not-valid-tip {
  text-align: left;
  margin-top: 4px;
}

/* BREADCRUM */

.section-breacrum {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.section-breacrum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bs-dark-rgb), 0.15);
  z-index: 1;
}

.section-breacrum .container {
  z-index: 2;
}

.breadcrumb {
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-divider-color: var(--bs-white);
  --bs-breadcrumb-item-padding-x: 4px;
  --bs-breadcrumb-item-active-color: var(--bs-white);
  --bs-breadcrumb-font-size: 16px;
}

.breadcrumb-item a {
  color: var(--bs-white);
}

/* PRODUCT LISTING PAGE */

.brand-info {
  max-width: 865px;
  margin: 0 auto;
  text-align: center;
}

.woocommerce .brand-info img {
  max-width: 240px;
}

.product-filter-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.product-filter-button .btn {
  height: 39px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
}

.product-filter-wrap {
  position: fixed;
  max-width: 360px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--bs-white);
  z-index: 99;
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
  display: none;
  width: 100%;
}

.product-filter-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-white);
  z-index: -1;
}

.product-filter-wrap::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bs-dark-rgb), 0.4);
  z-index: -2;
}

.product-filter-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 24px;
}

.product-filter-clear .btn,
.product-filter-clear .btn:focus,
.product-filter-clear .btn:active,
.product-filter-clear .btn:hover {
  color: var(--bs-dark);
  background-color: var(--bs-white);
  font-family: var(--bs-font-sans-serif);
  font-size: 12px;
  font-weight: var(--bs-font-weight-300);
  text-decoration: underline;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  box-shadow: none !important;
  min-width: initial;
}

/* PAGINATION */

.pagination {
  --bs-pagination-padding-x: 14px;
  --bs-pagination-padding-y: 10px;
  --bs-pagination-font-size: 16px;
  --bs-pagination-color: rgba(var(--bs-dark-rgb), 0.70);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: transparent;
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-color: var(--bs-white);
  --bs-pagination-hover-bg: var(--bs-primary);
  --bs-pagination-focus-color: var(--bs-white);
  --bs-pagination-focus-bg: var(--bs-primary);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: var(--bs-white);
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
}

.page-link {
  height: 40px;
  min-width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

}

.page-link:hover img,
.page-link:focus img {
  filter: brightness(0) invert(1);
}

.page-link.current {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-color: var(--bs-primary);
}

/* ABOUT US PAGE */

.section-about-banner {
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}

.about-banner-image {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-banner-content {
  max-width: 694px;
}

.page-template-page-about-us .about-banner-content .heading-02,
.page-template-page-about-us .about-banner-content p {
  color: var(--bs-white);
}

.about-banner-content p:not(:last-child) {
  margin-top: 0;
  margin-bottom: 20px;
}

.about-legacy-image {
  margin-bottom: 40px;
}

.about-legacy-heading {
  max-width: 324px;
  margin: 0 auto;
}

.about-legacy-content p {
  margin-bottom: 16px;
}

/* SECTION CONENT BLOCK */

.content-block-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 694px;
  width: 100%;
}

.content-block-content {
  max-width: 550px;
}

.content-block-content p {
  margin-top: 12px;
}

.content-block-content .btn-cta {
  margin-top: 32px;
  margin-bottom: 12px;
}

.card-goals-image {
  position: relative;
  min-height: 512px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.card-goals-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--bs-dark-rgb), 0.2);
  height: 100%;
  width: 100%;
}

.card-goals-content {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 480px;
  padding: 36px;
  box-sizing: border-box;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.card-goals-content p {
  padding-top: 12px;
  color: var(--bs-white);
}

.card-goals-content .heading-04 {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.card-goals-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  height: 0;
}

.card-goals-image:hover .card-goals-hide {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
}

/* SERVICES PAGE */

.section-services {
  border: 1px solid var(--bs-gray-200);
}

.services-left-block {
  max-width: 692px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.services-left-block h2 {
  font-size: 64px;
  max-width: 452px;
}

.services-right-block {
  max-width: 1228px;
}

.card-services {
  position: relative;
  padding: 120px 80px;
  border-left: 1px solid var(--bs-gray-200);
  border-bottom: 1px solid var(--bs-gray-200);
  margin-bottom: -1px;
  width: 100%;
}

.card-services-icon {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.section-single-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 970px;
  position: relative;
  display: flex;
  align-items: center;
}

.section-single-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bs-dark-rgb), 0.35);
}

.single-banner-content {
  position: relative;
  color: var(--bs-white);
  text-align: center;
  padding: 16px;
}

.card-value-list {
  position: relative;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-gray-200);
  padding: 54px 24px;
  text-align: center;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.card-value-list-content {
  margin-top: 24px;
}

.card-value-list:hover {
  box-shadow: var(--bs-box-shadow);
}

.section-vision-video {
  position: relative;
  overflow: hidden;
}

.vision-video-container {
  position: relative;
  width: 100%;
  min-height: 970px;
  overflow: hidden;
}

.vision-video-fullwidth {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.vision-video-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bs-white);
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
  padding: 16px;
}

.vision-video-content .btn-cta {
  margin-top: 32px;
}

/* STORE LOCATOR PAGE */

.store-locator-content {}

.store-locator-search {
  padding: 40px;
  background-color: var(--bs-f8f8f8);
}

.store-locator-search .input-group-text {
  background-color: var(--bs-white);
  padding-left: 24px;
  padding-right: 24px;
}

.store-locator-location {
  background-color: var(--bs-eaeaea);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  cursor: pointer;
}

.store-locator-list {
  padding: 40px;
  background-color: var(--bs-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 500px;
  overflow-y: auto;
}

.store-locator-item {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.store-locator-image {
  width: 315px;
  flex-shrink: 0;
}

.store-locator-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.store-locator-content p {
  font-size: 12px;
  color: rgba(var(--bs-dark-rgb), 0.7);
  margin-top: 12px;
  line-height: 20px;
}

.store-locator-info {
  display: flex;
  align-items: center;
  gap: 0 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.store-locator-info p {
  margin-top: 4px;
}

.store-locator-action {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  flex-wrap: wrap;
}

.store-locator-action .btn {
  padding: 12px;
}

.store-locator-action .btn-direction {
  font-size: 12px;
  font-weight: var(--bs-font-weight-600);
  font-family: var(--bs-font-monospace);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.store-locator-map {
  height: 700px;
}

.store-locator-map img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wpsl-locations-details>span strong {
  font-size: 20px;
  font-weight: var(--bs-font-weight-600);
  margin-bottom: 12px;
  font-family: var(--bs-font-monospace);
}

.wpsl-location-address,
.wpsl-contact-details,
.wpsl-opening-hours td {
  font-size: 12px;
  color: rgba(var(--bs-dark-rgb), 0.7);
  margin-top: 12px;
  line-height: 20px;
}

table.wpsl-opening-hours td {
  padding: 4px 0;
}

.wpsl-locations-details {
  margin-bottom: 0;
}

table.wpsl-opening-hours {
  margin-top: 0;
  max-width: 460px;
}

.section-store-detail .store-locator-list {
  max-height: inherit;
  overflow: inherit;
}

.store-locator-map .wpsl-gmap-canvas {
  height: 100% !important;
  width: 100%;
}

/* PAGE PRODUCT DETAIL */

.product-detail-gallery {
  position: sticky;
  top: 0;
}

.product-gallery {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery img {
  width: 100%;
}

.product-detail-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-detail-rate {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}

.product-detail-rating {
  font-size: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-detail-rating-total span {
  color: rgba(var(--bs-dark-rgb), 0.6);
}

.badge {
  --bs-badge-padding-x: 12px;
  --bs-badge-padding-y: 4px;
  --bs-badge-font-size: 12px;
  --bs-badge-font-weight: 300;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 24px;
  text-transform: uppercase;
  line-height: 18px;
}

.product-detail-price {
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
  color: var(--bs-dark);
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product-detail-price span {
  font-size: 16px;
  color: rgba(var(--bs-dark-rgb), 0.5);
}

.product-detail-price .badge {
  color: var(--bs-ff3333);
  background-color: rgba(var(--bs-ff3333-rgb), 0.1);
  --bs-badge-padding-x: 16px;
  margin-left: 4px;
}

.product-detail-color,
.product-detail-size {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bs-gray-200);
}

.product-detail-color ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-color .color-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  position: relative;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.20);
}

.product-detail-color .color-option::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  height: 9px;
  width: 12px;
}

.product-detail-color .color-option.selected:after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7958 1.15583L4.41335 8.37244C4.34906 8.43551 4.27265 8.48556 4.18853 8.5197C4.1044 8.55385 4.01421 8.57143 3.92311 8.57143C3.83202 8.57143 3.74183 8.55385 3.6577 8.5197C3.57358 8.48556 3.49717 8.43551 3.43288 8.37244L0.203064 5.21517C0.138685 5.15224 0.0876163 5.07753 0.0527745 4.9953C0.0179328 4.91307 9.59324e-10 4.82495 0 4.73594C-9.59324e-10 4.64694 0.0179328 4.55881 0.0527745 4.47659C0.0876163 4.39436 0.138685 4.31965 0.203064 4.25672C0.267443 4.19378 0.343872 4.14386 0.427987 4.1098C0.512103 4.07574 0.602257 4.05821 0.693303 4.05821C0.784349 4.05821 0.874503 4.07574 0.958619 4.1098C1.04273 4.14386 1.11916 4.19378 1.18354 4.25672L3.92369 6.93532L10.8165 0.198503C10.9465 0.0714034 11.1228 0 11.3067 0C11.4906 0 11.6669 0.0714034 11.7969 0.198503C11.927 0.325602 12 0.497985 12 0.677731C12 0.857476 11.927 1.02986 11.7969 1.15696L11.7958 1.15583Z' fill='white'/%3E%3C/svg%3E%0A");
}

.product-detail-color .color-option.color-multi {
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

.product-detail-color .color-option.color-multi.selected:after {
  top: 0;
  left: 0;
  transform: translate(-150%, 85%);
}

.product-detail-size ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-size .size-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  font-size: 12px;
  line-height: normal;
  border-radius: 24px;
  color: rgba(var(--bs-dark-rgb), 0.7);
  background-color: var(--bs-fff8ef);
  height: 32px;
}

.product-detail-size .size-option:hover,
.product-detail-size .size-option.selected {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.product-detail-buy {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bs-gray-200);
  position: relative;
}

.product-detail-buy .btn {
  max-width: 370px;
}

.product-detail-buy-dropdown {
  position: absolute;
  max-width: 370px;
  width: 100%;
  border: 1px solid var(--bs-black);
  top: 24px;
  z-index: 1;
  background-color: var(--bs-white);
  max-height: 270px;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}

.product-detail-buy-dropdown li a {
  padding: 8px 12px;
  font-size: 14px;
  display: block;
  transition: all 0.1s ease;
}

.product-detail-buy-dropdown li a:hover {
  background-color: var(--bs-fbf6f1);
}

.product-detail-tab {
  margin-top: 40px;
}

.nav-tabs {
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-active-color: var(--bs-primary);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  --bs-nav-link-color: var(--bs-dark);
}

.product-detail-tab .nav-link {
  margin-bottom: 0;
  border: 0;
  padding: 20px 0;
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
  font-size: 18px;
  position: relative;
}

.product-detail-tab .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%;
  background-color: transparent;
}

.product-detail-tab .nav-link.active::before {
  background-color: var(--bs-primary);
}

.product-detail-tab .nav-item:not(:last-child) {
  margin-right: 24px;
}

.product-details-pane-content {
  padding: 40px 0;
  border-bottom: 1px solid var(--bs-gray-200);
}

.product-details-pane-content p:not(:last-child) {
  margin-bottom: 16px;
}

.product-feature-list {
  margin: 32px 0;
}

.product-feature-list ul {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.product-feature-list ul li {
  position: relative;
  background-image: url('../images/icons/icon-done-circle.svg');
  background-size: 20px;
  background-position: top 4px left;
  background-repeat: no-repeat;
  padding-left: 28px;
  line-height: 28px;
}

.table {
  --bs-table-color: var(--bs-dark);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-gray-200);
  margin-bottom: 20px;
  border-color: var(--bs-table-border-color);
}

.table th {
  font-family: var(--bs-font-monospace);
  font-weight: var(--bs-font-weight-600);
}

.table>thead>*>* {
  padding: 0 0 10px 0;
}

.table>tbody>*>* {
  padding: 30px 0 10px;
}

.nav-link-mobile {
  padding: 8px 16px;
  background-color: var(--bs-f0f0f0);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  cursor: pointer;
}

.nav-link-mobile .nav-icon {
  width: 13px;
  height: 9px;
}

.nav-link-mobile.is-active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.nav-link-mobile.is-active .nav-icon {
  transform: rotate(-180deg);
  filter: brightness(0) invert(1);
}

.table-size-chart {
  /* width: 695px; */
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form {
  margin-top: 40px;
}

.blog-single-image {
  margin-bottom: 40px;
}

.blog-single-content {
  max-width: 960px;
  margin: 0 auto;
  line-height: 28px;
}

.blog-single-content div {
  margin: 8px 0;
}

.blog-single-content div:empty,
.blog-single-content p:empty {
  display: none;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  margin-bottom: 8px;
  font-size: 24px;
}

.blog-single-content h6 {
  font-family: var(--bs-font-sans-serif);
  font-size: 14px;
  margin-top: 12px;
  line-height: 28px;
}

.blog-single-content p {
  margin-bottom: 8px;
  text-align: justify;
}

.blog-single-content a {
  text-decoration: underline;
  font-weight: bold;
}

.blog-single-content ul {
  padding-left: 12px;
  margin-bottom: 12px;
}

.blog-single-content ul li {
  margin-bottom: 8px;
}

.rh-widget>span {
  background-color: #fff !important;
  border-radius: 0 !important;
  color: #1E1F24 !important;
  font-size: 32px !important;
  line-height: 32px !important;
  right: 8px !important;
  top: 24px !important;
  width: 32px !important;
  height: 32px !important;
  /* display: none; */
}

.single-product .products.mb-40 {
  margin-bottom: 0;
}

.privacy-policy .center-block-content h3 {
  margin-bottom: 16px;
}

.privacy-policy .center-block-content h4,
.page-id-21072 .center-block-content h4 {
  margin-bottom: 12px;
  margin-top: 16px;
}


.page-id-21072 .center-block-content h5 {
  margin-top: 16px;
}

.privacy-policy .center-block-content p,
.privacy-policy .center-block-content li,
.page-id-21072 .center-block-content p,
.page-id-21072 .center-block-content li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.privacy-policy .center-block-content ol,
.privacy-policy .center-block-content ul,
.page-id-21072 .center-block-content ul {
  padding-left: 16px;
  position: relative;
}

.privacy-policy .center-block-content ol ol {
  margin-top: 12px;
}

.privacy-policy .center-block-content li a,
.page-id-21072 .center-block-content li a,
.page-id-21072 .center-block-content p a {
  text-decoration: underline;
}

.modal-dialog-scrollable .modal-body {
  max-height: 400px;
}

.page-template-page-eyewear-quiz iframe {
  overflow: hidden;
  scrollbar-width: none;
}

.page-template-page-eyewear-quiz iframe::-webkit-scrollbar {
  display: none;
}

.home .section-product-frames {
  margin-bottom: var(--section-padding-x); 
}