.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}
.btn[disabled],
.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.btn-block {
  width: 100%;
}
.btn-reverse {
  border: 1px solid var(--Dark, #1e1e1e);
  background: var(--White, #fff);
  color: var(--Dark, #1e1e1e);
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  max-width: fit-content;
  text-transform: uppercase;
  text-align: center;
}
.btn-reverse:hover {
  color: var(--White, #fff);
  background: var(--Dark, #1e1e1e);
  border: 1px solid var(--Dark, #1e1e1e);
}
.btn-primary {
  color: var(--White, #fff);
  background: var(--Dark, #1e1e1e);
  border: 1px solid var(--Dark, #1e1e1e);
  padding: 30px 60px;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
}
.btn-primary:hover,
.price-buy:hover,
.cart-total-block:hover {
  border-color: var(--Dark, #1e1e1e);
  background: var(--White, #fff);
  color: var(--Dark, #1e1e1e);
}
.price-buy:hover *,
.cart-total-block:hover * {
  color: var(--Dark, #1e1e1e);
}
.price-buy:hover svg path {
  stroke: var(--Dark, #1e1e1e);
}
.price-buy,
.cart-total-block {
  transition: 0.3s;
  border: 1px solid var(--Dark, #1e1e1e);
}
.btn-default {
  color: var(--Dark, #1e1e1e);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  border: 1px solid var(--Dark, #1e1e1e);
  background: var(--White, #fff);
  letter-spacing: 1.8px;
}
.btn-sm {
  padding: 20px;
}
/*section intro*/
.section-intro .container {
  position: relative;
}
.intro-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Dark, #1e1e1e);
  font-family: Ostrich Sans;
  font-size: 76px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 37.24px;
  margin-bottom: 60px;
}
.intro-text {
  color: #fff;
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 69px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 110.4px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: max-content;
}
.intro-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: max-content;
  height: max-content;
  max-width: 95%;
}
.intro-content {
  position: relative;
}
.intro-content picture {
  height: 100%;
}
.intro-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*.intro-content .btn {
  position: absolute;
  right: 40px;
  bottom: 50px;
  min-width: 300px;
}*/
.intro-content .btn {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: max-content;
  bottom: 140px;
  min-width: 300px;
}
.vertical-mode .intro-title,
.vertical-mode .intro-text {
  position: absolute;
  writing-mode: vertical-lr;
  left: 0;
  transform: rotate(180deg);
  color: var(--White, #fff);
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 130px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 40.3px;
  top: 0;
  bottom: 0;
  width: max-content;
  margin: auto;
  opacity: 0.5;
}
.vertical-mode .intro-text {
  left: auto;
  right: 0;
}
/*section products*/
.section-products {
  padding: 235px 0 90px 0;
}
.section-subtitle {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-size: 18px;

  font-weight: 300;
  line-height: normal;
  letter-spacing: 5.58px;
  margin-bottom: 35px;
}
.section-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: Ostrich Sans;
  font-size: 76px;

  font-weight: 500;
  line-height: normal;
  letter-spacing: 23.56px;
  margin-bottom: 150px;
}
.products-scroll {
  padding-top: 50px;
}
.products-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.products-list > .prod-item:nth-child(6n + 1) {
  grid-area: 2 span;
}
.products-list > .prod-item:nth-child(6n + 4) {
  grid-area: 1 span / 2 span;
}
.prod-item {
  min-width: 420px;
  border: none;
  overflow: hidden;
}
.prod-item picture {
  height: 100%;
}
.prod-item img,
.prod-item video {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: contain;
}
.prod-item video {
  object-fit: cover;
}
.products-scroll {
  overflow: auto;
}
.products-scroll::-webkit-scrollbar {
  width: 0px;
}

.products-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.products-scroll::-webkit-scrollbar-thumb {
  background: transparent;
}

/*section baner*/
.section-baner {
  padding: 90px 0;
}
.banner-image {
  position: relative;
  margin: 120px 0 180px 0;
}
.banner-image:before,
.banner-image:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 150px;
  background: var(--Dark, #1e1e1e);
  left: 0;
  right: 0;
  margin: auto;
}
.banner-image:after {
  bottom: 100%;
}
.banner-image:before {
  top: 100%;
}
.section-text {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 2.16px;
  margin-bottom: 19px;
  text-transform: uppercase;
}
.section-link {
  color: #000;
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;

  font-weight: 700;
  line-height: 170%;
  letter-spacing: 4.8px;
  text-decoration: none;
  display: block;
  width: max-content;
  margin: 0 auto;
  border-bottom: 2px solid #000;
}

/*section about*/
.section-about {
  padding: 90px 0;
}
.abouts {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  width: max-content;
}
.abouts > div {
  width: 270px;
  position: relative;
  overflow: hidden;
}
.abouts > div > a {
  background: linear-gradient(
      0deg,
      rgba(30, 30, 30, 0.9) 0%,
      rgba(30, 30, 30, 0.9) 100%
    ),
    lightgray 50% / cover no-repeat;
  backdrop-filter: blur(12.25px);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-decoration: none;
  height: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 23px;
  transition: 0.3s;
}
.abouts > div:hover > a {
  top: 0;
}
.about-item-title {
  color: var(--White, #fff);
  font-family: "Ostrich Sans";
  font-size: 30px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 1.2px;
}
.about-item-text {
  color: var(--White, #fff);
  font-size: 13px;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.65px;
}
.about-content {
  position: relative;
}
.about-caption {
  position: absolute;
  top: 40%;
  right: 0;
  max-width: 545px;
}
.about-title {
  color: var(--Dark, #1e1e1e);
  font-family: Ostrich Sans;
  font-size: 50px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 15.5px;
  margin-bottom: 15px;
}
.about-text {
  color: var(--Dark, #1e1e1e);
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1px;
}

/*section feed*/
.section-feed {
  padding: 90px 0;
}
.feed-content {
  overflow: auto;
}
.feed-content::-webkit-scrollbar {
  width: 0px;
}

.feed-content::-webkit-scrollbar-track {
  background: transparent;
}

.feed-content::-webkit-scrollbar-thumb {
  background: transparent;
}
.feeds {
  display: flex;
  gap: 30px;
}
.feeds > * {
  cursor: pointer;
  min-width: 420px;
  flex: 0 0 420px;
}

/* section textimage*/
blockquote.wp-block-quote {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 26px;
  font-style: normal;
  /*font-weight: 100;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2.6px;
  margin: 100px auto;
  max-width: 1180px;
}
blockquote.wp-block-quote .sm-margin {
  margin-top: -75px;
  margin-bottom: -75px;
}
.section-intro + blockquote.wp-block-quote {
  margin-top: 50px;
}
.textimage-text {
  color: var(--Dark, #1e1e1e);
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  /*font-weight: 100;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.8px;
  max-width: 720px;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.section-textimage {
  position: relative;
  margin: 100px 0;
  display: flex;
  align-items: center;
}
.section-textimagetabs {
  margin: 100px 0 50px 0;
}
.section-textimagetabs ~ .section-textimage {
  margin-top: 0;
}
.section-textimage > img,
.section-textimage > picture {
  min-width: calc(50% + 135px);
  object-fit: cover;
}
.tit-tab-content:not(.active) {
  display: none;
}
.btn-tab {
  border: none;
  background: none;
  color: var(--Gray, #afafaf);
  font-family: "Gotham Pro", sans-serif;
  font-size: 26px;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2.6px;
  cursor: pointer;
}
.btn-tab.active {
  color: var(--Dark, #1e1e1e);
  font-size: 36px;
  font-weight: 400;
  line-height: 180%; /* 64.8px */
  letter-spacing: 10.8px;
}

/*section readmore */
.btn-in-read-more {
  width: max-content;
  margin: 40px auto 0;
}
.description {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 2.08px;
}
.description-block {
  margin: 140px auto 40px auto;
  max-width: 780px;
  text-align: center;
}
.description-block .description {
  overflow: hidden;
}
.btn-text-more {
  color: var(--Gray, #afafaf);
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 3.42px;
  background: none;
  border: none;
  border-bottom: 1px solid;
  cursor: pointer;
}

.description-block.section.section-readmore {
  max-width: 896px;
  margin: 100px auto 55px auto;
}
.section-readmore .description {
  font-size: 26px;
  /*font-weight: 100;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2.6px;
}
/*organizations*/
.organizations {
  display: flex;
  gap: 175px;
  align-items: center;
  justify-content: space-between;
}
.section-organizations {
  margin: 200px 0;
}

/*section contacts*/
.section-contacts {
  margin: 200px 0 110px 0;
  position: relative;
}
.contacts-grid {
  display: flex;
  gap: 30px;
}
.contacts {
  min-width: 500px;
  flex: 0 0 500px;
  display: flex;
  gap: 70px;
  flex-direction: column;
  align-items: flex-start;
}
.contact-item {
  display: grid;
  gap: 20px;
}
a.contact-link {
  color: #000;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.6px;
  text-decoration: none;
}
.contact-title {
  display: flex;
  gap: 10px;
  color: #000;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2.4px;
  align-items: center;
}
.contact-title img {
  margin: 0;
}
.contact-form-title {
  color: #000;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2.4px;
  margin-bottom: 40px;
}
.contact-form {
  min-width: 500px;
  flex: 0 0 500px;
}
.wpcf7-form > .wpcf7-form-control-wrap {
  margin-top: 30px;
  display: block;
}
.wpcf7-form-control.btn {
  min-width: 290px;
  margin-top: 40px;
}
.wpcf7-form textarea.form-control {
  height: 82px;
}
/*sections text items*/
.section-textitems {
  margin: 100px 0;
}
.text-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: Ostrich Sans;
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 14.26px;
  padding: 0 90px;
  flex-wrap: wrap;
}
.text-items > span {
  width: 25%;
  color: #1e1e1e;
}
/*.text-items > span:last-child {
  margin-top: 40px;
  width: 100%;
  color: #fcd846;
}*/
.text-items > span svg {
  width: 218px;
  height: auto;
}
.content-text-items .intro-title,
.content-text-items .is-title-image {
  margin-bottom: 80px;
}
.is-title-image {
  max-width: 900px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-columns .wp-block-quote {
  display: grid;
  gap: 60px;
}
.wp-block-columns .wp-block-quote > p {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-style: italic;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}
.wp-block-columns .wp-block-quote > cite {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}
/*section banner vertical*/
.baner-v-content {
  margin: 100px 0;
  padding: 0;
}
.baner-v-content .banner-image:before,
.baner-v-content .banner-image:after {
  content: none;
}
.baner-v-content .baner-content {
  position: relative;
}
.baner-v-content .banner-image {
  position: static;
  margin: 0;
}
.baner-v-content .section-title {
  color: var(--White, #fff);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: max-content;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.baner-v-content .section-text {
  color: var(--White, #fff);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin-bottom: 0;
}
.baner-v-content .section-link {
  color: var(--White, #fff);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  border: none;
  border-left: 1px solid;
}
.baner-v-content .banner-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  height: max-content;
  margin: auto;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 19px;
}

/*section history*/
.section-history {
  margin: 100px 0;
  position: relative;
}
.history-content {
  display: flex;
  align-items: center;
  padding-left: calc((100vw - (1920px - (75px * 2))) / 2);
}
.history-year-outer {
  min-width: 140px;
  flex: 0 0 140px;
}
.history-outer {
  min-width: calc(100% - 140px);
  flex: 0 0 calc(100% - 140px);
}
.history-year-item {
  cursor: pointer;
  color: var(--Gray, #afafaf);
  font-family: "Gotham Pro", sans-serif;
  font-size: 26px;
  font-style: normal;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2.6px;
  transition: 0.3s;
}
.swiper-slide-thumb-active .history-year-item {
  color: var(--Dark, #1e1e1e);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 10.8px;
}
.history-item {
  height: 700px;
}
.history-item {
  display: flex;
  gap: 73px;
  align-items: center;
}
.history-text {
  min-width: 527px;
  flex: 0 0 527px;
  color: var(--Dark, #1e1e1e);
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.8px;
}
.history-image {
  flex-grow: 1;
  /*height: 700px;*/
  display: flex;
  align-items: center;
}
.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*section intro collection*/
.intro-collect {
  /*height: 950px;*/
  position: relative;
}
.intro-collect.product-bnr picture {
  /* height: 100%;*/
}
.intro-collect.product-bnr span.lift {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 12.4px;
  top: auto;
  bottom: 300px;
}
.intro-collect.product-bnr span {
  font-size: 260px;
  line-height: normal;
  letter-spacing: 80px;
}
.page-id-23322 .intro-collect.product-bnr span {
  font-size: 190px;
    letter-spacing: 58.9px;
}

.intro-collect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-collect-title {
  position: absolute;
  bottom: 15px;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 1.62px;
  left: 0;
  right: 0;
}
.btn-white {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 2.16px;
  padding: 15px 45px;
  background: #ffff;
  width: max-content;
}
.intro-collect .btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 200px;
}
.intro-collect .btn.little-margin {
  bottom: 40px;
}
/*section text column*/
.section-textcolumn {
  margin: 200px 0;
}
.text-column-content {
  position: relative;
}

.text-column-title {
  color: var(--Dark, #1e1e1e);
  font-family: Ostrich Sans;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 8px;
  margin-bottom: 38px;
}
.text-column-grid {
  width: calc(100% - 580px);
  column-count: 3;
  column-gap: 40px;
  color: var(--Dark, #1e1e1e);
  text-align: justify;
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 1.62px;
}
.text-column-text > p + p {
  margin-top: 30px;
}
.text-column-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc(((100vw - 1920px) / 2) + 605px);
}

.text-column-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-column .text-column-grid {
  width: 100%;
  column-count: 2;
}
.two-column .text-column-img {
  position: static;
  width: 100%;
  margin: 60px auto 0;
}

/*section discover*/
.section-discover {
  margin: 200px 0;
}
.discover-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 76px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 23.56px;
}
.discover-content {
  position: relative;
}
.discover-content .discover-title {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.discover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
.discover-text {
  color: #000;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 2.16px;
}
a.discover-link {
  color: #000;
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 4.8px;
  text-decoration: none;
  border-bottom: 2px solid;
}
/*section productcollection*/
.section-productscollection {
  margin: 200px 0;
  overflow: hidden;
}
.products-coll-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 21.7px;
  margin-bottom: 20px;
}
.products-coll-subtitle {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 1.62px;
  margin-bottom: 90px;
}
.products-coll-content.js-collection-slider {
  position: relative;
}
.upsells.collection-swiper {
  overflow: hidden;
}
.upsells.collection-swiper .item {
	min-width: unset;
	flex: none;
}

/*section 3 columns image*/
.section-textcolumnimage .text-column-title {
  font-size: 70px;
  letter-spacing: 21.7px;
  margin-bottom: 70px;
  text-align: center;
}
.section-textcolumnimage .text-column-grid {
  width: 100%;
  column-count: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section-textcolumnimage .text-column-grid img {
  grid-area: 1 / 2 / 2 / 4;
  height: 100%;
  object-fit: cover;
}
.section-textcolumnimage .text-column-grid picture {
  height: 100%;
  display: flex;
}
.section-textcolumnimage .text-column-grid .col1 {
  grid-area: 1 / 1 / 3 / 2;
}

.section-textcolumnimage .text-column-grid > div > p + p {
  margin-top: 30px;
}

/*section numbers*/
.section-numbers {
  margin: 100px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}
.number-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 166px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 16.6px;
}
.number-text {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-size: 26px;
  font-style: normal;
  /*font-weight: 100;*/
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2.6px;
}
.history-image picture,
.banner-image picture {
  height: 100%;
}
.section-organizations .intro-title {
  font-size: 76px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 136.8px */
  letter-spacing: 23.56px;
  margin-bottom: 86px;
}

/*text slider*/
.ts-item {
  text-align: center;
}
.ts-title {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 30px;
}
.ts-text {
  color: var(--Dark, #1e1e1e);
  text-align: center;
  font-family: "Gotham Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 160%;
}
.ts-text p + p {
  margin-top: 20px;
}
.section-textslider {
  margin: 90px 0;
}
.text-slider-content .swiper {
  max-width: 870px;
}
.text-slider-content {
  position: relative;
}
.ts-navi {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 20px;
}
.ts-navi > div {
  cursor: pointer;
}
.swiper-button-disabled {
  opacity: 0.4;
}
.page-id-17 blockquote.wp-block-quote {
  font-size: 16px;
  font-style: normal;
  /*font-weight: 200;*/
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
  margin-top: 90px;
  margin-bottom: 90px;
}
blockquote.wp-block-quote p + p {
  margin-top: 20px;
}

/*section sets*/
.set-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.875rem, -3.333rem + 6.944vw, 5rem);
}
.set-right {
  display: flex;
  flex-direction: column;
  height: 950px;
}
.set-item-bottom {
  position: relative;
  bottom: -4px;
}
.set-title {
  color: var(--Dark, #1e1e1e);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 11.16px;
  margin-bottom: 30px;
  /*text-transform: uppercase;*/
}
.set-item + .set-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.set-item .cart-image {
  min-width: 160px;
  flex: 0 0 160px;
  height: 160px;
}
.section-sets {
  margin: 150px 0;
}
.set-list {
  overflow: auto;
  max-height: 787px;
  margin-bottom: 30px;
  flex-grow: 1;
  padding-right: 10px;
}
.set-list::-webkit-scrollbar {
  width: 10px;
}

.set-list::-webkit-scrollbar-track {
  border-radius: 32px;
  opacity: 0.3;
  background: #f1f1f1;
}

.set-list::-webkit-scrollbar-thumb {
  border-radius: 32px;
  opacity: 0.6;
  background: var(--Gray, #afafaf);
}
.set-left {
  height: 950px;
}
.set-left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.set-item .cart-caption {
  padding: 0;
}
.js-calc-set-price {
  font-size: 18px;
  font-weight: 500;
}
.js-load-table {
  color: var(--Dark, #1e1e1e);
  text-align: right;
  font-family: Gotham Pro, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: .75px;
  text-decoration-line: none;
  border-bottom: 1px solid;
  cursor: pointer;
  background: none;
  white-space: nowrap;
}
.set-item .cart-top {
  flex-grow: 0;
  gap: 10px;
}
.set-item .cart-bottom {
  flex-grow: 1;
}
.set-options {
  display: flex;
  align-items: center;
  gap: 50px;
}
.js-set-selected-option {
  background: var(--Dark, #1E1E1E);
  padding: 3px 17px;
  color: var(--White, #FFF);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.85px;
}
.set-options .notice-choose {
  position: static;
  line-height: 1.2;
}
/*section border_photos*/
.bp-content.swiper-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.section-borderphotos {
  margin: 140px 0;
}
.section-readmore .description p + p {
  margin-top: 40px;
}
/*section oneset*/
.set-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.set-item-title {
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--White, #FFF);
  font-family: "IvyOra Display";
  font-size: 120px;
  font-style: italic;
  font-weight: 300;
  line-height: 130%;
  margin-bottom: 30px;
}
a.set-insta {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 1.8px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.set-item-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 1.8px;
}
.set-item-text p + p {
  margin-top: 30px;
}

.set-lists {
  margin-top: 70px;
}

.set-video {
  position: relative;
  margin-bottom: 100px;
}
.set-video video {
  width: 100%;
}
.js-mute {
  position: absolute;
  cursor: pointer;
  top: 50px;
  right: 50px;
  border-radius: 10px;
  background: var(--White, #FFF);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.set-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.set-navi-box {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
}
.set-navi {
  cursor: pointer;
}
.set-list-box {
    display: none;
}
.section-oneset + .section-oneset {
  margin-top: 140px;
}
.set-karpaty {
  position: relative;
}
.set-text-box {
  color: var(--Dark, #1E1E1E);
  font-family: Gotham Pro;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 46.8px */
  letter-spacing: 2.6px;
  text-align: left;
}
.page-id-23989 .set-text-box {
  font-size: 20px;
  letter-spacing: 2px;
  padding-right: 150px;
  margin-right: 0;
}
.page-id-23989 .set-reverse  .set-text-box {
  padding-left: 150px;
  padding-right: 0px;
}
.js-show-info {
  flex-grow: 1;
  text-align: left;
  margin-left: 10px;
  color: var(--Dark, #1E1E1E);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 3.1px;
  text-decoration-line: underline;
}
.set-karpaty .set-title {
  position: absolute;
  top: 0;
  left: 0;
  right: calc(50% - 15px);
  bottom: 0;
  background: #fff;
}
.set-karpaty.set-reverse .set-title {
  left: calc(50% - 15px);
  right: 0;
}
.set-text-box {
  margin-left: auto;
  margin-right: 10%;
  margin-top: auto;
  margin-bottom: 10%;
}
.set-text-box h3 {
  color: var(--Dark, #1E1E1E);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Dark, #1E1E1E);
  font-family: Ostrich Sans;
  font-size: 50px;
  font-weight: 500;
  line-height: 170%; /* 85px */
  letter-spacing: 15.5px;
}
@media (min-width: 744px) {
.set-karpaty .set-left img {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  z-index: 3;
  width: calc(50% - 15px);
  bottom: 0;
  transition: 0.5s;
}
}
.set-karpaty.set-reverse .set-left img {
  left: 0;
  right: auto;
}
.set-block.swiped .set-left img {
  right: calc(50% + 15px); 
}
@media (min-width: 744px) {
.set-karpaty.set-reverse .set-left {
  order: 2;
}
}
.set-block.set-reverse.swiped .set-left img {
  left: calc(50% + 15px); 
}
.set-block.swiped .view-set-btn {
  opacity: 0;
}
.set-karpaty .set-list {
  max-height: 859px;
  height: 100%;
}
.view-set-btn {
  background-size: cover;
  width: 200px;
  height: 200px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Ostrich Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 1.2px;
  right: -100px;
  left: auto;
  top: calc(50% - 100px);
  cursor: pointer;
  z-index: 4;
  transition: 0.5s;
}
.set-reverse .view-set-btn {
  left: -100px;
  right: auto;
}
.page-id-23536 .intro-collect.product-bnr span,
.page-id-23652 .intro-collect.product-bnr span {
  font-family: "IvyOra Display";
  font-size: 110px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 165px */
  letter-spacing: 34.1px;
  opacity: 1;
}
.page-id-23536 .intro-collect.product-bnr span small,
.page-id-23652 .intro-collect.product-bnr span small {
  font-style: italic;
  font-weight: 300;
}
.page-id-23536 .intro-collect.product-bnr span b,
.page-id-23652 .intro-collect.product-bnr span b {
  font-weight: 500;
}

.section-textimage {
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}


/*section text home*/
.text-image-content .textimage-text {
  display: block;
  padding: 0 60px 0 80px;
  max-width: none;
}
.text-image-content .textimage-text p + p {
  margin-top: 20px;
}
.text-image-content {
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-textimagehome {
  margin: 50px 0 130px 0;
}
.text-image-content img {
  width: 49%;
  margin: 0;
}

/*section text slider home*/
.section-textsliderhome {
  margin: 50px 0 200px 0;
  overflow: hidden;
}
.page-id-13 .section-textsliderhome {
  margin-bottom: 100px;
}
.section-textsliderhome .swiper {
  overflow: visible;
}
.ts-main-title {
  color: var(--Dark, #1E1E1E);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Dark, #1E1E1E);
  font-family: "Ostrich Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 15.5px;
  margin-bottom: 40px;
  text-align: center;
}
.ts-main-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 2px;
  max-width: 1145px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.ts-navi-home {
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.text-slider-home-content {
  position: relative;
}
.ts-title-home {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.8px;
  margin-bottom: 20px;
}
.ts-text-home {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.ts-text-home ul {
  padding-left: 20px;
}
.ts-text-home > * + * {
  margin-top: 20px;
}
.ts-slider-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  text-align: left;
  margin-top: 100px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.ts-slider-home:not(.active):before, .faq-home:not(.active):before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 85.6%);
  position: absolute;
  height: 158px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: block;
}
.text-slider-home-content .btn-text-more {
  color: var(--Dark, #1E1E1E);
  margin: 0 auto;
  width: max-content;
  display: block;
}
.faq-title {
  color: var(--Dark, #1E1E1E);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 50px;
}
.faq-item-title {
  color: var(--Dark, #1E1E1E);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 20px;
}
.ts-text-home.faq-text {
  margin-bottom: 50px;
}
.faq-home {
  overflow: hidden;
  max-width: 1024px;
  position: relative;
  margin: 0 auto 20px auto;
}
.section-textcolumn + .section-intro .container {
  padding: 0;
}
.section-textcolumn + .section-intro .intro-content {
  height: auto;
}
.section-textcolumn + .section-intro  .intro-content img {
  height: auto;
}
.wp-block-columns .wp-block-quote>cite>a {
  display: BLOCK;
  margin-top: 10px;
}
.page-id-299 .intro-content img {
  object-fit: cover;
}