@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; /* Убирает обводку */
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e41c65;
}
.site-header .nav {
  display: flex;
  gap: 1.5rem;
}
.site-header .nav .nav__link {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  transition: color 0.2s;
}
.site-header .nav .nav__link:hover {
  color: #e41c65;
}
.site-header .lang-switcher {
  display: flex;
  gap: 0.5rem;
}
.site-header .lang-switcher .lang-btn {
  border: 1px solid #e41c65;
  background: #fff;
  color: #e41c65;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
.site-header .lang-switcher .lang-btn.active, .site-header .lang-switcher .lang-btn:hover {
  background: #e41c65;
  color: #fff;
}
@media (max-width: 768px) {
  .site-header .nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }
  .site-header .lang-switcher {
    margin-top: 1rem;
  }
}

.logo-header {
  height: 60px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  font-family: "Poppins", sans-serif;
}
.hero__image {
  position: relative;
  flex: 1 1 55%;
  background: url("/assets/img/hero.webp") center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero__image .hero__text {
  position: relative;
  color: white;
  text-align: center;
  max-width: 500px;
}
.hero__image .hero__text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero__image .hero__text p {
  font-size: 1.1rem;
}
.hero__form-wrapper {
  flex: 1 1 45%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}
.hero__form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__form .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero__form .form__group select, .hero__form .form__group input[type=date] {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.hero__form .form__group .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__form .form__group .button-group button {
  padding: 0.6rem 1.2rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.hero__form .form__group .button-group button.active, .hero__form .form__group .button-group button:hover {
  background: #e63946;
  color: white;
  border-color: #e63946;
}
.hero__form .form__group .button-group.small button {
  padding: 0.4rem 0.8rem;
}
.hero__form .form__group .button-group.service button {
  flex: 1 1 auto;
}
.hero__form .form__group .counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__form .form__group .counter button {
  background: #e0e0e0;
  border: none;
  width: 32px;
  height: 32px;
  font-weight: bold;
  cursor: pointer;
}
.hero__form .form__group .counter input {
  width: 50px;
  text-align: center;
  font-size: 1rem;
}
.hero__form .form__group small {
  font-size: 0.75rem;
  color: #888;
}
.hero__form .form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__form .form__footer strong {
  font-size: 1.25rem;
  color: #e63946;
}
.hero__form .form__footer .submit {
  background: #e63946;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

input[type=text],
input[type=tel] {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup__inner {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.popup.hidden {
  display: none;
}
.popup button {
  margin-top: 1rem;
  background: #e63946;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
}

.features {
  background: #f9fafc;
  padding: 4rem 1rem;
  text-align: center;
}
.features__container {
  max-width: 1200px;
  margin: 0 auto;
}
.features__logo {
  height: 200px;
  margin-bottom: 1rem;
}
.features h2 {
  color: #d11c64;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.features p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.features__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.features__card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  flex: 1 1 280px;
  transition: transform 0.3s;
}
.features__card:hover {
  transform: translateY(-6px);
}
.features__card .icon {
  font-size: 2rem;
  background: #d11c64;
  color: white;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.features__card p {
  font-size: 0.95rem;
  color: #666;
}

.qualities {
  background: #fff;
  padding: 3rem 1rem;
}
.qualities__container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.qualities .quality {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.qualities .quality__icon {
  font-size: 2.5rem;
  background: #d11c64;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qualities .quality h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.testimonials {
  background: #f9f9fb;
  padding: 4rem 1rem;
  text-align: center;
}
.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__container h2 {
  font-size: 2rem;
  color: #d11c64;
  margin-bottom: 0.5rem;
}
.testimonials__container p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
}
.testimonials__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 340px;
  flex: 1 1 300px;
  text-align: left;
}
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.testimonial__header .avatar {
  background: #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial__header .name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
}
.testimonial .stars {
  color: #f1c40f;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial p {
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
}

.faq {
  background: #fff;
  padding: 4rem 1rem;
}
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #d11c64;
  margin-bottom: 2rem;
}
.faq__item {
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}
.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  position: relative;
  cursor: pointer;
}
.faq__question::after {
  content: "▾";
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
}
.faq__question.active::after {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: #444;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer.open {
  padding: 1rem 1.5rem;
  max-height: 200px;
}

.blog {
  padding: 5rem 2rem;
  background: #f9f9f9;
}
.blog__container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.blog__container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #d7266f;
  margin-bottom: 3rem;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog__card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.blog__card:hover {
  transform: translateY(-5px);
}
.blog__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 1.2rem 1.5rem 0.5rem;
  text-align: left;
}
.blog__card p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 1.5rem 1.5rem;
  text-align: left;
}

.site-footer {
  background: #222;
  color: #ccc;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__logo {
  width: 140px;
  margin-bottom: 1rem;
}
.site-footer__column h4 {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.site-footer__column ul {
  list-style: none;
  padding: 0;
}
.site-footer__column ul li {
  margin-bottom: 0.5rem;
}
.site-footer__bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__bottom .lang-switcher button {
  background: none;
  color: #ccc;
  border: 1px solid #555;
  padding: 0.3rem 0.8rem;
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
}
.site-footer__bottom .lang-switcher button:hover {
  color: #fff;
  border-color: #fff;
}

.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;
}

.faq-page {
  background: #fff;
  padding-bottom: 5rem;
}
.faq-page .faq-header {
  background: #fff5f8;
  text-align: center;
  padding: 4rem 2rem 3rem;
}
.faq-page .faq-header h1 {
  font-size: 2.5rem;
  color: #e41c65;
  font-weight: 800;
  margin-bottom: 1rem;
}
.faq-page .faq-header p {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.faq-page .faq-list {
  padding: 3rem 2rem;
}
.faq-page .faq-list .accordion {
  max-width: 820px;
  margin: 0 auto;
}
.faq-page .faq-list .accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.faq-page .faq-list .accordion .accordion-item .accordion-header {
  background: #fff;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  transition: background 0.2s;
}
.faq-page .faq-list .accordion .accordion-item .accordion-header:hover {
  background: #fef0f5;
}
.faq-page .faq-list .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease;
  background: #fff;
}
.faq-page .faq-list .accordion .accordion-item .accordion-content p {
  padding: 1rem 0;
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}
.faq-page .faq-list .accordion .accordion-item.active .accordion-content {
  max-height: 300px;
}

.why__intro {
  background: linear-gradient(135deg, #fdfdfd, #f5f5f5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why__intro h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.why__intro p {
  font-size: 20px;
  color: #555;
  max-width: 740px;
  margin: 0 auto;
}
.why__intro::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}
.why__reasons {
  background: #fff;
  padding: 80px 20px 100px;
  position: relative;
}
.why__reasons::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 100px;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
}
.why__container {
  max-width: 1240px;
  margin: 0 auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.why__card {
  background: #fafafa;
  border: 1px solid #e3e3e3;
  padding: 32px 28px;
  text-align: left;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.why__card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ddd, #f2f2f2);
  border-radius: 50%;
}
.why__card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 14px;
}
.why__card p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .why__intro h1 {
    font-size: 32px;
  }
  .why__card {
    padding: 24px 20px;
  }
  .why__grid {
    gap: 24px;
  }
}

.privacy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9f9f9;
}
.privacy__header {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 3rem 1rem;
}
.privacy__header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}
.privacy__header p {
  font-size: 1.125rem;
  color: #555;
  max-width: 700px;
}
.privacy__content {
  padding: 3rem 1rem;
}
.privacy__content .container {
  max-width: 800px;
  margin: 0 auto;
}
.privacy__content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 600;
  border-left: 4px solid var(--accent-color, #29a3a3);
  padding-left: 0.75rem;
}
.privacy__content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.privacy {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.privacy__header {
  background-color: #f9f9f9;
  padding: 4rem 1rem 3rem;
}
.privacy__header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.privacy__header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
}
.privacy__header .container {
  max-width: 1000px;
  margin: 0 auto;
}
.privacy__content {
  padding: 3rem 1rem;
}
.privacy__content .container {
  max-width: 800px;
  margin: 0 auto;
}
.privacy__content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.contact-page {
  font-family: sans-serif;
}
.contact-page .contact-hero {
  background: linear-gradient(to right, #f7f7f7, #ffffff);
  text-align: center;
  padding: 4rem 1rem;
}
.contact-page .contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-page .contact-hero p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.contact-page .contact-details__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page .contact-details__container {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-page .contact-info ul li {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact-page .contact-info ul li span {
  font-weight: bold;
}
.contact-page .contact-info .social-links {
  margin-top: 2rem;
}
.contact-page .contact-info .social-links a {
  margin-right: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.contact-page .contact-info .social-links a:hover {
  color: #0077b6;
}
.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-page .contact-form form label {
  margin-bottom: 1.5rem;
}
.contact-page .contact-form form label span {
  display: block;
  margin-bottom: 0.5rem;
}
.contact-page .contact-form form label input,
.contact-page .contact-form form label textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-page .contact-form form button {
  padding: 0.75rem;
  background: #0077b6;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.contact-page .contact-form form button:hover {
  background: #023e8a;
}
.contact-page .contact-form .form-success {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}
.contact-page .contact-map iframe {
  display: block;
  width: 100%;
}

.popup {
  position: fixed;
  width: 200px;
  height: 200px;
  bottom: 30px;
  right: 30px;
  background: #28a745;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.mobile-section {
  background: #fff5f8;
  padding: 6rem 2rem;
}
.mobile-section__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.mobile-section__text {
  flex: 1;
  min-width: 320px;
}
.mobile-section__text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #e41c65;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.mobile-section__text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.mobile-section__features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mobile-section__features .feature {
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1 1 240px;
}
.mobile-section__features .feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #e41c65;
  margin-bottom: 0.5rem;
}
.mobile-section__features .feature p {
  font-size: 0.9rem;
  color: #555;
}
.mobile-section__image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.mobile-section__image img {
  width: 100%;
  max-width: 350px;
}

@font-face {
  font-family: "Jost";
  src: url("/Jost-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Jost";
  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 */
