.card-post a {
  text-decoration: none;
  color: var(--color-text);
}
.card-post .card {
  padding: 20px 0;
}
.card-post .card-content {
  padding: 0 15px 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
.card-post .card h2 {
  font-family: var(--default-font);
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 100%;
  letter-spacing: 5%;
  vertical-align: middle;
  text-transform: uppercase;
}
.card-post .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-small);
  line-height: 16.8px;
}
.card-post .card-datetime {
  font-size: var(--font-size-small);
  line-height: 16.8px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  margin-bottom: 10px;
}
.card-post .card-excerpt {
  font-size: var(--font-size-small);
  line-height: 16.8px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0;
  margin: 0;
}
.card-post .card-title {
  font-size: var(--font-size-default);
  line-height: 19.2px;
  font-weight: 400;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 8px;
}
.card-post.video .card-image-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card-post.video .card-image-container a:before {
  position: absolute;
  content: " ";
  display: block;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../../img/video-play.svg);
  background-size: cover;
  opacity: 0.4;
  transition: ease-in all 0.3s;
}
.card-post.video .card-image-container a:hover:before {
  opacity: 0.8;
}

.placeholder-image {
  background: #f0f0f0;
  background: linear-gradient(45deg, #f0f0f0 0%, #e8e8e8 100%);
}

#breadcrumbs {
  font-size: var(--font-size-small);
  color: var(--color-text);
  font-family: var(--default-font, "Manrope, sans-serif");
  font-weight: 300;
  line-height: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  padding: 5px;
}
#breadcrumbs .sep {
  font-family: var(--default-font, "Manrope, sans-serif");
  font-size: var(--font-size-xsmall);
  padding: 0;
  height: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 3px;
}
#breadcrumbs a {
  font-size: var(--font-size-small);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--default-font, "Manrope, sans-serif");
  font-weight: 300;
}
#breadcrumbs a.active {
  color: #1D1D1B;
}

.swiper {
  width: 100%;
  height: 450px;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  background-color: var(--white-color, "#FFFFFF");
  border: 1px solid #1D1D1B;
  width: 32px;
  height: 32px;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  content: " ";
  background: url("../../img/angle.svg") no-repeat center center;
  background-size: contain;
  display: block;
  width: 15px;
  height: 15px;
}
.swiper .swiper-button-next:after {
  transform: rotate(180deg);
}

.pagination {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: flex-end;
}
.pagination li {
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  font-size: var(--font-size-small);
  font-family: var(--default-font, "Manrope, sans-serif");
}
.pagination a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 300;
}
.pagination .is-active {
  font-weight: 500;
  font-size: var(--font-size-small);
}

:root {
  --text-color: #1D1D1B;
  --background-dark: #1D1D1B;
  --primary-color: #CB007B;
  --white-color: #FFFFFF;
  --default-font: "Manrope", sans-serif;
  --pane-padding: 5px 42px;
  --extralarge-font: 1.6em;
  --small-font: .8em;
  --font-size-default: 1rem;
  --font-size-small: .750rem;
  --font-size-xsmall: .625rem;
  --medium-font: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  color: #1d1d1b;
  font-weight: 300;
  font-family: var(--default-font), sans-serif;
  font-size: var(--medium-font);
  letter-spacing: 0.05rem;
}

b,
strong {
  font-weight: 700;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  unicode-bidi: isolate;
}

.container {
  width: 100%;
}

.container {
  max-width: 1726px;
  margin: 0 auto;
}

.top-banner {
  background: white;
  padding: 8px 0;
  font-size: 12px;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  align-items: center;
}
.top-banner-left, .top-banner-right {
  display: flex;
  gap: 16px;
}
.top-banner .menu {
  text-transform: uppercase;
  list-style: none;
  display: flex;
  gap: 30px;
}
.top-banner .menu a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.top-banner .menu a:hover {
  opacity: 0.7;
}
.top-banner .menu .gift-icon a {
  display: flex;
  align-items: center;
}
.top-banner .menu .gift-icon a:before {
  background: url("../../img/gift-icon.svg") no-repeat center center;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.promo-banner {
  background: #1d1d1b;
  padding: 8px 16px;
  text-align: center;
  color: white;
  font-size: 14px;
}

.header-main {
  padding: 24px 16px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.header .link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.header .link:hover {
  opacity: 0.7;
}

.search-container {
  flex: 1;
  max-width: 568px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 8px 16px 8px 40px;
  border: none;
  border-bottom: 1px solid #1d1d1b;
  font-size: 16px;
  font-family: var(--default-font);
}
.search-input::placeholder {
  color: #999;
}
.search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.searchform {
  flex: 1;
  max-width: 568px;
  position: relative;
}
.searchform input[type=text] {
  background: url("../../img/search.svg") no-repeat left center;
  background-size: 32px;
  width: 100%;
  padding: 8px 16px 12px 40px;
  border: none;
  border-bottom: 1px solid #1d1d1b;
  font-size: 16px;
  font-family: var(--default-font);
}
.searchform input[type=text]::placeholder {
  color: #999;
}
.searchform input[type=submit] {
  display: none;
}

.user-cart {
  height: 26px;
}

body.offcanvas-open {
  overflow: hidden;
}

.offcanvas-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.offcanvas-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.offcanvas-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.offcanvas-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 85%;
  max-width: 360px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px 20px;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offcanvas-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas-menu__logo img {
  max-height: 32px;
}
.offcanvas-menu__close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.offcanvas-menu.is-open {
  pointer-events: auto;
}
.offcanvas-menu.is-open .offcanvas-menu__backdrop {
  opacity: 1;
}
.offcanvas-menu.is-open .offcanvas-menu__panel {
  transform: translateX(0);
}

.navigation {
  padding: 12px 0;
}
.navigation .menu {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.navigation .menu li {
  list-style: none;
}
.navigation .menu li ul {
  list-style: none;
}
.navigation .menu li.menu-item-has-children ul {
  display: none;
}
.navigation .menu li.menu-item-has-children:hover ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-top: none;
}
.navigation .menu a {
  font-size: 16px;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
}
.navigation .menu a.bold {
  font-weight: 700;
}
.navigation .menu a.current-menu-ancestor {
  font-weight: 700;
}

@media (max-width: 767px) {
  .navigation--desktop {
    display: none;
  }
}

.navigation--offcanvas {
  padding: 0;
}
.navigation--offcanvas .menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.navigation--offcanvas .menu a {
  text-transform: none;
}

.hero-image {
  width: 100%;
  /*@media(max-width: 767px){
    height: 250px;


  } */
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
@media (min-width: 1400px) {
  .hero-image {
    height: 739px;
  }
}
.hero-image img {
  object-fit: cover;
}

.brand-carousel {
  width: 100%;
  height: 48px;
  background: #f9f9f9;
}

.content-section {
  padding: 24px 0;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 28.8px;
  font-weight: 300;
  padding-left: 16px;
  text-transform: uppercase;
  width: 100%;
}
.section-description {
  font-size: 12px;
  letter-spacing: 0.7px;
  line-height: 16.8px;
  padding-left: 16px;
}

.categories-grid {
  display: grid;
  gap: 2px;
  margin-bottom: 48px;
}

.promo-cards {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
}
.promo-card {
  flex: 1;
  position: relative;
  height: 696px;
}
.promo-image {
  width: 100%;
  height: 574px;
  background: linear-gradient(135deg, #f0f0f0 0%, #d8d8d8 100%);
}
.promo-info {
  width: 100%;
  background: #1d1d1b;
  height: 122px;
  padding: 32px 16px;
  color: white;
}
.promo-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 28.8px;
  margin-bottom: 8px;
}
.promo-description {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 16.8px;
}

.product-grid {
  margin-bottom: 48px;
}
.product-card {
  text-align: center;
}
.product-image {
  width: 180px;
  height: 180px;
  margin: 23px auto 0;
  background: #f5f5f5;
}
.product-image-container {
  position: relative;
  margin-bottom: 28px;
}
.product-badge {
  position: absolute;
  top: 18px;
  left: 26px;
  background: #cb007b;
  width: 56px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 300;
  border-radius: 50%;
}
.product-badge.new {
  background: var(--background-dark);
}
.product-brand {
  font-size: 14px;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.product-name {
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: lowercase;
}
.product-name:first-letter {
  text-transform: uppercase;
}
.product-price {
  font-size: 14px;
  margin-bottom: 16px;
}

.price-original {
  text-decoration: line-through;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.8;
  margin-right: 5px;
}
.price-discounted {
  color: #cb007b;
  font-weight: 700;
}
.price-bold {
  font-weight: 700;
}

.btn-detail {
  font-size: 14px;
  border-bottom: 1px solid #1d1d1b;
  display: inline-block;
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
}
.btn-add-cart {
  border: 1px solid #1d1d1b;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  background: white;
  cursor: pointer;
  text-decoration: none;
}

.service-cards {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
}
.service-card {
  flex: 1;
  height: 696px;
}
.service-image {
  width: 100%;
  height: 574px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
}
.service-info {
  width: 100%;
  background: #cb007b;
  height: 122px;
  padding: 32px 16px;
  color: white;
}
.service-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 28.8px;
  margin-bottom: 8px;
}
.service-description {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 16.8px;
}

.info-section {
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.info-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.features-section {
  padding: 48px 0;
  display: flex;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  overflow-x: auto;
}

.feature-card {
  flex: 1;
  max-width: 344px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.feature-text {
  font-size: 16px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 32px;
  height: 32px;
  background: #d9d9d9;
  border-radius: 16px;
}

.discover-all {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #1d1d1b;
  display: inline-block;
  cursor: pointer;
}

.header-mobile .logo img {
  max-height: 24px;
}

.category-item {
  position: relative;
  text-decoration: none;
}
.category-image {
  width: 100%;
  max-height: 255px;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
}
.category-label {
  width: 100%;
  height: 49px;
  background: #cb007b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
@media (max-width: 959px) {
  .category-label {
    font-size: 0.835rem;
  }
}
.category:hover .category-label {
  opacity: 0.8;
}

h1 {
  font-size: var(--extralarge-font);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}

.content {
  font-size: var(--medium-font);
  line-height: 1.6em;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin: 20px auto;
}
.content ul, .content ol {
  margin-left: 20px;
  margin: 20px 0 20px 20px;
}
.content a {
  color: var(--color-primary);
  font-weight: 500;
}
.content img {
  object-fit: contain;
  max-width: 100%;
}

.related-posts {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.post-comments {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--default-font, "Manrope", sans-serif);
  color: var(--text-color, #1D1D1B);
}
.post-comments__header {
  margin-bottom: 2rem;
}
.post-comments__title {
  font-size: var(--font-size-default, 1rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-comments__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.post-comments__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 2rem;
}
.post-comments__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.post-comments__comment-body {
  display: flex;
  column-gap: 1.5rem;
}
.post-comments__avatar {
  flex: 0 0 64px;
}
.post-comments__avatar-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.post-comments__content {
  flex: 1;
}
.post-comments__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin-bottom: 1rem;
}
.post-comments__author {
  font-size: var(--font-size-small, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
}
.post-comments__timestamp {
  font-size: var(--font-size-xsmall, 0.625rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 27, 0.6);
}
.post-comments__moderation {
  font-size: var(--font-size-xsmall, 0.625rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color, #CB007B);
  margin-bottom: 1rem;
}
.post-comments__text {
  font-size: var(--font-size-small, 0.75rem);
  line-height: 1.6;
}
.post-comments__text p {
  margin-bottom: 1rem;
}
.post-comments__text p:last-child {
  margin-bottom: 0;
}
.post-comments__footer {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: var(--font-size-xsmall, 0.625rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-comments__reply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--primary-color, #CB007B);
  color: var(--primary-color, #CB007B);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.post-comments__reply:hover, .post-comments__reply:focus-visible {
  background: var(--primary-color, #CB007B);
  color: var(--white-color, #FFFFFF);
}
.post-comments__edit a {
  color: rgba(29, 29, 27, 0.6);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.post-comments__edit a:hover, .post-comments__edit a:focus-visible {
  color: var(--primary-color, #CB007B);
}
.post-comments__pingback {
  font-size: var(--font-size-small, 0.75rem);
  line-height: 1.6;
}
.post-comments__pingback a {
  color: inherit;
  text-decoration: underline;
}
.post-comments__nav {
  margin: 2rem 0;
}
.post-comments__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-comments__nav li {
  font-size: var(--font-size-xsmall, 0.625rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-comments__nav a {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 27, 0.2);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
.post-comments__nav a:hover, .post-comments__nav a:focus-visible {
  border-color: var(--primary-color, #CB007B);
  color: var(--primary-color, #CB007B);
}
.post-comments__nav .current {
  border-color: var(--primary-color, #CB007B);
  color: var(--primary-color, #CB007B);
}
.post-comments__closed {
  font-size: var(--font-size-small, 0.75rem);
  color: rgba(29, 29, 27, 0.6);
  margin-top: 2rem;
}
.post-comments__form {
  margin-top: 3rem;
  display: grid;
  row-gap: 1.5rem;
}
.post-comments__form-title {
  font-size: var(--font-size-default, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.post-comments__field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.post-comments__label {
  font-size: var(--font-size-xsmall, 0.625rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 27, 0.7);
}
.post-comments__input, .post-comments__textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: var(--font-size-small, 0.75rem);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.post-comments__input:focus, .post-comments__textarea:focus {
  outline: none;
  border-color: var(--primary-color, #CB007B);
  box-shadow: 0 0 0 2px rgba(203, 0, 123, 0.15);
}
.post-comments__textarea {
  min-height: 160px;
  resize: vertical;
}
.post-comments__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.post-comments__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  border: none;
  background: var(--primary-color, #CB007B);
  color: var(--white-color, #FFFFFF);
  font-size: var(--font-size-xsmall, 0.625rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.post-comments__submit:hover, .post-comments__submit:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .post-comments {
    padding-top: 2rem;
  }
  .post-comments__comment-body {
    flex-direction: column;
    row-gap: 1rem;
  }
  .post-comments__avatar {
    flex: none;
  }
  .post-comments__title, .post-comments__form-title {
    letter-spacing: 0.08em;
  }
  .post-comments__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .post-comments__submit, .post-comments__reply {
    width: 100%;
  }
}

.footer-links {
  background: var(--background-dark, #1D1D1B);
  padding: 32px 0;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-column-title {
  width: 100%;
  font-size: 16px;
  color: white;
  letter-spacing: 0.8px;
  height: 34px;
  display: flex;
  align-items: center;
}
.footer-links-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
  margin-top: 12px;
}
.footer-links-list ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
  margin-top: 12px;
}
.footer-links-list ul li {
  font-size: 14px;
  color: white;
  text-decoration: none;
  height: 16px;
  display: flex;
  align-items: center;
}
.footer-links-list ul li a {
  color: white;
  text-decoration: none;
}
.footer-links-list ul li:hover {
  text-decoration: underline;
}
.footer-link {
  font-size: 14px;
  color: white;
  text-decoration: none;
  height: 16px;
  display: flex;
  align-items: center;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-bottom {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: white;
  font-size: 14px;
}

.newsletter-container {
  background: white;
}
.newsletter-section {
  text-align: center;
  background: #f0f0f0;
  background: linear-gradient(45deg, #f0f0f0 0%, #e8e8e8 100%);
  background-image: url("../../img/offerte.jpg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.newsletter-section a {
  color: #1d1d1b !important;
}
.newsletter-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 28.8px;
  margin-bottom: 24px;
  font-weight: 300;
}
.newsletter-description {
  font-size: 14px;
  margin-bottom: 8px;
}
.newsletter-highlight {
  font-size: 18px;
  line-height: 21.6px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 536px;
  margin: 0 auto 24px 0;
}
.newsletter-input {
  flex: 1;
  padding: 8px 20px;
  border: none;
  border-bottom: 1px solid #1d1d1b;
  font-size: 14px;
  font-family: var(--default-font);
}
.newsletter-btn {
  border: 1px solid #1d1d1b;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  background: white;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
