body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
}

h1,
.looks_like_h1 {
  font-size: 1.25em;
  font-weight: 600;
}
@media (min-width: 768px) {
  h1,
  .looks_like_h1 {
    font-size: 1.75em;
  }
}

h2,
.looks_like_h2 {
  font-size: 1.125em;
  font-weight: 600;
}
@media (min-width: 768px) {
  h2,
  .looks_like_h2 {
    font-size: 1.5em;
  }
}

h3,
.looks_like_h3 {
  font-size: 1em;
  font-weight: 600;
}
@media (min-width: 768px) {
  h3,
  .looks_like_h3 {
    font-size: 1.125em;
  }
}

p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 1em 0;
  text-align: justify;
  line-height: 1.5em;
}

span {
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #16272e;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol li,
ul li {
  padding: 0;
  margin: 0;
}

button {
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  border-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  background: none;
}

input,
textarea {
  font-family: Arial, Helvetica, sans-serif;
  padding: 15px 18px;
  font-size: 1em;
  box-sizing: border-box;
  border: none;
  border-radius: 0.5em;
  outline: none;
  resize: none;
}
input::placeholder,
textarea::placeholder {
  color: #000000;
}

.main-video__wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-video__wrapper {
    height: 600px;
  }
}
@media (min-width: 1280px) {
  .main-video__wrapper {
    height: calc(100vh - 90px);
  }
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-video__socials {
  position: absolute;
  top: 70px;
  right: 170px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}
@media (min-width: 610px) {
  .main-video__socials {
    justify-content: unset;
  }
}
@media (min-width: 1560px) {
  .main-video__socials {
    display: flex;
  }
}
.main-video__socials .main-video__number {
  font-size: 42px;
  color: #FFF;
  margin-right: 20px;
}

.main-video__title {
  position: absolute;
  top: 50%;
  z-index: 10;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: #FFF;
}
@media (min-width: 610px) {
  .main-video__title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .main-video__title {
    padding: 0 10px;
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  .main-video__title {
    font-size: 36px;
  }
}
@media (min-width: 1560px) {
  .main-video__title {
    font-size: 42px;
  }
}

.main-catalog {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-catalog__button {
  margin: 0 auto;
  padding-top: 45px;
}

.main-catalog__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  column-gap: 5px;
  row-gap: 20px;
}
@media (min-width: 610px) {
  .main-catalog__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  }
}
@media (min-width: 768px) {
  .main-catalog__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  }
}
@media (min-width: 1100px) {
  .main-catalog__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(19%, 1fr));
  }
}
@media (min-width: 1360px) {
  .main-catalog__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
    row-gap: 30px;
  }
}
.main-catalog__wrapper .main-catalog__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.main-catalog__wrapper .catalog-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadcdd;
  border-radius: 4px;
  height: 200px;
}
.main-catalog__wrapper .catalog-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.main-catalog__wrapper .title {
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 768px) {
  .main-catalog__wrapper .title {
    font-size: 16px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-width: 360px;
  min-height: 100vh;
}

main, header {
  max-width: 1920px;
  width: 100%;
}

main, header, footer {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  padding-top: 90px;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.63em;
  box-sizing: border-box;
}

footer {
  position: relative;
  margin: auto auto 0;
}

section {
  padding: 0 15px;
}

.breadcrumbs {
  background-color: #eef3f9;
  padding: 11px;
  overflow-x: auto;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #626e84;
  font-size: 12px;
}
.breadcrumbs .container a {
  color: #626e84;
}
.breadcrumbs .container a, .breadcrumbs .container span, .breadcrumbs .container img {
  padding: 0 5px;
}

.text-white {
  color: #FFF;
}

.text-grey {
  color: #a2a2a2;
}

.text-red {
  color: #cc2127;
}

.primary-button {
  min-width: 200px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #16272e;
  color: #FFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 0 10px;
}
.primary-button:hover {
  text-decoration: underline;
  background-color: #112228;
}
@media (min-width: 768px) {
  .primary-button {
    width: 300px;
    font-size: 18px;
  }
}

.button-buy {
  background: #951c49;
  position: relative;
  border-radius: 4px;
  font-weight: 500;
  justify-content: space-between;
  padding: 0 20px 0 30px;
  font-size: 16px;
  height: 52px;
  width: 280px;
  gap: 2px;
}
.button-buy:hover {
  background: #86163f;
  text-decoration: underline;
}

.faq {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.faq .faq-background {
  display: none;
  max-width: 685px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.faq .faq-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1600px) {
  .faq .faq-background {
    display: block;
  }
}
.faq .faq-items {
  z-index: 10;
  padding: 50px 0;
}
.faq .faq-button {
  display: flex;
  justify-content: center;
}
.faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 1340px;
}
.faq .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq .faq-item {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border: 1px solid #dadcdd;
  border-radius: 4px;
  background-color: #FFF;
}
.faq .faq-item .faq-item__text {
  display: flex;
  align-items: center;
  gap: 25px;
}
.faq .faq-item .faq-item__question {
  font-weight: 600;
}
.faq .faq-item .faq-item__image {
  width: 30px;
  height: 30px;
}
.faq .faq-item .faq-item__image .answer {
  display: none;
}
.faq .faq-item .faq-item__answer {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
  margin-left: 55px;
}
.faq .faq-item.active .faq-item__answer {
  opacity: 1;
  margin-top: 25px;
}
.faq .faq-item.active .faq-item__image .question {
  display: none;
}
.faq .faq-item.active .faq-item__image .answer {
  display: block;
}

.text-container {
  margin-bottom: 100px;
  max-width: 1340px;
}

.main-catalog__slider {
  position: relative;
  margin-top: 45px;
}
.main-catalog__slider .slider-background {
  display: none;
  max-width: 685px;
  width: 100%;
}
.main-catalog__slider .slider-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1600px) {
  .main-catalog__slider .slider-background {
    display: block;
  }
}
.main-catalog__slider .incomes-swiper {
  background: #fff;
  border-top: 1px solid #dadcdd;
  border-left: 1px solid #dadcdd;
  border-bottom: 1px solid #dadcdd;
  margin-bottom: 45px;
}
@media (min-width: 1580px) {
  .main-catalog__slider .incomes-swiper {
    border-right: 1px solid #dadcdd;
  }
}
.main-catalog__slider .slider-wrapper {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .main-catalog__slider .slider-wrapper {
    position: absolute;
    z-index: 10;
    top: 50px;
  }
}
.main-catalog__slider .slider-wrapper .main-catalog__button {
  padding-top: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.main-catalog__slider .slider-wrapper .slider-swiper {
  background-color: #FFF;
  border: 1px solid #dadcdd;
}

.slider-swiper__item {
  display: block;
  border-left: 1px solid #dadcdd;
  margin-left: -1px;
}
.slider-swiper__item .slider-item__image {
  display: inline-block;
  height: 180px;
  border-bottom: 1px solid #dadcdd;
}
@media (min-width: 500px) {
  .slider-swiper__item .slider-item__image {
    height: 280px;
  }
}
.slider-swiper__item .slider-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-item__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 10px;
}

.slider-item__title {
  font-weight: 600;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 75px;
  overflow: hidden;
}

.slider-item__price {
  color: #951c49;
}
.slider-item__price span:first-child {
  font-size: 24px;
}

.slider-item__code {
  font-size: 13px;
  font-weight: 500;
  color: #16272e;
}
.slider-item__code span:first-child {
  color: #8a8a8a;
}

.slider-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-sorting {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 10px 0;
}

.select-selected {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  width: 290px;
  height: 41px;
  cursor: pointer;
}
.select-selected .select-arrow {
  position: absolute;
  top: 16px;
  right: 15px;
}
.select-selected.active .select-arrow {
  transform: rotate(180deg);
}

.catalog-sorting__title {
  font-weight: 600;
}

.select-items {
  position: absolute;
  top: 55px;
  width: 290px;
  border: 1px solid #c9c9c9;
  background: #fff;
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1;
}
.select-items .select-item {
  padding: 10px;
  cursor: pointer;
}
.select-items .select-item:hover {
  background-color: #0d0a0a;
  color: #ffffff;
}

.catalog-item__wrapper {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-item__title {
  font-weight: 600;
  font-size: 18px;
  padding: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 75px;
  overflow: hidden;
}
.catalog-item__title:hover {
  color: #951c49;
}

.catalog-item__code {
  text-align: end;
  font-size: 13px;
  font-weight: 600;
  color: #16272e;
}
.catalog-item__code .code-title {
  color: #b3bcc1;
}

.item-image__wrapper {
  position: relative;
}
.item-image__wrapper .add-to-fav {
  position: absolute;
  top: 15px;
  right: 15px;
}
.item-image__wrapper .add-to-fav .added {
  display: none;
}
.item-image__wrapper .add-to-fav.active .added {
  display: block;
}
.item-image__wrapper .add-to-fav.active .empty {
  display: none;
}

.catalog-item__actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.catalog-item__image {
  display: inline-block;
  height: 180px;
  border-bottom: 1px solid #dadcdd;
}
@media (min-width: 500px) {
  .catalog-item__image {
    height: 280px;
  }
}
.catalog-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-item__price {
  color: #951c49;
}
.catalog-item__price .price-value {
  font-size: 18px;
}
@media (min-width: 768px) {
  .catalog-item__price .price-value {
    font-size: 24px;
  }
}

.add-to-fav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #951c49;
  cursor: pointer;
}
@media (min-width: 1360px) {
  .add-to-fav {
    gap: 20px;
  }
}
.add-to-fav .added {
  display: none;
}
.add-to-fav.active .added {
  display: block;
}
.add-to-fav.active .empty {
  display: none;
}

.add-to-cart {
  display: inline-block;
  height: 32px;
}

.underlined-title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #95204c;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .underlined-title {
    font-size: 18px;
  }
}

.product-buy__quantities {
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-buy__amount {
  width: 70px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #FFF;
  border: 1px solid #000;
  box-sizing: border-box;
}

.product-buy__minus,
.product-buy__plus {
  width: 52px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 4px;
  cursor: pointer;
}

.product-buy__minus {
  background: #16272e;
}
.product-buy__minus:hover {
  background: #13242f;
}

.product-buy__plus {
  background: #951c49;
}
.product-buy__plus:hover {
  background: #86163f;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
}

.custom-checkbox__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-checkbox__wrapper input {
  display: none;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  min-width: 25px;
  height: 25px;
  border: 1px solid #000;
  position: relative;
  transition: all 0.2s ease;
}

.checkmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/svg/checkbox-mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #000;
}

.custom-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

.pay-icon__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 45px;
}
@media (min-width: 768px) {
  .pay-icon__wrapper {
    gap: 30px;
  }
}

.d-none {
  display: none;
}

.disabled:active {
  background-color: #ec1313 !important;
}

header {
  position: fixed;
  z-index: 100;
  background-color: #16272e;
  color: #FFF;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 6px;
}
@media (min-width: 425px) {
  header .container {
    padding: 4px 10px;
  }
}
@media (min-width: 768px) {
  header .container {
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  header .container {
    padding: 4px 35px 4px 10px;
  }
}
header .container .header-logo {
  width: 120px;
}
@media (min-width: 768px) {
  header .container .header-logo {
    width: 150px;
  }
}
@media (min-width: 1360px) {
  header .container .header-logo {
    width: 195px;
  }
}
header .container .header-item__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  gap: 10px;
}
@media (min-width: 1024px) {
  header .container .header-item__wrapper {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  header .container .header-item__wrapper {
    gap: 60px;
  }
}
header .container .header-catalog__nav {
  display: none;
  gap: 10px;
  justify-content: space-between;
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 100;
  background-color: #16272e;
  padding: 15px 20px 30px;
  width: 100%;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
header .container .header-catalog__nav.active {
  display: flex;
  flex-direction: column;
  max-height: 600px;
  overflow: auto;
}
@media (min-width: 500px) {
  header .container .header-catalog__nav.active {
    flex-direction: row;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  header .container .header-catalog__nav {
    top: 90px;
  }
}
@media (min-width: 1024px) {
  header .container .header-catalog__nav {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    min-width: 550px;
    top: 80px;
  }
}
header .container .header-catalog__nav .nav-items__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  header .container .header-catalog__nav .nav-items__column {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  header .container .header-catalog__nav .nav-items__column {
    margin-top: unset;
  }
}
header .container .header-catalog__nav .nav-items__column a {
  color: #fff;
  padding: 5px;
}
header .container .header-catalog__nav .nav-items__column a:hover {
  color: #ffc000;
}
header .container .header-catalog__nav .catalog-column .catalog-column__title {
  padding: 5px 5px 15px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}
@media (min-width: 768px) {
  header .container .header-catalog__nav .catalog-column .catalog-column__title {
    margin-top: 30px;
  }
}
header .container .header-catalog__nav .catalog-column .catalog-column__title .catalog-arrow.close {
  transform: rotate(180deg);
}
header .container .header-catalog__nav .catalog-column .catalog-column__links {
  max-height: 0;
  opacity: 0;
  transition: opacity 0.3ms ease, max-height 0.3ms ease;
}
header .container .header-catalog__nav .catalog-column .catalog-column__links.active {
  max-height: fit-content;
  opacity: 1;
}
@media (min-width: 500px) {
  header .container .header-catalog__nav .catalog-column .catalog-column__links.active {
    max-height: 400px;
    overflow: auto;
    scrollbar-color: #ffffff #f0f0f0;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  header .container .header-catalog__nav .catalog-column .catalog-column__links.active {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  header .container .header-catalog__nav .catalog-column .catalog-column__links {
    opacity: 1;
    max-height: 500px;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  header .container .header-catalog__nav .catalog-column {
    width: 100%;
  }
  header .container .header-catalog__nav .catalog-column .catalog-column__title {
    display: none;
  }
}
@media (min-width: 1024px) {
  header .container .header-catalog__nav .info-column {
    display: none !important;
  }
}
header .container .header-catalog {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  cursor: pointer;
}
header .container .header-catalog:hover {
  color: #ffc000;
}
header .container .header-catalog.active img {
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  header .container .header-catalog {
    display: flex;
  }
}
header .container .header-search__wrapper {
  position: absolute;
  top: 100px;
  right: 50%;
  transform: translate(50%, 0);
  z-index: 10;
}
@media (min-width: 1024px) {
  header .container .header-search__wrapper {
    position: static;
    top: unset;
    right: unset;
    transform: unset;
  }
}
header .container .header-search {
  position: relative;
  max-width: 415px;
  min-width: 350px;
  width: 100%;
}
@media (min-width: 1024px) {
  header .container .header-search {
    min-width: 240px;
  }
}
@media (min-width: 1280px) {
  header .container .header-search {
    min-width: 350px;
  }
}
@media (min-width: 1600px) {
  header .container .header-search {
    min-width: 400px;
  }
}
header .container .header-search input {
  width: 100%;
}
header .container .header-search img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  cursor: pointer;
}
header .container .header-navigation {
  max-width: 550px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (min-width: 1280px) {
  header .container .header-navigation {
    padding: 0 20px 0 10px;
  }
}
header .container .header-navigation .login-link {
  display: none;
}
@media (min-width: 768px) {
  header .container .header-navigation .login-link {
    display: inline-block;
  }
}
header .container .header-navigation .count-link {
  position: relative;
}
header .container .header-navigation .count-link .count-link__counter {
  position: absolute;
  top: -13px;
  right: -27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #951c49;
  color: #FFF;
}
header.not-home .header-catalog__nav {
  padding: 65px 20px 30px;
}
@media (min-width: 768px) {
  header.not-home .header-catalog__nav {
    padding: 30px 20px 30px;
  }
}
header.not-home .header-search__wrapper {
  top: 80px;
  z-index: 105;
  display: none;
}
@media (min-width: 1024px) {
  header.not-home .header-search__wrapper {
    display: flex;
  }
}
header.not-home .header-search__wrapper.active {
  display: flex;
  width: 100%;
  background: #16272e;
  justify-content: center;
  padding: 10px;
  top: 70px;
}
@media (min-width: 768px) {
  header.not-home .header-search__wrapper.active {
    top: 80px;
  }
}

.header-hamburger {
  width: 32px;
  height: 32px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .header-hamburger {
    display: none;
  }
}
.header-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}
.header-hamburger.active {
  justify-content: center;
  gap: 0;
}
.header-hamburger.active .line-1 {
  transform: rotate(45deg);
  position: absolute;
}
.header-hamburger.active .line-2 {
  display: none;
}
.header-hamburger.active .line-3 {
  transform: rotate(-45deg);
  position: absolute;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
}

.no-scroll {
  overflow-y: hidden;
}

.footer-wrapper {
  max-width: 1920px;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 610px) {
  .footer-container {
    gap: unset;
  }
}
@media (min-width: 1280px) {
  .footer-container {
    gap: 50px;
  }
}
.footer-container .footer-logo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  font-style: italic;
  font-weight: 600;
}
@media (min-width: 610px) {
  .footer-container .footer-logo__wrapper {
    align-items: unset;
  }
}
.footer-container .footer-column {
  display: flex;
  gap: 21px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 610px) {
  .footer-container .footer-column {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .footer-container .footer-column {
    width: 50%;
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
  }
}
.footer-container .footer-column .footer-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 0;
  align-items: center;
}
@media (min-width: 610px) {
  .footer-container .footer-column .footer-info {
    padding-bottom: 50px;
    align-items: unset;
  }
}
@media (min-width: 1280px) {
  .footer-container .footer-column .footer-info {
    padding-bottom: 0;
  }
}
.footer-container .footer-column .footer-info span {
  white-space: wrap;
  text-align: center;
}
@media (min-width: 425px) {
  .footer-container .footer-column .footer-info span {
    white-space: nowrap;
    text-align: unset;
  }
}
.footer-container .footer-column .footer-social__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}
@media (min-width: 610px) {
  .footer-container .footer-column .footer-social__wrapper {
    justify-content: unset;
  }
}
.footer-container .footer-column .footer-number {
  font-size: 24px;
  color: #16272e;
}
@media (min-width: 425px) {
  .footer-container .footer-column .footer-number {
    font-size: 28px;
  }
}
.footer-container .footer-column .footer-number .footer-social__warning {
  text-align: center;
}
@media (min-width: 610px) {
  .footer-container .footer-column .footer-number .footer-social__warning {
    text-align: unset;
  }
}
.footer-container .footer-column .footer-navigation {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 610px) {
  .footer-container .footer-column .footer-navigation {
    align-items: unset;
  }
}
@media (min-width: 1280px) {
  .footer-container .footer-column .footer-navigation {
    margin: unset;
  }
}
.footer-container .footer-column .footer-navigation a {
  padding: 10px 5px;
  margin-left: -5px;
  width: fit-content;
}
.footer-container .footer-column .footer-navigation a:hover {
  color: #951c49;
}
.footer-container .footer-copyrights {
  margin-bottom: 30px;
  font-size: 12px;
}

.footer-background {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 560px;
  max-width: 960px;
  min-width: 740px;
}
@media (min-width: 1280px) {
  .footer-background {
    display: block;
  }
}
@media (min-width: 1921px) {
  .footer-background {
    position: static;
    width: 960px;
    min-width: 960px;
  }
}
.footer-background img {
  width: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=main-page.css.map */
