@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@font-face {
  font-family: "CalSans";
  font-display: swap;
  src: url("../fonts/CalSans-SemiBold.woff2") format("woff2"), url("../fonts/CalSans-SemiBold.ttf") format("truetype"), url("../fonts/CalSans-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  color: #666666;
  font-size: 16px;
  font-family: Poppins;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

[class*=__container] {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ----------------------------------------------------------*/
.title {
  font-family: CalSans;
  font-weight: 600;
  font-size: 44px;
  line-height: 120%;
  color: #121212;
  text-align: center;
}
.title span {
  color: #FF6428;
}
@media (max-width: 767.98px) {
  .title {
    font-size: 38px;
  }
}

/* ----------------------------------------------------------*/
.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
/* ----------------------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 131px;
  min-height: 152px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  position: relative;
  z-index: 2;
}
.menu {
  padding: 10px 15px 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
.menu__icon {
  display: none;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}
.menu__link {
  font-weight: 500;
  color: rgba(18, 18, 18, 0.4);
}
.menu__link:hover {
  text-decoration: underline;
}

@media (max-width: 1092px) {
  .header__container {
    gap: 50px;
    min-height: 100px;
  }
  .menu_list {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    min-height: 65px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .menu__icon {
    display: block;
    z-index: 5;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span,
.menu__icon::before,
.menu__icon::after {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #000;
  }
  .menu__icon::before,
.menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
            transform: scale(1) translate(0px, -50%);
  }
  .menu__icon._active span {
    width: 0;
  }
  .menu__icon._active::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu__icon._active::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 100px 30px 30px 30px;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: -100%;
    height: 65px;
    background-color: #fff;
    z-index: 2;
  }
  .menu__body._active, .menu__body._active::before {
    left: 0;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu__link {
    color: #000;
    font-size: 24px;
  }
}
@media (max-width: 479.98px) {
  .header__container {
    gap: 20px;
  }
  .menu_list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .header__menu {
    padding: 0;
  }
}
/* ----------------------------------------------------------*/
.main {
  padding: 0 0 80px 0;
}
.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 60px;
  padding-right: 20px;
  padding-top: 120px;
}
.main__title {
  font-family: CalSans;
  font-weight: 600;
  font-size: 56px;
  line-height: 119%;
  color: #121212;
}
.main__title span {
  color: #FF6428;
}
.main__title:not(:last-child) {
  margin-bottom: 16px;
}
.main__text {
  font-weight: 500;
  line-height: 150%;
  max-width: 420px;
}
.main__text:not(:last-child) {
  margin-bottom: 31px;
}
.main__decor {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.main__image {
  display: inline-block;
  margin-right: -135px;
  border-radius: 0px 0px 151px 360px;
  position: relative;
}
.main__image::after {
  content: "";
  background: url(/img/main/decor-2.svg);
  width: 80px;
  height: 80px;
  right: 36.3%;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  position: absolute;
}
.main__image img {
  max-width: 672px;
}

.actions-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.actions-main__button {
  text-align: center;
  border-radius: 40px;
  background-color: #FF6428;
  padding: 18px 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.actions-main__button:not(:last-child) {
  margin-right: 40px;
}
.actions-main__button:hover {
  background-color: #b1471e;
}
.actions-main__icon:not(:last-child) {
  margin-right: 27px;
}

@media (max-width: 1092px) {
  .main__image img {
    width: 100%;
  }
  .main__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    padding-bottom: 0;
  }
  .main__decor {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
@media (max-width: 991.98px) {
  .main {
    padding: 0 0 50px 0;
  }
}
@media (max-width: 767.98px) {
  .main__decor {
    display: none;
  }
  .main__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding-right: 0;
    padding-top: 80px;
  }
  .main__title {
    font-size: 44px;
  }
  .main {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 479.98px) {
  .actions-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .actions-main__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .actions-main__button:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* ----------------------------------------------------------*/
.store {
  padding: 80px 0 90px 0;
}
.store__title {
  margin-bottom: 86px;
}
.store__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 100px;
}
.body-store__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 32px;
  text-align: center;
}
.body-store__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.08em;
  color: #121212;
  margin-right: 30px;
}
.body-store__all {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #868686;
}
.body-store__all:hover {
  text-decoration: underline;
}
.body-store__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 54px 1fr 54px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}
.item-store {
  display: -ms-grid;
  display: grid;
}
.item-store__image {
  text-align: center;
}
.item-store__image:not(:last-child) {
  margin-bottom: 40px;
}
.item-store__image img {
  max-width: 100%;
}
.item-store__title {
  font-weight: 500;
  line-height: 150%;
  color: #121212;
  -ms-grid-column-align: start;
      justify-self: start;
}
.item-store__title:not(:last-child) {
  margin-bottom: 7px;
}
.item-store__title:hover {
  text-decoration: underline;
}
.item-store__price {
  font-size: 14px;
  line-height: 150%;
}

@media (max-width: 991.98px) {
  .store {
    padding: 50px 0;
  }
  .store__title {
    margin-bottom: 50px;
  }
  .body-store__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .store {
    padding: 30px 0;
  }
  .store__title {
    margin-bottom: 20px;
  }
  .item-store__image:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .body-store__items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ----------------------------------------------------------*/
.categories {
  padding: 90px 0 110px 0;
}
.categories__title {
  margin-bottom: 80px;
}
.categories__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  row-gap: 35px;
  padding: 0 56px;
}
.item-categories {
  position: relative;
}
.item-categories:hover .item-categories__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.item-categories__title {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  bottom: 30px;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
.item-categories__image {
  position: relative;
  padding-bottom: 127%;
  border-radius: 20px;
  overflow: hidden;
}
.item-categories__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.item-categories__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.16)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.8) 100%);
}

@media (max-width: 1200px) {
  .categories__items {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .categories {
    padding: 50px 0 50px 0;
  }
  .categories__items {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .categories__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .categories__title {
    margin-bottom: 20px;
  }
  .categories {
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 479.98px) {
  .categories__items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
/* ----------------------------------------------------------*/
.brands {
  padding: 110px 0 180px 0;
}
.brands__title {
  margin-bottom: 75px;
}
.brands__items {
  max-width: 1020px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px auto 20px auto 20px auto;
  grid-template-columns: repeat(4, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 80px;
}
.brands__item img {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .brands {
    padding: 50px 0;
  }
  .brands__title {
    margin-bottom: 40px;
  }
  .brands__items {
    -ms-grid-columns: (auto)[3];
    grid-template-columns: repeat(3, auto);
    row-gap: 50px;
  }
}
@media (max-width: 767.98px) {
  .brands {
    padding: 30px 0;
  }
  .brands__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .brands__items {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 20px;
  }
}
/* ----------------------------------------------------------*/
.why {
  background-color: #121212;
  padding: 90px 0;
}
.why__title {
  margin-bottom: 75px;
  color: #FFFFFF;
}
.why__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px auto 30px auto;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.item-why {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  padding: 35px;
  text-align: center;
}
.item-why__icon {
  background-color: #262626;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
}
.item-why__icon:not(:last-child) {
  margin-bottom: 40px;
}
.item-why__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.item-why__title:not(:last-child) {
  margin-bottom: 12px;
}
.item-why__text {
  font-size: 14px;
  line-height: 150%;
  max-width: 230px;
}

@media (max-width: 991.98px) {
  .why {
    padding: 50px 0;
  }
  .why__items {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
  .item-why__text {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .why__items {
    -ms-grid-columns: (auto)[1];
    grid-template-columns: repeat(1, auto);
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
  .item-why {
    padding: 20px;
  }
}
/* ----------------------------------------------------------*/
.reviews {
  padding: 240px 0;
}
.reviews__title {
  margin-bottom: 100px;
}
.swiper-reviews__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.swiper-reviews__pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #C4C4C4;
  border-radius: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.swiper-reviews__pagination .swiper-pagination-bullet-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  background-color: #FF6428;
  border-radius: 20px;
}

.slide-swiper-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slide-swiper-reviews__picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.slide-swiper-reviews__image {
  width: 320px;
  height: 320px;
  position: relative;
}
.slide-swiper-reviews__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.slide-swiper-reviews__image::before {
  content: "";
  position: absolute;
  width: 285px;
  height: 285px;
  top: 30px;
  left: -55px;
  background-color: #FF6428;
  border-radius: 40px 0px 400px 400px;
  -webkit-transform: rotate(-7.72deg);
          transform: rotate(-7.72deg);
}
.slide-swiper-reviews__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.slide-swiper-reviews__text {
  font-size: 24px;
  line-height: 160%;
}
.slide-swiper-reviews__text:not(:last-child) {
  margin-bottom: 64px;
}
.slide-swiper-reviews__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 160%;
  color: #000000;
}
.slide-swiper-reviews__position {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #868686;
  text-transform: uppercase;
}

@media (max-width: 1230px) {
  .reviews__swiper.swiper {
    margin-left: -15px;
  }
}
@media (max-width: 991.98px) {
  .reviews {
    padding: 80px 0;
  }
  .reviews__title {
    margin-bottom: 50px;
  }
  .slide-swiper-reviews {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slide-swiper-reviews__body {
    padding-left: 15px;
  }
  .slide-swiper-reviews__picture {
    margin-bottom: 25px;
  }
  .swiper-reviews__pagination.swiper-pagination {
    position: relative;
    bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .reviews {
    padding: 50px 0;
  }
  .reviews__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 479.98px) {
  .slide-swiper-reviews__image {
    height: 270px;
    width: 270px;
  }
  .slide-swiper-reviews__image::before {
    content: "";
    position: absolute;
    width: 225px;
    height: 187px;
    top: 30px;
    left: -55px;
    background-color: #FF6428;
    border-radius: 40px 0px 400px 400px;
    -webkit-transform: rotate(-7.72deg);
            transform: rotate(-7.72deg);
  }
  .slide-swiper-reviews__text {
    font-size: 18px;
  }
  .slide-swiper-reviews__text:not(:last-child) {
    margin-bottom: 25px;
  }
}
/* ----------------------------------------------------------*/
.favorite {
  padding: 0 0 120px 0;
}
.favorite__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.favorite__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding-right: 20px;
}
.favorite__title {
  text-align: left;
  font-size: 48px;
  line-height: 140%;
}
.favorite__title:not(:last-child) {
  margin-bottom: 60px;
}
.favorite__apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.favorite__images {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.favorite__images img {
  max-width: 100%;
  text-align: center;
}

.apps-favorite__item img {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .favorite {
    padding: 0 0 50px 0;
  }
  .favorite__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .favorite__title {
    font-size: 38px;
  }
  .favorite__title:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .favorite {
    padding: 0 0 30px 0;
  }
}
/* ----------------------------------------------------------*/
.footer {
  background-color: #EEEEEE;
  padding: 80px 0 40px 0;
}
.footer__copy {
  text-align: center;
  padding-top: 80px;
}

.body-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.body-footer__column_full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.body-footer__logo {
  display: inline-block;
}
.body-footer__logo:not(:last-child) {
  margin-bottom: 28px;
}
.contacts-footer__item:not(:last-child) {
  margin-bottom: 17px;
}
.contacts-footer__link {
  display: inline-block;
  padding-left: 50px;
  line-height: 150%;
  padding-left: 44px;
  color: inherit;
}
.contacts-footer__link:hover {
  text-decoration: underline;
}
.contacts-footer__link_mail {
  background: url("../img/footer/sms.svg") left no-repeat;
}
.contacts-footer__link_location {
  background: url("../img/footer/location.svg") left no-repeat;
}

.menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-footer__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 20px;
}
.menu-footer__item:not(:last-child) {
  margin-bottom: 16px;
}
.menu-footer__link {
  color: inherit;
  line-height: 150%;
}
.menu-footer__link:hover {
  text-decoration: underline;
}

.social-footer__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 12px;
}
.social-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .footer {
    padding: 30px 0;
  }
  .body-footer__column:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .body-footer__column_full {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .body-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .menu-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .footer__copy {
    padding-top: 50px;
  }
}