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

.header {
  background: #f5f5f5;
  border-bottom: 3px solid #e2f7da;
  padding: 20px 40px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header__logo {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
}
.header__nav .header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.header__nav .header__menu li {
  position: relative;
}
.header__nav .header__menu li a {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
}
.header__nav .header__menu li a[hidden] {
  display: none;
}
.header__nav .header__menu li a:not([hidden]) {
  position: static;
}
.header__nav .header__menu li a:hover {
  color: #e2f7da;
}
.header__lang-switch {
  display: flex;
  gap: 10px;
}
.header__lang-switch .lang-btn {
  border: none;
  background: transparent;
  font-size: 14px;
  padding: 5px 10px;
  cursor: pointer;
  color: #888;
  border-bottom: 2px solid transparent;
}
.header__lang-switch .lang-btn.active {
  color: #000;
  border-color: #e2f7da;
}
.header__lang-switch .lang-btn:hover {
  color: #e2f7da;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    width: 100%;
    margin-top: 10px;
  }
  .header__nav .header__menu {
    flex-direction: column;
    gap: 10px;
    display: none;
    margin-top: 10px;
  }
  .header__nav .header__menu.active {
    display: flex;
  }
  .header__lang-switch {
    margin-top: 10px;
    width: 100%;
    justify-content: flex-end;
  }
}

.hero {
  background: #fafafa;
  padding: 100px 20px;
}
.hero__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__headline {
  grid-column: span 2;
}
.hero__headline .hero__tag {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__headline .hero__title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  color: #1c1c1c;
  margin: 0;
}
.hero__imageblock {
  position: relative;
}
.hero__imageblock .hero__image {
  width: 100%;
  display: block;
  box-shadow: 12px 12px 0 #1c1c1c;
}
.hero__imageblock .hero__caption {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.hero__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__desc p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero__desc .hero__btn {
  align-self: flex-start;
  background-color: #1c1c1c;
  color: #fff;
  padding: 14px 26px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hero__desc .hero__btn:hover {
  background-color: #000;
}
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__headline .hero__title {
    font-size: 44px;
  }
  .hero__desc p {
    font-size: 16px;
  }
  .hero__desc .hero__btn {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 60px 20px;
  }
  .hero__headline .hero__title {
    font-size: 36px;
  }
  .hero__desc p {
    font-size: 15px;
  }
  .hero__imageblock .hero__caption {
    font-size: 12px;
    padding: 8px 14px;
  }
}

.benefits {
  background-color: #fff;
  padding: 100px 20px;
}
.benefits__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.benefits__title {
  font-size: 40px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 60px;
  line-height: 1.2;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefits__item {
  background-color: #f1f1f1;
  padding: 30px;
  box-shadow: 10px 10px 0 #1c1c1c;
}
.benefits__item-title {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.benefits__item-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefits__title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .benefits {
    padding: 60px 20px;
  }
  .benefits__title {
    font-size: 28px;
  }
  .benefits__item {
    padding: 24px;
  }
  .benefits__item-title {
    font-size: 20px;
  }
  .benefits__item-text {
    font-size: 15px;
  }
}

.about {
  background-color: #f8f8f8;
  padding: 100px 20px;
}
.about__content {
  max-width: 1240px;
  margin: 0 auto;
}
.about__label {
  display: inline-block;
  background-color: #1c1c1c;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about__title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 50px;
  max-width: 900px;
  line-height: 1.3;
}
.about__columns {
  display: flex;
  gap: 40px;
}
.about__text {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}
@media (max-width: 1024px) {
  .about__columns {
    flex-direction: column;
    gap: 30px;
  }
  .about__title {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .about {
    padding: 60px 20px;
  }
  .about__label {
    font-size: 13px;
    padding: 5px 12px;
  }
  .about__title {
    font-size: 26px;
  }
  .about__text {
    font-size: 15px;
  }
}

.courses {
  background: #fff;
  padding: 100px 20px;
}
.courses__wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.courses__heading {
  font-size: 40px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 60px;
}
.courses__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.courses__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}
.courses__item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 4px;
  height: 100%;
  background-color: #1c1c1c;
}
.courses__number {
  font-size: 60px;
  font-weight: 900;
  color: #e0e0e0;
  min-width: 80px;
  text-align: right;
  line-height: 1;
  z-index: 1;
}
.courses__info {
  background: #f2f2f2;
  padding: 30px;
  box-shadow: 10px 10px 0 #1c1c1c;
  flex: 1;
}
.courses__tag {
  display: inline-block;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.courses__title {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}
.courses__desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .courses__item {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }
  .courses__item::before {
    display: none;
  }
  .courses__number {
    font-size: 40px;
    text-align: left;
  }
  .courses__heading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .courses {
    padding: 60px 20px;
  }
  .courses__heading {
    font-size: 28px;
  }
  .courses__title {
    font-size: 20px;
  }
  .courses__desc {
    font-size: 15px;
  }
}

.footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 60px 40px 30px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer__slogan {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}
.footer__col {
  font-size: 14px;
}
.footer__col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 0px;
}
.footer__col p {
  margin: 4px 0;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 6px;
}
.footer__col ul li a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.3s;
}
.footer__col ul li a:hover {
  color: #e2f7da;
}
.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

.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 Section */
.aboutpage {
  padding: 120px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.aboutpage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.aboutpage__header {
  text-align: center;
  margin-bottom: 80px;
}

.aboutpage__header h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.aboutpage__header h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.aboutpage__header p {
  font-size: 22px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.aboutpage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.aboutpage__textblock {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aboutpage__textblock:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.aboutpage__textblock h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.aboutpage__textblock h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
}

.aboutpage__textblock p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.aboutpage__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.aboutpage__facts .fact__item {
  background: white;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.aboutpage__facts .fact__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.aboutpage__facts .fact__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.aboutpage__facts .fact__item:hover:before {
  transform: scaleX(1);
}

.aboutpage__facts .fact__number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.aboutpage__facts .fact__label {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.aboutpage__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.aboutpage__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.aboutpage__image:hover img {
  transform: scale(1.05);
}

.aboutpage__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 95, 115, 0.1) 0%, rgba(0, 95, 115, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.aboutpage__image:hover:after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutpage {
    padding: 100px 0;
  }
  .aboutpage__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aboutpage__textblock {
    padding: 35px;
  }
  .aboutpage__header h1 {
    font-size: 48px;
  }
  .aboutpage__header p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aboutpage__facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aboutpage__header h1 {
    font-size: 42px;
  }
  .aboutpage__header p {
    font-size: 18px;
  }
  .aboutpage__textblock h2 {
    font-size: 24px;
  }
  .aboutpage__facts .fact__item {
    padding: 40px 25px;
  }
  .aboutpage__facts .fact__number {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .aboutpage {
    padding: 80px 0;
  }
  .aboutpage__container {
    padding: 0 25px;
  }
  .aboutpage__header h1 {
    font-size: 36px;
  }
  .aboutpage__textblock {
    padding: 30px 25px;
  }
}
.services {
  background-color: #fff;
  padding: 100px 20px;
}
.services__container {
  max-width: 1240px;
  margin: 0 auto;
}
.services__main-title {
  font-size: 44px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.services__block {
  background-color: #f4f4f4;
  padding: 30px;
  box-shadow: 8px 8px 0 #1c1c1c;
}
.services__block .services__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1c1c1c;
}
.services__block .services__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.services__extra .services__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1c1c1c;
}
.services__extra .services__list {
  list-style: disc;
  padding-left: 24px;
}
.services__extra .services__list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services__main-title {
    font-size: 36px;
  }
  .services__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .services {
    padding: 60px 20px;
  }
  .services__main-title {
    font-size: 30px;
  }
  .services__subtitle {
    font-size: 20px;
  }
  .services .services__title {
    font-size: 20px;
  }
  .services .services__desc,
  .services .services__list li {
    font-size: 15px;
  }
}

.privacy {
  padding: 100px 40px;
  background: #ffffff;
}
.privacy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy__container__title {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 40px 0 16px;
  border-left: 4px solid #e2f7da;
  padding-left: 14px;
}
.privacy__container__title:first-of-type {
  font-size: 36px;
  margin-top: 0;
  border: none;
  padding-left: 0;
}
.privacy__container__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.contact {
  background-color: #f5f5f5;
  padding: 100px 20px;
}
.contact__wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.contact__title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 40px;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__field {
  display: flex;
  flex-direction: column;
}
.contact__field label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1c1c;
}
.contact__field input,
.contact__field textarea {
  font-size: 16px;
  padding: 12px;
  border: 2px solid #1c1c1c;
  background: #fff;
  outline: none;
}
.contact__field input:invalid,
.contact__field textarea:invalid {
  border-color: #e63946;
}
.contact__field textarea {
  resize: vertical;
}
.contact__submit {
  align-self: flex-start;
  background-color: #1c1c1c;
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
.contact__submit:hover {
  background-color: #000;
}
.contact__popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.contact__popup.active {
  display: flex;
}
.contact__popup-content {
  background: #fff;
  padding: 30px;
  box-shadow: 8px 8px 0 #1c1c1c;
  max-width: 400px;
  text-align: center;
}
.contact__popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.contact__popup-content button {
  background-color: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.contact__popup-content button:hover {
  background-color: #000;
}
@media (max-width: 480px) {
  .contact {
    padding: 60px 20px;
  }
  .contact__title {
    font-size: 28px;
  }
  .contact input,
  .contact textarea {
    font-size: 15px;
  }
}

.cta {
  background-color: #1c1c1c;
  padding: 80px 20px;
}
.cta__box {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 12px 12px 0 #000;
  border-left: 6px solid #1c1c1c;
  gap: 40px;
}
.cta__text {
  flex: 1;
}
.cta__text .cta__title {
  font-size: 32px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 14px;
}
.cta__text .cta__desc {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  max-width: 520px;
}
.cta__action {
  flex-shrink: 0;
}
.cta__btn {
  display: inline-block;
  background-color: #1c1c1c;
  color: #fff;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 4px 4px 0 #000;
  transition: background-color 0.3s;
}
.cta__btn:hover {
  background-color: #000;
}
@media (max-width: 768px) {
  .cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
  }
  .cta .cta__title {
    font-size: 26px;
  }
  .cta .cta__desc {
    font-size: 15px;
  }
  .cta__btn {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .cta {
    padding: 60px 20px;
  }
  .cta__box {
    padding: 30px 20px;
  }
  .cta .cta__title {
    font-size: 22px;
  }
  .cta .cta__desc {
    font-size: 14px;
  }
  .cta__btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}

.testimonials {
  background-color: #f5f5f5;
  padding: 100px 20px;
}
.testimonials__wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.testimonials__title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 60px;
}
.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.testimonials__item {
  padding-left: 40px;
  position: relative;
}
.testimonials__item::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #1c1c1c;
  line-height: 1;
}
.testimonials__quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.testimonials__author {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 20px;
  }
  .testimonials__title {
    font-size: 30px;
  }
  .testimonials__quote {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .testimonials__quote {
    font-size: 16px;
  }
  .testimonials__author {
    font-size: 14px;
  }
  .testimonials__item {
    padding-left: 30px;
  }
  .testimonials__item::before {
    font-size: 40px;
  }
}

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