@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
body.site-overlay {
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  body.show-menu {
    background-color: rgb(255, 243, 246);
    overflow: hidden;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: 0;
  font-family: inherit;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

h1 {
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
}
@media screen and (min-width: 769px) {
  h1 {
    font-size: 40px;
    line-height: 49px;
  }
}

h2 {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
  text-transform: uppercase;
  opacity: 0;
}
h2.in-viewport {
  -webkit-animation: fade-in-fwd 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-fwd 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@media screen and (min-width: 980px) {
  h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 39px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}
@media screen and (min-width: 980px) {
  p {
    font-size: 20px;
    line-height: 24px;
  }
}

ul {
  list-style: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
body.site-overlay .overlay {
  opacity: 1;
  visibility: visible;
}

.hovered-button, .introduce-section .content-container a, .buttons-container a {
  transition: box-shadow 300ms ease-in;
}
.hovered-button:hover, .introduce-section .content-container a:hover, .buttons-container a:hover {
  box-shadow: 4px 4px 11px rgba(130, 47, 69, 0.15);
}

.buttons-container {
  margin: 0 auto;
  max-width: 1296px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 32px;
}
.buttons-container a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 52px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .buttons-container a {
    border-radius: 36px;
  }
}
.buttons-container a.ozon-button {
  background-image: url(../images/ozon.svg);
}
.buttons-container a.yandex-button {
  background-image: url(../images/yandex.svg);
}
@media screen and (max-width: 600px) {
  .buttons-container {
    justify-content: space-between;
  }
}

.hovered-text, .cooperation-section .content-container .content p a, .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item button {
  color: rgb(242, 187, 201);
  transition: all 300ms ease-out;
}
.hovered-text:hover, .cooperation-section .content-container .content p a:hover, .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item button:hover {
  color: rgb(246, 33, 103);
  text-shadow: 0px 2px 4px rgba(198, 45, 85, 0.5);
}

.logo-container {
  width: 120px;
  max-width: 120px;
}
.logo-container img {
  width: 100%;
}

.common-margins, .about-section, .order-section, .cooperation-section, .value-section, .catalog-section, .introduce-section {
  margin-bottom: 80px;
  padding: 0 8px;
}
@media screen and (min-width: 980px) {
  .common-margins, .about-section, .order-section, .cooperation-section, .value-section, .catalog-section, .introduce-section {
    margin: 0 auto 160px;
  }
}

.content-width, .footer-container .content-container, .about-section .content-container, .order-section .content-container, .value-section .content-container, .catalog-section .content-container {
  margin: 0 auto;
  max-width: 1296px;
}

.animated-block {
  opacity: 0;
}
.animated-block.in-viewport {
  -webkit-animation: fade-in-fwd 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-fwd 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@media screen and (max-height: 400px) {
  .animated-block {
    opacity: 1;
  }
  .animated-block.in-viewport {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}

.introduce-section {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  opacity: 0;
}
body:not(.show-menu) .introduce-section.in-viewport {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@media screen and (max-height: 400px) {
  body:not(.show-menu) .introduce-section.in-viewport {
    opacity: 1;
  }
  body:not(.show-menu) .introduce-section.in-viewport.in-viewport {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
body.show-menu .introduce-section {
  opacity: 1;
  overflow: hidden;
}
@media screen and (max-height: 400px) {
  .introduce-section {
    opacity: 1;
  }
  .introduce-section.in-viewport {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (min-width: 769px) {
  .introduce-section.in-viewport {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
            animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  }
}
@media screen and (min-width: 769px) and (min-height: 600px) {
  .introduce-section {
    height: 100vh;
    overflow: hidden;
  }
}
.introduce-section .introduce-header {
  position: relative;
  margin: 0 auto;
  padding: 8px 0;
  max-width: 1296px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
@media screen and (max-width: 599px) {
  body.show-menu .introduce-section .introduce-header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    transition: all 300ms;
    background-color: rgb(255, 243, 246);
  }
}
@media screen and (min-width: 769px) {
  .introduce-section .introduce-header {
    padding: 16px 0 32px;
  }
}
.introduce-section .introduce-header .menu > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 599px) {
  body.show-menu .introduce-section .introduce-header .menu > ul {
    margin: auto;
    gap: 64px 0;
    opacity: 1;
    visibility: visible;
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 600px) {
  .introduce-section .introduce-header .menu > ul {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 980px) {
  .introduce-section .introduce-header .menu > ul {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 769px) {
  .introduce-section .introduce-header .menu {
    margin-right: 120px;
    flex-grow: 1;
    justify-self: center;
  }
}
.introduce-section .introduce-header .navigation-button {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 600px) {
  .introduce-section .introduce-header .navigation-button {
    display: none;
  }
}
.introduce-section .introduce-header .navigation-button img {
  width: 100%;
  height: 100%;
}
.introduce-section .introduce-header .navigation-button img:last-child {
  display: none;
}
body.show-menu .introduce-section .introduce-header .navigation-button img:first-child {
  display: none;
}
body.show-menu .introduce-section .introduce-header .navigation-button img:last-child {
  display: inline;
}
@media screen and (min-width: 1200px) {
  .introduce-section .content-container {
    max-width: 45vw;
  }
}
@media screen and (min-width: 769px) {
  .introduce-section .content-container {
    order: 3;
    width: 648px;
    max-width: 60vw;
  }
}
@media screen and (min-width: 769px) and (min-height: 700px) {
  .introduce-section .content-container {
    margin-top: calc(50vh - 324px);
  }
}
@media screen and (min-width: 980px) {
  .introduce-section .content-container {
    order: 3;
    width: 648px;
    max-width: 60vw;
  }
}
@media screen and (min-width: 980px) and (min-height: 700px) {
  .introduce-section .content-container {
    margin-top: calc(50vh - 296px);
  }
}
.introduce-section .content-container h1 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .introduce-section .content-container h1 {
    text-align: left;
  }
}
.introduce-section .content-container p {
  margin-bottom: 40px;
}
.introduce-section .content-container a {
  display: block;
  margin: 0 auto;
  padding: 20px 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: rgb(242, 187, 201);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .introduce-section .content-container a {
    margin: 0;
    padding: 24px 32px;
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 980px) {
  .introduce-section .content-container a {
    margin: 0;
    padding: 24px 32px;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
  }
}
@media screen and (min-width: 1296px) {
  .introduce-section .content-container {
    margin-left: calc((100vw - 1296px) / 2);
  }
}
.introduce-section .slider-wrapper {
  margin: 0 auto 40px;
  padding: 0 8px;
  position: relative;
  max-width: 380px;
  width: 100%;
  height: 350px;
}
.introduce-section .slider-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -8px;
  left: 0;
  border: 1px solid rgb(235, 122, 152);
  border-radius: 50% 50% 8px 8px;
}
@media screen and (min-width: 769px) {
  .introduce-section .slider-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    max-width: none;
    width: 33vw;
    height: 100%;
    order: 3;
  }
  .introduce-section .slider-wrapper::before {
    top: -22px;
    left: -22px;
    width: 100%;
    border-radius: 500px 0px 0px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .introduce-section .slider-wrapper {
    width: 45vw;
  }
}
.introduce-section .slider-wrapper .slider-container {
  position: relative;
  width: 100%;
  height: 355px;
  border-radius: 50% 50% 8px 8px;
  z-index: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .introduce-section .slider-wrapper .slider-container {
    height: 100%;
    border-radius: 500px 0px 0px 24px;
  }
}
.introduce-section .slider-wrapper .slider-container .owl-theme {
  height: 100%;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-stage-outer {
  height: 100%;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-stage-outer .owl-stage {
  height: 100%;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-stage-outer .owl-stage > div {
  height: 100%;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .slider-item {
  height: 100%;
  pointer-events: none;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-dots .owl-dot span {
  background-color: rgba(255, 255, 255, 0.33);
}
.introduce-section .slider-wrapper .slider-container .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(255, 255, 255, 0.69);
}

.catalog-section .content-container .catalog-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container {
    gap: 32px;
  }
}
@media screen and (min-width: 769px) {
  .catalog-section .content-container .catalog-container {
    gap: 48px;
  }
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper {
  display: flex;
  align-items: flex-end;
  flex: 1 0 calc(50% - 48px);
  min-width: 160px;
  height: 280px;
  opacity: 0;
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper.in-viewport {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media screen and (max-height: 480px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper {
    opacity: 1;
  }
  .catalog-section .content-container .catalog-container .catalog-item-wrapper.in-viewport {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper {
    height: 384px;
    flex: 1 0 calc(50% - 96px);
  }
}
@media screen and (min-width: 769px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper {
    height: 400px;
    flex: 1 1 264px;
  }
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item {
  position: relative;
  padding: 88px 8px 8px;
  width: 100%;
  background: rgb(255, 243, 246);
  border: 1px solid rgba(242, 187, 201, 0.5);
  border-radius: 24px;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item {
    padding: 120px 12px 12px;
  }
}
@media screen and (min-width: 769px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item {
    padding: 140px 24px 24px;
  }
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image {
  position: absolute;
  left: 50%;
  top: -80px;
  width: 144px;
  height: 144px;
  transform: translateX(-50%);
  border-radius: 50%;
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image.first-item-image {
  background-color: rgb(117, 186, 190);
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image.second-item-image {
  background-color: rgb(113, 183, 215);
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image.third-item-image {
  background-color: rgb(255, 215, 221);
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image.fourth-item-image {
  background-color: rgb(100, 153, 160);
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image {
    top: -96px;
    width: 176px;
    height: 176px;
  }
}
@media screen and (min-width: 769px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item .item-image {
    top: -112px;
    width: 224px;
    height: 224px;
  }
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item img {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item p {
  margin-bottom: 16px;
  height: 38px;
  font-size: 14px;
  line-height: 19px;
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 980px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item p {
    margin-bottom: 32px;
    height: 48px;
    font-size: 20px;
    line-height: 24px;
  }
}
.catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: rgb(155, 155, 155);
}
@media screen and (min-width: 481px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item button {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 980px) {
  .catalog-section .content-container .catalog-container .catalog-item-wrapper .catalog-item button {
    font-size: 20px;
    line-height: 24px;
  }
}

.value-section .content-container .value-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 16px;
}
@media screen and (min-width: 980px) {
  .value-section .content-container .value-container {
    gap: 32px;
  }
}
.value-section .content-container .value-container .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-align: center;
  opacity: 0;
}
.value-section .content-container .value-container .value-item.in-viewport {
  opacity: 1;
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media screen and (max-height: 480px) {
  .value-section .content-container .value-container .value-item {
    opacity: 1;
  }
  .value-section .content-container .value-container .value-item.in-viewport {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (min-width: 980px) {
  .value-section .content-container .value-container .value-item {
    text-align: left;
  }
}
.value-section .content-container .value-container .value-item .item-icon-container {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: rgb(242, 187, 201);
  border-radius: 50%;
}
@media screen and (min-width: 980px) {
  .value-section .content-container .value-container .value-item .item-icon-container {
    margin-bottom: 24px;
    width: 160px;
    height: 160px;
  }
}
.value-section .content-container .value-container .value-item .item-icon-container img {
  width: 60%;
  height: 60%;
}
.value-section .content-container .value-container .value-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}
@media screen and (min-width: 980px) {
  .value-section .content-container .value-container .value-item p {
    font-size: 16px;
    line-height: 20px;
  }
}

.cooperation-section {
  padding-right: 0;
  overflow: hidden;
}
@media screen and (min-width: 1296px) {
  .cooperation-section .content-container {
    margin-left: calc((100vw - 1296px) / 2);
  }
}
.cooperation-section .content-container .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  .cooperation-section .content-container .content {
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.cooperation-section .content-container .content p a {
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .cooperation-section .content-container .content p {
    flex: 3 1 480px;
  }
}
.cooperation-section .content-container .content .image-container-wrapper {
  position: relative;
  margin-bottom: 16px;
  margin-left: auto;
}
.cooperation-section .content-container .content .image-container-wrapper::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 12px);
  height: 316px;
  border-radius: 999em 40px 40px 999em;
  border: 1px solid rgb(235, 122, 152);
}
@media screen and (min-width: 768px) {
  .cooperation-section .content-container .content .image-container-wrapper {
    max-width: 75%;
  }
}
@media screen and (min-width: 980px) and (min-height: 600px) {
  .cooperation-section .content-container .content .image-container-wrapper {
    flex: 1 1 640px;
  }
  .cooperation-section .content-container .content .image-container-wrapper::before {
    top: -12px;
    left: -12px;
    height: 470px;
  }
}
.cooperation-section .content-container .content .image-container-wrapper .image-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 999em 40px 40px 999em;
  overflow: hidden;
}
@media screen and (min-width: 980px) and (min-height: 600px) {
  .cooperation-section .content-container .content .image-container-wrapper .image-container {
    height: 450px;
  }
}
.cooperation-section .content-container .content .image-container-wrapper .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.order-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgb(255, 243, 246);
  background-image: url(/images/wave.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .order-section .content-container .buttons-container {
    justify-content: flex-start;
  }
  .order-section .content-container .buttons-container a {
    border-radius: 19px;
    width: 180px;
    height: 62px;
  }
}
@media screen and (min-width: 980px) {
  .order-section .content-container .buttons-container {
    justify-content: flex-start;
  }
  .order-section .content-container .buttons-container a {
    border-radius: 19px;
    width: 240px;
    height: 82px;
  }
}
.order-section .image-container {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 30px;
  height: 100%;
}
.order-section .image-container img {
  position: absolute;
  right: 0;
  height: 120%;
}
.order-section .image-container img:nth-child(1) {
  right: 50px;
}
@media screen and (min-width: 900px) {
  .order-section .image-container {
    display: inline;
  }
}

.about-section .content-container .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.about-section .content-container .content > p {
  flex-grow: 1;
  flex-basis: 400px;
}
.about-section .content-container .content > div {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 600px;
}
.about-section .content-container .content .video-container {
  max-width: 600px;
  aspect-ratio: 16/9;
}
.about-section .content-container .content .video-container video {
  width: 100%;
  height: 100%;
}

.footer-container {
  padding: 40px 8px;
  background-color: rgb(255, 243, 246);
}
.footer-container .content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px 24px;
}
@media screen and (min-width: 769px) {
  .footer-container .content-container {
    flex-flow: row wrap;
  }
  .footer-container .content-container > div {
    display: flex;
    justify-content: center;
    flex: 1 1 150px;
  }
}
.footer-container .content-container .contact {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width: 769px) {
  .footer-container .content-container .contact {
    order: 1;
  }
}
.footer-container .content-container .logo-container {
  width: 150px;
  max-width: 150px;
}
@media screen and (min-width: 769px) {
  .footer-container .content-container .logo-container {
    order: 2;
  }
}
.footer-container .content-container .qr-container {
  justify-content: flex-end;
}
.footer-container .content-container .qr-container img {
  max-width: 160px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .footer-container .content-container .qr-container {
    order: 3;
  }
}

.product-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 860px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 16px;
  transform: translate(-50%, -40%);
  transition: opacity 500ms ease-out, visibility 0ms ease-in 500ms, transform 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 6;
}
body.site-overlay .product-popup.active-popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease-out, visibility 0ms ease-in 0ms, transform 500ms ease-out;
}
@media screen and (max-width: 767px) {
  .product-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translate(0, 0);
  }
  body.site-overlay .product-popup.active-popup {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
}
.product-popup .content {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-popup .content {
    flex-direction: column;
  }
}
.product-popup .content .cross-button {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .product-popup .content .cross-button {
    width: 20px;
    height: 20px;
  }
}
.product-popup .content .cross-button button {
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-out;
}
.product-popup .content .cross-button button img {
  width: 100%;
  height: 100%;
}
.product-popup .content .cross-button button:hover {
  transform: rotate(360deg);
}
.product-popup .content .image-container {
  position: relative;
  flex: 0 0 50%;
  overflow: hidden;
}
.product-popup .content .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30%;
     object-position: 30%;
}
.product-popup .content .text-container {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px 0;
  height: 100%;
  flex: 0 0 50%;
  overflow-y: auto;
}
.product-popup .content .text-container .caption h3 {
  text-align: center;
}
.product-popup .content .text-container ul {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.product-popup .content .text-container ul li:nth-child(odd) {
  margin-right: 96px;
}
.product-popup .content .text-container ul li:nth-child(even) {
  margin-left: 96px;
}
.product-popup .content .text-container ul li p {
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
}
.product-popup .content .text-container .buttons-container a {
  border-radius: 16px;
}

@-webkit-keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=index.css.map */