.wrapper .container .menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper .container .menu h1 {
  display: none;
}
.wrapper .container .menu h2 {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  text-align: center;
  font-size: 60px;
  line-height: 125%;
  color: #403F3D;
}
@media (max-width: 584px) {
  .wrapper .container .menu h2 {
    font-size: 32px;
  }
}
.wrapper .container .menu h2 span {
  color: #B0907A;
  font-style: italic;
}
.wrapper .container .menu .menu-button-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}
.wrapper .container .menu .menu-button-wrapper .button {
  display: flex;
  padding: 8px 16px 8px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #C1B6AD;
  font-size: 16px;
  font-weight: 600;
  color: #403F3D;
  transition: all 0.8s ease;
  cursor: pointer;
}
.wrapper .container .menu .menu-button-wrapper .button:nth-child(2) {
  margin: 0px 16px;
}
@media (max-width: 584px) {
  .wrapper .container .menu .menu-button-wrapper .button:nth-child(2) {
    margin: 0px 8px;
  }
}
.wrapper .container .menu .menu-button-wrapper .button:hover {
  transition: all 0.8s ease;
  background-color: #665F55;
  color: #E1D4C9;
}
.wrapper .container .menu .menu-button-wrapper .button:hover .button-image {
  transition: all 0.8s ease;
  background-color: #E1D4C9;
}
@media (hover: none) {
  .wrapper .container .menu .menu-button-wrapper .button:hover {
    background-color: #E1D4C9;
    color: #665F55;
  }
  .wrapper .container .menu .menu-button-wrapper .button:hover .button-image {
    background-color: #C1B6AD;
  }
}
.wrapper .container .menu .menu-button-wrapper .button .button-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 3px;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #C1B6AD;
  transition: all 0.8s ease;
}
.wrapper .container .menu .menu-button-wrapper .active.active-active {
  background-color: #665F55;
  color: #E1D4C9;
}
.wrapper .container .menu .menu-button-wrapper .active.active-active .button-image {
  background-color: #E1D4C9;
}
.wrapper .container .menu .menu-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, 310px);
  grid-auto-rows: 506px;
  justify-content: center;
  gap: 40px;
}
.wrapper .container .menu .menu-products .menu-products-item {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  border: 1px solid #C1B6AD;
  cursor: pointer;
}
.wrapper .container .menu .menu-products .menu-products-item .products-item-image {
  height: 308px;
  border-radius: 40px;
  background-size: 110%;
  background-position: center;
  transition: all 0.8s ease;
}
@media (hover: hover) {
  .wrapper .container .menu .menu-products .menu-products-item:hover .products-item-image {
    background-size: 100%;
  }
}
.wrapper .container .menu .menu-products .menu-products-item .products-item-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px;
}
.wrapper .container .menu .menu-products .menu-products-item .products-item-content h3 {
  padding: 0px 0px 12px;
  font-size: 24px;
  line-height: 125%;
  color: #403F3D;
}
.wrapper .container .menu .menu-products .menu-products-item .products-item-content p {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 400;
  color: #403F3D;
}
.wrapper .container .menu .menu-products .menu-products-item .products-item-content span {
  font-size: 24px;
  line-height: 125%;
  color: #403F3D;
}
.wrapper .container .menu .menu-products .hide-product-item {
  display: none;
}
.wrapper .container .menu .refresh {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0px;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #665F55;
  background-color: transparent;
  cursor: pointer;
}
.wrapper .container .menu .refresh-active {
  display: flex;
}

.modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(64, 63, 61, 0.8);
}
.modal-overlay .modal {
  display: flex;
  position: fixed;
  padding: 16px;
  position: fixed;
  max-width: 800px;
  width: 100%;
  left: 50%;
  top: 50%;
  border-radius: 40px;
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: #E1D4C9;
}
@media (max-width: 840px) {
  .modal-overlay .modal {
    max-width: 688px;
  }
}
@media (max-width: 730px) {
  .modal-overlay .modal {
    max-width: 342px;
  }
}
.modal-overlay .modal .modal-image {
  display: flex;
  justify-content: center;
  margin: 0px 20px 0px 0px;
  max-width: 310px;
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-radius: 40px;
  background-position: center;
}
@media (max-width: 730px) {
  .modal-overlay .modal .modal-image {
    display: none;
  }
}
.modal-overlay .modal .modal-content {
  display: flex;
  flex-direction: column;
  max-width: 438px;
  width: 100%;
}
@media (max-width: 730px) {
  .modal-overlay .modal .modal-content {
    max-width: 100%;
  }
}
.modal-overlay .modal .modal-content h3 {
  padding: 0px 0px 12px 0px;
  font-size: 24px;
  line-height: 125%;
  color: #403F3D;
}
.modal-overlay .modal .modal-content .description {
  padding: 0px 0px 20px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #403F3D;
}
.modal-overlay .modal .modal-content span {
  padding: 0px 0px 8px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #403F3D;
}
.modal-overlay .modal .modal-content .button-size-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0px 20px 0px;
  gap: 8px;
}
@media (max-width: 768px) {
  .modal-overlay .modal .modal-content .button-size-wrapper {
    margin: 0px 0px 15px 0px;
  }
}
.modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  padding: 8px 16px 8px 8px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  font-weight: 600;
  line-height: 150%;
  color: #403F3D;
  border: 1px solid #C1B6AD;
  border-radius: 100px;
  background-color: transparent;
  transition: all 0.8s ease;
  cursor: pointer;
}
.modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio + label::before {
  content: attr(data-size);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #C1B6AD;
  color: #403F3D;
  transition: all 0.8s ease;
}
.modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio:checked + label::before {
  background-color: #E1D4C9;
  color: #403F3D;
}
@media (hover: hover) {
  .modal-overlay .modal .modal-content .button-size-wrapper label:hover::before {
    background-color: #E1D4C9;
  }
  .modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio:not(:checked) + label:hover {
    border-color: none;
    background-color: #665F55;
    color: #E1D4C9;
  }
}
.modal-overlay .modal .modal-content .button-size-wrapper .size-volume-radio:checked + label {
  border-color: none;
  background-color: #665F55;
  color: #E1D4C9;
}
.modal-overlay .modal .modal-content .button-additives-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  padding: 8px 16px 8px 8px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  font-weight: 600;
  line-height: 150%;
  color: #403F3D;
  border: 1px solid #C1B6AD;
  border-radius: 100px;
  background-color: transparent;
  transition: all 0.8s ease;
  cursor: pointer;
}
.modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox + label::before {
  content: attr(data-number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #C1B6AD;
  color: #403F3D;
  transition: all 0.8s ease;
}
.modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox:checked + label::before {
  background-color: #E1D4C9;
  color: #403F3D;
}
@media (hover: hover) {
  .modal-overlay .modal .modal-content .button-additives-wrapper label:hover::before {
    background-color: #E1D4C9;
  }
  .modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox:not(:checked) + label:hover {
    border-color: none;
    background-color: #665F55;
    color: #E1D4C9;
  }
}
.modal-overlay .modal .modal-content .button-additives-wrapper .additive-number-checkbox:checked + label {
  border-color: none;
  background-color: #665F55;
  color: #E1D4C9;
}
.modal-overlay .modal .total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid #C1B6AD;
}
.modal-overlay .modal .total span {
  padding: 0px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  color: #403F3D;
}
.modal-overlay .modal .note {
  display: flex;
  align-items: flex-start;
  margin: 10px 0px 15px;
}
.modal-overlay .modal .note img {
  padding: 0px 8px 0px 0px;
}
.modal-overlay .modal .note .note-title {
  font-size: 10px;
  line-height: 140%;
  color: #403F3D;
}
.modal-overlay .modal .button-close-modal {
  margin: 15px 0px 0px 0px;
  padding: 10px 78px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #665F55;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: #403F3D;
  transition: all 0.8s ease;
}
.modal-overlay .modal .button-close-modal:hover {
  background: #665F55;
  color: #E1D4C9;
}

.coffee-1 {
  background: url("../images/coffee-1.webp") no-repeat;
}

.coffee-2 {
  background: url("../images/coffee-2.webp") no-repeat;
}

.coffee-3 {
  background: url("../images/coffee-3.webp") no-repeat;
}

.coffee-4 {
  background: url("../images/coffee-4.webp") no-repeat;
}

.coffee-5 {
  background: url("../images/coffee-5.webp") no-repeat;
}

.coffee-6 {
  background: url("../images/coffee-6.webp") no-repeat;
}

.coffee-7 {
  background: url("../images/coffee-7.webp") no-repeat;
}

.coffee-8 {
  background: url("../images/coffee-8.webp") no-repeat;
}

.tea-1 {
  background: url("../images/tea-1.webp") no-repeat;
}

.tea-2 {
  background: url("../images/tea-2.webp") no-repeat;
}

.tea-3 {
  background: url("../images/tea-3.webp") no-repeat;
}

.tea-4 {
  background: url("../images/tea-4.webp") no-repeat;
}

.dessert-1 {
  background: url("../images/dessert-1.webp") no-repeat;
}

.dessert-2 {
  background: url("../images/dessert-2.webp") no-repeat;
}

.dessert-3 {
  background: url("../images/dessert-3.webp") no-repeat;
}

.dessert-4 {
  background: url("../images/dessert-4.webp") no-repeat;
}

.dessert-5 {
  background: url("../images/dessert-5.webp") no-repeat;
}

.dessert-6 {
  background: url("../images/dessert-6.webp") no-repeat;
}

.dessert-7 {
  background: url("../images/dessert-7.webp") no-repeat;
}

.dessert-8 {
  background: url("../images/dessert-8.webp") no-repeat;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background-color: #E1D4C9;
}

.no-skroll-modal {
  overflow: hidden;
}

.no-scroll {
  position: fixed;
  overflow: hidden;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.wrapper {
  padding: 0px 40px;
  background-color: #E1D4C9;
}
@media (max-width: 664px) {
  .wrapper {
    padding: 0px 16px;
  }
}
.wrapper .container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
.wrapper .container header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 100px;
  padding: 20px 0px;
  position: relative;
}
.wrapper .container header .logo {
  z-index: 2;
}
.wrapper .container header .wrapper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 0.5;
}
.wrapper .container header .wrapper-nav ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .wrapper .container header .wrapper-nav ul {
    display: none;
  }
}
.wrapper .container header .wrapper-nav ul li a {
  position: relative;
  font-size: 16px;
  color: #403F3D;
}
.wrapper .container header .wrapper-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #403F3D;
  transition: width 0.4s ease;
  transform: translateX(-50%);
}
.wrapper .container header .wrapper-nav ul li a:hover::after {
  width: 100%;
}
@media (hover: none) {
  .wrapper .container header .wrapper-nav ul li a:hover::after {
    width: 0%;
  }
}
.wrapper .container header .wrapper-nav ul :not(:first-child) {
  padding-left: 40px;
}
.wrapper .container header .wrapper-nav .menu-button {
  padding-right: 28px;
}
.wrapper .container header .wrapper-nav .menu-button a {
  position: relative;
  font-size: 16px;
  color: #403F3D;
  cursor: pointer;
}
.wrapper .container header .wrapper-nav .menu-button a::before {
  content: "";
  background: url("../images/coffee-cup.svg") no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -2px;
  right: -28px;
}
.wrapper .container header .wrapper-nav .menu-button a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 36px;
  width: 0px;
  height: 2px;
  background-color: #403F3D;
  transition: width 0.4s ease;
  transform: translateX(-50%);
}
.wrapper .container header .wrapper-nav .menu-button a:hover::after {
  width: 72px;
}
@media (hover: none) {
  .wrapper .container header .wrapper-nav .menu-button a:hover::after {
    width: 0px;
  }
}
.wrapper .container header .wrapper-nav .menu-button p {
  position: relative;
  cursor: default;
}
.wrapper .container header .wrapper-nav .menu-button p::before {
  content: "";
  background: url("../images/coffee-cup.svg") no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0px;
  right: -28px;
}
.wrapper .container header .wrapper-nav .menu-button p::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 72px;
  height: 2px;
  background-color: #403F3D;
}
@media (max-width: 768px) {
  .wrapper .container header .burger-open {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -100%;
    z-index: 1;
    background-color: #E1D4C9;
    transition: right 0.5s ease;
    overflow: scroll;
  }
  .wrapper .container header .burger-open ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wrapper .container header .burger-open ul li {
    padding-top: 60px;
  }
  .wrapper .container header .burger-open ul li:first-child {
    padding-top: 160px;
  }
  .wrapper .container header .burger-open ul li a {
    font-size: 32px;
    line-height: 125%;
  }
  .wrapper .container header .burger-open ul :not(:first-child) {
    padding-left: 0px;
  }
  .wrapper .container header .burger-open .menu-button {
    padding: 100px 60px 0px 0px;
  }
  .wrapper .container header .burger-open .menu-button a {
    font-size: 32px;
    line-height: 125%;
  }
  .wrapper .container header .burger-open .menu-button a::before {
    content: "";
    background: url("../images/coffee-cup.svg") no-repeat;
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: cover;
    top: 0px;
    right: -59px;
  }
  .wrapper .container header .burger-open .menu-button a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 68px;
    width: 0px;
    height: 2px;
    background-color: #403F3D;
    transition: width 0.4s ease;
    transform: translateX(-50%);
  }
  .wrapper .container header .burger-open .menu-button a:hover::after {
    width: 140px;
  }
  .wrapper .container header .burger-open .menu-button p {
    font-size: 32px;
    line-height: 125%;
    color: #403F3D;
  }
  .wrapper .container header .burger-open .menu-button p::before {
    width: 40px;
    height: 40px;
    background-size: cover;
    top: 0px;
    right: -50px;
  }
  .wrapper .container header .burger-open .menu-button p::after {
    width: 135px;
  }
  .wrapper .container header .burger-active {
    z-index: 1;
  }
  .wrapper .container header .burger-active span::before {
    top: 47%;
    transform: translate(-47%) rotate(-45deg);
  }
  .wrapper .container header .burger-active span::after {
    bottom: 47%;
    transform: translate(-47%) rotate(45deg);
  }
  .wrapper .container header .show {
    right: 0;
  }
}
.wrapper .container .burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid #665F55;
  background-color: transparent;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrapper .container .burger {
    display: block;
  }
}
.wrapper .container .burger span {
  transform-origin: center;
}
.wrapper .container .burger span::before, .wrapper .container .burger span::after {
  content: "";
  position: absolute;
  background-color: #403F3D;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.5s ease;
}
.wrapper .container .burger span::before {
  top: 40%;
}
.wrapper .container .burger span::after {
  bottom: 40%;
}
.wrapper .container .enjoy {
  position: relative;
  padding: 100px 100px 96px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .wrapper .container .enjoy {
    padding: 100px 60px 96px;
  }
}
@media (max-width: 664px) {
  .wrapper .container .enjoy {
    padding: 57px 16px;
  }
}
.wrapper .container .enjoy video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
  top: 0;
  left: 0;
  z-index: 0;
}
.wrapper .container .enjoy .enjoy-content {
  position: relative;
  max-width: 530px;
  width: 100%;
}
.wrapper .container .enjoy .enjoy-content h1 {
  font-size: 72px;
  line-height: 105%;
  color: #E1D4C9;
}
@media (max-width: 664px) {
  .wrapper .container .enjoy .enjoy-content h1 {
    font-size: 42px;
    line-height: 115%;
  }
}
.wrapper .container .enjoy .enjoy-content h1 span {
  font-style: italic;
  color: #B0907A;
}
.wrapper .container .enjoy .enjoy-content p {
  margin: 40px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #E1D4C9;
}
.wrapper .container .enjoy .enjoy-content a {
  display: inline-block;
  padding: 20px 78px;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  background-color: #E1D4C9;
  font-size: 16px;
  color: #403F3D;
}
.wrapper .container .enjoy .enjoy-content a span {
  display: inline-block;
  transition: transform 0.6s ease;
}
.wrapper .container .enjoy .enjoy-content a::after {
  content: "";
  background: url("../images/coffee-cup.svg") no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  left: 114px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.wrapper .container .enjoy .enjoy-content a:hover span {
  transform: translateX(-14px);
}
.wrapper .container .enjoy .enjoy-content a:hover::after {
  opacity: 1;
}
@media (hover: none) {
  .wrapper .container .enjoy .enjoy-content a span {
    transform: translateX(-14px);
  }
  .wrapper .container .enjoy .enjoy-content a::after {
    opacity: 1;
  }
}
.wrapper .container .favourites-coffee {
  padding: 100px 0px;
}
.wrapper .container .favourites-coffee h2 {
  padding-bottom: 40px;
  text-align: center;
  font-size: 60px;
  line-height: 125%;
  color: #403F3D;
}
@media (max-width: 664px) {
  .wrapper .container .favourites-coffee h2 {
    font-size: 32px;
  }
}
.wrapper .container .favourites-coffee h2 span {
  font-style: italic;
  color: #B0907A;
}
.wrapper .container .favourites-coffee .all-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.wrapper .container .favourites-coffee .all-wrapper button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #665F55;
  background-color: transparent;
  transition: all 0.7s ease;
  cursor: pointer;
}
.wrapper .container .favourites-coffee .all-wrapper button:hover {
  background-color: #665F55;
  transition: all 0.7s ease;
}
.wrapper .container .favourites-coffee .all-wrapper button svg path {
  stroke: #403F3D;
  transition: stroke 0.7s ease;
}
.wrapper .container .favourites-coffee .all-wrapper button:hover svg path {
  stroke: #E1D4C9;
  transition: stroke 0.7s ease;
}
@media (hover: none) {
  .wrapper .container .favourites-coffee .all-wrapper button:hover {
    background-color: #E1D4C9;
  }
  .wrapper .container .favourites-coffee .all-wrapper button:hover svg path {
    stroke: #403F3D;
  }
}
.wrapper .container .favourites-coffee .all-wrapper .button-left {
  margin-left: 4px;
}
@media (max-width: 768px) {
  .wrapper .container .favourites-coffee .all-wrapper .button-left {
    margin-left: 0px;
  }
}
@media (max-width: 690px) {
  .wrapper .container .favourites-coffee .all-wrapper .button-left {
    display: none;
  }
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper {
  width: 480px;
  height: 640px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 690px) {
  .wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper {
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper {
    width: 348px;
    height: 532px;
  }
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line {
  display: flex;
  position: relative;
  width: 1440px;
  height: 640px;
  transform: translateX(0);
  transition: all 1s ease;
}
@media (max-width: 540px) {
  .wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line {
    width: 1044px;
    height: 532px;
  }
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
}
@media (max-width: 540px) {
  .wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item {
    width: 348px;
  }
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item img {
  max-width: 100%;
  width: 100%;
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item h3 {
  padding-top: 20px;
  font-size: 24px;
  line-height: 125%;
  color: #403F3D;
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item p {
  text-align: center;
  padding: 16px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #403F3D;
}
.wrapper .container .favourites-coffee .all-wrapper .slayder-wrapper .slayder-line .slayder-item span {
  font-size: 24px;
  line-height: 125%;
  color: #403F3D;
}
.wrapper .container .favourites-coffee .all-wrapper .button-right {
  margin-right: 4px;
}
@media (max-width: 768px) {
  .wrapper .container .favourites-coffee .all-wrapper .button-right {
    margin-right: 0px;
  }
}
@media (max-width: 690px) {
  .wrapper .container .favourites-coffee .all-wrapper .button-right {
    display: none;
  }
}
.wrapper .container .favourites-coffee .slayder-dots {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 144px;
}
.wrapper .container .favourites-coffee .slayder-dots .progress-one,
.wrapper .container .favourites-coffee .slayder-dots .progress-two,
.wrapper .container .favourites-coffee .slayder-dots .progress-three {
  width: 40px;
  border-radius: 2px;
  background-color: #C1B6AD;
}
.wrapper .container .favourites-coffee .slayder-dots .bar-one,
.wrapper .container .favourites-coffee .slayder-dots .bar-two,
.wrapper .container .favourites-coffee .slayder-dots .bar-three {
  display: block;
  width: 0px;
  height: 4px;
  border-radius: 2px;
  background-color: #665F55;
}
@keyframes Anima {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.wrapper .container .favourites-coffee .slayder-dots .active-animation {
  animation: Anima 5s linear;
}
.wrapper .container .about {
  padding-bottom: 100px;
}
.wrapper .container .about h2 {
  margin-bottom: 40px;
  font-size: 60px;
  line-height: 125%;
  color: #403F3D;
}
@media (max-width: 582px) {
  .wrapper .container .about h2 {
    font-size: 32px;
  }
}
.wrapper .container .about h2 span {
  color: #B0907A;
  font-style: italic;
}
.wrapper .container .about .about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 40px;
}
@media (max-width: 1024px) {
  .wrapper .container .about .about-content {
    justify-content: center;
    grid-template-columns: 1fr;
  }
}
.wrapper .container .about .about-content .about-item-1 {
  grid-row: span 2;
  aspect-ratio: 66/59;
  background: url("../images/about-1.webp") no-repeat;
}
@media (max-width: 1024px) {
  .wrapper .container .about .about-content .about-item-1 {
    grid-row: initial;
  }
}
@media (max-width: 768px) {
  .wrapper .container .about .about-content .about-item-1 {
    aspect-ratio: 68.8/59;
  }
}
.wrapper .container .about .about-content .about-item-2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
  aspect-ratio: 66/43;
  background: url("../images/about-3.webp") no-repeat;
}
@media (max-width: 1024px) {
  .wrapper .container .about .about-content .about-item-2 {
    display: none;
  }
}
.wrapper .container .about .about-content .about-item-3 {
  grid-row: 3/span 1;
  grid-column: 1/span 1;
  aspect-ratio: 66/43;
  background: url("../images/about-2.webp") no-repeat;
}
@media (max-width: 1024px) {
  .wrapper .container .about .about-content .about-item-3 {
    display: none;
  }
}
.wrapper .container .about .about-content .about-item-4 {
  grid-row: span 2;
  aspect-ratio: 66/59;
  background: url("../images/about-4.webp") no-repeat;
}
@media (max-width: 1024px) {
  .wrapper .container .about .about-content .about-item-4 {
    grid-row: initial;
  }
}
@media (max-width: 768px) {
  .wrapper .container .about .about-content .about-item-4 {
    aspect-ratio: 68.8/59;
  }
}
.wrapper .container .about .about-content .item-border {
  border-radius: 20px;
  background-size: 110%;
  background-position: center;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .wrapper .container .about .about-content .item-border {
    background-size: 105%;
  }
}
@media (max-width: 420px) {
  .wrapper .container .about .about-content .item-border {
    background-size: 726px;
    aspect-ratio: 174/295;
  }
}
@media (max-width: 380px) {
  .wrapper .container .about .about-content .item-border {
    aspect-ratio: 380px/590px;
  }
}
@media (hover: hover) {
  .wrapper .container .about .about-content .item-border:hover {
    background-size: 100%;
  }
}
@media (hover: hover) and (max-width: 582px) {
  .wrapper .container .about .about-content .item-border:hover {
    background-size: 600px;
  }
}
.wrapper .container .mobile-app {
  display: flex;
  align-items: center;
}
@media (max-width: 1090px) {
  .wrapper .container .mobile-app {
    flex-direction: column;
    align-items: center;
  }
}
.wrapper .container .mobile-app .app-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 100px;
  max-width: 630px;
  width: 100%;
}
@media (max-width: 1090px) {
  .wrapper .container .mobile-app .app-content {
    margin-right: 0px;
    padding: 0px 0px 100px 0px;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 582px) {
  .wrapper .container .mobile-app .app-content {
    padding: 0px 0px 40px 0px;
  }
}
.wrapper .container .mobile-app .app-content h2 {
  font-size: 60px;
  line-height: 125%;
  color: #403F3D;
}
@media (max-width: 582px) {
  .wrapper .container .mobile-app .app-content h2 {
    font-size: 32px;
  }
}
.wrapper .container .mobile-app .app-content h2 span {
  font-style: italic;
  color: #B0907A;
}
.wrapper .container .mobile-app .app-content p {
  padding: 40px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #403F3D;
}
.wrapper .container .mobile-app .app-content .app-links {
  display: flex;
}
@media (max-width: 582px) {
  .wrapper .container .mobile-app .app-content .app-links {
    flex-direction: column;
  }
}
.wrapper .container .mobile-app .app-content .app-links a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  padding: 12px 20px;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid #665F55;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a svg path {
  transition: fill 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a span {
  font-size: 10px;
  line-height: 140%;
  color: #403F3D;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a span .app-links-store {
  display: inline-block;
  padding-top: 2px;
  font-size: 16px;
  color: #403F3D;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a:last-child {
  margin: 0px 0px 0px 20px;
}
@media (max-width: 582px) {
  .wrapper .container .mobile-app .app-content .app-links a:last-child {
    margin: 20px 0px 0px 0px;
  }
}
.wrapper .container .mobile-app .app-content .app-links a:hover {
  background-color: #665F55;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a:hover span {
  color: #E1D4C9;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a:hover span .app-links-store {
  color: #E1D4C9;
  transition: all 0.7s ease;
}
.wrapper .container .mobile-app .app-content .app-links a:hover svg path {
  fill: #E1D4C9;
  transition: fill 0.7s ease;
}
@media (hover: none) {
  .wrapper .container .mobile-app .app-content .app-links a:hover {
    background-color: #E1D4C9;
  }
  .wrapper .container .mobile-app .app-content .app-links a:hover span {
    color: #665F55;
  }
  .wrapper .container .mobile-app .app-content .app-links a:hover span .app-links-store {
    color: #665F55;
  }
  .wrapper .container .mobile-app .app-content .app-links a:hover svg path {
    fill: #665F55;
  }
}
.wrapper .container .mobile-app .mobile-app-photo img {
  max-width: 100%;
  width: 100%;
}
.wrapper .container footer {
  margin-top: 100px;
  padding-bottom: 40px;
}
.wrapper .container footer .footer-wrapper {
  display: flex;
  justify-content: flex-start;
  padding: 100px 100px 100px;
  border-radius: 40px;
  background-color: #665F55;
}
@media (max-width: 1175px) {
  .wrapper .container footer .footer-wrapper {
    flex-direction: column;
    padding: 100px 60px;
  }
}
@media (max-width: 582px) {
  .wrapper .container footer .footer-wrapper {
    padding: 60px 16px 63px;
  }
}
.wrapper .container footer .footer-wrapper .footer-title {
  display: flex;
  flex-wrap: wrap;
  width: 530px;
  margin-right: 100px;
}
@media (max-width: 1175px) {
  .wrapper .container footer .footer-wrapper .footer-title {
    margin-right: 0px;
    max-width: 100%;
    width: 100%;
  }
}
.wrapper .container footer .footer-wrapper .footer-title h2 {
  padding-bottom: 40px;
  font-size: 60px;
  line-height: 125%;
  color: #E1D4C9;
}
@media (max-width: 582px) {
  .wrapper .container footer .footer-wrapper .footer-title h2 {
    font-size: 32px;
  }
}
.wrapper .container footer .footer-wrapper .footer-title h2 span {
  font-style: italic;
  color: #B0907A;
}
.wrapper .container footer .footer-wrapper .footer-title .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid #C1B6AD;
  border-radius: 100px;
  transition: all 0.8s ease;
  cursor: pointer;
}
.wrapper .container footer .footer-wrapper .footer-title .icon:hover {
  background-color: #E1D4C9;
  transition: all 0.8s ease;
}
@media (hover: none) {
  .wrapper .container footer .footer-wrapper .footer-title .icon:hover {
    background-color: #665F55;
  }
}
.wrapper .container footer .footer-wrapper .footer-title .icon-twitter:hover svg path,
.wrapper .container footer .footer-wrapper .footer-title .icon-instagram:hover svg path,
.wrapper .container footer .footer-wrapper .footer-title .icon-facebook:hover svg path {
  stroke: #665F55;
  transition: all 0.8s ease;
}
@media (hover: none) {
  .wrapper .container footer .footer-wrapper .footer-title .icon-twitter:hover svg path,
  .wrapper .container footer .footer-wrapper .footer-title .icon-instagram:hover svg path,
  .wrapper .container footer .footer-wrapper .footer-title .icon-facebook:hover svg path {
    stroke: #E1D4C9;
  }
}
.wrapper .container footer .footer-wrapper .footer-title .icon-instagram {
  margin: 0px 12px;
}
.wrapper .container footer .footer-wrapper .footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1175px) {
  .wrapper .container footer .footer-wrapper .footer-contacts {
    padding: 100px 0px 0px 0px;
  }
}
@media (max-width: 582px) {
  .wrapper .container footer .footer-wrapper .footer-contacts {
    padding: 40px 0px 0px 0px;
  }
}
.wrapper .container footer .footer-wrapper .footer-contacts h3 {
  padding-bottom: 40px;
  font-size: 24px;
  line-height: 125%;
  color: #E1D4C9;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li {
  display: flex;
  justify-content: flex-start;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li img {
  padding-right: 8px;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li a {
  display: flex;
  position: relative;
  font-size: 16px;
  color: #E1D4C9;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #E1D4C9;
  transition: width 0.7s ease;
  transform: translateX(-50%);
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li a:hover::after {
  width: 100%;
}
@media (hover: none) {
  .wrapper .container footer .footer-wrapper .footer-contacts ul li a:hover::after {
    width: 0%;
  }
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li a img {
  padding-right: 8px;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li:nth-child(2) {
  padding: 20px 0px;
}
.wrapper .container footer .footer-wrapper .footer-contacts ul li p {
  font-size: 16px;
  color: #E1D4C9;
}/*# sourceMappingURL=style.css.map */