@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Yanone+Kaffeesatz:wght@200..700&display=swap");
.swiper-button-prev {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  right: 0px;
  top: 0;
  transition: 0.5s;
  margin-right: 12px;
}
.swiper-button-prev .icon {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(24, 24, 26);
  transition: 0.5s;
}
.swiper-button-prev .icon:hover {
  color: rgb(210, 74, 88);
}
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  left: 0;
  transition: 0.5s;
  top: 0;
}
.swiper-button-next .icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: 0.5s;
  color: rgb(24, 24, 26);
}
.swiper-button-next .icon:hover {
  color: rgb(210, 74, 88);
}
.swiper-button-next:after {
  display: none;
}

.swiper-slide-active .main-slide__title, .swiper-slide-active p, .swiper-slide-active .btn {
  opacity: 1;
  transform: none;
}
.swiper-slide-active .main-slide p {
  opacity: 1;
  transform: none;
}
.swiper-slide-active .main-slide .btn {
  opacity: 1;
  transform: none;
}
.swiper-slide-active .main-slide__images img {
  opacity: 1;
  transform: scale(1);
}

.swiper-nav {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .swiper-nav {
    position: absolute;
    bottom: 320px;
    padding-bottom: 0;
    justify-content: flex-start;
  }
}

.main-slider {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 1280px) {
  .main-slider {
    padding-bottom: 50px;
  }
}
.main-slider .swiper-button-prev {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  right: 0px;
  top: 0;
  transition: 0.5s;
  margin-right: 12px;
  cursor: pointer;
}
.main-slider .swiper-button-prev .icon {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(24, 24, 26);
  transition: 0.5s;
}
.main-slider .swiper-button-prev .icon:hover {
  color: rgb(210, 74, 88);
}
.main-slider .swiper-button-prev:after {
  display: none;
}
.main-slider .swiper-button-next {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  left: 0;
  transition: 0.5s;
  top: 0;
  cursor: pointer;
}
.main-slider .swiper-button-next .icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: 0.5s;
  color: rgb(24, 24, 26);
}
.main-slider .swiper-button-next .icon:hover {
  color: rgb(210, 74, 88);
}
.main-slider .swiper-button-next:after {
  display: none;
}
.main-slider .swiper-pagination {
  position: relative;
  width: auto;
  z-index: 9;
  margin: -5px 12px 0 12px;
  height: 24px;
  display: flex;
  align-items: center;
}
@media (max-width: 1280px) {
  .main-slider .swiper-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.main-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background: rgb(24, 24, 26);
  opacity: 1;
  transition: 0.5s;
}
.main-slider .swiper-pagination-bullet-active {
  background: rgb(210, 74, 88);
  transform: scale(1.67);
}

.products-slider .swiper-pagination-product {
  display: none;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .products-slider .swiper-pagination-product {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.products-slider .swiper-pagination-product .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: rgb(24, 24, 26);
  opacity: 1;
  transition: 0.5s;
}
.products-slider .swiper-pagination-product .swiper-pagination-bullet-active {
  background: rgb(210, 74, 88);
  transform: scale(1.2);
}
.products-slider .swiper-button-prev-product {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(0deg);
  left: -40px;
  top: 270px;
  transition: 0.5s;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: 9;
  cursor: pointer;
}
@media (max-width: 992px) {
  .products-slider .swiper-button-prev-product {
    display: none;
  }
}
.products-slider .swiper-button-prev-product:after {
  display: none;
}
.products-slider .swiper-button-prev-product:hover {
  background-color: rgb(210, 74, 88);
}
.products-slider .swiper-button-prev-product.swiper-button-disabled {
  background-color: #AFAFAF;
}
.products-slider .swiper-button-next-product {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(180deg);
  right: -40px;
  transition: 0.5s;
  top: 270px;
  z-index: 9;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  cursor: pointer;
}
.products-slider .swiper-button-next-product:hover {
  background-color: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .products-slider .swiper-button-next-product {
    display: none;
  }
}
.products-slider .swiper-button-next-product:after {
  display: none;
}
.products-slider .swiper-button-next-product.swiper-button-disabled {
  background-color: #AFAFAF;
}

.goodies-slider .swiper-pagination-goodies {
  display: none;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .goodies-slider .swiper-pagination-goodies {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.goodies-slider .swiper-pagination-goodies .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: rgb(24, 24, 26);
  opacity: 1;
  transition: 0.5s;
}
.goodies-slider .swiper-pagination-goodies .swiper-pagination-bullet-active {
  background: rgb(210, 74, 88);
  transform: scale(1.2);
}
.goodies-slider .swiper-button-prev-goodies {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(0deg);
  left: -40px;
  top: 270px;
  transition: 0.5s;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: 9;
  cursor: pointer;
}
@media (max-width: 992px) {
  .goodies-slider .swiper-button-prev-goodies {
    display: none;
  }
}
.goodies-slider .swiper-button-prev-goodies:after {
  display: none;
}
.goodies-slider .swiper-button-prev-goodies:hover {
  background-color: rgb(210, 74, 88);
}
.goodies-slider .swiper-button-prev-goodies.swiper-button-disabled {
  background-color: #AFAFAF;
}
.goodies-slider .swiper-button-next-goodies {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(180deg);
  right: -40px;
  cursor: pointer;
  transition: 0.5s;
  top: 270px;
  z-index: 9;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
}
.goodies-slider .swiper-button-next-goodies:hover {
  background-color: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .goodies-slider .swiper-button-next-goodies {
    display: none;
  }
}
.goodies-slider .swiper-button-next-goodies:after {
  display: none;
}
.goodies-slider .swiper-button-next-goodies.swiper-button-disabled {
  background-color: #AFAFAF;
}

.about-slider {
  position: relative;
}
.about-slider .swiper-pagination-about {
  display: none;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .about-slider .swiper-pagination-about {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.about-slider .swiper-pagination-about .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: rgb(24, 24, 26);
  opacity: 1;
  transition: 0.5s;
}
.about-slider .swiper-pagination-about .swiper-pagination-bullet-active {
  background: rgb(210, 74, 88);
  transform: scale(1.2);
}
.about-slider .swiper-button-prev-about {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(0deg);
  left: calc(25% - 40px);
  top: calc(50% - 20px);
  transition: 0.5s;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: 9;
  cursor: pointer;
}
@media (max-width: 992px) {
  .about-slider .swiper-button-prev-about {
    display: none;
  }
}
.about-slider .swiper-button-prev-about:after {
  display: none;
}
.about-slider .swiper-button-prev-about:hover {
  background-color: rgb(210, 74, 88);
}
.about-slider .swiper-button-prev-about.swiper-button-disabled {
  background-color: #AFAFAF;
}
.about-slider .swiper-button-next-about {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(180deg);
  right: calc(25% - 40px);
  top: calc(50% - 20px);
  transition: 0.5s;
  z-index: 9;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  cursor: pointer;
}
.about-slider .swiper-button-next-about:hover {
  background-color: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .about-slider .swiper-button-next-about {
    display: none;
  }
}
.about-slider .swiper-button-next-about:after {
  display: none;
}
.about-slider .swiper-button-next-about.swiper-button-disabled {
  background-color: #AFAFAF;
}

.gallery .swiper-button-prev-gallery {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(0deg);
  left: 0px;
  bottom: 0px;
  cursor: pointer;
  left: auto;
  transition: 0.5s;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: 9;
}
@media (max-width: 992px) {
  .gallery .swiper-button-prev-gallery {
    width: 50px;
    height: 50px;
    background-size: 20px auto;
    border: 5px solid #fff;
    bottom: 20px;
  }
}
.gallery .swiper-button-prev-gallery:after {
  display: none;
}
.gallery .swiper-button-prev-gallery:hover {
  background-color: rgb(210, 74, 88);
}
.gallery .swiper-button-prev-gallery.swiper-button-disabled {
  background-color: #AFAFAF;
}
.gallery .swiper-button-next-gallery {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(180deg);
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  transition: 0.5s;
  z-index: 9;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
}
.gallery .swiper-button-next-gallery:hover {
  background-color: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .gallery .swiper-button-next-gallery {
    width: 50px;
    height: 50px;
    background-size: 20px auto;
    border: 5px solid #fff;
    bottom: 20px;
  }
}
.gallery .swiper-button-next-gallery:after {
  display: none;
}
.gallery .swiper-button-next-gallery.swiper-button-disabled {
  background-color: #AFAFAF;
}

.product-card-gallery {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.product-card-gallery .swiper-pagination {
  display: none;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .product-card-gallery .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.product-card-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 12px;
  background: rgb(24, 24, 26);
  opacity: 1;
  transition: 0.5s;
}
.product-card-gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: rgb(210, 74, 88);
  transform: scale(1.67);
}
.product-card-gallery .swiper-button-prev {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(0deg);
  left: 0px;
  top: 270px;
  right: auto;
  cursor: pointer;
  transition: 0.5s;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: 9;
}
@media (max-width: 992px) {
  .product-card-gallery .swiper-button-prev {
    display: none;
  }
}
.product-card-gallery .swiper-button-prev:after {
  display: none;
}
.product-card-gallery .swiper-button-prev:hover {
  background-color: rgb(210, 74, 88);
}
.product-card-gallery .swiper-button-prev.swiper-button-disabled {
  background-color: #AFAFAF;
}
.product-card-gallery .swiper-button-next {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(180deg);
  right: 0px;
  transition: 0.5s;
  top: 270px;
  left: auto;
  z-index: 9;
  cursor: pointer;
  background: rgb(24, 24, 26) url(../images/slider-arrow-white.svg) 50% 50% no-repeat;
  border-radius: 50%;
  border: 10px solid #fff;
}
.product-card-gallery .swiper-button-next:hover {
  background-color: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .product-card-gallery .swiper-button-next {
    display: none;
  }
}
.product-card-gallery .swiper-button-next:after {
  display: none;
}
.product-card-gallery .swiper-button-next.swiper-button-disabled {
  background-color: #AFAFAF;
}
.product-card-gallery .swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-card-gallery .swiper-container-wrapper {
  display: flex;
  flex-flow: row nowrap;
  height: 630px;
  width: 100%;
}
@media (max-width: 1280px) {
  .product-card-gallery .swiper-container-wrapper {
    height: 430px;
  }
}
@media (max-width: 992px) {
  .product-card-gallery .swiper-container-wrapper {
    height: auto;
  }
}
.product-card-gallery .swiper-button-next, .product-card-gallery .swiper-button-prev {
  color: #000;
}
.product-card-gallery .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.product-card-gallery .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 90%;
  max-height: 90%;
}
.product-card-gallery .swiper-slide .description,
.product-card-gallery .swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.product-card-gallery .swiper-slide-active .description,
.product-card-gallery .swiper-slide-active .title {
  opacity: 1;
}
.product-card-gallery .swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.product-card-gallery .swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}
.product-card-gallery .card-gallery {
  position: relative;
  width: 630px;
  height: 630px;
}
@media (max-width: 1280px) {
  .product-card-gallery .card-gallery {
    max-width: 430px;
    height: 430px;
  }
}
@media (max-width: 992px) {
  .product-card-gallery .card-gallery {
    width: 100%;
  }
}
.product-card-gallery .gallery-thumbs {
  width: 80px;
  height: 630px;
}
@media (max-width: 992px) {
  .product-card-gallery .gallery-thumbs {
    display: none;
  }
}
.product-card-gallery .gallery-thumbs .swiper-wrapper {
  flex-direction: column;
}
.product-card-gallery .gallery-thumbs .swiper-slide {
  width: 80px;
  flex-flow: column nowrap;
  height: 80px;
  border: 1px solid rgba(24, 24, 26, 0.3);
  border-radius: 15px;
  background: rgb(255, 255, 255);
  cursor: pointer;
  opacity: 0.75;
  transition: 0.5s;
}
.product-card-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid rgba(24, 24, 26, 0.8);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Onest", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(24, 24, 26);
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
body.open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1350px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.inner-block {
  margin-bottom: 80px;
}

h1, .h1 {
  color: rgb(24, 24, 26);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 69px;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 40px;
}
h1.center, .h1.center {
  text-align: center;
}
h1.white-color, .h1.white-color {
  color: #fff;
}
h1.uppercase, .h1.uppercase {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 50px;
    line-height: 50px;
  }
}

h2, .h2 {
  display: block;
  color: rgb(24, 24, 26);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 40px;
  }
}
h2 span, .h2 span {
  color: rgb(108, 155, 56);
}
h2.left, .h2.left {
  text-align: left;
}
h2.red-color, .h2.red-color {
  color: rgb(210, 74, 88);
}
h2--margin-sm, .h2--margin-sm {
  margin-bottom: 20px;
}

.title-discription {
  display: block;
  color: rgb(113, 113, 121);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 410px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .title-discription {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.title-discription--sm {
  font-size: 16px;
  max-width: 100%;
  margin-top: -30px;
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mb-80 {
    margin-bottom: 40px !important;
  }
}

section, .section {
  padding: 100px 0;
}
section.gray-bg, .section.gray-bg {
  background: rgb(245, 245, 245);
}
@media (max-width: 992px) {
  section, .section {
    padding: 50px 0;
  }
}
section.inner, .section.inner {
  padding-bottom: 0;
}
@media (max-width: 992px) {
  section.inner, .section.inner {
    padding: 50px 0 0 0;
  }
}

.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 111;
  border-radius: 10px;
  background: rgb(210, 74, 88);
}
.burger.open:before {
  background: #fff;
  transform: rotate(-45deg);
  top: 20px;
  height: 2px;
}
.burger.open:after {
  background: #fff;
  top: 20px;
  transform: rotate(45deg);
  height: 2px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 13px;
  width: 15px;
  height: 2px;
  background: #fff;
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
}

.wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  padding-top: 220px;
}
@media (max-width: 992px) {
  main {
    padding-top: 80px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media (max-width: 992px) {
  header {
    position: fixed;
  }
}
header.sticky .main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background: #fff;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.1);
}
header.sticky .main-menu ul li a {
  color: rgb(24, 24, 26);
}
@media (max-width: 992px) {
  header.sticky .main-menu ul li a {
    color: #fff;
  }
}
@media (max-width: 992px) {
  header.sticky .main-menu {
    top: 80px;
    background: rgb(24, 24, 26);
  }
}

.header-main {
  background: rgb(24, 24, 26);
  padding: 25px 0;
}
@media (max-width: 992px) {
  .header-main {
    height: 80px;
    padding: 0px 0;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header-content {
    height: 80px;
  }
}
.header-content__btns {
  display: flex;
}
@media (max-width: 992px) {
  .header-content__btns {
    display: none;
  }
}
.header-content__btns .btn {
  margin-left: 30px;
}

.logined-mobile {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .logined-mobile {
    display: flex;
  }
}
.profile-mobile {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgb(210, 74, 88);
}
@media (max-width: 992px) {
  .profile-mobile {
    display: flex;
  }
}
.logo-block {
  display: flex;
  align-items: center;
}
.logo-block__text {
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 992px) {
  .logo-block__text {
    display: none;
  }
}

@media (max-width: 992px) {
  .logo img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (max-width: 992px) {
  .header-callback {
    display: none;
  }
}
.header-callback__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.header-callback__phone a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
}
.header-callback__phone .icon {
  display: block;
  margin-right: 10px;
}
.header-callback__phone .icon img {
  display: block;
}
.header-callback__request-call {
  display: flex;
  justify-content: center;
}
.header-callback__request-call a {
  color: rgb(210, 74, 88);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-bottom: 1px dotted rgb(210, 74, 88);
  transition: 0.5s;
  padding-bottom: 3px;
}
.header-callback__request-call a:hover {
  border-color: transparent;
}

.btn {
  padding: 0 20px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 12px;
  transition: 0.5s;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}
.btn .icon {
  display: block;
  margin-right: 10px;
}
.btn .icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.btn--empty {
  border: 1.5px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.btn--empty:hover {
  background: #fff;
  color: rgb(24, 24, 26);
}
.btn--red {
  background: rgb(210, 74, 88);
  color: #fff;
}
.btn--red:hover {
  color: rgb(255, 255, 255);
  background: rgb(192, 53, 68);
}
.btn--black {
  background: rgb(24, 24, 26);
  color: #fff;
}
.btn--black:hover {
  color: rgb(255, 255, 255);
  background: rgb(53, 53, 56);
}
.btn--orange {
  background: rgb(220, 142, 74);
  color: rgb(255, 255, 255);
}
.btn--orange:hover {
  color: rgb(255, 255, 255);
  background: rgb(206, 124, 53);
}

.main-menu {
  transition: 0.5s;
  border-bottom: 1px solid rgb(221, 221, 221);
  background: rgb(245, 245, 245);
}
@media (max-width: 992px) {
  .main-menu {
    position: fixed;
    top: 70px;
    width: 100%;
    height: 100vh;
    background: rgb(24, 24, 26) !important;
    width: 100%;
    max-width: 480px;
    transform: translateX(-480px);
    transition: 1s;
    z-index: 10;
    border: 0;
  }
}
.main-menu.open {
  transform: translateX(0px);
}
.main-menu__mobile {
  display: none;
}
@media (max-width: 992px) {
  .main-menu__mobile {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .main-menu__scroll {
    padding: 24px 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
.main-menu .social {
  display: flex;
  justify-content: flex-start;
}
.main-menu .social .telegram {
  border: 2px solid rgb(220, 142, 74);
  margin: 0 20px 0 0;
}
.main-menu .social .telegram:hover {
  border-color: rgb(210, 74, 88);
}
.main-menu .social .telegram:hover .icon {
  color: rgb(210, 74, 88);
}
.main-menu .social .telegram .icon {
  color: rgb(220, 142, 74);
}
.main-menu .social .vk {
  margin: 0px;
}
.main-menu__contacts {
  margin-bottom: 30px;
}
.main-menu__contacts p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
.main-menu__phone {
  display: block;
  margin-bottom: 10px;
}
.main-menu__phone a {
  color: rgb(220, 142, 74);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
.main-menu__email {
  display: block;
  margin-bottom: 10px;
}
.main-menu__email a {
  color: rgb(220, 142, 74);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
.main-menu__btn {
  display: block;
  margin-bottom: 40px;
}
.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (max-width: 992px) {
  .main-menu ul {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .main-menu ul li {
    margin-bottom: 30px;
  }
}
.main-menu ul li a {
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .main-menu ul li a {
    color: #fff;
    text-transform: none;
  }
}
.main-menu ul li a:hover {
  color: rgb(210, 74, 88);
}
.main-menu--red {
  background: rgb(210, 74, 88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.main-menu--red ul li a {
  color: #fff;
}
.main-menu--red ul li a:hover {
  color: rgb(24, 24, 26);
}
.main-menu--orange {
  background: rgb(220, 142, 74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.main-menu--orange ul li a {
  color: #fff;
}
.main-menu--orange ul li a:hover {
  color: rgb(24, 24, 26);
}

.main-slider {
  background: rgb(245, 245, 245);
  padding: 0;
}
.main-slider .swiper-slide-active .main-slide__title {
  opacity: 1;
  transform: translateY(0);
}
.main-slider .swiper-slide-active p {
  opacity: 1;
  transform: translateY(0);
}
.main-slider .swiper-slide-active .main-slide__btn {
  opacity: 1;
  transform: translateY(0);
}
.main-slider .swiper-slide-active .main-slide__image:after {
  transform: translateY(0);
}
.main-slider .swiper-slide-active .main-slide__image:before {
  opacity: 1;
}
.main-slider .swiper-slide-active .main-slide__image img {
  transform: translateY(0);
}

.main-slide {
  position: relative;
  padding: 100px 0 90px 0;
}
@media (max-width: 992px) {
  .main-slide {
    padding: 60px 0 380px 0;
  }
}
.main-slide__content {
  max-width: 750px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .main-slide__content {
    width: 100%;
  }
}
.main-slide__title {
  display: block;
  color: rgb(24, 24, 26);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .main-slide__title {
    font-size: 50px;
  }
}
.main-slide p {
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 50px;
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .main-slide p {
    font-size: 16px;
  }
}
.main-slide__btn {
  display: block;
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
}
.main-slide__image {
  position: absolute;
  bottom: -75px;
  right: -200px;
}
@media (max-width: 992px) {
  .main-slide__image {
    position: absolute;
    bottom: -75px;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .main-slide__image {
    bottom: 0;
  }
}
.main-slide__image:before {
  content: "";
  width: 1012px;
  height: 611px;
  background: url(../images/slider-img-bg.svg);
  position: absolute;
  bottom: 0;
  right: -120px;
  opacity: 0;
  transition: 1s;
}
@media (max-width: 992px) {
  .main-slide__image:before {
    display: none;
  }
}
.main-slide__image:after {
  content: "";
  width: 844px;
  height: 489px;
  background: url(../images/slide-red-bg.svg) 50% 0 no-repeat;
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: 2;
  transform: translateY(200%);
  transition: 1.5s;
}
@media (max-width: 992px) {
  .main-slide__image:after {
    width: 100%;
    height: 345px;
    background-size: 100% auto;
    right: auto;
    left: 0;
  }
}
@media (max-width: 768px) {
  .main-slide__image:after {
    height: 245px;
    min-width: 500px;
    left: auto;
    right: -100px;
  }
}
.main-slide__image img {
  display: block;
  position: relative;
  z-index: 3;
  transform: translateY(200%);
  transition: 2.5s;
}
@media (max-width: 992px) {
  .main-slide__image img {
    max-width: 60%;
    min-width: 480px;
  }
}
@media (max-width: 768px) {
  .main-slide__image img {
    max-width: 100%;
  }
}

.products-slider {
  position: relative;
}
@media (max-width: 768px) {
  .products-slider {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.products-slider .swiper-container {
  overflow: hidden;
}
@media (max-width: 768px) {
  .products-slider .swiper-container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .products-slider .swiper-container .swiper-slide {
    max-width: 300px;
  }
}

.goodies-slider {
  position: relative;
}
@media (max-width: 768px) {
  .goodies-slider {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.goodies-slider .swiper-container {
  overflow: hidden;
}
@media (max-width: 768px) {
  .goodies-slider .swiper-container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .goodies-slider .swiper-container .swiper-slide {
    max-width: 300px;
  }
}

.product-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: rgb(245, 245, 245);
  margin-bottom: 20px;
  overflow: hidden;
}
.product-item__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  transition: 0.5s;
}
.product-item__image img:hover {
  transform: scale(1.1);
}
.product-item__content {
  display: block;
  min-height: 155px;
  padding-bottom: 20px;
}
.product-item__title {
  display: block;
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
}
.product-item__title a {
  color: rgb(24, 24, 26);
  transition: 0.5s;
  overflow: hidden;
  max-height: 60px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-item__title a:hover {
  color: rgb(210, 74, 88);
}
.product-item p {
  color: rgb(113, 113, 121);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  overflow: hidden;
  max-height: 60px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-item__btn {
  display: flex;
  justify-content: center;
}

.about-slider {
  margin-bottom: 80px;
}
.about-slider .swiper-container {
  padding: 0 30px;
}
.about-slider .swiper-slide {
  padding-top: 40px;
}
.about-slider .swiper-slide .about-item {
  height: 400px;
}
.about-slider .swiper-slide:nth-child(2n) {
  padding-top: 0;
}
.about-slider .swiper-slide:nth-child(2n) .about-item {
  height: 480px;
}

.about-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.about-item:hover .about-item__text {
  transform: translateY(0);
}
.about-item__image {
  display: block;
  width: 100%;
  height: 100%;
}
.about-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.about-item__text {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  padding: 20px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
  color: rgb(24, 24, 26);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  transform: translateY(300px);
  transition: 0.5s;
}
@media (max-width: 768px) {
  .about-item__text {
    transform: translateY(0);
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
}
.about-item__text span {
  display: block;
  color: rgb(0, 0, 0);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  margin-bottom: 10px;
}

.about-information {
  display: flex;
  padding: 0 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about-information {
    padding: 0 20px;
  }
}

.about-info {
  width: calc(33.3333333333% - 20px);
  border-radius: 30px;
  padding: 50px 30px;
  background: rgb(108, 155, 56);
}
@media (max-width: 1180px) {
  .about-info {
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .about-info {
    width: 100%;
    margin-bottom: 16px;
  }
  .about-info:last-child {
    margin-bottom: 0;
  }
}
.about-info__icon {
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 1180px) {
  .about-info__icon {
    margin-bottom: 20px;
  }
}
.about-info__icon img {
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-info__title {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .about-info__title {
    font-size: 40px;
  }
}
.about-info p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 1180px) {
  .about-info p {
    font-size: 14px;
  }
}

.footer {
  padding: 80px 0 60px 0;
  background: rgb(24, 24, 26);
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.footer-content:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer-content:last-child .footer-content__col:last-child {
    margin-bottom: 0;
  }
}
.footer-content__col {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 768px) {
  .footer-content__col {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer-content__col:last-child {
  width: 300px;
  min-width: 300px;
  margin-left: 100px;
}
@media (max-width: 1180px) {
  .footer-content__col:last-child {
    margin-left: 50px;
  }
}
@media (max-width: 992px) {
  .footer-content__col:last-child {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .footer-content__col:last-child {
    width: 100%;
  }
}

.footer-menu__title {
  display: block;
  color: rgb(220, 142, 74);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-menu__title {
    text-align: center;
  }
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-menu ul {
    justify-content: space-around;
  }
}
.footer-menu ul li {
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-menu ul li {
    min-width: 50%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-menu ul li {
    text-align: left;
    padding-left: 30px;
  }
}
.footer-menu ul li a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}
.footer-menu ul li a:hover {
  color: rgb(210, 74, 88);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.footer-logo img {
  display: block;
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.social {
  display: flex;
  justify-content: center;
}
.social .telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgb(220, 142, 74);
  margin: 0 10px;
  width: 60px;
  height: 60px;
  transition: 0.5s;
}
.social .telegram:hover {
  border-color: rgb(210, 74, 88);
}
.social .telegram:hover .icon {
  color: rgb(210, 74, 88);
}
.social .telegram .icon {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(220, 142, 74);
  transition: 0.5s;
}
.social .vk {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgb(220, 142, 74);
  margin: 0 10px;
  width: 60px;
  height: 60px;
  transition: 0.5s;
}
.social .vk:hover {
  border-color: rgb(210, 74, 88);
}
.social .vk:hover .icon {
  color: rgb(210, 74, 88);
}
.social .vk .icon {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(220, 142, 74);
  transition: 0.5s;
}

.footer-contacts {
  margin-bottom: 30px;
}
.footer-contacts p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-contacts p {
    text-align: center;
  }
}

.footer-phone {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-phone {
    text-align: center;
  }
}
.footer-phone a {
  color: rgb(220, 142, 74);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  transition: 0.5s;
}
.footer-phone a:hover {
  color: rgb(210, 74, 88);
}

.footer-email {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-email {
    text-align: center;
  }
}
.footer-email a {
  color: rgb(220, 142, 74);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  transition: 0.5s;
}
.footer-email a:hover {
  color: rgb(210, 74, 88);
}

.copy {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  display: block;
}
@media (max-width: 768px) {
  .copy {
    text-align: center;
  }
}

.footer-link {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-link {
    text-align: center;
    justify-content: center;
  }
}
.footer-link.center {
  text-align: center;
  justify-content: center;
}
.footer-link a {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  transition: 0.5s;
}
.footer-link a:hover {
  color: rgb(210, 74, 88);
}

.marketplaces {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.marketplace-item {
  display: block;
  margin: 0 30px 30px 30px;
}
.marketplace-item img {
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.marketplace-item img:hover {
  transform: scale(1.2);
}

.accept-cookie {
  background: rgb(210, 74, 88);
}
.accept-cookie.remove {
  display: none;
}
.accept-cookie__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 100px;
}
@media (max-width: 768px) {
  .accept-cookie__content {
    flex-direction: column;
    justify-content: center;
  }
}
.accept-cookie__content p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .accept-cookie__content p {
    text-align: center;
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.accept-cookie__btn {
  width: 300px;
}
@media (max-width: 768px) {
  .accept-cookie__btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.fadeInUp {
  animation: fadeInUp 1s;
  /* animation: [имя] [время работы] [функция анимации] [количество повторов]; */
}

@keyframes fadeInUp {
  0% {
    opacity: 0; /* Начинаем с прозрачности 0 */
    transform: translateY(50px); /* Перемещение вниз для эффекта "вверх" */
  }
  100% {
    opacity: 1; /* Конечная прозрачность 1 */
    transform: translateY(0); /* Возвращаемся на оригинальную позицию */
  }
}
.fadeInDown {
  animation: fadeInDown 1.5s;
  /* animation: [имя] [время работы] [функция анимации] [количество повторов]; */
}

@keyframes fadeInDown {
  0% {
    opacity: 0; /* Начинаем с прозрачности 0 */
    transform: translateY(-150px); /* Перемещение вниз для эффекта "вверх" */
  }
  100% {
    opacity: 1; /* Конечная прозрачность 1 */
    transform: translateY(0); /* Возвращаемся на оригинальную позицию */
  }
}
.manufactured-section {
  padding-top: 80px;
}

.manufactured {
  border-radius: 50px;
  background: rgb(108, 155, 56) url(../images/forest-bg.png) 50% 50% no-repeat;
  background-size: cover;
  padding: 35px;
  display: flex;
  align-items: center;
  min-height: 220px;
  justify-content: center;
}
.manufactured p {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 768px) {
  .manufactured p {
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.manufactured p .icon {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .manufactured p .icon {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.manufactured p .icon img {
  display: block;
}
@media (max-width: 768px) {
  .manufactured p .icon img {
    width: 60px;
    height: 60px;
  }
}

.ingredients {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ingredient-item {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  position: relative;
  padding: 30px;
  border-radius: 30px;
  padding-right: 280px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .ingredient-item {
    padding-right: 30px;
    padding-bottom: 200px;
  }
}
@media (max-width: 992px) {
  .ingredient-item {
    padding-bottom: 150px;
  }
}
@media (min-width: 769px) {
  .ingredient-item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .ingredient-item {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 130px;
  }
}
.ingredient-item--beef {
  background: rgb(210, 74, 88);
}
.ingredient-item--beef .ingredient-item__img-mobile {
  transform: rotate(-180deg);
  right: 0px;
}
.ingredient-item--chicken {
  background: rgb(220, 142, 74);
}
.ingredient-item--offal {
  background: rgb(136, 53, 39);
}
.ingredient-item--vegetables {
  background: rgb(108, 155, 56);
}
.ingredient-item--vegetables .ingredient-item__img-mobile {
  transform: scale(1.8);
  right: -40px;
}
@media (max-width: 768px) {
  .ingredient-item--vegetables .ingredient-item__img-mobile {
    bottom: -220px;
  }
}
.ingredient-item__title {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .ingredient-item__title {
    font-size: 30px;
    line-height: 30px;
  }
}
.ingredient-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .ingredient-item p {
    font-size: 12px;
  }
}
.ingredient-item__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 280px;
  display: block;
}
@media (max-width: 1180px) {
  .ingredient-item__img {
    display: none;
  }
}
.ingredient-item__img img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.ingredient-item__img-mobile {
  position: absolute;
  right: 0;
  bottom: -180px;
  height: 200px;
  width: 100%;
  display: none;
}
@media (max-width: 1180px) {
  .ingredient-item__img-mobile {
    display: flex;
  }
}
@media (max-width: 992px) {
  .ingredient-item__img-mobile {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .ingredient-item__img-mobile {
    bottom: -180px;
  }
}
.ingredient-item__img-mobile img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  width: 900px;
}

.catalog-slide {
  position: relative;
  width: 100%;
  height: 547px;
  border-radius: 20px;
  background: rgb(24, 24, 26) url(../images/black-bg.svg) 50% 50% repeat;
  padding: 30px;
}
.catalog-slide__title {
  display: block;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.catalog-slide p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 20px;
}
.catalog-slide__btn {
  display: block;
  display: flex;
  justify-content: center;
}
.catalog-slide__img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.catalog-slide__img img {
  display: block;
  max-width: 100%;
}

.delivery {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .delivery {
    flex-direction: column;
  }
}
.delivery__img {
  width: calc(100% - 550px);
}
@media (max-width: 992px) {
  .delivery__img {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .delivery__img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.delivery__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.delivery__content {
  width: 520px;
  border-radius: 30px;
  padding: 60px 30px 60px 60px;
  background: rgb(245, 245, 245);
}
@media (max-width: 1180px) {
  .delivery__content {
    padding: 40px 30px;
  }
}
@media (max-width: 992px) {
  .delivery__content {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .delivery__content {
    width: 100%;
  }
}
.delivery__title {
  color: rgb(24, 24, 26);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 15px;
}
.delivery p {
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .delivery p {
    font-size: 14px;
  }
}

.production-brand {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .production-brand {
    flex-direction: column;
  }
}
.production-brand__content {
  width: 520px;
  border-radius: 30px;
  padding: 60px 30px 60px 60px;
  background: rgb(24, 24, 26) url(../images/black-bg.svg) 50% 50% repeat;
}
@media (max-width: 1180px) {
  .production-brand__content {
    padding: 40px 30px;
  }
}
@media (max-width: 992px) {
  .production-brand__content {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .production-brand__content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.production-brand__title {
  color: #fff;
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 15px;
}
.production-brand p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .production-brand p {
    font-size: 14px;
  }
}
.production-brand ul {
  margin-bottom: 20px;
}
.production-brand ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.production-brand ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/marker.svg);
  position: absolute;
  left: 0;
  top: 0;
}
.production-brand__img {
  width: calc(100% - 550px);
}
@media (max-width: 992px) {
  .production-brand__img {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .production-brand__img {
    width: 100%;
  }
}
.production-brand__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.breadcrumbs {
  display: flex;
  color: rgb(129, 138, 134);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 40px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .breadcrumbs {
    width: calc(100% + 40px);
    margin: 0 -20px 40px -20px;
    padding-left: 20px;
    overflow-x: auto;
  }
}
.breadcrumbs a {
  color: rgb(24, 24, 26);
  margin-right: 10px;
  transition: 0.5s;
}
.breadcrumbs a:hover {
  color: rgb(210, 74, 88);
}
.breadcrumbs .sep {
  display: block;
  margin-right: 10px;
  position: relative;
  bottom: -2px;
}

.text-block {
  padding: 80px 0;
}
.text-block p {
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}

.catalog-menu {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .catalog-menu {
    flex-direction: column;
  }
}

.catalog-menu-item {
  position: relative;
  width: calc(50% - 15px);
  background: rgb(24, 24, 26) url(../images/black-bg.svg) 226px 0 no-repeat;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px 280px 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1180px) {
  .catalog-menu-item {
    padding-right: 180px;
  }
}
@media (max-width: 992px) {
  .catalog-menu-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .catalog-menu-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item {
    padding: 30px;
  }
}
.catalog-menu-item:hover .catalog-menu-item__img--position-1 {
  top: 5px;
  right: -40px;
  transform: rotate(-2deg);
}
@media (max-width: 1180px) {
  .catalog-menu-item:hover .catalog-menu-item__img--position-1 {
    right: -120px;
    top: 125px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item:hover .catalog-menu-item__img--position-1 {
    top: auto;
    bottom: -50px;
    right: -50px;
  }
}
.catalog-menu-item:hover .catalog-menu-item__img--position-2 {
  top: -15px;
  right: -80px;
  transform: rotate(-6deg);
}
@media (max-width: 1180px) {
  .catalog-menu-item:hover .catalog-menu-item__img--position-2 {
    right: -150px;
    top: 70px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item:hover .catalog-menu-item__img--position-2 {
    top: auto;
    bottom: -80px;
    right: -20px;
  }
}
.catalog-menu-item__title {
  display: block;
  color: rgb(220, 142, 74);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .catalog-menu-item__title {
    margin-bottom: 20px;
    font-size: 40px;
  }
}
.catalog-menu-item p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .catalog-menu-item p {
    font-size: 14px;
  }
}
.catalog-menu-item p::last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .catalog-menu-item p::last-child {
    margin-bottom: 20px;
  }
}
.catalog-menu-item__btn {
  display: block;
  padding-top: 10px;
}
.catalog-menu-item__img {
  position: absolute;
  transition: 0.5s;
}
.catalog-menu-item__img img {
  width: 350px;
}
@media (max-width: 1180px) {
  .catalog-menu-item__img img {
    width: 300px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item__img img {
    width: 130px;
  }
}
.catalog-menu-item__img--position-1 {
  top: 55px;
  right: -80px;
  transform: rotate(8deg);
}
@media (max-width: 1180px) {
  .catalog-menu-item__img--position-1 {
    right: -150px;
    top: 155px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item__img--position-1 {
    top: auto;
    bottom: -50px;
    right: -50px;
  }
}
.catalog-menu-item__img--position-2 {
  top: 15px;
  right: -110px;
  transform: rotate(-16deg);
}
@media (max-width: 1180px) {
  .catalog-menu-item__img--position-2 {
    right: -180px;
    top: 100px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-item__img--position-2 {
    top: auto;
    bottom: -80px;
    right: -20px;
  }
}

.catalog-menu-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .catalog-menu-inner {
    flex-direction: column;
  }
}

.catalog-menu-inner-item {
  position: relative;
  width: calc(50% - 15px);
  background: rgb(220, 142, 74) url(../images/orange-bg.svg) 226px 0 no-repeat;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px 280px 50px 30px;
  min-height: 300px;
}
@media (max-width: 1180px) {
  .catalog-menu-inner-item {
    padding-right: 180px;
  }
}
@media (max-width: 992px) {
  .catalog-menu-inner-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .catalog-menu-inner-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 566px) {
  .catalog-menu-inner-item {
    padding: 30px 30px 100px 30px;
  }
}
.catalog-menu-inner-item__title {
  display: block;
  color: #fff;
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .catalog-menu-inner-item__title {
    margin-bottom: 20px;
    font-size: 40px;
  }
}
.catalog-menu-inner-item p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .catalog-menu-inner-item p {
    font-size: 14px;
  }
}
.catalog-menu-inner-item__btn {
  display: block;
  padding-top: 10px;
}
@media (max-width: 566px) {
  .catalog-menu-inner-item__btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
}
.catalog-menu-inner-item__img {
  position: absolute;
  transition: 0.5s;
}
.catalog-menu-inner-item__img img {
  width: 350px;
  display: block;
}
@media (max-width: 1180px) {
  .catalog-menu-inner-item__img img {
    width: 300px;
  }
}
@media (max-width: 566px) {
  .catalog-menu-inner-item__img img {
    width: 210px;
  }
}
.catalog-menu-inner-item__img--position-1 {
  bottom: 0;
  right: 0px;
}
@media (max-width: 566px) {
  .catalog-menu-inner-item__img--position-1 {
    bottom: -50px;
    right: -20px;
  }
}
.catalog-menu-inner-item__img--position-2 {
  bottom: 0;
  right: 0;
}
@media (max-width: 566px) {
  .catalog-menu-inner-item__img--position-2 {
    bottom: -50px;
    right: 0px;
  }
}

@media (max-width: 566px) {
  .mobile-hide {
    display: none !important;
  }
}

.catalog-filter {
  margin-bottom: 30px;
}
.catalog-filter__content {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .catalog-filter__content {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding-left: 20px;
    overflow-x: auto;
  }
}

.filter-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  padding: 0 20px;
  border-radius: 12px;
  height: 60px;
  border: 2px solid rgb(210, 74, 88);
  cursor: pointer;
  transition: 0.5s;
  margin-bottom: 10px;
  white-space: nowrap;
}
.filter-item:hover {
  background: rgb(210, 74, 88);
}
.filter-item:hover .filter-item__title {
  color: #fff;
}
.filter-item.active {
  background: rgb(210, 74, 88);
  padding-right: 60px;
}
.filter-item.active .filter-item__title {
  color: #fff;
}
.filter-item.active .filter-item__close {
  transform: translateX(0px);
  opacity: 1;
}
.filter-item__title {
  position: relative;
  z-index: 9;
  color: rgb(210, 74, 88);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}
.filter-item__close {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/filter-delete.svg) 50% 50% no-repeat;
  display: block;
  opacity: 0;
  transition: 0.5s;
  right: 20px;
}

.clear-filter {
  box-sizing: border-box;
  border: 2px solid rgb(228, 228, 230);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 20px;
  background: rgb(255, 255, 255);
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  cursor: pointer;
  margin-bottom: 10px;
  white-space: nowrap;
}
.clear-filter:hover {
  background: rgb(228, 228, 230);
}

.catalog {
  display: flex;
  flex-wrap: wrap;
}
.catalog .catalog-empty-text {
  display: none;
  color: rgb(24, 24, 26);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  padding: 50px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .catalog .catalog-empty-text {
    font-size: 30px;
    line-height: 36px;
  }
}
.catalog.empty .catalog-empty-text {
  display: block;
}
@media (max-width: 680px) {
  .catalog {
    justify-content: space-between;
  }
}
.catalog .product-item {
  width: calc(25% - 22.5px);
  margin-bottom: 30px;
  margin-right: 30px;
}
.catalog .product-item:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 992px) {
  .catalog .product-item {
    width: calc(25% - 12px);
    margin-right: 12px;
  }
  .catalog .product-item .product-item_title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .catalog .product-item .product-item__image {
    height: 178px;
  }
}
@media (max-width: 680px) {
  .catalog .product-item {
    width: calc(50% - 8px);
    margin-right: 0;
  }
  .catalog .product-item .product-item__image {
    margin-right: 0;
  }
}

.pages {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .pages {
    padding-top: 30px;
  }
}
.pages a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 7.5px;
  border: 1px solid rgb(228, 228, 230);
  border-radius: 12px;
  transition: 0.5s;
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 768px) {
  .pages a {
    margin: 0 5px;
  }
}
.pages a:hover {
  background: rgb(228, 228, 230);
}
.pages a.current {
  background: rgb(24, 24, 26);
  color: #fff;
  border-color: rgb(24, 24, 26);
}
.pages a.disabled {
  background: rgb(228, 228, 230);
  pointer-events: none;
}
.pages a.disabled .icon {
  color: rgb(175, 175, 175);
}
.pages a .icon {
  width: 30px;
  height: 30px;
  color: rgb(24, 24, 26);
}

.next svg {
  transform: rotate(180deg);
}

.inner-partner {
  position: relative;
  padding: 80px 0 100px 0;
  background: rgb(210, 74, 88) url(../images/red-bg.svg) 100% 0 no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .inner-partner {
    padding: 60px 0 280px 0;
  }
}
@media (max-width: 768px) {
  .inner-partner .h1 {
    font-size: 40px;
  }
}
.inner-partner p {
  max-width: 530px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .inner-partner p {
    font-size: 14px;
  }
}
.inner-partner__btn {
  display: block;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .inner-partner__btn {
    padding-top: 0;
  }
}
.inner-partner__image {
  position: absolute;
  bottom: 0;
  right: 40px;
  transition: 0.5s;
  width: 55%;
  display: block;
}
@media (max-width: 768px) {
  .inner-partner__image {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    right: 0;
  }
}
.inner-partner__image:hover img {
  bottom: -40px;
  right: -50px;
}
@media (max-width: 768px) {
  .inner-partner__image:hover img {
    bottom: 0;
    right: auto;
  }
}
.inner-partner__image img {
  max-width: 100%;
  position: relative;
  display: block;
  transition: 0.5s;
  bottom: 0;
  right: 0px;
}
@media (max-width: 768px) {
  .inner-partner__image img {
    width: 564px;
    max-width: 564px;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cooperation {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

.cooperation-item {
  width: calc(25% - 45px);
}
@media (max-width: 1180px) {
  .cooperation-item {
    width: calc(25% - 22.5px);
  }
}
@media (max-width: 768px) {
  .cooperation-item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  .cooperation-item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media (max-width: 566px) {
  .cooperation-item {
    width: 100%;
  }
  .cooperation-item:nth-last-child(-n+2) {
    margin-bottom: 30px;
  }
  .cooperation-item:last-child {
    margin-bottom: 0;
  }
}
.cooperation-item__icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.cooperation-item__title {
  color: rgb(24, 24, 26);
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .cooperation-item__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.cooperation-item p {
  color: rgb(113, 113, 121);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 1180px) {
  .cooperation-item p {
    font-size: 14px;
  }
}

.buy-products-section .remained-question {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .buy-products-section .remained-question {
    margin-top: 80px;
  }
}

.buy-products {
  display: flex;
  justify-content: space-between;
}
.buy-products__image {
  width: 410px;
}
@media (max-width: 1380px) {
  .buy-products__image {
    width: 210px;
  }
}
@media (max-width: 992px) {
  .buy-products__image {
    display: none;
  }
}
.buy-products__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.buy-products__content {
  width: calc(100% - 440px);
}
@media (max-width: 1380px) {
  .buy-products__content {
    width: calc(100% - 240px);
  }
}
@media (max-width: 992px) {
  .buy-products__content {
    width: 100%;
  }
}
.buy-products__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.buy-products__col {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .buy-products__col {
    width: 100%;
  }
}
.buy-products__col .step {
  min-height: 217px;
}
@media (max-width: 768px) {
  .buy-products__col .step {
    min-height: auto;
  }
}

.step {
  margin-bottom: 30px;
  border-radius: 30px;
  padding: 30px;
  background: rgb(255, 255, 255);
}
.step--last {
  min-height: 287px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .step--last {
    min-height: auto;
  }
}
.step__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 1180px) {
  .step__head {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .step__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.step__number {
  color: rgb(210, 74, 88);
  font-family: "Yanone Kaffeesatz", sans-serif;
  white-space: nowrap;
  margin-right: 10px;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}
.step__title {
  color: rgb(24, 24, 26);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}
.step p {
  color: rgb(113, 113, 121);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}

.remained-question {
  position: relative;
  border-radius: 30px;
  padding: 60px;
  background: rgb(24, 24, 26) url(../images/black-bg.svg) repeat;
}
@media (max-width: 768px) {
  .remained-question {
    padding: 60px 30px 310px 30px;
    text-align: center;
  }
}
.remained-question__title {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.remained-question p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 30px;
  width: calc(100% - 520px);
}
@media (max-width: 1180px) {
  .remained-question p {
    width: calc(100% - 310px);
  }
}
@media (max-width: 768px) {
  .remained-question p {
    width: 100%;
  }
}
.remained-question__img {
  position: absolute;
  bottom: 0;
  right: 80px;
}
@media (max-width: 1180px) {
  .remained-question__img {
    right: 40px;
  }
}
@media (max-width: 768px) {
  .remained-question__img {
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.remained-question__img img {
  display: block;
}
@media (max-width: 1180px) {
  .remained-question__img img {
    width: 293px;
  }
}

.trade-automation-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .trade-automation-steps {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.trade-automation-steps__content {
  width: calc(100% - 550px);
  border-radius: 30px;
  padding: 30px;
  background: rgb(245, 245, 245);
}
@media (max-width: 1180px) {
  .trade-automation-steps__content {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .trade-automation-steps__content {
    width: 100%;
    padding: 0;
    background: transparent;
  }
}
@media (max-width: 768px) {
  .trade-automation-steps__content .step {
    background: rgb(245, 245, 245);
  }
}
.trade-automation-steps__content .step:last-child {
  margin-bottom: 0;
}
.trade-automation-steps__image {
  position: relative;
  width: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: rgb(24, 24, 26) url(../images/black-bg.svg) repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 1180px) {
  .trade-automation-steps__image {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .trade-automation-steps__image {
    width: 100%;
    height: 862px;
    order: -2;
    margin-bottom: 30px;
  }
}
.trade-automation-steps__dog {
  width: 100%;
  display: block;
}
.trade-automation-steps__placemarket {
  width: 300px;
  order: -2;
}
@media (max-width: 1180px) {
  .trade-automation-steps__placemarket {
    width: 290px;
  }
}

.question-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .question-content {
    flex-direction: column;
  }
}
.question-content__aside {
  position: relative;
  width: 485px;
}
@media (max-width: 992px) {
  .question-content__aside {
    width: 100%;
  }
}
.question-content__img {
  position: absolute;
  bottom: -100px;
}
@media (max-width: 992px) {
  .question-content__img {
    display: none;
  }
}
.question-content__img img {
  display: block;
}

.question {
  width: calc(100% - 545px);
}
@media (max-width: 992px) {
  .question {
    width: 100%;
  }
}
.question .accordion {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  overflow: hidden;
}
.question .accordion li {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  background: rgb(255, 255, 255);
  border-radius: 30px;
}
.question .accordion .opener {
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  min-height: 100px;
  display: inline-flex;
  align-items: center;
  padding: 25px 80px 25px 30px;
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .question .accordion .opener {
    font-size: 16px;
    padding-right: 60px;
  }
}
.question .accordion .opener:hover {
  color: rgb(210, 74, 88);
}
.question .accordion .opener:hover:before, .question .accordion .opener:hover:after {
  background: rgb(210, 74, 88);
}
.question .accordion .opener:before {
  content: "";
  width: 2px;
  height: 20px;
  position: absolute;
  right: 39px;
  top: calc(50% - 10px);
  background: rgb(24, 24, 26);
  border-radius: 2px;
  transition: 0.5s;
}
.question .accordion .opener:after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  right: 30px;
  top: calc(50% - 1px);
  background: rgb(24, 24, 26);
  border-radius: 2px;
  transition: 0.5s;
}
.question .accordion .active .opener {
  color: rgb(210, 74, 88);
}
.question .accordion .active .opener:before, .question .accordion .active .opener:after {
  transform: rotate(45deg);
  background: rgb(210, 74, 88);
}
.question .submenu {
  overflow: hidden;
  padding: 0 30px 30px 30px;
  list-style: none;
  display: none;
}
.question .submenu li {
  margin: 0;
  float: none;
  width: auto;
  margin-bottom: 0;
  background: transparent;
}
.question .submenu li p {
  color: rgb(113, 113, 121);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 992px) {
  .question .submenu li p {
    font-size: 16px;
  }
}
.question .submenu li a:hover {
  text-decoration: none;
}

.inner-stm {
  position: relative;
  padding: 80px 0 100px 0;
  background: rgb(220, 142, 74);
  overflow: hidden;
}
@media (max-width: 768px) {
  .inner-stm {
    padding: 60px 0 280px 0;
  }
}
.inner-stm .h1 {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .inner-stm .h1 {
    font-size: 40px;
  }
}
.inner-stm p {
  max-width: 530px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .inner-stm p {
    font-size: 14px;
  }
}
.inner-stm__btn {
  display: block;
  padding-top: 30px;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .inner-stm__btn {
    padding-top: 0;
  }
}
.inner-stm__image {
  position: absolute;
  bottom: 0;
  right: 0px;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .inner-stm__image {
    width: auto;
    height: 305px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    right: 0;
  }
}
.inner-stm__image:before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: -25px;
  left: 0;
  background: linear-gradient(to bottom, rgb(220, 142, 74), rgba(220, 142, 74, 0));
  display: none;
  z-index: 3;
}
@media (max-width: 768px) {
  .inner-stm__image:before {
    display: block;
  }
}
.inner-stm__image img {
  max-width: 100%;
  position: relative;
  display: block;
  transition: 0.5s;
  bottom: 0;
  right: 0px;
  min-height: 305px;
}
@media (max-width: 1280px) {
  .inner-stm__image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 20%;
       object-position: 20%;
  }
}
@media (max-width: 768px) {
  .inner-stm__image img {
    -o-object-position: 100%;
       object-position: 100%;
  }
}

.documents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 420px) {
  .documents {
    justify-content: space-between;
  }
}

.document-item {
  width: 190px;
  margin: 0 40px 30px 40px;
}
@media (max-width: 768px) {
  .document-item {
    margin: 0 10px 20px 10px;
    width: 160px;
  }
}
@media (max-width: 420px) {
  .document-item {
    margin: 0 0 20px 0;
  }
}
.document-item__img {
  height: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .document-item__img {
    height: 228px;
  }
}
.document-item__img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.document-item__title {
  display: block;
  color: rgb(24, 24, 26);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}

.about-company__text {
  border-radius: 30px;
  background: rgb(245, 245, 245);
  padding: 40px 60px;
  max-width: 850px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-company__text {
    padding: 40px 30px;
  }
}
.about-company__text p {
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
.about-company__text p:last-child {
  margin-bottom: 0;
}

.contacts {
  display: flex;
  margin-bottom: 100px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .contacts {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.contacts__map {
  width: 100%;
  max-width: 630px;
  height: 420px;
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 1180px) {
  .contacts__map {
    max-width: 430px;
  }
}
@media (max-width: 992px) {
  .contacts__map {
    width: 100%;
    max-width: 100%;
  }
}
.contacts__map #map {
  width: 100%;
  height: 100%;
}

.contact {
  margin-bottom: 40px;
  position: relative;
  padding-left: 70px;
}
.contact__icon {
  position: absolute;
  left: 0;
  top: 0;
}
.contact__icon img {
  display: block;
  width: 50px;
  height: 50px;
}
.contact__title {
  display: block;
  color: rgb(113, 113, 121);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 15px;
}
@media (max-width: 1180px) {
  .contact__title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.contact__body {
  color: rgb(24, 24, 26);
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 1180px) {
  .contact__body {
    font-size: 18px;
  }
}
.contact__body a {
  color: rgb(24, 24, 26);
  transition: 0.5s;
}
.contact__body a:hover {
  color: rgb(210, 74, 88);
}

.contacts-bottom {
  margin-bottom: 100px;
  padding: 60px;
  border-radius: 30px;
  background: rgb(245, 245, 245);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .contacts-bottom {
    padding: 30px;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .contacts-bottom__col {
    margin-bottom: 30px;
  }
}
.contacts-bottom__col:last-child {
  width: 570px;
}
@media (max-width: 1180px) {
  .contacts-bottom__col:last-child {
    max-width: 430px;
  }
}
@media (max-width: 992px) {
  .contacts-bottom__col:last-child {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
.contacts-bottom__item {
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
.contacts-bottom__item:last-child {
  margin-bottom: 0;
}
.contacts-bottom__title {
  display: block;
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}

.product-card-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .product-card-main {
    flex-direction: column;
  }
}
.product-card-main__left {
  width: 740px;
}
@media (max-width: 1280px) {
  .product-card-main__left {
    width: 540px;
  }
}
@media (max-width: 992px) {
  .product-card-main__left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.product-card-main__info {
  width: calc(100% - 770px);
}
@media (max-width: 1280px) {
  .product-card-main__info {
    width: calc(100% - 570px);
  }
}
@media (max-width: 992px) {
  .product-card-main__info {
    width: 100%;
  }
}

.product-info-block {
  width: 100%;
  border-radius: 30px;
  padding: 30px;
  background: rgb(245, 245, 245);
}

.wholesale {
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  background: rgb(245, 245, 245);
  margin-top: 30px;
}
@media (max-width: 992px) {
  .wholesale {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .wholesale--desktop {
    display: none;
  }
}
.wholesale--mobile {
  display: none;
}
@media (max-width: 992px) {
  .wholesale--mobile {
    display: flex;
  }
}
.wholesale .btn {
  margin-right: 20px;
}
.wholesale p {
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  max-width: 400px;
}
@media (max-width: 992px) {
  .wholesale p {
    order: -2;
    margin-bottom: 20px;
  }
}

.packaging {
  display: flex;
  margin-bottom: 20px;
}

.packaging-title {
  display: block;
  color: rgb(161, 161, 169);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}

.packaging-item {
  cursor: pointer;
  margin-right: 10px;
  position: relative;
}
.packaging-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid rgb(24, 24, 26);
  border-radius: 12px;
  height: 60px;
  padding: 0 18px;
  min-width: 80px;
  color: rgb(24, 24, 26);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}

.packaging-radio {
  display: none;
}

.packaging-radio:checked + span {
  background-color: rgb(24, 24, 26);
  color: white;
}

.char {
  margin-bottom: 10px;
}
.char li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgb(228, 228, 230);
  text-align: right;
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  word-break: break-all;
}
.char li:last-child {
  border-bottom: 0;
}
.char li span {
  color: rgb(113, 113, 121);
  text-align: left;
  display: inline-block;
  margin-right: 30px;
  word-break: normal;
}

.char-anchor {
  display: block;
  margin-bottom: 40px;
}
.char-anchor a {
  color: rgb(210, 74, 88);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  border-bottom: 1px dotted rgb(210, 74, 88);
  transition: 0.5s;
}
.char-anchor a:hover {
  border-color: transparent;
}

.buy-retail {
  background: rgb(24, 24, 26) url(../images/black-bg.svg) repeat;
  border-radius: 30px;
  padding: 25px 30px;
}
.buy-retail p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}

.additional-paragraphs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.product-card-description {
  padding-bottom: 60px;
}
.product-card-description__content {
  max-width: 740px;
}
.product-card-description__content p {
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
.product-card-description__btn a {
  color: rgb(210, 74, 88);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  border-bottom: 1px dotted rgb(210, 74, 88);
  transition: 0.5s;
  cursor: pointer;
}
.product-card-description__btn a:hover {
  border-color: transparent;
}
.anchor {
  position: relative;
  top: -100px;
}

.product-card-char {
  position: relative;
}
.product-card-char__content {
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
  padding: 30px 60px;
  background: rgb(245, 245, 245);
}
@media (max-width: 1280px) {
  .product-card-char__content {
    padding: 30px;
  }
}
@media (max-width: 1180px) {
  .product-card-char__content {
    flex-direction: column;
  }
}
.product-card-char__col {
  width: calc(50% - 60px);
}
@media (max-width: 1280px) {
  .product-card-char__col {
    width: calc(50% - 15px);
  }
}
@media (max-width: 1180px) {
  .product-card-char__col {
    width: 100%;
  }
}
.product-card-char__col::last-child .char {
  border-top: 1px solid rgb(228, 228, 230);
}

.product-card {
  margin-bottom: 100px;
}

.modal-content {
  width: 100%;
  padding: 60px;
  border-radius: 30px;
}

.modal {
  width: 100%;
  max-width: 630px;
  padding: 60px;
  border-radius: 30px;
}
.modal--gallery {
  max-width: 1290px;
  padding: 30px 60px 60px 60px;
}
@media (max-width: 992px) {
  .modal--gallery {
    padding: 0 10px 10px 10px !important;
    border-radius: 10px;
  }
}
@media (max-width: 566px) {
  .modal {
    padding: 30px;
    border-radius: 10px;
  }
}

.fancybox-close-small {
  width: 60px;
  height: 60px;
  right: 20px !important;
  top: 20px !important;
  position: absolute;
  border-radius: 50%;
  background: rgb(245, 245, 245);
  border: 0 !important;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .fancybox-close-small {
    width: 30px;
    height: 30px;
  }
}
.fancybox-close-small:hover {
  background: rgb(24, 24, 26);
}
.fancybox-close-small:hover svg {
  color: #fff;
}
.fancybox-close-small svg {
  color: rgb(113, 113, 121);
  transition: 0.5s;
}
@media (max-width: 768px) {
  .fancybox-close-small svg {
    transform: scale(2);
  }
}

.hidden {
  display: none;
}

.captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.form-checkbox {
  position: relative;
  margin-bottom: 30px;
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + label:after {
  border-color: rgb(210, 74, 88);
  background: rgb(210, 74, 88);
}
.form-checkbox input:checked + label:before {
  opacity: 1;
}
.form-checkbox label {
  display: block;
  padding-left: 50px;
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 566px) {
  .form-checkbox label {
    font-size: 14px;
  }
}
.form-checkbox label:after {
  content: "";
  width: 30px;
  height: 30px;
  border: 2px solid rgb(161, 161, 169);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 7px;
  transition: 0.5s;
}
.form-checkbox label:before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/checkbox.svg) 50% 50% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 9;
}

.form-btn {
  display: flex;
  justify-content: center;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-group.error input {
  border-color: rgb(210, 74, 88);
}
.form-group.error .error-text {
  display: block;
}
.form-group .error-text {
  display: none;
  color: rgb(210, 74, 88);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  padding-top: 5px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  color: rgb(113, 113, 121);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
.form-group input {
  border: 1px solid rgb(212, 211, 216);
  border-radius: 12px;
  background: rgb(255, 255, 255);
  padding: 0 20px;
  width: 100%;
  height: 60px;
  font-family: "Onest", sans-serif;
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}
.form-group input:focus {
  border-color: rgb(24, 24, 26);
}
.form-group input:user-valid {
  border-color: rgb(108, 155, 56);
}
.form-group input:user-invalid {
  border-color: rgb(210, 74, 88);
}
.form-group input::-moz-placeholder {
  color: rgb(161, 161, 169);
}
.form-group input::placeholder {
  color: rgb(161, 161, 169);
}
.form-group textarea {
  border: 1px solid rgb(212, 211, 216);
  border-radius: 12px;
  background: rgb(255, 255, 255);
  padding: 15px 20px;
  width: 100%;
  height: 100px;
  font-family: "Onest", sans-serif;
  color: rgb(24, 24, 26);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  min-height: 100px;
  resize: vertical;
}
.form-group textarea:focus {
  border-color: rgb(24, 24, 26);
}
.form-group textarea:user-valid {
  border-color: rgb(108, 155, 56);
}
.form-group textarea:user-invalid {
  border-color: rgb(210, 74, 88);
}
.form-group textarea::-moz-placeholder {
  color: rgb(161, 161, 169);
}
.form-group textarea::placeholder {
  color: rgb(161, 161, 169);
}

.form-note {
  display: block;
  margin: -20px 0 30px 0;
  color: rgb(161, 161, 169);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 566px) {
  .form-note {
    font-size: 14px;
  }
}

.gallery {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.gallery .swiper-container {
  overflow: hidden;
}

.gallery-item {
  padding-top: 30px;
}
@media (max-width: 992px) {
  .gallery-item {
    padding-top: 10px;
  }
}
.gallery-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .gallery-item__image img {
    border-radius: 10px;
  }
}
.gallery-item__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding: 20px 80px 0 80px;
}
@media (max-width: 992px) {
  .gallery-item__description {
    padding: 10px 40px 0 40px;
  }
}
.gallery-item__description span {
  display: block;
  color: rgb(0, 0, 0);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.gallery-item__description p {
  color: rgb(24, 24, 26);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}/*# sourceMappingURL=styles.css.map */