.main {
  background-color: #3b2b15;
  color: #fff;
}
.main-container {
  margin-bottom: 60px;
}
.main .images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 30px;
}
.main .images img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}
.main-block {
  display: flex;
  flex-direction: row;
  padding-top: 150px;
  min-height: 600px;
  gap: 50px;
}
.main-block .btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  border: none;
  padding: 20px 20px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
}
.main-block .left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: #fff;
}
.main-block .left .title {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 30px;
}
.main-block .left .description {
  font-size: 40px;
  font-weight: 600;
  width: 85%;
  margin-bottom: 30px;
  color: #f2f2f2;
}
.main-block .right {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 16px;
  background: #ffffff;
  color: #000;
  box-shadow: 0px 4px 6px 0px rgba(66, 29, 8, 0.4), 0px 2px 4px 0px rgb(0, 0, 0);
}
.main-block .right .property {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-block .right .property .icon {
  padding: 10px;
  border-radius: 50px;
  background-color: #f2f2f2;
  flex-shrink: 0;
  display: flex;
}
.main-block .right .property .icon img {
  height: 35px;
  aspect-ratio: 1;
}
.main-block .right .property .value {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main-block .right .property .value .main-text {
  white-space: nowrap;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}
.main-block .right .property .value .secondary-text {
  font-size: 18px;
  font-family: Montserrat Alternates;
  font-weight: 500;
  line-height: normal;
}

/* Хинкальная это  */
.main-about {
  padding: 45px 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 50px;
}
.main-container::after {
  content: "";
  display: block;
  height: 60px;
  width: 100%;
  background-image: url(../assets/images/footer-image.jpg);
  background-repeat: repeat;
  background-position: center bottom;
}
.main-about .left {
  flex: 0.7;
}
.main-about .left .title {
  margin-bottom: 25px;
}
.main-about .left .description {
  font-size: 18px;
  font-family: Montserrat Alternates;
}
.main-about .left {
}
.main-about .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.5;
}
.main-about .right .header {
  flex: 0.5;
}
.main-about .right .header .title {
  font-weight: 500;
}
.main-about .right .properties {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-about .right .properties .property .icon img {
  width: 45px;
}
/*  */

/* Общие показатели ресторана */
.main-stats {
  display: flex;
  flex-direction: row;
  gap: 35px;
  margin-bottom: 60px;
}
.main-stats .left {
  flex: 0.5;
}
.main-stats .left .title {
  font-size: 35px;
  margin-bottom: 20px;
}
.main-stats .left .description {
  font-size: 19px;
  font-family: Montserrat Alternates;
  margin-bottom: 20px;
}
.main-stats .left .properties {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 30px;
}
.main-stats .left .properties .property {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  /* border: 2px solid #000; */
  border: 3px solid rgba(0, 0, 0, 0.3);
  padding: 20px;
  gap: 10px;
}
.main-stats .left .properties .property .body {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 15px;
  /* background-color: #dddddd; */
  background-color: #3b2b15;
  color: #fff;
  height: 100%;
  border-radius: 10px;
  padding: 18px;
}
.main-stats .left .properties .property .body .icon {
  padding: 10px;
  border-radius: 50px;
  background-color: #fff;
  flex-shrink: 0;
  display: inline-flex;
}
.main-stats .left .properties .property .body .icon img {
  height: 35px;
  aspect-ratio: 1;
}
.main-stats .left .properties .property .body .value {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-stats .left .properties .property .body .value .main-text {
  font-size: 30px;
}
.main-stats .left .properties .property .body .value .secondary-text {
}

.main-stats .right {
  flex: 0.5;
}
.main-stats .right .images {
  display: grid;
  /* grid-template-columns: repeat(2, 0.5fr); */
  grid-template-columns: 0.6fr 0.4fr;
  grid-template-rows: repeat(2, 0.5fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  height: 100%;
}
.main-stats .right .images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.main-stats .right .images .first {
  grid-area: 1 / 1 / 2 / 2;
}
.main-stats .right .images .second {
  grid-area: 1 / 2 / 2 / 3;
}
.main-stats .right .images .third {
  grid-area: 2 / 1 / 3 / 3;
}
.main-stats .right .images .third {
  aspect-ratio: 3/2;
}
/*  */

/* Просто вкусно, наш девиз... */
.advantages {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
}
.advantages .header {
}
.advantages .header .title {
  font-size: 35px;
  margin-bottom: 7px;
}
.advantages .header .description {
  font-size: 18px;
  font-family: Montserrat Alternates;
}
.advantages .properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.advantages .properties .property {
  display: flex;
  flex: 1;
  gap: 25px;
  flex-direction: row;
}
.advantages .properties .property .image {
  height: 100%;
}
.advantages .properties .property .image img {
  height: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}
.advantages .properties .property .footer {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.advantages .properties .property .footer .main-text {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  /* color: #3b2b15; */
}
.advantages .properties .property .footer .secondary-text {
  font-family: Montserrat Alternates;
  font-size: 18px;
}
/*  */

/* Уникальное меню */
.food-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
}
.food-menu .header {
}
.food-menu .header .title {
  font-size: 35px;
  margin-bottom: 7px;
}
.food-menu .header .description {
  font-size: 18px;
  font-family: Montserrat Alternates;
}
.food-menu .header .description b {
  font-weight: 600;
}
.food-menu .properties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}
.food-menu .properties .property {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.food-menu .properties .first {
  grid-area: 1 / 1 / 3 / 2;
}
.food-menu .properties .second {
  grid-area: 1 / 2 / 2 / 3;
}
.food-menu .properties .second img {
  aspect-ratio: 3/2;
}
.food-menu .properties .third {
  grid-area: 2 / 2 / 3 / 3;
}
.food-menu .properties .third img {
  aspect-ratio: 3/2;
}

.food-menu .properties .property .image {
  height: 100%;
}
.food-menu .properties .property .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.food-menu .properties .property .value {
  padding: 25px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #232323;
  border: 2px solid #343434;
}
/*  */

/* Аудитория */
.audience {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px; */
  display: flex;
  margin-bottom: 70px;
  gap: 20px;
}
.audience .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience .left .title {
  font-size: 35px;
  margin-bottom: 7px;
}
.audience .left .image img {
  width: 100%;
  max-width: 1000px;
}
.audience .right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.audience .right .header {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.audience .right .header .description {
}
.audience .right .average-check {
  display: inline-flex;
  padding: 15px 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
}
.audience .right .average-check .body {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #dddddd;
  padding: 10px 50px 10px 70px;
  border-radius: 50px 10px 10px 50px;
}
.audience .right .average-check .body .icon {
  position: absolute;
  left: 0;
  padding: 10px;
  border-radius: 50px;
  background-color: #fff;
  flex-shrink: 0;
  display: inline-flex;
}
.audience .right .average-check .body .icon img {
  height: 35px;
  aspect-ratio: 1;
}
.audience .right .average-check .body .value .main-text {
  font-size: 22px;
}
.audience .right .footer {
}
.audience .right .footer .title {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
}
.audience .right .footer .properties {
  width: 100%;
  display: grid;
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  gap: 30px;
}
.audience .right .footer .properties .property {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.audience .right .footer .properties .property .icon {
}
.audience .right .footer .properties .property .icon img {
  width: 30px;
  flex-shrink: 0;
  aspect-ratio: 1;
}
.audience .right .footer .properties .property .value {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.audience .right .footer .properties .property .value .main-text {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
}
.audience .right .footer .properties .property .value .secondary-text {
  font-family: Montserrat Alternates;
  font-size: 16px;
}

/*  */

/* Этапы взаимодействия */
.interaction-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
}
.interaction-steps .title {
  font-size: 35px;
  margin-bottom: 7px;
}
.interaction-steps .step-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.interaction-steps .step-cards .step-card {
  padding: 50px;
  margin-top: 40px;
  border-radius: 8px;
  position: relative;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 15px;
  justify-content: center;
  background-color: #f5f6f7;
  animation: Waves 8s linear infinite;
  background: url(../assets/wave.svg) repeat 6%;
  background-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  height: 400px;
  flex-basis: 300px;
  width: 100%;
  transition: 0.3s all linear;
  border: 3px solid rgba(0, 0, 0, 0.1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.interaction-steps .step-cards .step-card .step-number {
  position: absolute;
  line-height: 1.5em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 15px;
  font-size: 30px;
  width: 80px;
  height: 80px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 7px 4px 21px 6px rgba(0, 0, 0, 0.15);
  background: linear-gradient(
    to bottom,
    rgba(78, 200, 244, 0.3),
    rgba(78, 117, 244, 0.3),
    rgba(155, 166, 200, 0.3)
  );

  background: linear-gradient(
    to bottom,
    rgba(244, 187, 78, 0.3),
    rgba(240, 208, 68, 0.3),
    rgba(180, 116, 59, 0.3)
  );
}
.interaction-steps .step-cards .step-card img {
  width: 40px;
}
@keyframes Waves {
  0% {
    background-position: 32% 70%;
  }
  100% {
    background-position: 22.5% 80%;
  }
}
.interaction-steps .step-cards .step-card .step-title {
  color: #232323;
}
/*  */

/* Работая с нами */
.work-together {
  margin-bottom: 70px;
}
.work-together .title {
  font-size: 35px;
  margin-bottom: 30px;
}
.work-together .body {
}
.work-together .body .left {
}
.work-together .body .left .properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.work-together .body .left .properties .property {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  color: #000;
  box-shadow: 0px 4px 24px 0px rgba(9, 8, 66, 0.04),
    0px 2px 4px 0px rgba(9, 8, 66, 0.08);
}
.work-together .body .left .properties .property .icon {
}
.work-together .body .left .properties .property .icon img {
  width: 40px;
}
.work-together .body .left .properties .property .main-text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.work-together .body .left .properties .property .secondary-text {
  font-size: 16px;
  font-family: Montserrat Alternates;
  font-weight: 500;
  line-height: normal;
}
/*  */

/* Выгодные условия */
.conditions {
  margin-bottom: 70px;
}
.conditions .title {
  font-size: 35px;
  margin-bottom: 80px;
  padding-top: 50px;
}
.conditions .properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.conditions .properties .property {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 16px;
  padding: 20px 32px;
  background-color: rgba(224, 177, 123, 0.15);
  color: #fff;
  border-left: 4px solid #e0b17b;
}
.conditions .properties .property .main-text {
  font-size: 25px;
  font-weight: 700;
  width: 100%;
  color: #fff;
}
.conditions .properties .property .secondary-text {
  font-size: 20px;
}
/*  */

/* Контакты */
.contacts {
  display: flex;
  flex-direction: row-reverse;
  gap: 90px;
}
.contacts .left .title {
  font-size: 35px;
  margin-bottom: 30px;
}
.contacts .left .contact-items {
  display: flex;
  align-items: start;
  gap: 30px;
}
.contacts .left .phone {
}
.contacts .left .phone .header-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  white-space: pre;
}
.contacts .left .phone .number {
}
.contacts .left .social-links {
}
.contacts .left .social-links .header-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  white-space: pre;
}
.contacts .left .social-links .link {
}
.contacts .left .social-links .link:hover img {
  transform: translateY(-2px);
}
.contacts .left .social-links .link img {
  width: 40px;
}
.contacts .right {
  width: 100%;
}
.contacts .right .header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.contacts .right .header .title {
  font-size: 35px;
  font-weight: 600;
}
.contacts .right .header .description {
  font-family: Montserrat Alternates;
  font-size: 18px;
  font-weight: 500;
}
.contacts .right .separator {
  margin-bottom: 25px;
}
.contacts .right form {
  margin-bottom: 20px;
}
a.order-call {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  background-color: #25d366;
  color: #000;
}
#navbar a.order-call {
  padding: 12px 18px;
  font-size: 16px;
  color: #ffffff;
}
/* MEDIA */
@media screen and (min-width: 1100px) {
  .conditions .properties {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
}

@media screen and (max-width: 767px),
  (min-width: 768px) and (max-width: 1050px) {
  .main-block {
    flex-direction: column;
    padding-top: 100px;
  }
  .main-block .right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
  .main-stats .right .images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
  .main-stats .right .images .first,
  .main-stats .right .images .second,
  .main-stats .right .images .third {
    grid-area: unset;
  }
  .main-stats {
    flex-direction: column;
  }
  .audience {
    flex-direction: column;
  }
  .audience .left .image img {
    width: 70%;
  }
  .contacts {
    flex-direction: column-reverse;
  }
  /* .main-about .right .properties .property {
    display: flex;
    flex-direction: column;
    align-items: center;
  } */
}
@media screen and (max-width: 767px) {
  .main-block {
    flex-direction: column;
    padding-top: 30px;
  }
  .main-block .right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
  .main-block .left .title {
    font-size: 40px;
    white-space: nowrap;
  }
  .main-block .left .description {
    font-size: 25px;
  }

  .main-stats .left .properties {
    grid-template-columns: 1fr;
  }
  .main-block .right .property .value .main-text {
    font-size: 22px;
  }
  .advantages .properties .property .image img {
    height: 150px;
  }
  .main-about {
    flex-direction: column;
  }
  .food-menu .properties {
    display: flex;
    flex-direction: column;
  }
  .conditions .properties .property .main-text {
    font-size: 18px;
  }
  #wave-footer .powered-by img {
    height: 25px !important;
  }
  .advantages .properties .property {
    flex-direction: column;
  }
  .advantages .properties .property .footer .main-text {
    font-size: 18px;
  }
}
/* MEDIA END */
