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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
textarea,
select {
  font: inherit;
}

body {
  height: 100vh;
  background: linear-gradient(to bottom left, #1c0c00 0%, #1c0700 31%, #140900 69%, #1c0c00 100%) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: antiquewhite;
}

button,
a {
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

li,
ol {
  list-style: none;
}

.container {
  max-width: 1512px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 130px;
  }
}

.header {
  margin-bottom: 64px;
}
.header__inner {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 800;
  background-image: linear-gradient(to bottom left, #ff612e, #ffa32b);
  background-clip: text;
  color: transparent;
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
  pointer-events: none;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 150ms linear, opacity 50ms linear;
  z-index: 10;
}
.header__nav.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.header__nav.open .header__nav-close {
  display: block;
}
.header__nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100dvh;
  background: linear-gradient(to bottom left, #ff612e, #ffa32b);
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: 100%;
    padding: 10px;
    background-color: transparent;
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
  }
  .header__nav::before {
    display: none;
  }
}
.header__nav-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: transparent;
  border: none;
  color: #a3a3a3;
  font-size: 1.5rem;
  font-weight: 700;
}
.header__nav-close svg {
  stroke: #a3a3a3;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
@media (min-width: 1024px) {
  .header__nav-list {
    flex-direction: row;
    gap: 40px;
  }
}
.header__nav-link {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  color: #a3a3a3;
}
.header__nav-link:hover, .header__nav-link:focus {
  background-image: linear-gradient(to bottom left, #ff612e, #ffa32b);
  background-clip: text;
  color: transparent;
}
.header__group {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom left, #ff612e, #ffa32b);
  border: none;
  border-radius: 50%;
}
.header__login-btn {
  display: none;
}
@media (min-width: 768px) {
  .header__login-btn {
    display: inline-block;
    height: 40px;
    padding: 8px 56px;
    background: linear-gradient(to bottom left, #ff612e, #ffa32b);
    border: none;
    border-radius: 28px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
  }
}
.header__menu-btn {
  background-color: transparent;
  border: none;
}
.header__menu-btn > svg {
  stroke: url("./images/icons.svg#paint0_linear_202_31");
}
@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}

.image-with-decors {
  position: relative;
  display: inline-flex;
}
.image-with-decors::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 94px;
  height: 62px;
  background-image: url("./images/pizza-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(33%, -33%);
}
.image-with-decors::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 94px;
  height: 97px;
  background-image: url("./images/fries-3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-33%, 15%);
}

.hero_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .hero_inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    max-height: 510px;
  }
}
.hero__image-wrap {
  text-align: center;
}
@media (min-width: 768px) {
  .hero__image-wrap {
    height: 510px;
  }
  .hero__image-wrap picture {
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .hero__image-wrap {
    flex: 1;
    text-align: right;
  }
}
.hero__image-wrap img {
  border-radius: 24px;
  object-fit: cover;
  object-position: left;
}
.hero__content-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .hero__content-wrap {
    flex: 1.5;
  }
}
.hero__title {
  color: #ffffff;
  font-weight: bold;
  font-size: 3rem;
}
.hero__title-icon {
  display: inline;
  width: 34px;
  height: 60px;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .hero__title-icon {
    width: 48px;
    height: 84px;
  }
}
.hero__text {
  color: #a3a3a3;
}
.hero__text span {
  color: #ffffff;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .hero__actions {
    flex-direction: column-reverse;
  }
}
.hero__buttons {
  display: flex;
  align-items: center;
  width: 280px;
}
.hero__btn {
  font-weight: 500;
  flex: 1;
  padding: 10px 0;
}
.hero__btn--active {
  border: none;
  border-radius: 71px;
  background: linear-gradient(to bottom left, #ff612e, #ffa32b);
  color: #ffffff;
  z-index: 1;
}
.hero__btn--menu {
  border: 2px solid transparent;
  margin-left: -30px;
  padding: 8px 0;
  padding-left: 20px;
  border-radius: 0 71px 71px 0;
  background: linear-gradient(to bottom left, #ff612e, #ffa32b) text, linear-gradient(#1c0a00) padding-box, linear-gradient(to bottom left, #ff612e, #ffa32b) border-box;
  color: transparent;
}

.video {
  width: fit-content;
}
.video__text {
  margin-bottom: 8px;
  color: #a3a3a3;
}
.video__wrap {
  position: relative;
  display: inline-block;
}
.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(#1d0800) padding-box, linear-gradient(to bottom left, #ff612e, #ffa32b) border-box;
}
.video__play-btn > img {
  margin: 0 auto;
}

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