body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img {
  max-width: 100%;
}

:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}

ul, p, li {
  margin: 0;
  padding: 0;
}

p.about__text {
    font-size: 12px;
    max-width: 570px;
    margin-top: 24px;
    padding-right: 25px;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h2.about__title {
    font-size: 54px;
    margin-top: 31px;
}

.clear {
  clear: both;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


/* Черная кнопка */
.button {
    color: #fff;
    display: flex;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: stretch;
    border: 0;
    padding: 0;
    height: 48px;
}
.button .button__text {
    border-radius: 40px;
    background: #000;
    display: block;
    padding: 5px 52px;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
    /* margin: 0; */
}
.button .button__arrow {
    background: #000;
    border-radius: 40px;
    
    height: 48px;
    width: 48px;
    flex-shrink: 0;
    display: block;
    /* display: flex; */
    /* align-items: center; */
}
.button .button__arrow img {
    display: block;
    transition: all 0.3s ease;
    /* padding: 3px; */
}
.button:hover,
.button:hover .button__text,
.button:hover .button__arrow {
    background: #00A1F2;

}

.button:hover .button__arrow img{
  transform: rotate(45deg) scale(1.4);
}
/* Белая кнопка */
.button.white .button__text,
.button.white  .button__arrow{
  color: #000;
  background: #fff;
}
.button.white .button__text {
    /* padding: 10px 49px 0; */
}
.button.white:hover {
  background: #fff;
}




.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 20px;
}





/* Banner */
section.hero {
    margin-top: -88px;
    padding-top: 88px;
    border-radius: 0px 0px 40px 40px;
}
.hero {
    position: relative;
    width: 100%;
    height: 765px;
    min-height: 600px;
    overflow: hidden;
}
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    background-position: center center;
}

.hero__slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay для читаемости текста */
.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    display: none;
}

/* Loader */
.hero__slide .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.hero__slide.loading .loader {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Временные градиенты для демо (замените на data-bg) */


/* Container */
section.hero .container{
  height: 100%;

}
.hero__container {
    position: relative;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Title */
.hero__title {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    padding-top: 45px;
    letter-spacing: 0px;
    max-width: 900px;
}

/* Description */
.hero__description {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin-bottom: 38px;
    line-height: 1.2;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/* CTA Button */
.hero__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero__arrow-icon {
    font-size: 32px;
    color: white;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Tags - используем как кнопки переключения слайдов */
.hero__tags {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 71px;
}

ul.hero__tags {}

.hero__tag {
    padding: 6px 24px;
    background: rgba(255,255,255,0.1);
    /* backdrop-filter: blur(10px); */
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 4px;
    /* text-transform: uppercase; */
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 20px;
}

.hero__tag.active {
    background: white;
    color: #000;
    border-color: white;
    transform: translateY(-2px);
    /* box-shadow: 0 5px 20px rgba(255,255,255,0.3); */
}

.hero__tag:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.hero__tag.active:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero__title {
        font-size: 36px;
    }

    .hero__tags {
        gap: 10px;
    }

    .hero__tag {
        padding: 10px 18px;
        font-size: 12px;
    }
}



/* Блок философия */
section.about * {
  
}

p.features__desc {
    font-size: 12px;
    padding-top: 6px;
}

.features__item {
    flex: 1;
    border: 20px;
    padding: 39px 10px 10px 48px;
    min-height: 193px;
    background: url(../img/features__item.png);
    background-size: cover;
    border-radius: 20px;
}

.features__item.features__card--wide {
    background: url(../img/features__item--wide.png);
}

.features__item:last-child {
    flex: 0 0 100%;
}
section.about {
    padding: 116px 0 123px;
    background: #F8F8F8;
}
h3.features__title {
    font-size: 14px;
    padding-top: 8px;
    letter-spacing: 0;
    text-transform: uppercase;
}
span.features__number {
    font-size: 48px;
    font-weight: 900;
    color: #00A1F2;
}
.about__features.features {
    width: 49%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.about__content {
    width: 51%;
}
.about__container {
    display: flex;
}


/* Слайдер */
section.gallery * {

}

span.card__label {
    position: absolute;
    top: 36px;
    right: 45px;
    font-size: 14px;
    border: 1px solid #fff;
    /* color: #fff; */
    padding: 7px 50px;
    border-radius: 20px;
    background: #fff;
    transition: all .3s;
    z-index: 5;
}
span.card__arrow {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 45px;
    right: 45px;
    z-index: 10;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}
.gallery__card:hover span.card__arrow,
.catalog-card:hover span.card__arrow{
    transform: rotate(270deg);
    background: transparent;
    border: 1px solid #000;
}
.gallery__card:hover span.card__arrow path,
.catalog-card:hover span.card__arrow path{
    fill: #000;
}


span.card__arrow path {
    fill: #fff;
}

.gallery__grid .gallery__card:hover span.card__label {
    background: none;
    border: 1px solid #000;
}

.card__overlay {
    opacity: 0;
    z-index: 1;
    background: #00A1F2D9;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 14px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    padding: 41px 105px 20px 105px;
    transition: all .3s;

}



button.gallery__arrow {
    border: 1px solid #000;
    background: transparent;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.gallery__arrow path {
  fill: #000;
}
button.gallery__arrow:hover {
  background: #000;
}
button.gallery__arrow:hover path {
  fill: #fff;
}
.gallery__arrow--next {
  transform: rotate(180deg);
}

.gallery__nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-top: 40px;
    gap: 15px;
}

.gallery__desctext {
    font-size: 12px;
    text-align: right;
    padding-top: 42px;
}

.gallery__desc {
    flex: 1;
}

.gallery__header {
    display: flex;
    justify-content: space-around;
}

h2.gallery__title {
    font-size: 36px;
    flex: 1;
}
section.gallery {
  background: #E6EAED;
  padding: 106px 0 119px;
  overflow: hidden;
}

.gallery__grid {
    margin: 60px -7px 0 -7px;;
}
.gallery__grid .gallery__card{
  /* border: 2px solid #f00; */
  /* background: #ccc; */
  border-radius: 40px;
  position: relative;
  min-height: 394px;
  margin: 0 7px;
  overflow: hidden;
  background-size: cover;
}

.card.gallery__card:hover .card__overlay {
    opacity: 1;

}
.gallery__grid .slick-list {
  overflow: visible;
  max-width: 1440px;
  margin: auto;
}


section.principles {padding: 122px 0 120px;background: #F8F8F8;}
section.principles * {
  
}

.tabs__text {
    margin-top: 30px;
    font-size: 12px;
}
.tabs__text a {
    color: #000;
    font-weight: bold;
}
h3.tabs__title {
    font-size: 24px;
}

.tabs__content {
    background: url(../img/textoure.jpg);
    margin-top: 71px;
    /* background: #ccc; */
    border-radius: 20px;
    padding: 57px 50px 50px 53px;
    background-size: cover;
}

p.principles__desc {
    max-width: 536px;
    font-size: 12px;
    margin-top: 24px;
}

h2.principles__heading {
    font-size: 54px;
    max-width: 400px;
}

.principles__right {
    width: 49%;
}

.principles__left {
    width: 51%;
}

.principles__container {
    display: flex;
}

.principles__right .tabs__header {
    display: flex;
    border: 1px solid #000;
    border-radius: 45px;
    justify-content: space-between;
}
.tabs__content .tabs__single {
    display: none;
}
.tabs__content .tabs__single.active {
    display: block;
}

.principles__right .tabs__header .tabs__btn {
    display: block;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    border-radius: 45px;
    padding: 12px 40px;
    background: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    flex: 1;
    border: 0;
    cursor: pointer;
}
.principles__right .tabs__header .tabs__btn:hover,
.principles__right .tabs__header .tabs__btn.active{
    background: #000;
    color: #fff;
}


section.order {
  padding: 110px 0;
  background: url(../img/order_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px 40px 0 0;
}
section.order * {
  
}


.footer__watermark img {
    display: block;
}
button.button.form__button {
    margin-left: auto;
}

input.form__input {
    display: block;
    width: 51%;
    padding: 0px 35px;
    border-radius: 40px;
    font-size: 14px;
    border: 0;
}

form.form.order__form {
    margin-top: 40px;
    display: flex;
    font-size: 14px;
    gap: 10px;
}

p.order__subtitle {
    color: #fff;
    font-size: 12px;
    max-width: 370px;
    margin-top: 23px;
}

h2.order__title {
    color: #fff;
    font-size: 54px;
    /* text-align: left; */
}

.order__form-wrapper {
    margin-left: auto;
    width: 46%;
}

.order__container {
    display: flex;
}

section.order .button.black {
  /* margin-left: auto; */
  /* flex: 49%; */
  flex-grow: inherit;
}
section.order input.form__input {
  /* margin-right: 10px; */
  /* flex: 51; */
}
.order__policy {
    font-size: 10px;
    color: #fff;
    margin-top: 14px;
}
.order__policy a {
  color: #fff;
}


footer.footer {
    background: #111111;
    padding: 118px 0 0;
    color: #fff;
}
footer.footer a {
  color: #fff;
}

a.socials__link {
    display: flex;
    width: 39px;
    height: 39px;
    background: #000;
    border-radius: 50%;
}
footer.footer * {

}

.footer__socials.socials {
    display: flex;
    margin-top: 33px;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer__button--wrap {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}



.footer__watermark {
    margin-top: 66px;
    padding-top: 25px;
    border-top: 1px solid #fff;
}

.footer__button {
    margin-top: 23px;
}

p.footer__subtext {
    margin-top: 16px;
    text-align: right;
    font-size: 12px;
}

p.footer__question {
    margin: 4px 0px 0px 0px;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    /* display: flex; */
    /* justify-content: flex-end; */
}

ul.footer__list {}

ul.footer__list li {
    margin-bottom: 16px;
}

ul.footer__list a {
    text-decoration: none;
}

ul.footer__list a {
    font-size: 12px;
}

h4.footer__heading {
    font-size: 12px;
    margin-bottom: 16px;
}

.footer__copyright {
    font-size: 10px;
    margin-top: 46px;
}
.footer__copyright a {
    color: #fff;
}

a.footer__phone {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 19px;
    display: block;
}

.footer__desc {
    margin-top: 16px;
    font-size: 12px;
    max-width: 450px;
}

address.footer__address {
    margin-top: 98px;
}

.footer__col:nth-child(4) {
    width: 25%;
}

.footer__col:nth-child(3) {
    width: 18%;
}

.footer__col:nth-child(2) {
    width: 18%;
    padding-top: 5px;
}

.footer__col:nth-child(1) {
    width: 39%;
}

.footer__top {
    display: flex;
}


/* About page */
section.about-hero {
    height: 651px;
    background-color: #471F06;
    margin-top: -88px;
    padding-top: 88px;
    border-radius: 0px 0px 40px 40px;
    z-index: 2;
    position: relative;
}
section.about-hero * {
    
}

p.about-hero__subtitle {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
}

h1.about-hero__title {
    font-size: 52px;
    color: #ffffff;
    font-weight: 900;
}

section.about-hero .container {
    height: 100%;
}

.about-hero__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

section.company-story {
  background: #E6EAED;
  margin-top: -40px;
  padding: 148px 0 116px;
}
section.company-story * {
    
}
.story-accordion__text p {
    margin-bottom: 15px;
}
button.story-accordion__icon {
    margin-left: auto;
    margin-right: 48px;
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    border-radius: 50%;
}

button.story-accordion__icon svg {
    fill: #000;
    transform: rotate(
180deg);
    transition: all 0.3s ease;
}

.story-accordion__header {
    display: flex;
    cursor: pointer;
    align-items: center;
}

h3.story-accordion__title {
    font-size: 24px;
    padding: 50px 45px;
}

.story-accordion__item--active h3.story-accordion__title {
    /* padding: 50px 45px 34px; */
}

.story-accordion__body {
    padding: 0px 45px 60px;
    font-size: 12px;
    display: none;
}

.story-accordion__item--active .story-accordion__body {
    display: block;
}

.story-accordion__item {
    margin: 0px 60px 30px;
    border-radius: 20px;
    background: #F8F8F8;
}
.story-accordion__item--active button.story-accordion__icon svg {
    transform: rotate(270deg);
}
.story-accordion__item--active button.story-accordion__icon {
    background: #000;
}
.story-accordion__item--active button.story-accordion__icon svg path {
    fill: #fff;
}
.story-accordion__wrap {
    /* padding: 0px 60px; */
    /* border-radius: 40px; */
    /* background: #F8F8F8; */
}

img.company-story__logo {
    display: block;
    margin: 0px auto 77px;
}

.company-story__visual {
    flex: 1;

    box-sizing: border-box;
}
.company-story__visual img {
    display: block;
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}

.company-story__accordion {
    flex: 1;
    border-radius: 40px;
    background: #fff;
    padding: 68px 0;
    box-sizing: border-box;
}

.company-story__content {
    margin-top: 68px;
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.company-story__desc {
    margin-left: auto;
    text-align: right;
    font-size: 12px;
}

h2.company-story__title {
    font-size: 40px;
}

.company-story__title-wrapper {
    margin-top: 49px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

p.company-story__lead {
    font-size: 40px;
    font-weight: bold;
}

section.development-plans {padding: 104px 0;background: #F8F8F8;}
section.development-plans * {
    
}

.development-plans__grid .features__item.features__card--wide {
    flex: 1 1 calc(50% - 20px);
}

.development-plans__grid.plans-grid {
    display: flex;
    margin-top: 106px;
    flex-wrap: wrap;
    gap: 30px;
}

.development-plans__grid.plans-grid {}

h2.development-plans__title {
    font-size: 54px;
    text-align: center;
}

section.partners-slider {background: #F8F8F8;padding: 13px 0 105px;}
section.partners-slider * {

}

section.partners-slider .partners-slider__item {
    margin: 0px 17px;
}
section.partners-slider .slick-list {
    margin: 0px -17px;
}
.partners-slider__item img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.partners-slider__track {
    margin-top: 56px;
}

.partners-slider__desctext {
    font-size: 12px;
    text-align: right;
}

.partners-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2.partners-slider__title {
    font-size: 40px;
}
.partners-slider__wrapper {background: #E6EAED;border-radius: 40px;padding: 80px 88px;}



/* Page catalog */
section.collection-promo {
    height: 650px;
    background-color: #471F06;
    margin-top: -88px;
    padding-top: 88px;
    border-radius: 0px 0px 40px 40px;
    z-index: 2;
    position: relative;
    background-position: right;
}
section.collection-promo * {

}
.collection-promo__btn {
    max-width: 300px;
}
p.collection-promo__subtitle {
    font-size: 14px;
    color: #fff;
    padding: 16px 0 50px;
}

h1.collection-promo__title {
    font-size: 52px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
}
section.collection-promo .container {
    display: flex;
    align-items: center;
    height: 100%;
}
section.catalogs-section {
    background: #F8F8F8;
    padding: 102px 0 65px;
}
section.catalogs-section * {
    
}
.catalog-card__img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
h3.catalog-card__title {
    font-size: 24px;
    padding: 34px 0;
    max-width: 500px;
    /* min-height: 58px; */
}

.catalog-card__visual {
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}
.catalog-card__visual:hover .card__overlay{
    opacity: 1;
}
.catalog-card__visual:hover span.card__label {
    background: none;
    border: 1px solid #000;
}

article.catalogs-grid__item {
    flex: 1 1 calc(50% - 7px); /* 2 колонки */
    max-width: calc(50% - 7px);
    margin-bottom: 52px;
}
.catalog-card__btn {
    max-width: 300px;
}
.catalogs-section__grid {
    margin-top: 58px;
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
}

p.catalogs-section__description {
    margin-left: auto;
    text-align: right;
    font-size: 12px;
    margin-bottom: 7px;
}

.catalogs-section__header {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}

h2.catalogs-section__title {
    font-size: 40px;
}

.collection-promo2 {
    height: 650px;
    background-color: #f8f8f8;
    /* margin-top: -88px; */
    /* padding-top: 88px; */
    border-radius: 0px 0px 40px 40px;
    z-index: 2;
    position: relative;
    color: #fff;
    /* border-radius: 40px; */
    /* overflow: hidden; */
    position: relative;
}

.collection-promo2:after {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background: #000;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
.collection-promo2 * {

}
.collection-promo2__btn {
    max-width: 300px;
}
.collection-promo2-bg {
    background-image: url(img/3730ed3….jpg);
    width: 100%;
    height: 100%;
    border-radius: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

p.collection-promo2__subtitle {
    font-size: 14px;
    margin-bottom: 46px;
    margin-top: 11px;
}

.collection-promo2__inner-right {
    margin-left: auto;
}

h2.collection-promo2__title {
    font-size: 52px;
    font-weight: 900;
}
.collection-promo2 {
    
}
.collection-promo2 .container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}



/* Page order */
.wholesale-section {
    background: #F8F8F8;
    margin-top: -88px;
    padding-top: 205px;
}
.wholesale-section * {

}

.b2b-form__policy {
    color: #fff;
    font-size: 10px;
    margin-top: 24px;
}

.b2b-form__policy a {
    color: #fff;
}

button.b2b-form__submit {
    margin-top: 28px;
    width: 100%;
    /* margin-left: 0; */
    /* margin-right: 0; */
    padding: 0;
}


input {
    border-radius: 40px;
    border: 0;
    height: 48px;
    padding: 15px 38px;
    font-size: 14px;
    letter-spacing: 1px;
}
input.b2b-form__input {
    flex: 1 1 calc(50% - 30px);
}

.b2b-form__grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

p.order-banner__subtitle {
    color: #fff;
    font-size: 12px;
    margin-top: 31px;
}

form.order-banner__form {
    width: 56%;
    padding-top: 16px;
}

h2.order-banner__title {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.order-banner__info {
    width: 44%;
}

.wholesale-section__banner {
    margin: 55px 0 0;
    background: #006781;
    border-radius: 40px;
    padding: 101px 88px;
    display: flex;
    background-image: url(../img/504631ef086260326ed35066cc46b276d8a23f21.jpg);
    background-size: cover;
}

.wholesale-section__banner.order-banner {}

p.wholesale-section__description {
    max-width: 50%;
    text-align: right;
    margin-left: auto;
    font-size: 12px;
    margin-bottom: 11px;
}

.wholesale-section__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

h1.wholesale-section__title {
    font-size: 54px;
}
button.b2b-form__submit .button__text {
    flex: 1;
    /* width: 100%; */
}
section.retail-section {
    background:#F8F8F8;
    padding: 0px 0 134px;
}
section.retail-section *{
}

a.marketplace-card__btn {
    margin-top: 40px;
}

p.marketplace-card__text {
    font-size: 12px;
    margin-top: 39px;
}

.marketplace-card__logo-wrapper {
    border-radius: 20px;
    background: #fff;
    height: 131px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketplace-card__logo-wrapper img {
    max-width: 202px;
}

article.retail-section__card {
    flex: 1;
}

.retail-section__grid {
    display: flex;
    gap: 45px;
    margin-top: 59px;
}

p.retail-section__description {
    font-size: 12px;
    max-width: 420px;
    margin-left: auto;
    text-align: right;
    margin-bottom: 7px;
}

.retail-section__header {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}

h2.retail-section__title {
    font-size: 40px;
}

.retail-section__wrapper {
    background: #E6EAED;
    padding: 100px 89px;
    border-radius: 40px;
}


/* Page construct */
section.constructor-hero {
    height: 651px;
    background-color: #471F06;
    margin-top: -88px;
    padding-top: 134px;
    border-radius: 0px 0px 40px 40px;
    z-index: 2;
    position: relative;
    text-align: center;
}
section.constructor-hero * {

}

p.constructor-hero__subtitle {
    font-size: 14px;
    padding-top: 11px;
}

h1.constructor-hero__title {
    font-size: 52px;
    font-weight: 900;
}

section.constructor-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;;
}

section.sublimation-info {background: #F8F8F8;padding: 107px 0 37px;}
section.sublimation-info * {
    
}

a.button.blue.arrow.sublimation-info__btn {
    margin-top: 30px;
    max-width: 350px;
}

.sublimation-info__text-block {
    font-size: 12px;
    margin-top: 34px;
    max-width: 570px;
}
.sublimation-info__text-block p {
    padding-bottom: 15px
}

h2.sublimation-info__title {
    font-size: 52px;
    font-weight: bold;
}

.sublimation-info__features {
    width: 49%;
}

.sublimation-info__features .features__item {
    margin-bottom: 30px;
}

.sublimation-info__wrapper {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
}

.sublimation-info__content {
    /* display: flex; */
    flex-wrap: wrap;
    width: 51%;
    padding-top: 89px;
    padding-right: 20px;
}


section.color-cta {
    background: #F8F8F8;
    padding: 53px 0 121px;
}
section.color-cta * {

}

.color-form__policy {
    font-size: 11px;
    max-width: 499px;
    margin-top: 27px;
}

.color-form__policy a {
    color: #fff;
}

button.color-form__submit {
    flex: 1;
    /* height: 48px; */
    max-width: 304px;
}

input.color-form__input {
    flex: 1;
    max-width: 325px;
}

.color-form__row {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 631px; */
    gap: 15px;
}

form.color-cta__form.color-form {
    margin-top: 38px;
}

p.color-cta__subtitle {
    max-width: 596px;
    font-size: 12px;
    margin-top: 13px;
}

h2.color-cta__title {
    font-size: 52px;
    font-weight: bold;
}

.color-cta__inner {
    background: url(../img/color-ctner.png);
    border-radius: 40px;
    min-height: 550px;
    padding: 108px 93px;
    color: #fff;
    background-size: cover;
}


section.contact-details {
    margin-top: -88px;
    padding-top: 204px;
    padding-bottom: 60px;
    background: #F8F8F8;
}
h1.contact-details__title {
    font-size: 54px;
    max-width: 525px;
}
.contact-details__content {
    /* margin-top: 46px; */
    margin-top: 54px;
    display: flex;
    gap: 14px;
}
.contact-details__info.contact-info {
    flex: 1;
    border-radius: 40px;
    background: #fff;
    padding: 68px 0;
    box-sizing: border-box;
}
.contact-details__visual {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-sizing: border-box;
}
.contact-info__card {
    margin: 0px 60px 30px;
    border-radius: 20px;
    background: #F8F8F8;
}
.contact-info__card:nth-child(2) p.contact-info__value {
    font-weight: bold;
    font-size: 14px;
}
.contact-info__card:last-child {
    margin-bottom: 0;
}
.contact-info__label{
    display: flex;
    cursor: pointer;
    align-items: center;
    font-size: 24px;
    padding: 43px 45px;
}
p.contact-info__value {
    font-size: 12px;
    padding: 0px 45px 38px;
}
p.contact-info__value a {
    color: #000;
    text-decoration: none;
}


section.social-networks {
    padding: 51px 0 136px;
    background: #F8F8F8;
}
.social-networks__box {
    background: #E6EAED;
    border-radius: 40px;
    padding: 103px 88px;
}
h2.social-networks__title {
    font-size: 40px;
}
.social-networks__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 59px;
    gap: 25px;
}
a.social-networks__btn {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 20px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}
a.social-networks__btn:hover .cls-1,
a.social-networks__btn:hover .cls-2 {
    transition: all 0.3s ease;
}
a.social-networks__btn:hover {
    background: #00A1F2;
    color: #fff;
}
a.social-networks__btn:hover .cls-1 {
    fill: #000 !important
}
a.social-networks__btn:hover .cls-2 {
    fill: #fff !important
}
.social-networks__icon {
    margin-right: 20px;
}
.social-networks__icon svg {
    display: block;
}
section.page-content {
    margin-top: -88px;
    padding-top: 205px;
    background: rgb(248, 248, 248);
}
.page-content__title {
    font-size: 54px;
    max-width: 525px;
    font-weight: bold;
}
.page-content__wrapper {
    padding: 55px 0 100px;
}
.page-content__wrapper h1,
.page-content__wrapper h2,
.page-content__wrapper h3,
.page-content__wrapper h4 {
    margin-bottom: 25px;
}
.page-content__wrapper p {
    margin-bottom: 15px;
}


section.color-solutions {
    padding: 120px 0 51px;
    background: #F8F8F8;
}
h2.color-solutions__title {
    font-size: 40px;
}
.color-solutions__header {
    display: flex;
    flex-wrap: wrap;
    align-items: self-end;
}
.color-solutions__header-right {
    margin-left: auto;
    text-align: right;
}
p.color-solutions__description {
    font-size: 12px;
    text-align: right;
}
.color-solutions__grid {
    display: flex;
    margin-top: 38px;
    flex-wrap: wrap;
    gap: 30px;
}
.color-solutions__grid article.product-card {
    flex: 1;
    border: 20px;
    padding: 10px 15px 10px 48px;
    min-height: 193px;
    background-image: url(../img/features__item.png);
    background-size: cover;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.color-solutions__grid article.product-card.product-card--wide{
    flex: 1 1 calc(50% - 20px);
    padding: 10px 30px 10px 48px;
    background-image: url(../img/features__item--wide.png);
}
.color-solutions__btn {
    margin-top: 32px;
}
.color-solutions__btn .button .button__text {
    text-align: center;
    padding: 5px 22px;
}
.product-card__code {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    color: #00A1F2;
}
.product-card__code img {
    display: block;
    width: 19px; 
    height: auto;
    margin-right: 5px;
}
h3.product-card__title {
    font-size: 14px;
    margin-top: 14px;
}
p.product-card__prop {
    font-size: 12px;
    margin-top: 6px;
}


article.product-card .product-card__visual {
    max-width: 230px;
    margin-left: auto;
}
article.product-card.product-card--wide .product-card__visual {
    max-width: 370px;
    margin-left: auto;
}