@charset "UTF-8";

/*Обнуление*/

* {
  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%;
  -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;
  background: transparent;
}

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

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

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  background: #ffffff;
  -webkit-tap-highlight-color: transparent;
}

body.this--overflow {
  overflow: hidden;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  background: #ffffff;
}

.header__top {
  background: #000000;
}

.header__top_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.header__logo {
  width: 65px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  z-index: 3;
}

.header__logo img {
  width: 100%;
}

.header__address {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__address_mob {
  display: none;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__address_mob_menu {
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__tel {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__time {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 24px;
}

.header__burger {
  display: none;
}

.header__lang {
  position: relative;
}

.header__lang_head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__lang_head.active + .header__lang_body {
  opacity: 1;
  visibility: visible;
}

.header__lang_head.active .header__lang_arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header__lang_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}

.header__lang_title img {
  width: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header__lang_arrow {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0005 13.0006L5.75781 8.758L7.17203 7.34375L10.0005 10.1722L12.8289 7.34375L14.2431 8.758L10.0005 13.0006Z' fill='white'/%3E%3C/svg%3E ") center/100% 100% no-repeat;
}

.header__lang_body {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: opacity 0.1s, visibility 0.1s;
  transition: opacity 0.1s, visibility 0.1s;
  visibility: hidden;
  opacity: 0;
  padding: 20px 15px;
  background: #FFFFFF;
  border: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.header__lang_body_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__lang_body_item img {
  width: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header__bottom {
  background: #FFFFFF;
  padding: 18px 0;
}

.header__menu {
  list-style: none;
  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;
  gap: 100px;
}

.header__menu_link {
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.header__time_mob_menu {
  display: none;
}

.header__tel_mob_menu {
  display: none;
}

.header__address_mob_menu {
  display: none;
}

.top {
  background: url("../img/top/bg.jpg") center/cover no-repeat;
}

.top__content {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - 139px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__logo {
  width: 265px;
  margin-top: 60px;
}

.top__logo img {
  width: 100%;
}

.top__title {
  margin-top: 37px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 100px;
  line-height: 130px;
  color: #ffffff;
  text-align: center;
}

.top__subtitle {
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.cup {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.177%, #fcfcfc), color-stop(1.186%, #fbfbfb), color-stop(99.424%, #f9fafc));
  background: linear-gradient(180deg, #fcfcfc 1.177%, #fbfbfb 1.186%, #f9fafc 99.424%);
}

.cup__content {
  padding: 55px 0 35px;
}

.cup__row {
  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;
  gap: 6px;
}

.cup__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 820px;
}

.cup__title {
  font-size: 42px;
  line-height: 54px;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.cup__links {
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cup__links.this--mobile {
  display: none;
}

.cup__links.this--desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.cup__link {
  height: 60px;
  width: 224px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000000;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.cup__link img {
  width: 100%;
}

.cup__right {
  width: 312px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cup__img {
  padding-top: 141.34%;
  position: relative;
}

.cup__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu {
  background: #ffffff;
}

.menu__content {
  padding: 42px 0;
  margin: 0 auto;
  max-width: 1000px;
}

.menu__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
}

.menu__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-top: 10px;
}

.menu__item {
  margin-left: 10px;
  width: calc(50% - 10px);
}

.menu__img {
  position: relative;
  padding-top: 141.35%;
  display: block;
}

.menu__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu__zoom {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 15px;
  right: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

.menu__zoom img {
  width: 35px;
}

.about {
  background: url("../img/about/bg.jpg") center/cover no-repeat;
}

.about__content {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 100vh;
}

.about__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

.about__text {
  margin-top: 28px;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  text-align: center;
}

.beans {
  padding: 72px 0 77px;
}

.beans__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
}

.beans__text {
  margin-top: 10px;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  color: #000000;
}

.beans__slider_wr {
  margin-top: 149px;
  position: relative;
}

.def_slider {
  overflow: hidden;
}

.beans__item_img {
  padding-top: 97.46%;
  position: relative;
}

.beans__item_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.beans__item_text {
  margin-top: 20px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.def_slider_prev,
.def_slider_next {
  position: absolute;
  top: -105px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.def_slider_prev.swiper-button-disabled,
.def_slider_next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.def_slider_prev {
  right: 130px;
  background: url("../img/arrow_left.png") center/100% 100% no-repeat;
}

.def_slider_next {
  right: 20px;
  background: url("../img/arrow_right.png") center/100% 100% no-repeat;
}

.reviews {
  padding-top: 17px;
}

.reviews__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  color: #000000;
}

.reviews__slider_wr {
  margin-top: 30px;
  position: relative;
}

.reviews__item {
  padding-top: 120%;
  position: relative;
  display: block;
}

.reviews__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts {
  padding-top: 50px;
  padding-left: calc((100% - 1400px) / 2 + 30px);
}

.contacts__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  color: #000000;
}

.contacts__row {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.contacts__left {
  width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
}

.contacts__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contacts__map {
  height: 490px;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
}

.contacts__mail {
  color: #393838;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.contacts__mail a {
  color: #393838;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.contacts__address {
  margin-top: 13px;
  color: #848692;
  font-size: 20px;
  line-height: 28px;
}

.contacts__tel {
  margin-top: 17px;
  display: inline-block;
  color: #393838;
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.contacts__time {
  margin-top: 6px;
  color: #848692;
  font-size: 20px;
  line-height: 28px;
}

.contacts__social_text {
  margin-top: 15px;
  text-align: center;
  color: #848692;
  font-size: 25px;
  line-height: 35px;
}

.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

.contacts__social_link {
  width: 64px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.contacts__social_link img {
  width: 100%;
}

.footer {
  background: #000000;
}

.footer__content {
  padding: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  width: 64px;
}

.footer__logo img {
  width: 100%;
}

.footer__copyright {
  color: #EFEFEF;
  font-size: 11px;
  line-height: 18px;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__link {
  width: 54px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.footer__link img {
  width: 100%;
}

@media (max-width: 1422px) {
  .contacts {
    padding-left: 30px;
  }
}

@media (max-width: 1400px) {
  .top__logo {
    width: 200px;
    margin-top: 30px;
  }

  .top__title {
    margin-top: 30px;
    font-size: 70px;
    line-height: 96px;
  }

  .top__subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .menu__content {
    max-width: 750px;
  }

  .menu__title {
    font-size: 70px;
    line-height: 70px;
  }

  .menu__zoom {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    top: 0;
    right: 0;
  }

  .about__title {
    font-size: 70px;
    line-height: 70px;
  }

  .about__text {
    font-size: 20px;
    line-height: 28px;
  }

  .beans__title {
    font-size: 70px;
    line-height: 70px;
  }

  .reviews__title {
    font-size: 70px;
    line-height: 70px;
  }

  .contacts__title {
    font-size: 70px;
    line-height: 70px;
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }

  .header__tel {
    display: none;
  }

  .header__time {
    display: none;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 3;
  }

  .header__burger.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }

  .header__burger.active span:first-child {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .header__burger.active span:last-child {
    bottom: calc(50% - 1.5px);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .header__burger span {
    position: absolute;
    height: 3px;
    background: #ffffff;
    right: 4px;
    -webkit-transition: opacity 0.4s, visibility 0.4s, top 0.4s, bottom 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, visibility 0.4s, top 0.4s, bottom 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s, top 0.4s, bottom 0.4s;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s, top 0.4s, bottom 0.4s, -webkit-transform 0.4s;
  }

  .header__burger span:first-child {
    top: 5px;
    width: 24px;
  }

  .header__burger span:nth-child(2) {
    top: calc(50% - 1.5px);
    width: 16px;
  }

  .header__burger span:last-child {
    bottom: 5px;
    width: 24px;
  }

  .header__lang_title {
    font-size: 0;
    gap: 0;
  }

  .header__lang_body {
    padding: 10px;
    gap: 10px;
    left: -10px;
  }

  .header__lang_body_item {
    font-size: 0;
    gap: 0;
  }

  .header__bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    padding-top: 116px;
    padding-left: 13px;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
    opacity: 0;
    visibility: hidden;
  }

  .header__bottom.show {
    opacity: 1;
    visibility: visible;
  }

  .header__menu {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .header__menu_link {
    color: #ffffff;
  }

  .header__time_mob_menu {
    display: block;
    margin-top: 65px;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
  }

  .header__tel_mob_menu {
    display: inline-block;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
    margin-top: 25px;
  }

  .header__address_mob_menu {
    display: block;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 22px;
    margin-top: 25px;
  }

  .top__content {
    min-height: calc(100vh - 79px);
  }

  .cup__title {
    font-size: 32px;
    line-height: 44px;
  }

  .cup__right {
    width: 220px;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 47px;
  }

  .header__address {
    display: none;
  }

  .header__address_mob {
    display: block;
    color: #FFFFFF;
    margin-left: -10px;
    font-size: 13px;
    line-height: 15px;
  }

  .header__bottom {
    padding-top: 96px;
  }

  .top__content {
    min-height: calc(100vh - 61px);
  }

  .top__logo {
    margin-bottom: 55px;
    width: 162px;
    margin-top: 0;
  }

  .top__title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 42px;
  }

  .top__subtitle {
    margin-top: 17px;
    line-height: 26px;
  }

  .top__subtitle span {
    font-size: 0;
    line-height: 0;
    display: block;
  }

  .cup__title {
    font-size: 20px;
    line-height: 26px;
  }

  .cup__links.this--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 11px;
  }

  .cup__links.this--desktop {
    display: none;
  }

  .cup__links {
    gap: 17px;
  }

  .cup__link {
    padding: 8px 14px;
    height: 41px;
    width: 151px;
  }

  .cup__right {
    width: 119px;
  }

  .menu__content {
    padding: 20px 0;
  }

  .menu__title {
    font-size: 32px;
    line-height: 41px;
  }

  .menu__row {
    margin-left: 0;
    display: block;
    margin-bottom: -6px;
  }

  .menu__item {
    margin-left: 0;
    width: 100%;
    margin-bottom: 6px;
  }

  .about {
    background: url("../img/about/bg_mob.jpg") center/cover no-repeat;
  }

  .about__content {
    padding: 15px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .about__title {
    font-size: 32px;
    line-height: 41px;
  }

  .es .about__title {
    font-size: 26px;
    line-height: 32px;
  }

  .about__text {
    margin-top: 7px;
    font-size: 13px;
    line-height: 19px;
  }

  .es .about__text {
    line-height: 15px;
  }

  .beans {
    padding: 38px 0 34px;
  }

  .beans__title {
    font-size: 32px;
    line-height: 41px;
  }

  .beans__text {
    margin-top: 16px;
    font-size: 13px;
    line-height: 19px;
  }

  .beans__slider_wr {
    margin-top: 31px;
  }

  .def_slider {
    overflow: visible;
  }

  .beans__item_text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .def_slider_prev,
  .def_slider_next {
    display: none;
  }

  .def_slider__slide.swiper-slide {
    width: 240px;
  }

  .reviews {
    padding-top: 0;
  }

  .reviews__title {
    font-size: 32px;
    line-height: 41px;
  }

  .reviews__slider_wr {
    margin-top: 11px;
  }

  .contacts {
    padding: 27px 20px 0;
  }

  .contacts__title {
    font-size: 32px;
    line-height: 41px;
  }

  .contacts__row {
    gap: 35px;
    display: block;
    margin-top: 15px;
  }

  .contacts__left {
    width: auto;
    padding-bottom: 0;
  }

  .contacts__right {
    margin-top: 35px;
  }

  .contacts__map {
    height: 400px;
  }

  .contacts__mail {
    font-size: 18px;
    line-height: 24px;
  }

  .contacts__address {
    margin-top: 15px;
    font-size: 13px;
    line-height: 18px;
  }

  .contacts__tel {
    margin-top: 25px;
    font-size: 18px;
    line-height: 24px;
  }

  .contacts__time {
    margin-top: 7px;
    font-size: 13px;
    line-height: 18px;
  }

  .contacts__social_text {
    font-size: 13px;
    line-height: 18px;
    text-align: left;
  }

  .contacts__social {
    max-width: 400px;
    margin-top: 23px;
  }

  .footer__content {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .footer__copyright {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 10px;
  }

  .footer__social {
    margin-top: 15px;
  }
}

@media (max-width: 424px) {
  .menu__zoom {
    top: -10px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__tel:hover {
    opacity: 0.7;
  }
  .header__address:hover,
  .header__address_mob:hover,
  .header__address_mob_menu:hover {
    opacity: 0.7;
  }

  .header__lang_head:hover {
    opacity: 0.7;
  }

  .header__lang_body_item:hover {
    opacity: 0.7;
  }

  .header__menu_link:hover {
    opacity: 0.7;
  }

  .header__tel_mob_menu:hover {
    opacity: 0.7;
  }

  .cup__link:hover {
    opacity: 0.7;
  }

  .def_slider_prev:hover,
  .def_slider_next:hover {
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
  }

  .contacts__mail a:hover {
    opacity: 0.7;
  }

  .contacts__tel:hover {
    opacity: 0.7;
  }

  .contacts__social_link:hover {
    opacity: 0.7;
  }

  .footer__link:hover {
    opacity: 0.7;
  }
}

.webp .top{ background: url(../img/top/bg.webp) center/cover no-repeat; }

.webp .about{ background: url(../img/about/bg.webp) center/cover no-repeat; }

.webp .def_slider_prev{ background: url(../img/arrow_left.webp) center/100% 100% no-repeat; }

.webp .def_slider_next{ background: url(../img/arrow_right.webp) center/100% 100% no-repeat; }

@media (max-width: 767px){

  .webp .about{ background: url(../img/about/bg_mob.webp) center/cover no-repeat; }
}