/* ==============================
        1. Globals
============================== */
:root {
  /* Design colors */
  --yellow-400: #fada76;
  --yellow-500: #f8c84a;
  --yellow-600: #ffc423;
  --gray-200: #f4f4f4;
  --gray-300: #f8f8f8;
  --gray-400: #77858d;
  --gray-500: #343c42;
  --gray-600: #2e3439;
  /* Secondary colors */
  --white: #ffffff;
  --gray: #a2a7ad;
  --light-gray: #e3e4e5;
  --dark-gray: #a2a7ad;
  --danger: #dc3545;
  --success: #28a745;
  --warning: #ffc107;
  /* Font family */
  --primary-font-family: "Montserrat", sans-serif;
  /* Font size - Heading */
  --fs-h1: 48px;
  --fs-h2: 40px;
  --fs-h3: 32px;
  /* Line height - Heading */
  --lh-h1: 72px;
  --lh-h2: 52px;
  --lh-h3: 40px;
  /* Font size - Basic */
  --fs-b1: 12px;
  --fs-b2: 14px;
  --fs-b3: 16px;
  --fs-b4: 18px;
  --fs-b5: 20px;
  --fs-b6: 24px;
  /* Line height - Basic */
  --lh-b1: 16px;
  --lh-b2: 20px;
  --lh-b3: 24px;
  --lh-b4: 28px;
  --lh-b5: 30px;
  --lh-b6: 32px;
  /* Font weight */
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-thin: 300;
  /* Border radius */
  --br-2: 2px;
  --br-4: 4px;
  --br-6: 6px;
  --br-8: 8px;
  --br-12: 12px;
  --br-16: 16px;
  --br-20: 20px;
  /* Box shadow */
  --box-shadow-100: 0px 4px 4px -2px rgba(24, 39, 75, 0.08),
      0px 2px 4px -2px rgba(24, 39, 75, 0.12);
  --box-shadow-200: 0px 8px 8px -4px rgba(24, 39, 75, 0.08),
      0px 4px 6px -4px rgba(24, 39, 75, 0.12);
  --box-shadow-300: 0px 8px 16px -6px rgba(24, 39, 75, 0.08),
      0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  --box-shadow-400: 0px 8px 24px -4px rgba(24, 39, 75, 0.08),
      0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  --box-shadow-500: 0px 10px 32px -4px rgba(24, 39, 75, 0.1),
      0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  --box-shadow-600: 0px 12px 42px -4px rgba(24, 39, 75, 0.12),
      0px 8px 18px -6px rgba(24, 39, 75, 0.12);
  --box-shadow-700: 0px 14px 64px -4px rgba(24, 39, 75, 0.12),
      0px 8px 22px -6px rgba(24, 39, 75, 0.12);
  --box-shadow-800: 0px 18px 88px -4px rgba(24, 39, 75, 0.14),
      0px 8px 28px -6px rgba(24, 39, 75, 0.12);
}

/* ==============================
          2. Basics
  ============================== */
html {
  scrollbar-color: var(--yellow-500) var(--gray-500);
  scrollbar-width: thin;
}

body {
  font-family: var(--primary-font-family);
  font-size: var(--fs-b4);
  font-weight: var(--fw-regular);
  line-height: var(--lh-b4);
  color: var(--gray-500);
  background-color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: var(--fw-semi-bold);
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

img {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

button {
  background: none;
  border: none;
  padding: 0;
}

/* Selection */
::-moz-selection {
  background: var(--yellow-500);
  color: var(--gray-500);
}
::selection {
  background: var(--yellow-500);
  color: var(--gray-500);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--yellow-500);
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background: var(--gray-500);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.color-yellow {
  color: var(--yellow-500);
}

.color-black {
  color: var(--gray-500);
}

.color-white {
  color: var(--white);
}

.lazyload {
  opacity: 0;
  visibility: hidden;
}

.hidden {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.preloader img {
  width: 180px;
}

.preloader img {
  width: 180px;
}

#btn-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  padding: 10px;
  background: var(--yellow-500);
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  border-radius: var(--br-4);
  box-shadow: var(--box-shadow-500);
  cursor: pointer;
  border: none;
  display: none;
  z-index: 9;
}

#btn-scroll-top > svg {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

#btn-scroll-top > svg path {
  fill: var(--gray-500);
}

#btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px;
  background: #25d366;
  border-radius: 50%;
  z-index: 99;
  animation: pulse 1.2s infinite;
}
#btn-whatsapp svg {
  display: block;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
#btn-whatsapp svg path {
  fill: var(--white);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 181, 67, 0.75);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(255, 134, 134, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-500);
  opacity: 0.95;
  z-index: 9;
  transition: all 0.25s ease-in-out;
}
.overlay--white {
  background: var(--white);
}

.breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease-in-out;
}
.breadcrumb__item {
  color: var(--gray-500);
  font-size: var(--fs-b2);
  line-height: var(--lh-h1);
}
.breadcrumb__item--active {
  font-weight: var(--fw-medium);
}
.breadcrumb__item :hover {
  color: var(--yellow-500);
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper__welcome .swiper-slide {
  height: 600px;
}
.swiper__welcome .swiper-slide-content {
  display: flex;
  align-items: center;
}
.swiper__welcome .swiper-pagination {
  bottom: 64px;
}
.swiper__testimonials .swiper-slide {
  justify-content: center;
  padding-bottom: 60px;
}
.swiper__testimonials .swiper-pagination {
  bottom: 0;
}
.swiper__product__gallery {
  height: auto;
  border-radius: var(--br-8);
  overflow: hidden;
}
.swiper__product__gallery .swiper-slide {
  height: 420px;
}
.swiper__product__gallery .swiper-slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.swiper__product__gallery .swiper-pagination {
  bottom: 12px;
}
.swiper__product__gallery .swiper-button-prev {
  left: 12px;
  margin-top: -38px;
}
.swiper__product__gallery .swiper-button-next {
  right: 12px;
  margin-top: -38px;
}
.swiper__product__gallery .swiper-button-prev:after,
.swiper__product__gallery .swiper-button-next:after {
  font-size: 24px;
  font-weight: var(--fw-semi-bold);
}
.swiper__tags .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  text-decoration: none;
  color: var(--gray-600);
  background: var(--gray-200);
  height: auto;
}
.swiper--tags {
  height: auto;
  padding: 12px 0;
}
.swiper--tags .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.swiper-slide {
  display: flex;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.swiper-pagination-bullet {
  margin: 0 !important;
  width: 12px;
  height: 12px;
  background: rgba(227, 228, 229, 0.2);
  opacity: 1;
  border-radius: var(--br-8);
  transition: all 0.25s ease-in-out;
}
.swiper-pagination-bullet-active {
  width: 56px;
  background: var(--yellow-500);
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  font-size: 30px;
  color: var(--yellow-500);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
}
.pagination__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 6px;
  color: var(--gray-500);
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  border-color: var(--gray-200);
  background: var(--white);
  border-radius: var(--br-8);
  outline: none;
  box-shadow: none;
}
.pagination__item__link--disabled {
  opacity: 0.6;
  background: var(--white);
  color: var(--gray-500);
}
.pagination__item__link:not(.pagination__item__link--disabled):hover, .pagination__item__link--active:not(.pagination__item__link--disabled) {
  background: var(--yellow-500);
  border-color: var(--yellow-500);
  color: var(--gray-500);
}
.pagination__item:first-child .pagination__item__link:not(.pagination__item__link--disabled):hover, .pagination__item:last-child .pagination__item__link:not(.pagination__item__link--disabled):hover {
  background-color: var(---gray-500);
  border-color: var(--gray-500);
  color: var(--white);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.btn__general {
  min-width: 222px;
  height: 48px;
  padding: 8px 12px;
  gap: 8px;
  font-family: var(--primary-font-family);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  font-weight: var(--fw-semi-bold);
  border-radius: var(--br-4);
}
.btn__general--white {
  color: var(--gray-500);
}
.btn__general--white.btn__general--contained {
  background: var(--gray-300);
}
.btn__general--white.btn__general--contained:hover {
  background: var(--gray-200);
  color: var(--gray-500);
}
.btn__general--white svg path {
  stroke: var(--gray-500);
}
.btn__general--black {
  color: var(--white);
}
.btn__general--black.btn__general--contained {
  background: var(--gray-500);
}
.btn__general--black.btn__general--contained:hover {
  background: var(--gray-600);
}
.btn__general--black svg path {
  stroke: var(--white);
}
.btn__general--yellow {
  color: var(--gray-500);
}
.btn__general--yellow.btn__general--contained {
  background: var(--yellow-500);
}
.btn__general--yellow.btn__general--contained:hover {
  background: var(--yellow-600);
}
.btn__general--yellow svg path {
  stroke: var(--gray-500);
}
.btn__general--yellow:hover {
  color: var(--gray-500);
}
.btn__text {
  color: var(--yellow-500);
  font-size: 10px;
  font-size: var(--fs-b1);
  line-height: var(--lh-b1);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}
.btn__text:hover {
  color: var(--yellow-600);
}
.btn svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main:not(.main--home) {
  padding-top: 80px;
}
.main--home .section--cta {
  margin: 60px 0;
}
.main--blogs .section--blogs {
  padding-top: 48px;
}
.main--products-category .section--products {
  padding-top: 48px;
}
.main--insurance .section--text {
  padding-top: 0;
}
.main--fine .section--text {
  padding-top: 0;
}
.main--customs .section--text {
  padding-top: 0;
}

.section {
  padding: 60px 0;
}
.section--welcome {
  position: relative;
  padding: 0;
  margin-bottom: 60px;
}
.section--welcome .container {
  position: relative;
}
.section--welcome .section__content {
  position: relative;
  z-index: 10;
}
.section--welcome .section__header {
  margin-bottom: 0;
  padding-top: 52px;
}
.section--welcome .section__header .btn {
  margin-top: 48px;
}
.section--welcome .social-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 16px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 10;
}
.section--welcome .social-list li a svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--welcome .social-list li a svg circle {
  transition: all 0.25s ease-in-out;
}
.section--welcome .social-list li a:hover svg circle {
  fill: var(--yellow-500);
}
.section--why-us .section__content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 32px;
  width: 100%;
}
.section--why-us .section__content__item img,
.section--why-us .section__content__item svg {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 40px;
}
.section--why-us .section__content__item span {
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  font-weight: var(--fw-semi-bold);
  margin-bottom: 12px;
  flex-grow: 1;
}
.section--why-us .section__content__item p {
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
}
.section--brands .section__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.section--brands .section__content__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 74px;
  width: 100%;
  background: var(--gray-300);
  box-shadow: var(--box-shadow-100);
  border-radius: var(--br-4);
  transition: all 0.25s ease-in-out;
}
.section--brands .section__content__item:not(.btn) img, .section--brands .section__content__item:not(.btn) svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--brands .section__content__item:hover {
  background: var(--gray-200);
}
.section--brands .section__content__item.btn:hover {
  background: var(--yellow-500);
  color: var(--gray-500);
}
.section--brands .section__header__desc {
  margin-top: 12px;
}
.section--products .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  transition: all 0.25s ease-in-out;
  border-radius: var(--br-8);
}
.section--products .product-card__header {
  height: 276px;
  border-radius: var(--br-8);
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.section--products .product-card__header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--products .product-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px 30px 24px;
}
.section--products .product-card__body .btn {
  margin-top: 16px;
}
.section--products .product-card__body--hover {
  position: absolute;
  top: 276px;
  left: 0;
  right: 0;
  transition: all 0.25s ease-in-out;
  background: var(--white);
  border-bottom-left-radius: var(--br-8);
  border-bottom-right-radius: var(--br-8);
  opacity: 0;
  visibility: hidden;
}
.section--products .product-card__name {
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  color: var(--gray-500);
  flex-grow: 1;
}
.section--products .product-card__price {
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  font-weight: var(--fw-semi-bold);
}
.section--products .product-card:hover {
  box-shadow: var(--box-shadow-800);
  transform: translateY(-44px);
}
.section--products .product-card:hover .product-card__header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.section--products .product-card:hover .product-card__body--hover {
  opacity: 1;
  visibility: visible;
  box-shadow: var(--box-shadow-800);
  z-index: 2;
}
.section--products .products-category {
  position: relative;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 36px 0;
  padding: 12px 0;
}
.section--products .products-category__item {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-500);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  padding: 12px;
  border-bottom: 2px solid #e6e6e6;
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
}
.section--products .products-category__item--active {
  font-weight: var(--fw-semi-bold);
  border-color: var(--yellow-500);
}
.section--products .products-category__item:hover {
  border-color: var(--yellow-500);
}
.section--products-category {
  padding-top: 48px;
}
.section--product-details {
  padding-top: 48px;
}
.section--product-details .section__content {
  padding-top: 48px;
}
.section--product-details .product__gallery {
  width: 100%;
}
.section--product-details .product__gallery__item {
  background-color: var(--gray-200);
  outline: none;
}
.section--product-details .product__text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 32px;
}
.section--product-details .product__text__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section--product-details .product__text__header > div {
  display: flex;
  align-items: center;
  gap: 24px;
}
.section--product-details .product__text__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex-grow: 1;
}
.section--product-details .product__text__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section--product-details .product__text__footer > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section--product-details .product__text .view-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-weight: var(--fw-medium);
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
}
.section--product-details .product__text .view-count svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--product-details .product__text .view-count svg svg path {
  stroke: var(--dark-gray);
}
.section--product-details .product__name {
  display: block;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-medium);
}
.section--product-details .product__share {
  position: relative;
  display: flex;
}
.section--product-details .product__share > div {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding-top: 16px;
  margin-top: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}
.section--product-details .product__share__dropdown {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--br-4);
  box-shadow: var(--box-shadow-800);
  background-color: var(--white);
  transition: all 250ms ease-in-out;
}
.section--product-details .product__share__dropdown:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
  border-top-left-radius: var(--br-2);
}
.section--product-details .product__share__dropdown > * {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-4);
  color: var(--gray-500);
  background-color: var(--yellow-500);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.section--product-details .product__share__dropdown > * svg {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--product-details .product__share__dropdown > * svg path {
  transition: all 250ms ease-in-out;
}
.section--product-details .product__share__dropdown > *:hover {
  background-color: var(--gray-500);
  color: var(--white);
}
.section--product-details .product__share__dropdown > a svg path {
  fill: var(--gray-500);
}
.section--product-details .product__share__dropdown > a:hover svg path {
  fill: var(--white);
}
.section--product-details .product__share__dropdown > span svg path {
  stroke: var(--gray-500);
}
.section--product-details .product__share__dropdown > span:hover svg path {
  stroke: var(--white);
}
.section--product-details .product__share__dropdown .copy-to-clipboard span {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  padding: 3px 12px;
  left: 50%;
  background-color: var(--gray-500);
  color: white;
  font-size: var(--fs-b1);
  line-height: var(--lh-b1);
  border-radius: var(--br-4);
  transform: translateX(-50%);
  display: none;
}
.section--product-details .product__share__dropdown .copy-to-clipboard span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gray-500);
  transform: translate(-50%, -50%) rotate(45deg);
  border-top-left-radius: var(--br-2);
}
.section--product-details .product__share:hover > div {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.section--product-details .product__price {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-semi-bold);
  flex-shrink: 0;
  text-align: center;
}
.section--product-details .product__advantages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.section--product-details .product__advantages > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  font-weight: var(--fw-medium);
}
.section--product-details .product__advantages > div svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--cta {
  position: relative;
  padding: 80px 0;
}
.section--cta .section__header {
  z-index: 10;
  margin-bottom: 0;
}
.section--testimonials {
  padding: 90px 0;
  margin: 60px 0;
  background: var(--gray-500);
}
.section--testimonials .section__header {
  margin-bottom: 32px;
}
.section--testimonials .section__header__title {
  font-weight: var(--fw-semi-bold);
}
.section--testimonials .section__content {
  position: relative;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}
.section--testimonials .section__pattern {
  position: absolute;
  bottom: 100%;
  left: 80px;
}
.section--testimonials .testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.section--testimonials .testimonial__message {
  font-size: var(--fs-b4);
  line-height: 1.7;
  margin-bottom: 60px;
}
.section--testimonials .testimonial__profile {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section--testimonials .testimonial__profile__picture {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e3e4e5;
}
.section--testimonials .testimonial__profile__picture img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--testimonials .testimonial__profile__name {
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-medium);
}
.section--blogs .blog-card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
  border-radius: var(--br-8);
  color: var(--gray-500);
  background: var(--gray-500);
  transition: all 0.25s ease-in-out;
}
.section--blogs .blog-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--box-shadow-800);
}
.section--blogs .blog-card__header {
  position: relative;
  height: 184px;
}
.section--blogs .blog-card__header__label {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: var(--fw-semi-bold);
  text-transform: uppercase;
  line-height: 1.5;
  padding: 8px 24px;
  background: var(--yellow-500);
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  z-index: 1;
  color: var(--gray-500);
}
.section--blogs .blog-card__header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--blogs .blog-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  padding: 24px;
  color: var(--white);
}
.section--blogs .blog-card__title {
  color: var(--white);
  font-weight: var(--fw-medium);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  transition: all 0.25s ease-in-out;
  margin-bottom: 4px;
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section--blogs .blog-card__title:hover {
  color: var(--yellow-500);
}
.section--blogs .blog-card__desc {
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section--gallery {
  padding-bottom: 0;
}
.section--gallery .solo-gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.section--gallery .solo-gallery__item {
  position: relative;
  height: 416px;
}
.section--gallery .solo-gallery__item .overlay {
  background: rgba(52, 60, 66, 0.9);
}
.section--gallery .solo-gallery__item:hover .overlay {
  opacity: 0;
}
.section--gallery .solo-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--gallery .solo-gallery__item--1 {
  grid-area: 1/1/4/3;
}
.section--gallery .solo-gallery__item--2 {
  grid-area: 1/3/4/5;
}
.section--gallery .solo-gallery__item--3 {
  grid-area: 1/5/7/9;
  height: 832px;
}
.section--gallery .solo-gallery__item--4 {
  grid-area: 4/1/7/3;
}
.section--gallery .solo-gallery__item--5 {
  grid-area: 4/3/7/5;
}
.section--contact {
  padding: 0;
  background: var(--gray-500);
}
.section--contact .contact {
  display: flex;
}
.section--contact .contact__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding: 90px 0;
}
.section--contact .contact__info__container {
  display: flex;
  flex-direction: column;
  max-width: 636px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  width: 100%;
}
.section--contact .contact__info__header {
  color: var(--yellow-500);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-semi-bold);
  margin-bottom: 24px;
}
.section--contact .contact__info__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section--contact .contact__info__body__title {
  display: block;
  color: var(--yellow-500);
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
  font-weight: var(--fw-semi-bold);
  margin-bottom: 12px;
}
.section--contact .contact__info__body__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section--contact .contact__info__body__list li {
  color: var(--white);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  display: flex;
  gap: 4px;
}
.section--contact .contact__info__body__list li a {
  color: var(--white);
  font-weight: var(--fw-medium);
  transition: all 0.25s ease-in-out;
}
.section--contact .contact__info__body__list li a.map-link {
  text-decoration: underline;
  font-weight: var(--fw-regular);
}
.section--contact .contact__info__body__list li a:hover {
  color: var(--yellow-500);
}
.section--contact .contact__map {
  width: 50%;
}
.section--contact .contact__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--text {
  padding-top: 0;
  font-size: var(--fs-b4);
  line-height: 1.5;
}
.section--about .section__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section--about .section__content .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.section--about .section__content .about-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section--about .section__content .about-text__title {
  font-weight: var(--fw-medium);
}
.section--about .section__content .about-image {
  flex-grow: 1;
}
.section--about .section__content .about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--br-4);
}
.section--not-found .section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 788px;
  margin: 0 auto;
}
.section--not-found .section__content span {
  font-size: 160px;
  line-height: 1.2;
  font-weight: var(--fw-semi-bold);
  letter-spacing: 2px;
}
.section--not-found .section__content p {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.section--faq {
  padding-bottom: 120px;
}
.section--insurance .payment-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.section--insurance .payment-portal__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-12);
  max-width: 340px;
  height: 150px;
  overflow: hidden;
  padding: 32px;
  margin: 0 auto;
  box-shadow: var(--box-shadow-100);
  border: 1px solid var(--gray-200);
  transition: all 250ms ease-in-out;
}
.section--insurance .payment-portal__item:hover {
  box-shadow: var(--box-shadow-500);
}
.section--insurance .payment-portal__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--blog-details .section__header {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 30px;
}
.section--blog-details .blog-details__picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--blog-details .blog-details__picture img {
  width: 100%;
  height: auto;
}
.section--blog-details .blog-details__video {
  width: 100%;
  aspect-ratio: 2/1;
}
.section--blog-details .blog-details__video iframe {
  width: 100%;
  height: 100%;
}
.section--blog-details .blog-details__share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.section--blog-details .blog-details__share .social-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--blog-details .blog-details__share .social-list li a svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--blog-details .blog-details__share .social-list li a svg circle {
  transition: all 0.25s ease-in-out;
}
.section--blog-details .blog-details__share .social-list li a:hover svg circle {
  fill: var(--yellow-500);
}
.section--blog-details .blog-details__share .view-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-b4);
  line-height: var(--fs-b4);
}
.section--blog-details .blog-details__share .view-count svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section--blog-details .blog-details__share .view-count svg path {
  stroke: var(--gray-500);
}
.section--blog-details .blog-details__content {
  display: flex;
  flex-direction: column;
  max-width: 850px;
  margin: 0 auto;
  gap: 32px;
}
.section--blog-details .blog-details__category {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}
.section--blog-details .blog-details__category .btn__general {
  min-width: auto;
  padding: 10px 16px;
  height: auto;
}
.section--blog-details .blog-details h1,
.section--blog-details .blog-details h2,
.section--blog-details .blog-details h3,
.section--blog-details .blog-details h4,
.section--blog-details .blog-details h5,
.section--blog-details .blog-details h6 {
  position: relative;
  padding-bottom: 6px;
}
.section--blog-details .blog-details h1:after,
.section--blog-details .blog-details h2:after,
.section--blog-details .blog-details h3:after,
.section--blog-details .blog-details h4:after,
.section--blog-details .blog-details h5:after,
.section--blog-details .blog-details h6:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 4px;
  width: 64px;
  background: var(--yellow-500);
  border-radius: var(--br-2);
}
.section--vin .vin-code {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  margin: 0 auto;
}
.section--vin .vin-code__search {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.section--vin .vin-code__search__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}
.section--vin .vin-code__search__wrapper > input {
  flex-grow: 1;
  padding: 12px 24px;
  height: 60px;
  border-radius: var(--br-4);
  border: none;
  outline: none;
  background: var(--gray-300);
  letter-spacing: 0.5px;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  caret-color: var(--yellow-500);
}
.section--vin .vin-code__search__wrapper > label {
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-medium);
}
.section--vin .vin-code__search__wrapper > label span {
  color: var(--danger);
}
.section--vin .vin-code__search__wrapper .validation-message {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  font-weight: var(--fw-medium);
  margin-top: 6px;
  color: var(--danger);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
.section--vin .vin-code__search__wrapper .validation-message.fade-in {
  opacity: 1;
  visibility: visible;
}
.section--vin .vin-code__search .btn {
  height: 60px;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
}
.section--vin .vin-code__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: 48px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
.section--vin .vin-code__result.show {
  display: flex;
}
.section--vin .vin-code__result.fade-in {
  opacity: 1;
  visibility: visible;
}
.section--vin .vin-code__result > p {
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
}
.section--vin .vin-code__result > p span {
  font-weight: var(--fw-semi-bold);
}
.section--tags .section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-height: 120px;
  overflow: hidden;
  transition: all 250ms ease-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.section--tags .section__content::-webkit-scrollbar {
  display: none;
}
.section--tags .section__content.collapsed {
  max-height: 1000px;
  overflow: auto;
  transition: all 250ms ease-in;
}
.section__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 788px;
  width: 100%;
}
.section__header--filters {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}
.section__header--filters .section__header__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  max-width: 788px;
}
.section__header--filters .filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.section__header--inner {
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.section__header--inner:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 4px;
  width: 64px;
  background: var(--yellow-500);
  border-radius: var(--br-2);
}
.section__header--inner .section__header__title {
  font-weight: var(--fw-medium);
}
.section__header--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__header--white {
  color: var(--white);
}
.section__header--yellow {
  color: var(--yellow-500);
}
.section__header--show-line .section__header__title {
  padding-bottom: 12px;
}
.section__header--show-line .section__header__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 4px;
  width: 80px;
  background-color: var(--yellow-500);
  border-radius: var(--br-2);
  transform: translateX(-50%);
}
.section__header--show-line .section__header__desc {
  margin-top: 10px;
}
.section__header__title {
  position: relative;
  font-weight: var(--fw-medium);
}
.section__header__title--highlight {
  display: flex;
  flex-direction: column;
  font-weight: var(--fw-regular);
}
.section__header__title--highlight span {
  font-weight: var(--fw-semi-bold);
}
.section__header__desc {
  margin-top: 24px;
}
.section__header > .btn {
  margin-top: 48px;
}
.section__footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__footer .pagination__text {
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  margin-bottom: 16px;
  margin-top: 36px;
}
.section__footer .pagination__text span {
  font-weight: var(--fw-semi-bold);
}
.section__search {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 668px;
  margin: 0 auto 48px;
}
.section__search__header {
  position: relative;
  overflow: hidden;
}
.section__search__header input {
  padding: 12px 72px 12px 24px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: var(--gray-300);
  color: var(--dark-gray);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  caret-color: var(--yellow-500);
  font-family: var(--primary-font-family);
  border-bottom: 1px solid transparent;
}
.section__search__header input::-moz-placeholder {
  color: var(--dark-gray);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  font-family: var(--primary-font-family);
}
.section__search__header input::placeholder {
  color: var(--dark-gray);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  font-family: var(--primary-font-family);
}
.section__search__header button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72px;
}
.section__search__header button svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section__search__header button svg path {
  stroke: var(--gray-500);
}
.section__search__body {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 308px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 0px 0px 25px 25px;
  box-shadow: var(--box-shadow-700);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  overflow: auto;
}
.section__search__body a {
  color: var(--dark-gray);
  font-size: var(--fs-b2);
  line-height: 2;
}
.section__search__body a span {
  font-weight: var(--fw-semi-bold);
  color: var(--gray-500);
  transition: all 0.25s ease-in-out;
}
.section__search__body a:hover span {
  color: var(--yellow-500);
}
.section__search.active .section__search__header input {
  border-radius: 15px 15px 0px 0px;
  border-color: #e0e0e0;
}
.section__search.active .section__search__body {
  opacity: 1;
  visibility: visible;
}
.section__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--fs-b2);
  font-weight: var(--fw-thin);
  line-height: var(--lh-b2);
  padding: 14px 0;
  flex-shrink: 0;
}
.section__breadcrumbs a {
  color: var(--gray-500);
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid var(--yellow-500);
  transition: all 0.25s ease-in-out;
}
.section__breadcrumbs a:hover {
  color: var(--yellow-500);
}
.section__breadcrumbs span {
  font-weight: var(--fw-medium);
}
.section .accordion {
  max-width: 788px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section .accordion__item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--dark-gray);
  border-radius: var(--br-20);
}
.section .accordion__item__header > span {
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-semi-bold);
  padding: 4px 24px;
  flex-grow: 1;
}
.section .accordion__item__header > button {
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-500);
  border-radius: var(--br-16);
  color: var(--gray-500);
  padding: 4px 16px;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-semi-bold);
  margin: 4px 4px 4px 0;
  transition: all 0.25s ease-in-out;
}
.section .accordion__item__header > button:hover {
  background: var(--yellow-600);
}
.section .accordion__item__header > button span {
  margin-left: 4px;
}
.section .accordion__item__header > button svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section .accordion__item__header > button svg path {
  stroke: var(--gray-500);
}
.section .accordion__item__body {
  display: none;
  padding-top: 12px;
}
.section .accordion__item__body__content {
  padding: 16px 24px;
  border: 1px solid var(--dark-gray);
  border-radius: var(--br-20);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
}
.section .accordion__item__body.show {
  display: block;
}
.section .dropdown {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section .dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--br-4);
  background: var(--gray-300);
  padding: 12px 16px;
  min-width: 222px;
  cursor: pointer;
}
.section .dropdown__header > div {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: var(--fs-b2);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-b2);
}
.section .dropdown__header > svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.25s ease-in-out;
}
.section .dropdown__header > svg path {
  stroke: var(--gray-500);
}
.section .dropdown__header .section .dropdown.active > svg {
  transform: rotate(180deg);
}
.section .dropdown__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: var(--br-4);
  background: var(--white);
  box-shadow: var(--box-shadow-600);
  padding: 8px;
  margin-top: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.25s ease-in-out;
}
.section .dropdown__content__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
}
.section .dropdown__content__header span {
  color: #2f80ed;
  font-size: var(--fs-b1);
  line-height: var(--lh-b1);
  font-weight: var(--fw-semi-bold);
}
.section .dropdown__content__header button {
  color: #2f80ed;
  font-size: var(--fs-b1);
  line-height: var(--lh-b1);
  font-weight: var(--fw-semi-bold);
  transition: all 0.25s ease-in-out;
}
.section .dropdown__content__header button:hover {
  color: #2263cb;
}
.section .dropdown__content__body {
  display: flex;
  flex-direction: column;
}
.section .dropdown__content__body__wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  overflow: auto;
  max-height: 280px;
}
.section .dropdown__content__body__item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  cursor: pointer;
}
.section .dropdown__content__body__item label {
  font-weight: var(--fw-medium);
  flex-grow: 1;
  text-align: left;
  padding: 6px 24px 6px 0;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.section .dropdown__content__body__item input {
  display: none;
}
.section .dropdown__content__body__item input:checked + span {
  background: var(--gray-500);
  border-color: var(--gray-500);
}
.section .dropdown__content__body__item input:checked + span svg {
  opacity: 1;
  visibility: visible;
}
.section .dropdown__content__body__item > span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 2px solid var(--dark-gray);
  border-radius: var(--br-2);
  background: var(--white);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.25s ease-in-out;
}
.section .dropdown__content__body__item > span svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
.section .dropdown__content__footer {
  padding: 8px;
}
.section .dropdown__content__footer .btn {
  min-width: auto;
  height: 40px;
  width: 100%;
}
.section .dropdown__badge {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--yellow-500);
  border-radius: 50%;
  font-size: var(--fs-b1);
  line-height: var(--lh-b1);
  font-weight: var(--fw-semi-bold);
}
.section .dropdown.active .dropdown__header > svg {
  transform: rotate(180deg);
}
.section .dropdown.active .dropdown__content {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
}

.content {
  /* Font size - Heading */
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 30px;
  --fs-h4: 24px;
  --fs-h5: 18px;
  --fs-h6: 18px;
  /* Line height - Heading */
  --lh-h1: 60px;
  --lh-h2: 44px;
  --lh-h3: 38px;
  --lh-h4: 32px;
  --lh-h5: 28px;
  --lh-h6: 28px;
  font-size: var(--fs-b4);
  line-height: var(--lh-b4);
}
.content li {
  list-style-type: unset;
}
.content dl,
.content ol,
.content ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
.content ol,
.content ul {
  padding-left: 2rem;
}
.content p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.content h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}
.content h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}
.content h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}
.content h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
}
.content h5 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}
.content h6 {
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--fw-medium);
}
.content img {
  max-width: 100%;
  height: auto !important;
}

/* ==============================
        3. Header
  ============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  z-index: 999;
  transition: all 0.25s ease-in-out;
  border-bottom: 1px solid transparent;
}
.header.fixed {
  background: rgba(52, 60, 66, 0.95);
  box-shadow: var(--box-shadow-300);
  border-color: var(--gray-400);
  padding: 12px 0;
}
.header.fixed .header__logo {
  display: block;
}
.header.fixed .header__logo img {
  height: 54px;
}
.header--black {
  background: var(--gray-500);
  padding: 12px 0;
}
.header--black .header__logo img {
  height: 54px;
}
.header--black.fixed {
  background: var(--gray-500);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  display: block;
}
.header__logo img {
  transition: all 0.25s ease-in-out;
  width: 115px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
}
.header__menu__list {
  display: flex;
  align-items: center;
  gap: 56px;
}
.header__menu__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.header__menu__list li a {
  position: relative;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  color: var(--white);
  transition: all 0.25s ease-in-out;
}
.header__menu__list li a.active {
  color: var(--yellow-500);
  font-weight: var(--fw-medium);
}
.header__menu__list li a:hover {
  color: var(--yellow-500);
}
.header__menu__list li button .icon-close {
  display: none;
}
.header__menu__list li button svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu__list li button svg path {
  stroke: var(--white);
}
.header__search-form {
  padding: 24px 0;
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 24px;
  transition: all 0.25s ease-in-out;
}
.header__search-form.show {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header__search-form input {
  width: 400px;
  border: none;
  outline: none;
  height: 48px;
  box-shadow: var(--box-shadow-200);
  border-radius: var(--br-4);
  padding: 8px 24px;
  font-size: var(--fs-b3);
  font-weight: var(--fw-medium);
  line-height: 1;
}

/* Mobile Header */
.mobile__header {
  position: fixed;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
.mobile__header.show {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.mobile__header__content {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile__header__content .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.mobile__header__content .btn-menu-toggle svg path {
  stroke: var(--gray-500);
}
.mobile__header__logo img {
  height: 54px;
  width: auto;
}
.mobile__header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  overflow: auto;
  padding: 24px 0;
}
.mobile__header__menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile__header__menu__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile__header__menu__list li a {
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-medium);
  color: var(--gray-500);
  transition: all 0.25s ease-in-out;
}
.mobile__header__menu__list li a:hover {
  color: var(--yellow-500);
}
.mobile__header__menu__list li a svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile__header__menu__footer {
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}
.mobile__header__menu__footer .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile__header__menu__footer .social-list li a svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile__header__menu__footer .social-list li a svg circle {
  transition: all 0.25s ease-in-out;
}
.mobile__header__menu__footer .social-list li a:hover svg circle {
  fill: var(--yellow-500);
}

.btn-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.btn-menu-toggle svg {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-menu-toggle svg path {
  stroke: var(--white);
}

/* ==============================
        4. Footer
  ============================== */
.footer {
  background: var(--gray-600);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  font-size: var(--fs-b2);
  line-height: var(--lh-b2);
  letter-spacing: 0.6px;
}

/* ==============================
          OLD STYLES
  ============================== */
.inner-section-header {
  position: relative;
  margin-bottom: 42px;
  padding-bottom: 6px;
  color: var(--gray-500);
}

.inner-section-header:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 4px;
  width: 62px;
  background: var(--yellow-500);
  border-radius: var(--br-2);
}

.inner-section-header .section-title {
  font-weight: var(--fw-semi-bold);
}

.bg-dark-gray {
  color: var(--white);
  background-color: var(--gray-500);
}

.bg-dark-gray .inner-section-header {
  color: var(--white);
}

.services-search-info {
  max-width: 620px;
}

.services-search-form {
  margin: 0 auto;
}

.form-general-item {
  display: flex;
  flex-direction: column;
}

.form-general-item:not(:last-of-type) {
  margin-bottom: 32px;
}

.form-general-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.form-general-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-general-select-header,
.form-general-control {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-radius: var(--br-4);
  padding: 14px 24px;
  color: var(--gray-500);
  background: var(--dark-gray);
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  outline: none;
}

.form-general-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-general-radio:not(:last-child) {
  margin-bottom: 10px;
}

.form-general-radio input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-general-radio label {
  flex-grow: 1;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  padding-left: 8px;
  cursor: pointer;
}

input[type=radio]:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 0;
  left: 0;
  position: relative;
  background-color: var(--dark-gray);
  content: "";
  display: inline-block;
  visibility: visible;
  border: 3px solid var(--white);
  cursor: pointer;
}

input[type=radio]:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: 0;
  left: 0;
  position: relative;
  background-color: var(--yellow-500);
  content: "";
  display: inline-block;
  visibility: visible;
  border: 3px solid var(--white);
  cursor: pointer;
}

.form-general-date-header {
  display: flex;
  position: relative;
}

.form-general-date-header .btn-toggle-calendar {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
}

.form-general-date-header .btn-toggle-calendar svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 250ms ease-in-out;
}

.form-general-date-header .btn-toggle-calendar svg path {
  stroke: var(--gray-500);
}

.form-general-select-header svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 250ms ease-in-out;
}

.form-general-select-header svg path {
  stroke: var(--gray-500);
}

.form-general-select.collapsed .form-general-select-header svg {
  transform: rotate(180deg);
}

.form-general-select-body {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  border-radius: var(--br-4);
  overflow: hidden;
  background: var(--white);
  color: var(--gray-500);
  box-shadow: var(--box-shadow-600);
  z-index: 2;
  margin-top: 8px;
  display: none;
}

.form-general-option-group {
  display: flex;
  flex-direction: column;
  max-height: 250px;
  overflow: auto;
}

.form-general-option {
  padding: 14px 24px;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.form-general-option:hover,
.form-general-option.selected {
  background: var(--light-gray);
}

.form-general-item.active .form-general-label {
  color: var(--white);
}

.form-general-item.active .form-general-select-header,
.form-general-item.active .form-general-control {
  cursor: pointer;
  background: var(--white);
  color: var(--dark-gray);
}

.form-general-item.active .form-general-select-header.selected {
  color: var(--gray-500);
}

.form-general-btns .btn__general {
  flex: 1;
  margin: 0;
}

.form-general-btns #clearCustomsForm:hover {
  color: var(--gray-500);
  background-color: var(--light-gray);
}

.form-general .btn--submit {
  opacity: 0.5;
  cursor: not-allowed;
  margin-top: 48px;
  width: 100%;
}

.form-general.completed .btn--submit {
  opacity: 1;
  cursor: pointer;
}

/* Search */
.marked-search {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--dark-gray);
  border-radius: var(--br-20);
  padding: 10px 16px;
  height: 40px;
  max-width: 640px;
  width: 100%;
  margin: 32px auto 0;
  background-color: var(--white);
}

.marked-search button {
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
}

.marked-search button svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.marked-search button svg path {
  stroke: var(--gray-500);
}

.marked-search button.search-loupe {
  margin-right: 8px;
  cursor: default;
}

.marked-search button.clear-filter {
  margin-left: 8px;
  display: none;
}

.marked-search.active button.clear-filter {
  display: flex;
}

.marked-search-input {
  border: none;
  outline: none;
  box-shadow: none;
  flex-grow: 1;
  padding: 0;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  background-color: var(--white);
}

mark {
  padding: 0;
  background: var(--yellow-500);
  color: var(--gray-500);
  -webkit-text-fill-color: var(--gray-500);
}

.services-result-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.services-result-wrapper::after {
  content: "";
  flex: auto;
}

.services-result-item {
  border-radius: var(--br-6);
  padding: 20px 30px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  width: calc(50% - 8px);
  box-shadow: var(--box-shadow-400);
}

.services-result-item .service-name {
  text-transform: uppercase;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
}

.services-result-item .service-price {
  font-size: var(--fs-b6);
  line-height: var(--lh-b6);
  font-weight: var(--fw-semi-bold);
  color: var(--gray-500);
  flex-shrink: 0;
}

.empty-result-message {
  text-align: center;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}

.customs-content .inner-section-header {
  margin-bottom: 32px;
}

.customs-box {
  padding: 32px;
  box-shadow: var(--box-shadow-600);
  border-radius: var(--br-12);
}

.customs-result-list {
  display: flex;
  flex-direction: column;
}

.customs-result-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-medium);
  padding: 12px 0;
  gap: 12px;
}

.customs-result-list li:not(:last-child) {
  border-bottom: 1px solid var(--white);
}

.customs-result-list li > div:last-child {
  flex-shrink: 0;
  margin-left: 12px;
}

.customs-form .form-general-item {
  margin-bottom: 24px;
}

.customs-form .form-general-label {
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  flex-grow: 1;
}

.customs-form .form-general-date-header .btn-toggle-calendar {
  right: 20px;
}

.customs-form.form-general .btn--submit {
  margin-top: 0;
  width: auto;
}

.customs-form .form-general-select-header,
.customs-form .form-general-control,
.customs-form .form-general-option {
  padding: 10px 20px;
}

.customs-form .form-general-item.active .form-general-control::-moz-placeholder {
  color: var(--gray-500);
}

.customs-form .form-general-item.active .form-general-select-header,
.customs-form .form-general-item.active .form-general-control,
.customs-form .form-general-item.active .form-general-control::placeholder {
  color: var(--gray-500);
}

.customs-form.empty #clearCustomsForm {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Flat picker */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gray-500);
  color: var(--white);
  border-color: var(--gray-500);
}

.my-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--fs-b3);
  line-height: var(--lh-b3);
  font-weight: var(--fw-semi-bold);
  color: var(--gray-600) !important;
  padding: 12px 24px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--gray-300);
  box-shadow: var(--box-shadow-100);
  border-radius: var(--br-4);
  transition: all 0.25s ease-in-out;
}
.my-tag:hover {
  background: var(--gray-200);
}/*# sourceMappingURL=styles.css.map */