@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --black-10: rgba(0, 0, 0, 0.1);
  --black-40: rgba(0, 0, 0, 0.4);
  --primary: #000;
  --primary-40: rgba(0, 0, 0, 0.4);
  --primary-60: rgba(0, 0, 0, 0.6);
  --main: #ec001d;
  --secondary: #787878;
  --placeholder: #bdbdbd;
  --gray: #e0e0e0;
  --gray2: #f5f5f5;
  --gray3: #c0c0c0;
}
footer.footer .footer-links .footer-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
}
footer.footer .footer-links .footer-link:hover {
  color: var(--main);
}
.sticky-footer-link {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 639px) {
  .sticky-footer-link {
    padding: 12px 4px;
  }
}
.sticky-footer-link .svg-wrapper {
  position: relative;
}
.sticky-footer-link .svg-wrapper svg {
  width: 20px;
  height: 20px;
}
.sticky-footer-link .svg-wrapper .quantity {
  position: absolute;
  width: 12px;
  height: 12px;
  font-size: 10px;
  background-color: var(--main);
  color: var(--white);
  right: -6px;
  top: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.sticky-footer-link .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
}
@media (max-width: 639px) {
  .sticky-footer-link .text {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .sticky-footer-link .text {
    font-size: 10px;
  }
}
header.header.fixed-header {
  box-shadow: 0 1px 8px var(--black-10);
}
header.header .header-links .header-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  padding: 4px 0;
  display: flex;
  position: relative;
}
@media (max-width: 1535px) {
  header.header .header-links .header-link {
    font-size: 14px;
  }
}
header.header .header-links .header-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  background-color: var(--main);
  width: 0;
  transition: all 0.3s;
}
header.header .header-links .header-link:hover {
  color: var(--main);
}
header.header .header-links .header-link:hover::after {
  width: 100%;
}
header.header .header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  position: relative;
}
@media (max-width: 1023px) {
  header.header .header-icon {
    display: none;
  }
}
header.header .header-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
}
header.header .header-icon .quantity {
  position: absolute;
  top: -3px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background-color: var(--main);
  color: var(--white);
  border-radius: 100%;
  font-size: 10px;
}
header.header .header-icon:hover svg {
  stroke: var(--main);
}
header.header .langs-wrapper.open .langs {
  opacity: 1;
  visibility: visible;
  transform: none;
}
header.header .langs-wrapper.open .lang-btn svg {
  rotate: 180deg;
}
header.header .langs-wrapper .lang-btn svg {
  stroke: var(--white);
}
header.header .langs-wrapper .langs {
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}
header.header .langs-wrapper .langs .lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px;
  font-weight: 500;
  color: var(--primary);
}
header.header .langs-wrapper .langs .lang-link:hover {
  color: var(--main);
  background-color: var(--main-20);
}
.header-menu {
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
}
.header-menu.open {
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.header-menu .header-item,
.header-menu .header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  min-height: 50px;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid var(--black-10);
}
.header-menu .header-item svg,
.header-menu .header-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
}
.header-menu .header-link .icon-wrapper {
  position: relative;
}
.header-menu .header-link .icon-wrapper .quantity {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background-color: var(--main);
  color: var(--white);
  border-radius: 100%;
  font-size: 10px;
}
.header-menu .header-link:hover {
  color: var(--main);
}
.blackout {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.blackout.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.service-modal,
.gift-modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.service-modal.open,
.gift-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.blackout {
  background-color: var(--black-40);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 98;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1279px) {
  .service-card {
    gap: 28px;
  }
}
@media (max-width: 1023px) {
  .service-card {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.service-card img {
  width: 280px;
  height: 280px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1535px) {
  .service-card img {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 1279px) {
  .service-card img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .service-card img {
    width: 150px;
    height: 150px;
    width: 100%;
    height: auto;
  }
}
.service-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023px) {
  .service-card .text-wrapper {
    gap: 8px;
    align-items: center;
  }
}
.service-card .text-wrapper .title {
  font-size: 20px;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .service-card .text-wrapper .title {
    font-size: 18px;
  }
}
.team-card {
  width: 100%;
  height: auto;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.team-card:hover .img-wrapper img {
  scale: 1.2;
}
.team-card:hover .img-wrapper .text-wrapper {
  opacity: 1;
}
.team-card .img-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.team-card .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.team-card .img-wrapper .text-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 40px 16px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  opacity: 0;
  min-height: 40%;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s;
  display: flex;
  align-items: flex-end;
}
.team-card .img-wrapper .text-wrapper .text {
  font-size: 16px;
  color: var(--white);
  text-align: center;
}
.team-card .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}
@media (max-width: 767px) {
  .team-card .title {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .team-section .team-card {
    width: 250px;
  }
}
.team-section .swiper-next,
.team-section .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .team-section .swiper-next,
  .team-section .swiper-prev {
    display: none;
  }
}
.team-section .swiper-next:hover,
.team-section .swiper-prev:hover {
  opacity: 0.6;
}
.team-section .swiper-next svg,
.team-section .swiper-prev svg {
  stroke: var(--primary);
  width: 16px;
  height: 16px;
}
.team-section .swiper-next {
  right: -4px;
}
.team-section .swiper-prev {
  left: -4px;
}
.team-section .swiper-prev svg {
  rotate: -180deg;
}
.about-gallery .gallery-item {
  width: 100%;
  height: 100%;
}
.about-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-swiper .swiper .swiper-slide img {
  height: 540px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-card {
  width: 100%;
  min-height: 80px;
  border: 2px solid var(--category-card-bg);
}
.category-card .category-card-wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--category-card-bg);
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
@media (max-width: 1023px) {
  .category-card .category-card-wrapper {
    gap: 12px;
    padding-right: 12px;
  }
}
.category-card.active {
  padding: 4px;
  border-color: var(--primary);
}
.category-card img {
  width: 100px;
  height: 100px;
}
@media (max-width: 1023px) {
  .category-card img {
    width: 80px;
    height: 80px;
  }
}
.category-card .title {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
@media (max-width: 1023px) {
  .category-card .title {
    font-size: 14px;
  }
}
.filters .filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1023px) {
  .filters .filters-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 99;
    overflow-y: auto;
    gap: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-105%);
    transition: all 0.3s;
  }
  .filters .filters-wrapper.open {
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: all 0.3s;
  }
}
.filters .filters-wrapper .close-wrapper {
  display: none;
}
@media (max-width: 1023px) {
  .filters .filters-wrapper .close-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    border-bottom: 1px solid var(--gray2);
    margin-bottom: 24px;
  }
}
.filters .filters-wrapper .close-wrapper .close-filter-btn {
  padding: 8px;
}
.filters .filters-wrapper .close-wrapper .close-filter-btn svg {
  stroke: var(--primary);
  width: 18px;
  height: 18px;
}
.filters .filters-wrapper .filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023px) {
  .filters .filters-wrapper .filter-wrapper {
    margin-bottom: 24px;
    padding: 24px 16px;
    padding-top: 0;
    border-bottom: 1px solid var(--gray2);
  }
  .filters .filters-wrapper .filter-wrapper:last-child {
    border: none;
    margin-bottom: 0;
  }
}
.filters .filters-wrapper .filter-wrapper .filter-title {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1023px) {
  .filters .filters-wrapper .filter-wrapper .filter-title {
    font-size: 18px;
  }
}
.filters .filters-wrapper .filter-wrapper .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters .filters-wrapper .filter-wrapper .categories .link {
  padding: 8px;
  background-color: var(--gray2);
  font-weight: 500;
}
.filters .filters-wrapper .filter-wrapper .categories .link.active, .filters .filters-wrapper .filter-wrapper .categories .link:hover {
  background-color: var(--primary);
  color: var(--white);
}
.filters .filters-wrapper .filter-wrapper .brands {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filters .filters-wrapper .filter-wrapper .brands .link {
  padding: 8px;
  font-size: 16px;
  line-height: 140%;
  padding-left: 32px;
  position: relative;
}
.filters .filters-wrapper .filter-wrapper .brands .link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--black-10);
  transition: all 0.3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}
.filters .filters-wrapper .filter-wrapper .brands .link:hover {
  color: var(--main);
}
.filters .filters-wrapper .filter-wrapper .brands .link:hover::before {
  border-color: var(--main);
}
.filters .filters-wrapper .filter-wrapper .brands .link.active {
  color: var(--main);
}
.filters .filters-wrapper .filter-wrapper .brands .link.active::before {
  border-color: var(--main);
  background-color: var(--main);
  background-image: url("/images/check.svg");
}
.filters .filters-wrapper .filter-wrapper .price {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filters .filters-wrapper .filter-wrapper .price .price-slider {
  border: none;
  height: 20px;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-base {
  cursor: pointer;
  background-color: var(--white);
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-connects {
  height: 4px;
  background-color: var(--gray);
  border-radius: 0;
  top: 8px;
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-connect {
  background-color: var(--main);
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-handle {
  height: 24px;
  border: none;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  top: -2px;
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-handle::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main);
  width: 3px;
  opacity: 1;
}
.filters .filters-wrapper .filter-wrapper .price .price-slider .noUi-handle::after {
  display: none;
}
.filters .filters-wrapper .filter-wrapper .price .price-footer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.filters .filters-wrapper .filter-wrapper .price .price-footer .price-text-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 120%;
}
.filters .filters-wrapper .filter-wrapper .price .price-footer .price-text-wrapper .price-text {
  font-weight: 500;
}
.filters .filters-wrapper .filter-wrapper .price .price-footer .price-btn {
  padding: 8px;
  background-color: var(--gray2);
  line-height: 120%;
  border: 1px solid transparent;
}
.filters .filters-wrapper .filter-wrapper .price .price-footer .price-btn:hover {
  border-color: var(--primary-40);
}
@media (min-width: 1024px) {
  .filter-btn {
    display: none !important;
  }
}
.product-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.product-gallery .swiper-next,
.product-gallery .swiper-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.product-gallery .swiper-next:hover,
.product-gallery .swiper-prev:hover {
  opacity: 0.6;
}
.product-gallery .swiper-next svg,
.product-gallery .swiper-prev svg {
  stroke: var(--primary);
  width: 20px;
  height: 20px;
}
.product-gallery .swiper-prev {
  left: 0;
}
.product-gallery .swiper-prev svg {
  rotate: -180deg;
}
.product-gallery .swiper-next {
  right: 0;
}
.product-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  max-height: 80px;
  min-width: 80px;
  max-width: 80px;
  opacity: 0.6;
  border: 1px solid transparent;
}
.product-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary);
}
.product-thumbs .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.product-tab-btns {
  display: flex;
  justify-content: center;
}
.product-tab-btns .tab-btn {
  margin-top: -2px;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  line-height: 120%;
}
@media (max-width: 639px) {
  .product-tab-btns .tab-btn {
    font-size: 16px;
    padding: 12px;
  }
}
.product-tab-btns .tab-btn::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--main);
  transform: translateX(-105%);
  transition: all 0.3s;
}
.product-tab-btns .tab-btn:hover::before, .product-tab-btns .tab-btn.active::before {
  transform: none;
}
.product-wishlist-btn svg {
  stroke: var(--primary) !important;
}
.product-wishlist-btn.active svg {
  fill: var(--main) !important;
  stroke: var(--main) !important;
}
.cart-breadcrumbs {
  padding: 24px 0;
}
.cart-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cart-breadcrumbs .container .text,
.cart-breadcrumbs .container .link {
  font-size: 24px;
  line-height: 130%;
  color: var(--secondary);
  padding: 4px 0;
}
@media (max-width: 1023px) {
  .cart-breadcrumbs .container .text,
  .cart-breadcrumbs .container .link {
    font-size: 20px;
  }
}
.cart-breadcrumbs .container .link.active {
  font-weight: 500;
  color: var(--primary);
  border-bottom: 2px solid var(--main);
}
.cart-breadcrumbs .container .link:hover {
  color: var(--primary);
}
@media (max-width: 767px) {
  .cart-breadcrumbs .container .link {
    display: none;
  }
  .cart-breadcrumbs .container .link.active {
    display: block;
  }
  .cart-breadcrumbs .container .text {
    display: none;
  }
}
.cart-breadcrumbs .container svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
@media (max-width: 767px) {
  .cart-breadcrumbs .container svg {
    display: none;
  }
}
.cart-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
@media (max-width: 1279px) {
  .cart-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.cart-aside .cart-total .text {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray2);
}
.cart-aside .cart-total .text span {
  display: inline-block;
  font-weight: 600;
  min-width: 100px;
}
.cart-table thead {
  border-bottom: 1px solid var(--primary);
}
.cart-table thead tr th {
  padding: 12px 0;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}
.cart-table thead tr th:first-child {
  text-align: start;
}
.cart-table tbody tr td {
  padding: 20px 0;
}
.cart-table tbody tr td:not(:last-child) {
  padding: 20px 10px 20px 0;
}
.profile-aside {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray2);
}
@media (max-width: 1023px) {
  .profile-aside {
    border: none;
  }
}
.profile-aside .link {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray2);
  font-size: 20px;
}
@media (max-width: 1023px) {
  .profile-aside .link {
    font-size: 18px;
    border: 1px solid var(--gray2);
    border-bottom: none;
  }
  .profile-aside .link:last-child {
    border-bottom: 1px solid var(--gray2);
  }
}
@media (max-width: 639px) {
  .profile-aside .link {
    font-size: 16px;
  }
}
.profile-aside .link:hover, .profile-aside .link.active {
  background-color: var(--black);
  color: var(--white);
}
.profile-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}
@media (max-width: 1279px) {
  .profile-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.order-card .order-products-list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.order-card.show .order-card-btn .hide-text {
  display: block;
}
.order-card.show .order-card-btn .show-text {
  display: none;
}
.order-card .order-card-btn .hide-text {
  display: none;
}
.order-card .order-card-btn .show-text {
  display: block;
}
.gift-form .row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gift-form .row .row-title {
  font-size: 20px;
  font-weight: 600;
}
.gift-form .row.design-row .design-swiper {
  padding: 8px;
}
.gift-form .row.design-row .design-swiper .swiper-slide {
  width: auto;
}
.gift-form .row.design-row .design-swiper .swiper-slide label img {
  display: block;
  width: auto;
  height: 240px;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .gift-form .row.design-row .design-swiper .swiper-slide label img {
    height: 180px;
  }
}
@media (max-width: 639px) {
  .gift-form .row.design-row .design-swiper .swiper-slide label img {
    height: 150px;
  }
}
.gift-form .row.design-row .design-swiper .swiper-slide label:has(input[type=radio]) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
.gift-form .row.design-row .design-swiper .swiper-slide label:has(input[type=radio]) input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: none;
}
.gift-form .row.design-row .design-swiper .swiper-slide label:has(input[type=radio]:checked) {
  box-shadow: 0 0 8px 0px var(--primary);
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*
! tailwindcss v3.4.16 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.transition-300{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.swiper-with-grid{
  max-height: 100vh;
  min-height: 0px;
  width: 100%;
  min-width: 0px;
  max-width: 100%;
}
.absolute-center{
  position: absolute;
  left: 50%;
  top: 50%;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.primary-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 500;
  line-height: 130%;
  border-width: 1px;
  border-color: var(--primary);
  background-color: transparent;
  color: var(--primary);
}
.primary-btn:hover{
  background-color: var(--primary);
  color: var(--white);
}
.primary-btn-fill{
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 500;
  line-height: 130%;
  border-width: 1px;
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.primary-btn-fill:hover{
  background-color: transparent;
  color: var(--primary);
}
.main-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 500;
  line-height: 130%;
  border-width: 1px;
  border-color: var(--main);
  background-color: transparent;
  color: var(--main);
}
.main-btn:hover{
  background-color: var(--main);
  color: var(--white);
}
.main-btn-fill{
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 500;
  line-height: 130%;
  border-width: 1px;
  border-color: var(--main);
  background-color: var(--main);
  color: var(--white);
}
.main-btn-fill:hover{
  background-color: transparent;
  color: var(--main);
}
.section-margin{
  margin-top: 60px;
}
@media (min-width: 640px){
  .section-margin{
    margin-top: 5rem;
  }
}
@media (min-width: 1024px){
  .section-margin{
    margin-top: 100px;
  }
}
@media (min-width: 1280px){
  .section-margin{
    margin-top: 120px;
  }
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.-top-8{
  top: -2rem;
}
.bottom-0{
  bottom: 0px;
}
.left-0{
  left: 0px;
}
.right-0{
  right: 0px;
}
.right-2{
  right: 0.5rem;
}
.top-0{
  top: 0px;
}
.top-10{
  top: 2.5rem;
}
.top-2{
  top: 0.5rem;
}
.top-20{
  top: 5rem;
}
.top-\[calc\(100\%\+10px\)\]{
  top: calc(100% + 10px);
}
.z-\[1\]{
  z-index: 1;
}
.z-\[90\]{
  z-index: 90;
}
.z-\[99\]{
  z-index: 99;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-\[50px\]{
  margin-top: 50px;
  margin-bottom: 50px;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-20{
  margin-bottom: 5rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-\[50px\]{
  margin-bottom: 50px;
}
.mb-\[60px\]{
  margin-bottom: 60px;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-\[30px\]{
  margin-top: 30px;
}
.mt-\[60px\]{
  margin-top: 60px;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.h-1{
  height: 0.25rem;
}
.h-20{
  height: 5rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-80{
  height: 20rem;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[3px\]{
  height: 3px;
}
.h-\[520px\]{
  height: 520px;
}
.h-\[70px\]{
  height: 70px;
}
.h-full{
  height: 100%;
}
.max-h-\[400px\]{
  max-height: 400px;
}
.max-h-\[80px\]{
  max-height: 80px;
}
.max-h-\[900px\]{
  max-height: 900px;
}
.min-h-20{
  min-height: 5rem;
}
.min-h-\[400px\]{
  min-height: 400px;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.w-20{
  width: 5rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[18px\]{
  width: 18px;
}
.w-\[50px\]{
  width: 50px;
}
.w-\[70px\]{
  width: 70px;
}
.w-auto{
  width: auto;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-20{
  min-width: 5rem;
}
.min-w-\[20px\]{
  min-width: 20px;
}
.min-w-\[45px\]{
  min-width: 45px;
}
.min-w-\[80px\]{
  min-width: 80px;
}
.max-w-\[1040px\]{
  max-width: 1040px;
}
.max-w-\[1150px\]{
  max-width: 1150px;
}
.max-w-\[1280px\]{
  max-width: 1280px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[530px\]{
  max-width: 530px;
}
.max-w-\[540px\]{
  max-width: 540px;
}
.max-w-\[600px\]{
  max-width: 600px;
}
.max-w-\[800px\]{
  max-width: 800px;
}
.max-w-\[80px\]{
  max-width: 80px;
}
.max-w-\[880px\]{
  max-width: 880px;
}
.grow{
  flex-grow: 1;
}
.cursor-pointer{
  cursor: pointer;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-\[1fr\2c 1\.3fr\]{
  grid-template-columns: 1fr 1.3fr;
}
.grid-cols-\[1fr\2c 1\.4fr\]{
  grid-template-columns: 1fr 1.4fr;
}
.grid-cols-\[1fr\2c 500px\]{
  grid-template-columns: 1fr 500px;
}
.grid-cols-\[2fr\2c 1fr\]{
  grid-template-columns: 2fr 1fr;
}
.grid-cols-\[340px\2c 1fr\]{
  grid-template-columns: 340px 1fr;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.\!items-start{
  align-items: flex-start !important;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.\!gap-3{
  gap: 0.75rem !important;
}
.gap-1{
  gap: 0.25rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-20{
  gap: 5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[10px\]{
  gap: 10px;
}
.gap-\[3\.75rem\]{
  gap: 3.75rem;
}
.gap-\[60px\]{
  gap: 60px;
}
.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.self-end{
  align-self: flex-end;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-dashed{
  border-style: dashed;
}
.border-dotted{
  border-style: dotted;
}
.border-gray{
  border-color: var(--gray);
}
.border-gray2{
  border-color: var(--gray2);
}
.border-green-500{
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-main{
  border-color: var(--main);
}
.border-placeholder{
  border-color: var(--placeholder);
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-b-black-10{
  border-bottom-color: var(--black-10);
}
.border-b-gray2{
  border-bottom-color: var(--gray2);
}
.bg-black{
  background-color: var(--black);
}
.bg-gray{
  background-color: var(--gray);
}
.bg-gray2{
  background-color: var(--gray2);
}
.bg-main{
  background-color: var(--main);
}
.bg-primary{
  background-color: var(--primary);
}
.bg-white{
  background-color: var(--white);
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-none{
  fill: none;
}
.stroke-primary{
  stroke: var(--primary);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-4{
  padding: 1rem;
}
.p-\[6px\]{
  padding: 6px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[60px\]{
  padding-top: 60px;
  padding-bottom: 60px;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.text-center{
  text-align: center;
}
.\!text-start{
  text-align: start !important;
}
.text-end{
  text-align: end;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[20px\]{
  font-size: 20px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[32px\]{
  font-size: 32px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.leading-100{
  line-height: 100%;
}
.leading-110{
  line-height: 110%;
}
.leading-120{
  line-height: 120%;
}
.leading-130{
  line-height: 130%;
}
.leading-140{
  line-height: 140%;
}
.leading-150{
  line-height: 150%;
}
.leading-170{
  line-height: 170%;
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-main{
  color: var(--main);
}
.text-placeholder{
  color: var(--placeholder);
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-white{
  color: var(--white);
}
.underline{
  text-decoration-line: underline;
}
.opacity-60{
  opacity: 0.6;
}
.shadow-\[0_0_12px_0_var\(--black-10\)\]{
  --tw-shadow: 0 0 12px 0 var(--black-10);
  --tw-shadow-colored: 0 0 12px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_4px_0_rgba\(0\2c 0\2c 0\2c 0\.5\)\]{
  --tw-shadow: 0 0 4px 0 rgba(0,0,0,0.5);
  --tw-shadow-colored: 0 0 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\@container{
  container-type: inline-size;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  scroll-behavior: smooth;
  overflow-x: clip;
  color: var(--primary);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.root {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main {
  scroll-behavior: smooth;
  flex-grow: 1;
  height: 100%;
}
img,
svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
a,
a svg,
a span,
button,
button svg,
button span {
  transition: all 0.3s !important;
}
.text-block {
  line-height: 140%;
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  line-height: 110%;
  font-family: var(--futura-bold);
  font-weight: 600;
}
.text-block h1 {
  font-size: 36px;
}
@media (max-width: 1279px) {
  .text-block h1 {
    font-size: 30px;
  }
}
@media (max-width: 1023px) {
  .text-block h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .text-block h1 {
    font-size: 26px;
  }
}
@media (max-width: 639px) {
  .text-block h1 {
    font-size: 24px;
  }
}
.text-block h2 {
  font-size: 30px;
}
@media (max-width: 1279px) {
  .text-block h2 {
    font-size: 28px;
  }
}
@media (max-width: 1023px) {
  .text-block h2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .text-block h2 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .text-block h2 {
    font-size: 22px;
  }
}
.text-block h3 {
  font-size: 28px;
}
@media (max-width: 1279px) {
  .text-block h3 {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .text-block h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .text-block h3 {
    font-size: 22px;
  }
}
@media (max-width: 639px) {
  .text-block h3 {
    font-size: 20px;
  }
}
.text-block h4 {
  font-size: 26px;
}
@media (max-width: 1279px) {
  .text-block h4 {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .text-block h4 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .text-block h4 {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .text-block h4 {
    font-size: 18px;
  }
}
.text-block h5 {
  font-size: 24px;
}
@media (max-width: 1279px) {
  .text-block h5 {
    font-size: 22px;
  }
}
@media (max-width: 1023px) {
  .text-block h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .text-block h5 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .text-block h5 {
    font-size: 16px;
  }
}
.text-block h6 {
  font-size: 22px;
}
@media (max-width: 1279px) {
  .text-block h6 {
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .text-block h6 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .text-block h6 {
    font-size: 16px;
  }
}
.text-block a,
.text-block li,
.text-block p {
  line-height: 140%;
  font-size: 14px;
}
.text-block a {
  color: var(--main);
}
.text-block ol,
.text-block ul {
  list-style-position: inside;
}
.text-block ul {
  list-style-type: disc;
}
.text-block ol {
  list-style-type: decimal;
}
.text-block blockquote {
  background-color: var(--main-20);
  border-left: 3px solid var(--main);
  padding: 24px;
}
textarea,
input {
  outline: none;
  border: 1px solid var(--black-10);
  transition: border 0.3s;
  font-size: 16px;
  max-width: 740px;
}
textarea:focus-visible,
input:focus-visible {
  border: 1px solid var(--black);
  outline: none;
}
textarea:not([type=checkbox]), textarea:not([type=radio]),
input:not([type=checkbox]),
input:not([type=radio]) {
  line-height: 120%;
  min-height: 42px;
  padding: 0 15px;
  background-color: var(--white);
  width: 100%;
}
textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--placeholder);
  font-size: 16px;
}
textarea::placeholder,
input::placeholder {
  color: var(--placeholder);
  font-size: 16px;
}
textarea[type=checkbox], textarea[type=radio],
input[type=checkbox],
input[type=radio] {
  padding: 0;
  min-height: 0;
  width: auto;
}
textarea {
  height: 120px;
  padding-top: 12px !important;
}
label:has(.radio-input) {
  display: flex;
  align-items: center;
  gap: 8px;
}
label:has(.radio-input):focus-visible, label:has(.radio-input):hover {
  color: var(--main);
}
label:has(.radio-input):focus-visible input, label:has(.radio-input):hover input {
  border-color: var(--main);
}
label:has(.radio-input) input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 16px;
  max-height: 16px;
  min-width: 16px;
  max-width: 16px;
  border-radius: 100%;
  border: 1px solid var(--primary-40);
  position: relative;
}
label:has(.radio-input) input::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main);
  opacity: 0;
  border-radius: 100%;
  transition: all 0.3s;
}
label:has(.radio-input) input:checked {
  border-color: var(--main);
}
label:has(.radio-input) input:checked::after {
  opacity: 1;
}
label:has(input[type=checkbox]) {
  display: flex;
  align-items: center;
  gap: 8px;
}
label:has(input[type=checkbox]):focus-visible, label:has(input[type=checkbox]):hover {
  color: var(--main);
}
label:has(input[type=checkbox]):focus-visible input[type=checkbox], label:has(input[type=checkbox]):hover input[type=checkbox] {
  border-color: var(--main);
}
label:has(input[type=checkbox]) input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 20px;
  max-height: 20px;
  min-width: 20px;
  max-width: 20px;
  border: 1px solid var(--black-10);
  transition: all 0.3s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}
label:has(input[type=checkbox]) input[type=checkbox]:checked {
  border-color: var(--main);
  background-color: var(--main);
  background-image: url("/images/check.svg");
}
textarea {
  max-height: 400px;
  resize: vertical;
}
.video-wrapper.play .video-controllers svg.play-svg {
  display: none;
}
.video-wrapper.play .video-controllers svg.pause-svg {
  display: block;
}
.video-wrapper.sound-off .video-controllers svg.sound-svg {
  display: none;
}
.video-wrapper.sound-off .video-controllers svg.sound-off-svg {
  display: block;
}
.video-wrapper .video-controllers button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.video-wrapper .video-controllers button:hover svg {
  stroke: var(--main);
}
.video-wrapper .video-controllers button svg {
  stroke: var(--white);
  width: 32px;
  height: 32px;
}
.video-wrapper .video-controllers button svg.play-svg {
  display: block;
}
.video-wrapper .video-controllers button svg.pause-svg {
  display: none;
}
.video-wrapper .video-controllers button svg.sound-svg {
  display: block;
}
.video-wrapper .video-controllers button svg.sound-off-svg {
  display: none;
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1023px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .title {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 1279px) {
  .section-heading .title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section-heading .title {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .section-heading .title {
    font-size: 24px;
  }
}
.section-heading .divider {
  background-color: var(--main);
  width: 100px;
  height: 4px;
}
.section-heading-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.section-heading-2 .title {
  font-size: 24px;
}
@media (max-width: 767px) {
  .section-heading-2 .title {
    font-size: 20px;
  }
}
.section-heading-2 .divider {
  background-color: var(--main);
  width: 50px;
  height: 3px;
}
.product-card {
  container-type: inline-size;
  container-name: product-card;
}
.product-card .img-wrapper .img-block {
  height: 400px;
}
@container product-card (width < 400px) {
  .product-card .img-wrapper .img-block {
    height: 350px;
  }
}
@container product-card (width < 350px) {
  .product-card .img-wrapper .img-block {
    height: 300px;
  }
}
@container product-card (width < 300px) {
  .product-card .img-wrapper .img-block {
    height: 250px;
  }
}
@container product-card (width < 250px) {
  .product-card .img-wrapper .img-block {
    height: 200px;
  }
}
@container product-card (width < 200px) {
  .product-card .img-wrapper .img-block {
    height: 150px;
  }
}
.product-card .img-wrapper .img-block img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  height: 400px;
}
@container product-card (width < 400px) {
  .product-card .img-wrapper .img-block img {
    height: 350px;
  }
}
@container product-card (width < 350px) {
  .product-card .img-wrapper .img-block img {
    height: 300px;
  }
}
@container product-card (width < 300px) {
  .product-card .img-wrapper .img-block img {
    height: 250px;
  }
}
@container product-card (width < 250px) {
  .product-card .img-wrapper .img-block img {
    height: 200px;
  }
}
@container product-card (width < 200px) {
  .product-card .img-wrapper .img-block img {
    height: 150px;
  }
}
.wishlist-btn.active svg {
  stroke: var(--main);
  fill: var(--main);
}
.wishlist-btn:hover svg {
  stroke: var(--main);
}
.wishlist-btn svg {
  stroke: var(--white);
  fill: none;
  width: 20px;
  height: 20px;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.pagination .link,
.pagination .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: var(--gray3);
  border-radius: 8px;
  background: var(--gray2);
  transition: all 0.3s;
  border: 1px solid var(--gray2);
}
@media (max-width: 639px) {
  .pagination .link,
  .pagination .text {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.pagination .link.active {
  background-color: var(--main);
  color: var(--white);
}
.pagination .link:hover {
  border-color: var(--main);
}
.breadcrumbs {
  padding: 20px;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs .container .link,
.breadcrumbs .container .current {
  font-weight: 500;
  line-height: 130%;
}
.breadcrumbs .container .link {
  color: var(--secondary);
}
.breadcrumbs .container .link:hover {
  color: var(--primary);
}
.breadcrumbs .container svg {
  min-width: 12px;
  width: 12px;
  min-height: 12px;
  height: 12px;
  stroke: var(--primary);
}
.quantity {
  height: 40px;
  display: flex;
}
.quantity .quantity-minus,
.quantity .quantity-plus {
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gray);
  font-size: 20px;
  line-height: 120%;
}
.quantity .quantity-input {
  border: 1px solid var(--gray);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0;
  height: 100%;
  width: 40px;
  min-height: 0;
  padding: 0 4px;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  -moz-appearance: textfield;
}
.quantity .quantity-input::-webkit-outer-spin-button, .quantity .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tabs .tab {
  display: none;
}
.tabs .tab.active {
  display: block;
}
.swiper-navigation .container {
  position: relative;
}
.swiper-navigation .container .swiper-next,
.swiper-navigation .container .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .swiper-navigation .container .swiper-next,
  .swiper-navigation .container .swiper-prev {
    display: none;
  }
}
.swiper-navigation .container .swiper-next:hover,
.swiper-navigation .container .swiper-prev:hover {
  opacity: 0.6;
}
.swiper-navigation .container .swiper-next svg,
.swiper-navigation .container .swiper-prev svg {
  stroke: var(--primary);
  width: 16px;
  height: 16px;
}
.swiper-navigation .container .swiper-next {
  right: -4px;
}
.swiper-navigation .container .swiper-prev {
  left: -4px;
}
.swiper-navigation .container .swiper-prev svg {
  rotate: -180deg;
}
.page-heading {
  padding: 24px 0;
}
.page-heading .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-heading .container .title {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  border-bottom: 2px solid var(--main);
  padding: 6px 0;
}
@media (max-width: 767px) {
  .page-heading .container .title {
    font-size: 22px;
  }
}
@media (max-width: 639px) {
  .page-heading .container .title {
    font-size: 20px;
  }
}
.page-heading .container .text {
  font-size: 18px;
}
@media (max-width: 639px) {
  .page-heading .container .text {
    font-size: 16px;
  }
}
.filters .prices-row label:has(input[type=radio]), .filters .prices-row label:has(input[type=checkbox]) {
  border-radius: 0;
  border: none;
  padding: 0 12px;
}
.prices-row label {
  transition: all 0.3s;
}
.prices-row label:has(input[type=radio]), .prices-row label:has(input[type=checkbox]) {
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 0 24px;
  background-color: var(--gray2);
  font-weight: 500;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 639px) {
  .prices-row label:has(input[type=radio]), .prices-row label:has(input[type=checkbox]) {
    padding: 0 12px;
    font-size: 14px;
  }
}
.prices-row label:has(input[type=radio]):hover, .prices-row label:has(input[type=checkbox]):hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.prices-row label:has(input[type=radio]) input[type=radio],
.prices-row label:has(input[type=radio]) input[type=checkbox], .prices-row label:has(input[type=checkbox]) input[type=radio],
.prices-row label:has(input[type=checkbox]) input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: none;
}
.prices-row label:has(input:checked) {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.service-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-category-card:hover .title {
  color: var(--main);
}
.service-category-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.service-category-card .title {
  text-align: center;
  font-size: 20px;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .service-category-card .title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-category-card .title {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .service-category-card .title {
    font-size: 14px;
  }
}
.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-table .title {
  font-size: 20px;
  font-weight: 500;
}
.service-table .table {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  overflow-x: auto;
}
.service-table .table .row {
  display: flex;
}
.service-table .table .row:not(.row-title):hover {
  background-color: var(--gray2);
}
.service-table .table .row h5 {
  font-weight: 600;
}
.service-table .table .row h5,
.service-table .table .row p {
  flex: 0 0 auto;
  width: 240px;
  border-bottom: 0.0625rem solid var(--gray2);
  padding: 10px 12px 10px 0;
}
.service-table .table .row h5:first-child,
.service-table .table .row p:first-child {
  flex: 1 1 auto;
  width: auto;
  min-width: 300px;
  padding: 10px 20px 10px 16px;
}
.service-table .table .row h5:last-child,
.service-table .table .row p:last-child {
  width: 100px;
  padding: 10px 16px 10px 0;
}
.service-modal-btn {
  text-align: start;
  text-decoration: underline;
}
.service-modal-btn:hover {
  color: var(--main);
}
.banner-swiper .swiper-slide img {
  height: calc(100vh - 110px);
  min-height: 400px;
  max-height: 900px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1535px) {
  .banner-swiper .swiper-slide img {
    height: calc(100vh - 90px);
  }
}
@media (max-width: 639px) {
  .banner-swiper .swiper-slide img {
    max-height: 600px;
  }
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.contact-link:not(.no-link):hover {
  color: var(--main);
}
.contact-link:not(.no-link):hover svg.stroke {
  stroke: var(--main);
}
.contact-link:not(.no-link):hover svg.fill {
  fill: var(--main);
}
.contact-link svg {
  min-height: 24px;
  max-height: 24px;
  min-width: 24px;
  max-width: 24px;
}
.contact-link svg.stroke {
  stroke: var(--primary);
}
.contact-link svg.fill {
  fill: var(--primary);
}
@media (min-width: 1024px){
  .lg\:white-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 500;
    line-height: 130%;
    border-width: 1px;
    border-color: var(--white);
    background-color: transparent;
    color: var(--white);
  }
  .lg\:white-btn:hover{
    background-color: var(--white);
    color: var(--primary);
  }
}
@media (min-width: 1280px){
  .xl\:flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.first\:border-t:first-child{
  border-top-width: 1px;
}
.hover\:text-main:hover{
  color: var(--main);
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.hover\:opacity-60:hover{
  opacity: 0.6;
}
.group:hover .group-hover\:translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:stroke-main{
  stroke: var(--main);
}
@container (min-width: 360px){
  .\@\[360px\]\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }
  .\@\[360px\]\:flex-row{
    flex-direction: row;
  }
  .\@\[360px\]\:gap-3{
    gap: 0.75rem;
  }
}
@container (min-width: 430px){
  .\@\[430px\]\:grid{
    display: grid;
  }
}
@container (min-width: 470px){
  .\@\[470px\]\:max-w-\[300px\]{
    max-width: 300px;
  }
}
@container (min-width: 490px){
  .\@\[490px\]\:grid{
    display: grid;
  }
}
@media (min-width: 350px){
  .min-\[350px\]\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 640px){
  .sm\:grid{
    display: grid;
  }
  .sm\:h-\[280px\]{
    height: 280px;
  }
  .sm\:h-\[400px\]{
    height: 400px;
  }
  .sm\:max-h-\[100px\]{
    max-height: 100px;
  }
  .sm\:min-h-\[100px\]{
    min-height: 100px;
  }
  .sm\:min-w-\[100px\]{
    min-width: 100px;
  }
  .sm\:max-w-\[100px\]{
    max-width: 100px;
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:gap-4{
    gap: 1rem;
  }
  .sm\:gap-5{
    gap: 1.25rem;
  }
  .sm\:gap-x-16{
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .sm\:gap-y-12{
    row-gap: 3rem;
  }
  .sm\:p-7{
    padding: 1.75rem;
  }
  .sm\:text-\[24px\]{
    font-size: 24px;
  }
  .sm\:text-\[28px\]{
    font-size: 28px;
  }
  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px){
  .md\:block{
    display: block;
  }
  .md\:grid{
    display: grid;
  }
  .md\:max-h-\[550px\]{
    max-height: 550px;
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-baseline{
    align-items: baseline;
  }
  .md\:text-start{
    text-align: start;
  }
  .md\:text-\[28px\]{
    font-size: 28px;
  }
}
@media (min-width: 1024px){
  .lg\:pointer-events-none{
    pointer-events: none;
  }
  .lg\:invisible{
    visibility: hidden;
  }
  .lg\:absolute{
    position: absolute;
  }
  .lg\:right-3{
    right: 0.75rem;
  }
  .lg\:top-3{
    top: 0.75rem;
  }
  .lg\:m-0{
    margin: 0px;
  }
  .lg\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:mt-\[60px\]{
    margin-top: 60px;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:table{
    display: table;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-screen{
    height: 100vh;
  }
  .lg\:w-auto{
    width: auto;
  }
  .lg\:max-w-\[1280px\]{
    max-width: 1280px;
  }
  .lg\:max-w-\[240px\]{
    max-width: 240px;
  }
  .lg\:-translate-y-2{
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-x-4{
    --tw-translate-x: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:gap-10{
    gap: 2.5rem;
  }
  .lg\:gap-20{
    gap: 5rem;
  }
  .lg\:gap-3{
    gap: 0.75rem;
  }
  .lg\:gap-4{
    gap: 1rem;
  }
  .lg\:gap-6{
    gap: 1.5rem;
  }
  .lg\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .lg\:gap-y-12{
    row-gap: 3rem;
  }
  .lg\:bg-black-40{
    background-color: var(--black-40);
  }
  .lg\:bg-transparent{
    background-color: transparent;
  }
  .lg\:p-2{
    padding: 0.5rem;
  }
  .lg\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-\[24px\]{
    font-size: 24px;
  }
  .lg\:text-\[28px\]{
    font-size: 28px;
  }
  .lg\:text-\[32px\]{
    font-size: 32px;
  }
  .lg\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg\:opacity-0{
    opacity: 0;
  }
  .group:hover .lg\:group-hover\:pointer-events-auto{
    pointer-events: auto;
  }
  .group:hover .lg\:group-hover\:visible{
    visibility: visible;
  }
  .group:hover .lg\:group-hover\:opacity-100{
    opacity: 1;
  }
}
@media (min-width: 1280px){
  .xl\:flex{
    display: flex;
  }
  .xl\:grid{
    display: grid;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:h-\[610px\]{
    height: 610px;
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:text-\[32px\]{
    font-size: 32px;
  }
}
@media (min-width: 1536px){
  .\32xl\:h-\[90px\]{
    height: 90px;
  }
  .\32xl\:w-\[90px\]{
    width: 90px;
  }
  .\32xl\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .\32xl\:grid-cols-\[1fr\2c 600px\]{
    grid-template-columns: 1fr 600px;
  }
  .\32xl\:gap-5{
    gap: 1.25rem;
  }
}