@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.main-header {
  width: 100%;
  background: #fff8f3;
  box-shadow: 0 4px 18px rgba(130, 28, 51, 0.09);
  padding: 0;
}
.main-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 80px;
}
@media (max-width: 700px) {
  .main-header__container {
    flex-direction: column;
    height: auto;
    padding: 0 10px;
    gap: 8px;
  }
}
.main-header__logo {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #821c33;
  text-decoration: none;
  transition: opacity 0.18s;
  opacity: 0.95;
}
.main-header__logo:hover {
  opacity: 1;
}
.main-header__nav {
  display: flex;
  gap: 34px;
}
@media (max-width: 700px) {
  .main-header__nav {
    gap: 14px;
  }
}
.main-header__link {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5d2633;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
.main-header__link:hover, .main-header__link.active {
  background: #ffe5e0;
  color: #821c33;
}
.main-header__lang {
  display: flex;
  gap: 9px;
  margin-left: 18px;
}
@media (max-width: 700px) {
  .main-header__lang {
    margin: 0 0 12px 0;
  }
}
.main-header__lang-btn {
  background: #fff;
  color: #821c33;
  border: 2px solid #ffe5e0;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.main-header__lang-btn:hover, .main-header__lang-btn.active {
  background: #ffe5e0;
  border-color: #ffc8d1;
  color: #5d2633;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f6;
  padding: 64px 0 40px 0;
  gap: 60px;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 40px 0 30px 0;
    gap: 32px;
  }
}
.hero__image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img {
  width: 320px;
  height: auto;
  max-width: 100%;
  border-radius: 40px;
}
@media (max-width: 600px) {
  .hero__image img {
    width: 220px;
  }
}
.hero__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 540px;
}
@media (max-width: 900px) {
  .hero__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}
.hero__title {
  font-size: 2.9rem;
  font-weight: 800;
  color: #821c33;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
@media (max-width: 600px) {
  .hero__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.hero__subtitle {
  font-size: 1.2rem;
  color: #5d2633;
  margin-bottom: 38px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.hero__button {
  display: inline-block;
  background: #821c33;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 3px 16px rgba(130, 28, 51, 0.1);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.hero__button:hover {
  background: #b61d40;
  box-shadow: 0 6px 24px rgba(130, 28, 51, 0.16);
}

.main-cards {
  width: 100%;
  padding: 54px 0 60px 0;
  background: transparent;
}
.main-cards__container {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .main-cards__container {
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .main-cards__container {
    flex-direction: column;
    align-items: center;
  }
}
.main-cards__item {
  background: #ffe5e0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 4px 28px rgba(130, 28, 51, 0.07);
  width: 350px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 36px 24px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 400px) {
  .main-cards__item {
    width: 98vw;
    min-height: 400px;
    padding: 20px 10px 28px 10px;
  }
}
.main-cards__item--eco {
  background: #e3e4fa;
}
.main-cards__item--career {
  background: #d1eeff;
}
.main-cards__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.main-cards__title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #7a1433;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-cards__desc {
  color: #5d2633;
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 28px;
  min-height: 90px;
  line-height: 1.48;
}
.main-cards__btn {
  margin-top: auto;
  background: #821c33;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 50px;
  box-shadow: 0 2px 16px rgba(130, 28, 51, 0.12);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.main-cards__btn:hover {
  background: #b61d40;
  box-shadow: 0 6px 20px rgba(130, 28, 51, 0.15);
}

.fruit-drinks {
  width: 100%;
  background: transparent;
  padding: 56px 0;
}
.fruit-drinks__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 44px;
}
@media (max-width: 950px) {
  .fruit-drinks__container {
    flex-direction: column;
    gap: 32px;
  }
}
.fruit-drinks__img {
  flex: 0 0 430px;
  max-width: 430px;
}
.fruit-drinks__img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(100, 0, 30, 0.08);
  background: #f2ffe6;
}
@media (max-width: 600px) {
  .fruit-drinks__img {
    flex-basis: 98vw;
    max-width: 98vw;
  }
}
.fruit-drinks__text {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fruit-drinks__desc {
  color: #7a1433;
  font-size: 1.27rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .fruit-drinks__desc {
    font-size: 1.05rem;
    text-align: center;
  }
}
.fruit-drinks__desc b, .fruit-drinks__desc strong {
  color: #e84163;
}

.about-block {
  width: 100%;
  background: linear-gradient(90deg, #ffe3e3 0%, #ffeae3 100%);
  padding: 70px 0;
}
.about-block__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 54px;
}
@media (max-width: 900px) {
  .about-block__container {
    flex-direction: column;
    gap: 28px;
    padding: 0 8vw;
  }
}
.about-block__img {
  flex: 0 0 420px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-block__img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(130, 28, 51, 0.12);
  background: #fff;
}
@media (max-width: 600px) {
  .about-block__img {
    max-width: 96vw;
  }
}
.about-block__content {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
@media (max-width: 900px) {
  .about-block__content {
    width: 100%;
  }
}
.about-block__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(80, 24, 48, 0.08);
  padding: 40px 44px 38px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
  max-width: 540px;
}
@media (max-width: 600px) {
  .about-block__card {
    padding: 18px 14px 18px 14px;
    border-radius: 14px;
  }
}
.about-block__title {
  font-size: 2rem;
  font-weight: 900;
  color: #7a1433;
  margin-bottom: 20px;
  line-height: 1.16;
}
@media (max-width: 600px) {
  .about-block__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.about-block__desc {
  color: #5d2633;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .about-block__desc {
    font-size: 1.01rem;
  }
}

.cafe-footer {
  background: #212226;
  color: #f5f5f5;
  padding: 48px 0 24px 0;
  font-size: 16px;
}
.cafe-footer .cafe-footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 0 24px;
  gap: 32px;
}
.cafe-footer .cafe-footer__brand {
  flex: 1 1 220px;
}
.cafe-footer .cafe-footer__brand .cafe-footer__logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffe066;
  text-decoration: none;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}
.cafe-footer .cafe-footer__brand .cafe-footer__slogan {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.cafe-footer .cafe-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cafe-footer .cafe-footer__nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.cafe-footer .cafe-footer__nav a:hover {
  color: #ffe066;
}
.cafe-footer .cafe-footer__extra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.cafe-footer .cafe-footer__extra .cafe-footer__policy-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.cafe-footer .cafe-footer__extra .cafe-footer__policy-link:hover {
  color: #ffe066;
}
.cafe-footer .cafe-footer__bottom {
  border-top: 1px solid #33343a;
  margin: 0 24px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.95rem;
  gap: 4px;
}
.cafe-footer .cafe-footer__bottom .cafe-footer__address {
  color: #cccccc;
  margin-bottom: 2px;
}
.cafe-footer .cafe-footer__bottom .cafe-footer__copyright {
  color: #777;
  font-size: 0.93rem;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about-page {
  width: 100%;
}
.about-page__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 0 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about-page__hero {
    flex-direction: column;
    padding: 38px 0 18px 0;
    gap: 22px;
  }
}
.about-page__hero .about-page__img {
  flex: 0 0 400px;
}
.about-page__hero .about-page__img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 6px 38px rgba(120, 40, 60, 0.11);
  background: #f4f4ff;
}
.about-page__hero .about-page__content {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .about-page__hero .about-page__content {
    align-items: center;
    text-align: center;
  }
}
.about-page__hero__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #821c33;
  margin-bottom: 26px;
}
.about-page__hero__desc {
  font-size: 1.17rem;
  color: #5d2633;
  font-weight: 600;
  line-height: 1.48;
}
.about-page__features {
  width: 100%;
  background: #fff8f3;
  padding: 46px 0;
  display: flex;
  justify-content: center;
}
.about-page__features-list {
  display: flex;
  gap: 44px;
  max-width: 1000px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .about-page__features-list {
    flex-direction: column;
    gap: 22px;
  }
}
.about-page__feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 20px rgba(130, 28, 51, 0.09);
  padding: 30px 36px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .about-page__feature {
    padding: 18px 12px;
    min-width: 90vw;
  }
}
.about-page__feature-icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #e84163;
}
.about-page__feature-title {
  font-weight: 800;
  color: #821c33;
  font-size: 1.15rem;
}
.about-page__feature-desc {
  color: #5d2633;
  font-size: 1.01rem;
  font-weight: 500;
  opacity: 0.95;
}
.about-page__history {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 54px 0 24px 0;
  text-align: center;
}
.about-page__history-title {
  font-size: 2rem;
  font-weight: 800;
  color: #7a1433;
  margin-bottom: 32px;
}
.about-page__history-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.about-page__history-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffe3e3;
  border-radius: 18px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7a1433;
}
@media (max-width: 600px) {
  .about-page__history-item {
    flex-direction: column;
    gap: 6px;
    font-size: 1rem;
    padding: 10px 12px;
  }
}
.about-page__history-year {
  font-weight: 900;
  color: #e84163;
  font-size: 1.18em;
  margin-right: 8px;
}
.about-page__history-desc {
  color: #821c33;
  font-weight: 600;
}

.menu-page {
  width: 100%;
}
.menu-page__hero {
  padding: 54px 0 24px 0;
  text-align: center;
  background: linear-gradient(90deg, #ffe3e3 0%, #ffeae3 100%);
}
.menu-page__title {
  font-size: 2.25rem;
  color: #821c33;
  font-weight: 900;
  margin-bottom: 20px;
}
.menu-page__desc {
  color: #5d2633;
  font-size: 1.13rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}
.menu-page__list {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
  padding: 48px 0 60px 0;
}
@media (max-width: 900px) {
  .menu-page__list {
    flex-direction: column;
    gap: 22px;
    padding: 24px 0 32px 0;
  }
}
.menu-page__block {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px rgba(130, 28, 51, 0.1);
  padding: 32px 32px 18px 32px;
  min-width: 285px;
  max-width: 340px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .menu-page__block {
    padding: 18px 10px;
    min-width: 90vw;
  }
}
.menu-page__block-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #7a1433;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.menu-page__items {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-page__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ffe3e3;
}
.menu-page__item:last-child {
  border-bottom: none;
}
.menu-page__item-name {
  font-size: 1.08rem;
  color: #821c33;
  font-weight: 700;
}
.menu-page__item-desc {
  color: #5d2633;
  font-size: 0.97rem;
  font-weight: 500;
  opacity: 0.92;
}
.menu-page__item-price {
  margin-left: auto;
  font-size: 1.01rem;
  color: #e84163;
  font-weight: 800;
  align-self: flex-end;
}

.privacy {
  background: #fffdf9;
  padding: 60px 20px;
}
.privacy .privacy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy .privacy__container__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4b3227;
  margin: 32px 0 12px;
  line-height: 1.4;
}
.privacy .privacy__container__text {
  font-size: 1.05rem;
  color: #5f4c40;
  line-height: 1.7;
  margin-bottom: 18px;
}

.privacy {
  background: #fffdf9;
  padding: 60px 20px;
}
.privacy .privacy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy .privacy__container__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4b3227;
  margin: 32px 0 12px;
  line-height: 1.4;
}
.privacy .privacy__container__text {
  font-size: 1.05rem;
  color: #5f4c40;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-page__hero {
  padding: 50px 0 28px 0;
  text-align: center;
  background: linear-gradient(90deg, #ffe3e3 0%, #ffeae3 100%);
}
.contact-page__title {
  font-size: 2.25rem;
  color: #821c33;
  font-weight: 900;
  margin-bottom: 18px;
}
.contact-page__desc {
  color: #5d2633;
  font-size: 1.09rem;
  font-weight: 500;
  max-width: 540px;
  margin: 0 auto;
}
.contact-page__info {
  display: flex;
  gap: 44px;
  justify-content: center;
  padding: 44px 0 24px 0;
}
@media (max-width: 900px) {
  .contact-page__info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.contact-page__block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(130, 28, 51, 0.08);
  padding: 22px 28px;
  min-width: 210px;
  text-align: left;
}
.contact-page__label {
  font-size: 1.01rem;
  color: #821c33;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-page__value {
  font-size: 1.08rem;
  color: #5d2633;
  font-weight: 600;
  word-break: break-all;
}
.contact-page__form-block {
  display: flex;
  justify-content: center;
  padding: 32px 0 64px 0;
}

.contact-form {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(130, 28, 51, 0.09);
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form__input {
  width: 100%;
  font-size: 1rem;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1.5px solid #ffe3e3;
  outline: none;
  background: #f9f5f3;
  color: #821c33;
  font-weight: 600;
  margin-bottom: 8px;
  resize: vertical;
  transition: border-color 0.16s;
  box-sizing: border-box;
}
.contact-form__input:focus {
  border-color: #e84163;
  background: #fff8f3;
}
.contact-form__btn {
  background: #821c33;
  color: #fff;
  font-weight: 800;
  font-size: 1.07rem;
  border: none;
  border-radius: 18px;
  padding: 13px 0;
  cursor: pointer;
  transition: background 0.14s;
  margin-top: 10px;
}
.contact-form__btn:hover {
  background: #e84163;
}
.contact-form__error {
  color: #e84163;
  font-size: 1rem;
  font-weight: 700;
  min-height: 24px;
  margin-top: 2px;
  text-align: center;
}

.contact-popup {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 13, 22, 0.15);
  justify-content: center;
  align-items: center;
}
.contact-popup.active {
  display: flex;
}
.contact-popup__inner {
  background: #fff;
  padding: 38px 34px 24px 34px;
  border-radius: 24px;
  box-shadow: 0 6px 34px rgba(130, 28, 51, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  gap: 18px;
}
.contact-popup__msg {
  color: #821c33;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}
.contact-popup__close {
  background: #e84163;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.14s;
}
.contact-popup__close:hover {
  background: #821c33;
}

.faq-block {
  width: 100%;
  background: linear-gradient(90deg, #ffe3e3 0%, #ffeae3 100%);
  padding: 70px 0;
}
.faq-block__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.faq-block__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(80, 24, 48, 0.08);
  padding: 48px 44px 38px 44px;
  width: 100%;
}
@media (max-width: 600px) {
  .faq-block__card {
    padding: 24px 10px;
    border-radius: 14px;
  }
}
.faq-block__title {
  font-size: 2rem;
  font-weight: 900;
  color: #7a1433;
  margin-bottom: 34px;
  text-align: left;
  line-height: 1.13;
}
@media (max-width: 600px) {
  .faq-block__title {
    font-size: 1.25rem;
    margin-bottom: 18px;
    text-align: center;
  }
}
.faq-block__faq {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-block__item {
  padding-bottom: 14px;
  border-bottom: 1px solid #f2bfc8;
}
.faq-block__q {
  color: #821c33;
  font-size: 1.11rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.22;
}
.faq-block__a {
  color: #5d2633;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.46;
  opacity: 0.95;
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Sora";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

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