* {
  margin: 0;
  padding: 0;
  /*max-width: 100vw;*/
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.locked {
  overflow: hidden;
}

@font-face {
  font-family: Brother-1816;
  src: url(Brother-1816-Printed-Regular.woff2);
}
@font-face {
  font-family: Brother-1816-bold;
  src: url(Brother-1816-Printed-Bold.woff2);
}
body {
  overflow-x: hidden;
  background: #F1FAFA;
  font-family: Brother-1816, sans-serif;
  color: black;
}

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

b {
  font-weight: 900;
}

h2 {
  font-size: 56px;
  font-weight: 900;
  line-height: 110%;
  text-transform: uppercase;
}

img {
  display: block;
}

.button {
  display: flex;
  padding: 8px 35px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  background: #43302E;
  color: #FFF1B5;
  text-align: center;
  font-family: "Brother-1816-bold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}
.button.blue {
  background: #C1DBE8;
  color: #43302E;
}

.hero {
  position: relative;
  background: #FFF1B5;
}
.hero .bg {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}
.hero .bg.mobile {
  display: none;
}
.hero .top {
  display: flex;
  padding: 50px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
}
.hero .top .logo {
  width: 122px;
  flex-shrink: 0;
}
.hero .top p {
  color: #2F2F2F;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.hero .top .buttons {
  display: flex;
  gap: 24px;
}
.hero .roll {
  position: absolute;
  bottom: 26px;
  overflow: hidden;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}
.hero .roll .track {
  display: flex;
  width: max-content;
  gap: 50px;
  padding: 14px 0;
  animation: scroll-left 40s linear infinite;
}
.hero .roll span {
  white-space: nowrap;
  color: #FFF;
  font-family: "Brother-1816-bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2px;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.menu {
  background: #C1DBE8;
  padding-top: 50px;
}
.menu .content {
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
}
.menu .content .blocks .embla__container {
  display: flex;
  gap: 24px;
}
.menu .content .blocks .block {
  border-radius: 32px;
  display: flex;
  width: 629px;
  flex-shrink: 0;
  padding: 32px 32px 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.menu .content .blocks .block .head-flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu .content .blocks .block .head-flex span {
  height: 25px;
  padding: 0 9px;
  flex-shrink: 0;
  border-radius: 50px;
  color: #FFF;
  background: #4B1328;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: fit-content;
}
.menu .content .blocks .block h4 {
  font-family: "Brother-1816-bold";
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.menu .content .blocks .block .dishes {
  width: 100%;
  margin: auto;
}
.menu .content .blocks .block .dishes .row {
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  width: 100%;
}
.menu .content .blocks .block .dishes .row .left {
  display: flex;
  flex: 1;
  gap: 32px;
}
.menu .content .blocks .block .dishes .row .name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu .content .blocks .block .dishes .row .name span {
  height: 25px;
  padding: 0 9px;
  flex-shrink: 0;
  border-radius: 50px;
}
.menu .content .blocks .block .dishes .row .size {
  width: 65px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.menu .content .blocks .block .dishes .row .price {
  font-family: "Brother-1816-bold";
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  flex-shrink: 0;
  width: 83px;
  white-space: nowrap;
}
.menu .content .blocks .block:nth-child(3n+1) {
  background-color: #FFF1B5;
}
.menu .content .blocks .block:nth-child(3n+1) h4 {
  color: #4B1328;
}
.menu .content .blocks .block:nth-child(3n+1) .row {
  color: #000;
}
.menu .content .blocks .block:nth-child(3n+1) .row .name span {
  background: #4B1328;
  color: #FFFFFF;
}
.menu .content .blocks .block:nth-child(3n+1) .row .price {
  color: #4B1328;
}
.menu .content .blocks .block:nth-child(3n+2) {
  background-color: #43302E;
}
.menu .content .blocks .block:nth-child(3n+2) h4 {
  color: #FFF1B5;
}
.menu .content .blocks .block:nth-child(3n+2) .row {
  color: #FFF;
}
.menu .content .blocks .block:nth-child(3n+2) .row .name span {
  background: #FFF1B5;
  color: #000000;
}
.menu .content .blocks .block:nth-child(3n+2) .row .price {
  color: #FFF1B5;
}
.menu .content .blocks .block:nth-child(3n+3) {
  background-color: #4B1328;
}
.menu .content .blocks .block:nth-child(3n+3) h4 {
  color: #FFF1B5;
}
.menu .content .blocks .block:nth-child(3n+3) .row {
  color: #FFF;
}
.menu .content .blocks .block:nth-child(3n+3) .row .price {
  color: #FFF1B5;
}
.menu .content .blocks .embla__dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 24px;
}
.menu .content .blocks .embla__dot {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.1s;
}
.menu .content .blocks .embla__dot.is-active {
  background: #FFF1B5;
  width: 82px;
}

footer {
  background: #C1DBE8;
  overflow: hidden;
}
footer .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 50px;
}
footer .content p {
  color: #2F2F2F;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
}
footer .content p b {
  font-family: Brother-1816-bold;
}

@media (min-width: 1921px) {
  .hero .top {
    scale: 1.2;
  }
  footer .content {
    scale: 1.2;
  }
}
@media (max-width: 1920px) {
  .blocks {
    padding-left: 50px;
  }
}
@media (max-width: 1200px) {
  .hero .top {
    padding-top: 24px;
    gap: 18px;
  }
  .hero .top .logo {
    width: 90px;
  }
  .hero .top p {
    font-size: 18px;
    line-height: 25px;
  }
  .blocks {
    padding-left: 50px;
  }
  footer .content {
    gap: 18px;
  }
  footer .content p {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 750px) {
  .hero .top {
    scale: 0.8;
    padding-top: 0px;
    top: -10px;
  }
  .menu .content .blocks {
    padding: 0 24px;
  }
  .menu .content .blocks .embla__container {
    flex-direction: column;
  }
  .menu .content .blocks .block {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .button {
    height: 50px;
    font-size: 20px;
    line-height: 24px;
  }
  .hero .bg.desktop {
    display: none;
  }
  .hero .bg.mobile {
    display: block;
    margin-top: -150px;
  }
  .hero .top {
    scale: initial;
    top: 200px;
    padding: 0 16px;
    gap: 24px;
  }
  .hero .top .logo {
    width: 174px;
    margin-bottom: 26px;
  }
  .hero .top p {
    font-size: 20px;
    line-height: 28px;
  }
  .hero .top .buttons {
    flex-direction: column;
    gap: 16px;
  }
  .hero .roll {
    bottom: 50px;
  }
}
@media (max-width: 500px) {
  .hero .bg.mobile {
    margin-top: -50px;
  }
  .hero .top {
    top: 100px;
  }
  .menu .content .blocks .block {
    padding: 24px 24px 50px;
  }
  .menu .content .blocks .block .dishes .row .left {
    gap: 16px;
  }
  .menu .content .blocks .block .dishes .row .name {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu .content .blocks .block .dishes .row .size {
    width: 50px;
  }
  .menu .content .blocks .embla__dots {
    margin: 0;
  }
  footer .content {
    gap: 24px;
  }
  footer .content p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 430px) {
  .hero .bg.mobile {
    margin-top: 0px;
  }
  .hero .top {
    top: 50px;
  }
}
@media (max-width: 418px) {
  .hero .top .logo {
    width: 135px;
    margin-bottom: 6px;
  }
  .hero .top .buttons {
    scale: 0.9;
    transform-origin: top;
  }
}

/*# sourceMappingURL=style.css.map */
