/* ====== About US Page ====== */
.vb-about-hero__inner {
  display: flex;
  padding: 80px 80px 64px 80px;
  justify-content: center;
  align-items: flex-end;
  gap: 100px;
  background: linear-gradient(90deg, #7f6252 0%, #dcc2b7 100%);
}
.vb-about-hero__title {
  color: #fff;
  text-align: center;
  font-family:
    "Baloo 2",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .vb-about-hero__title {
    font-size: 40px;
  }
}
/* ====== Intro Block ====== */
.vb-about-intro {
  background: #fff;
  padding: 0px 0;
}
@media (max-width: 768px) {
  .vb-about-intro {
    padding: 32px 0;
  }
}
.vb-about-intro__content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .vb-about-intro__content {
    margin-top: 0px;
  }
}
.vb-about-intro__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.vb-about-intro__title {
  margin: 0 0 32px;
  color: #4b3f3b;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}
.vb-about-intro__title span {
  color: #cdaea2;
}

.vb-about-intro__text {
  color: #4b3f3b;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1290px) {
  .vb-about-intro__title,
  .vb-about-intro__text {
    padding: 0px 20px;
  }
}
.vb-about-intro__text p {
  margin: 0 0 12px;
}

.vb-about-intro__box {
  margin-top: 56px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(246, 240, 238, 0.6);
}
@media (max-width: 1180px) {
  .vb-about-intro__box {
    margin-top: 0px;
  }
}

.vb-about-intro__box-title {
  margin: 0 0 8px;
  color: #4b3f3b;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
}
.vb-about-intro__box-title span {
  color: #cdaea2;
}

.vb-about-intro__box-text {
  color: #4b3f3b;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.vb-about-intro__box-text p {
  margin: 0 0 10px;
}

.vb-about-intro__box-text p:last-child {
  margin-bottom: 0;
}

.vb-about-intro__media {
  display: flex;
  justify-content: flex-end;
}

.vb-about-intro__img {
  width: 100%;
  max-width: 575px;
  height: auto;
  object-fit: cover;
}

/* ====== Responsive ====== */

@media (max-width: 1180px) {
  .vb-about-intro__inner {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .vb-about-intro__media {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .vb-about-intro__title {
    font-size: 28px;
  }
  .vb-about-intro__box-title {
    font-size: 28px;
  }
}
/* ====== About Content (3 cards) ====== */

.vb-about-content {
  padding: 120px 0px;
  background: #f5f5f5;
}
@media (max-width: 1270px) {
  .vb-about-content {
    padding: 120px 20px;
  }
}

.vb-about-content__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.vb-about-card {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 0px 32px;
  border-radius: 32px;
  background: #fff;
}

.vb-about-card:nth-child(even) {
  flex-direction: row-reverse;
}

.vb-about-card__media {
  flex: 0 0 524px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(246, 240, 238, 0.8);
}
@media (max-width: 1025px) {
  .vb-about-card {
    flex-direction: column;
    padding: 0px 0px;
    gap: 20px;
  }
  .vb-about-card:nth-child(even) {
    flex-direction: column;
  }
  .vb-about-card__content {
    padding: 20px 20px;
    order: 1;
  }
  .vb-about-card__media {
    order: 2;
  }
}
.vb-about-card__img {
  width: 100%;
  max-width: 524px;
  height: auto;
  object-fit: contain;
}

.vb-about-card__content {
  flex: 1;
}
@media (max-width: 768px) {
  .vb-about-card__content {
    order: 1;
  }
  .vb-about-card__media {
    order: 2;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }
}
.vb-about-card__title {
  margin: 0 0 10px;
  color: #4b3f3b;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}
.vb-about-card__title span {
  color: #cdaea2;
}
@media (max-width: 768px) {
  .vb-about-card__title {
    font-size: 28px;
  }
}

.vb-about-card__text {
  color: #4b3f3b;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.vb-about-card__text p {
  margin: 0 0 32px;
}
.vb-about-card__text p:last-child {
  margin-bottom: 0;
}
.vb-about-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 18px 24px;
  border-radius: 100px;
  background: #4b3f3b;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .vb-about-card__btn {
    width: 100%;
  }
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .vb-about-card,
  .vb-about-card:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .vb-about-card__media {
    width: 100%;
    flex-basis: auto;
    justify-content: center;
  }

  .vb-about-card__img {
    max-width: 260px;
  }
}
/* ====== Why Us block ====== */

.vb-why {
  padding: 60px 20px;
  background: linear-gradient(90deg, #dcc2b7 0%, #7f6252 100%);
}

.vb-why__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.vb-why__title {
  margin: 0 0 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}

.vb-why__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vb-why__chip {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 20px;
  background: rgba(192, 162, 152, 0.8);
  border: 1px solid rgba(246, 240, 238, 0.29);
}
.vb-why__chip-icon {
  width: 50px;
  height: 50px;
  background: #f8f5ef;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-why__chip-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.vb-why__chip-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.vb-why__paragraph {
  margin: 64px auto 32px;
  max-width: 827px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

.vb-why__certs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
  max-width: 620px;
  margin: 0 auto;
}

.vb-why__cert {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.vb-why__cert-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====== Responsive ====== */

@media (max-width: 1024px) {
  .vb-why__inner {
    width: min(1200px, calc(100% - 48px));
  }

  .vb-why__chips {
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
  }
  .vb-why__chip {
    flex-direction: column;
  }

  .vb-why__certs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 349px) {
  .vb-why__chips {
    grid-template-columns: repeat(1, 1fr);
  }
  .vb-why__certs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vb-why {
    padding: 32px 0;
  }

  .vb-why__title {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .vb-why__paragraph {
    font-size: 18px;
  }

  .vb-why__cert {
    width: 92px;
    height: 92px;
  }
}
.vb-popular-products {
  background: #f5f5f5 !important;
}
.vb-popular-products__surface {
  background: #ffffff99 !important;
}

/* ====== CTA block ====== */

.vb-cta {
  padding: 0px 20px;
  background: #F6F0EE;
}

.vb-cta__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
  gap: 50px;
  align-items: start;
}

.vb-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 100px;
}

.vb-cta__title {
  max-width: 460px;
  margin: 0 0 24px;
  color: #4b3f3b;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.vb-cta__title span {
  color: #cdaea2;
}

.vb-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 46px;
  margin-bottom: 34px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #594844;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.vb-cta__big,
.vb-cta__small {
  width: 100%;
}

.vb-cta__gallery {
  display: grid;
  gap: 52px;
}

.vb-cta__small {
  overflow: hidden;
}

.vb-cta__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.vb-cta__img--big {
  aspect-ratio: 1.06 / 1;
}

.vb-cta__img--small {
  aspect-ratio: 0.72 / 1;
  border-radius: 0;
}

.vb-cta__small:first-child {
  border-radius: 0 0 20px 20px;
}

.vb-cta__small:last-child {
  border-radius: 20px 20px 0 0;
}

@media (max-width: 1024px) {
  .vb-cta {
    padding: 64px 20px;
  }

  .vb-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vb-cta__content {
    width: 100%;
    padding-top: 0;
  }

  .vb-cta__title {
    max-width: 100%;
    font-size: 32px;
  }

  .vb-cta__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .vb-cta__small:first-child,
  .vb-cta__small:last-child {
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .vb-cta {
    padding: 40px 20px 32px;
  }

  .vb-cta__content {
    align-items: center;
  }

  .vb-cta__title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
    line-height: 1.05;
  }

  .vb-cta__btn {
    width: 100%;
    max-width: 238px;
    min-height: 54px;
    margin-bottom: 20px;
    padding: 18px 24px;
    font-size: 16px;
  }

  .vb-cta__img {
    border-radius: 22px;
  }

  .vb-cta__img--big {
    aspect-ratio: 1 / 0.86;
  }

  .vb-cta__img--small {
    aspect-ratio: 0.82 / 1;
  }
}
