@charset "UTF-8";
/* RESET STYLES */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0e;
  color: #eaeaea;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  background-color: #12131a;
  color: #e0e0e0;
}

.fgm-header {
  background-color: #1b1c25;
  color: #ffffff;
  width: 100%;
  padding: 15px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.fgm-header .container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
.fgm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.fgm-header .fgm-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fgm-header .fgm-logo img {
  display: block;
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.fgm-header .fgm-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(156, 39, 176, 0.5));
}
.fgm-header .fgm-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.fgm-header .fgm-nav ul li a {
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.fgm-header .fgm-nav ul li a:hover {
  color: #9c27b0;
  text-shadow: 0 0 8px rgba(156, 39, 176, 0.6);
}
.fgm-header .fgm-nav--left {
  justify-content: flex-start;
}
.fgm-header .fgm-nav--right {
  justify-content: flex-end;
}
.fgm-header .fgm-burger {
  display: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.fgm-header .fgm-burger:hover {
  color: #9c27b0;
  transform: scale(1.1);
}
.fgm-header .fgm-mobile-menu {
  display: none;
  background-color: #1b1c25;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  animation: fadeIn 0.3s ease;
}
.fgm-header .fgm-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fgm-header .fgm-mobile-menu ul li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.fgm-header .fgm-mobile-menu ul li a:hover {
  color: #9c27b0;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}
.fgm-header .fgm-mobile-menu.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .fgm-header {
    padding: 12px 0;
  }
  .fgm-header__inner {
    justify-content: space-between;
  }
  .fgm-header .fgm-nav {
    display: none;
  }
  .fgm-header .fgm-burger {
    display: block;
  }
  .fgm-header .fgm-logo img {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .fgm-header .fgm-logo img {
    height: 45px;
  }
  .fgm-header .fgm-mobile-menu ul li a {
    font-size: 16px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fgm-hero {
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(156, 39, 176, 0.1) 0%, rgb(18, 19, 26) 90%), url("/assets/img/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.fgm-hero .fgm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.5) 0%, rgba(18, 19, 26, 0.95) 100%);
  z-index: 1;
}
.fgm-hero .fgm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeUp 1.3s ease forwards;
}
.fgm-hero .fgm-hero__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}
.fgm-hero .fgm-hero__title span {
  color: #9c27b0;
  text-shadow: 0 0 25px rgba(156, 39, 176, 0.7);
}
.fgm-hero .fgm-hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 40px;
}
.fgm-hero .btn {
  background-color: #9c27b0;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
  transition: all 0.3s ease;
}
.fgm-hero .btn:hover {
  background-color: #b63aff;
  box-shadow: 0 0 30px rgba(182, 58, 255, 0.6);
  transform: translateY(-3px);
}

/* Анимация появления */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Адаптив --- */
@media (max-width: 768px) {
  .fgm-hero {
    height: 90vh;
  }
  .fgm-hero .fgm-hero__title {
    font-size: 2rem;
  }
  .fgm-hero .fgm-hero__subtitle {
    font-size: 1rem;
  }
  .fgm-hero .btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}
.fgm-features {
  background-color: #12131a;
  padding: 100px 0;
  text-align: center;
  color: #e0e0e0;
}
.fgm-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-features__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-features__subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.fgm-feature-card {
  background: linear-gradient(145deg, #1e1f2b, #15161e);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.fgm-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(156, 39, 176, 0.5);
  border-color: rgba(156, 39, 176, 0.4);
}
.fgm-feature-card__icon {
  font-size: 2.5rem;
  color: #9c27b0;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.fgm-feature-card__icon .fa-solid {
  filter: drop-shadow(0 0 6px rgba(156, 39, 176, 0.6));
}
.fgm-feature-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.fgm-feature-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(249.5, 249.5, 249.5);
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .fgm-features {
    padding: 70px 0;
  }
  .fgm-features__title {
    font-size: 1.5rem;
  }
  .fgm-features__subtitle {
    font-size: 1rem;
  }
  .fgm-features .fgm-feature-card {
    padding: 30px 20px;
  }
}
.fgm-about {
  background-color: #12131a;
  padding: 100px 0;
  color: #e0e0e0;
}
.fgm-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-about__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.4);
}
.fgm-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.fgm-about__content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgb(244.4, 244.4, 244.4);
  text-align: left;
}
.fgm-about__content p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.fgm-about__content p:hover {
  color: #03dac6;
}
.fgm-about__content strong {
  color: #9c27b0;
}
.fgm-about__image img {
  width: 70%;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(156, 39, 176, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.fgm-about__image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(156, 39, 176, 0.6);
}

/* --- Адаптив --- */
@media (max-width: 992px) {
  .fgm-about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fgm-about__grid .fgm-about__content {
    text-align: center;
  }
  .fgm-about__grid .fgm-about__image {
    order: -1;
  }
}
.fgm-values {
  background-color: rgb(13.8272727273, 14.5954545455, 19.9727272727);
  padding: 100px 0;
  color: #e0e0e0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fgm-values .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-values__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-values__subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
}
.fgm-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.fgm-values__card {
  background: linear-gradient(145deg, #1e1f2b, #15161e);
  border-radius: 18px;
  padding: 50px 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
.fgm-values__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(156, 39, 176, 0.6);
  border-color: rgba(156, 39, 176, 0.4);
}
.fgm-values__card p {
  margin-top: 15px;
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-values__icon {
  font-size: 2.8rem;
  color: #9c27b0;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(156, 39, 176, 0.6));
  transition: all 0.3s ease;
}
.fgm-values__icon .fa-solid {
  transition: transform 0.4s ease;
}
.fgm-values__icon:hover .fa-solid {
  transform: rotate(10deg) scale(1.1);
}
.fgm-values__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .fgm-values {
    padding: 70px 0;
  }
  .fgm-values__title {
    font-size: 2rem;
  }
  .fgm-values__subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .fgm-values__card {
    padding: 40px 25px;
  }
}
.fgm-gallery {
  background-color: #12131a;
  padding: 100px 0;
  text-align: center;
  color: #e0e0e0;
  position: relative;
}
.fgm-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-gallery__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-gallery__subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.fgm-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.fgm-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.fgm-gallery__item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.3);
}
.fgm-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(156, 39, 176, 0.1), rgba(18, 19, 26, 0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.fgm-gallery__item:hover::after {
  opacity: 1;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .fgm-gallery {
    padding: 70px 0;
  }
  .fgm-gallery__title {
    font-size: 2rem;
  }
  .fgm-gallery__subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.fgm-faq {
  background-color: #12131a;
  padding: 100px 0;
  color: #e0e0e0;
  /* Левая колонка */
  /* Правая колонка — аккордеон */
}
.fgm-faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-faq__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 992px) {
  .fgm-faq__grid {
    grid-template-columns: 1fr;
  }
}
.fgm-faq__intro {
  display: flex;
  align-items: center;
}
.fgm-faq__box {
  border: 2px solid rgba(156, 39, 176, 0.4);
  border-radius: 16px;
  padding: 30px;
  background: linear-gradient(145deg, #1b1c25, #12131a);
  box-shadow: 0 0 25px rgba(156, 39, 176, 0.3);
}
.fgm-faq__box p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-faq__box strong {
  color: #9c27b0;
}
.fgm-faq__accordion .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}
.fgm-faq__accordion .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.fgm-faq__accordion .faq-item .faq-question:hover {
  color: #9c27b0;
}
.fgm-faq__accordion .faq-item .faq-question::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.fgm-faq__accordion .faq-item .faq-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.fgm-faq__accordion .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}
.fgm-faq__accordion .faq-item .faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  padding-bottom: 15px;
}
.fgm-faq__accordion .faq-item .faq-answer.open {
  opacity: 1;
  max-height: 300px;
}

.fgm-reviews {
  background-color: rgb(13.8272727273, 14.5954545455, 19.9727272727);
  padding: 100px 0;
  text-align: center;
  color: #e0e0e0;
}
.fgm-reviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-reviews__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-reviews__subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* REVIEW CARD */
.fgm-review {
  background: linear-gradient(145deg, #1e1f2b, #15161e);
  border-radius: 18px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.fgm-review:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(156, 39, 176, 0.5);
  border-color: rgba(156, 39, 176, 0.4);
}
.fgm-review__image {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(156, 39, 176, 0.5);
  box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
}
.fgm-review__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fgm-review__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}
.fgm-review__city {
  display: block;
  font-size: 0.95rem;
  color: #03dac6;
  margin-bottom: 15px;
}
.fgm-review__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(249.5, 249.5, 249.5);
  font-style: italic;
  position: relative;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .fgm-reviews {
    padding: 70px 0;
  }
  .fgm-reviews__title {
    font-size: 2rem;
  }
  .fgm-reviews__subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .fgm-reviews .fgm-review {
    padding: 30px 20px;
  }
}
.fgm-contact {
  background-color: #12131a;
  padding: 100px 0;
  color: #e0e0e0;
  position: relative;
  /* Форма */
  /* Контактная информация */
  /* Pop-up */
}
.fgm-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-contact__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-contact__subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .fgm-contact__grid {
    grid-template-columns: 1fr;
  }
}
.fgm-contact__form {
  background: linear-gradient(145deg, #1e1f2b, #15161e);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(156, 39, 176, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.fgm-contact__form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.fgm-contact__form .form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}
.fgm-contact__form .form-group input,
.fgm-contact__form .form-group textarea {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 15px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fgm-contact__form .form-group input:focus,
.fgm-contact__form .form-group textarea:focus {
  border-color: #9c27b0;
  box-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
  outline: none;
}
.fgm-contact__form .form-group textarea {
  resize: none;
}
.fgm-contact__form .btn {
  background-color: #9c27b0;
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fgm-contact__form .btn:hover {
  background-color: #b63aff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
}
.fgm-contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.fgm-contact__info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.fgm-contact__info .info-item i {
  font-size: 1.6rem;
  color: #9c27b0;
  filter: drop-shadow(0 0 8px rgba(156, 39, 176, 0.6));
}
.fgm-contact__info .info-item p {
  margin: 0;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-contact .thankyou-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.fgm-contact .thankyou-popup.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.fgm-contact .thankyou-popup .popup-content {
  background-color: #1b1c25;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(156, 39, 176, 0.5);
}
.fgm-contact .thankyou-popup .popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #9c27b0;
}
.fgm-contact .thankyou-popup .popup-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.fgm-contact .thankyou-popup .popup-content button {
  background-color: #9c27b0;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.fgm-contact .thankyou-popup .popup-content button:hover {
  background-color: #b63aff;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FOOTER */
.fgm-footer {
  background-color: #1b1c25;
  color: rgb(249.5, 249.5, 249.5);
  padding-top: 80px;
  font-size: 1rem;
  /* Описание */
  /* Ссылки */
  /* Контакты */
  /* Нижняя линия */
}
.fgm-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .fgm-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .fgm-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.fgm-footer__about h3 {
  color: #9c27b0;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.fgm-footer__about p {
  line-height: 1.7;
  color: rgb(249.5, 249.5, 249.5);
  max-width: 350px;
}
@media (max-width: 768px) {
  .fgm-footer__about p {
    max-width: 100%;
    margin: 0 auto;
  }
}
.fgm-footer__links h4 {
  color: #03dac6;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.fgm-footer__links ul {
  list-style: none;
  padding: 0;
}
.fgm-footer__links ul li {
  margin-bottom: 8px;
}
.fgm-footer__links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fgm-footer__links ul li a:hover {
  color: #9c27b0;
  text-shadow: 0 0 8px rgba(156, 39, 176, 0.6);
}
.fgm-footer__contact h4 {
  color: #03dac6;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.fgm-footer__contact ul {
  list-style: none;
  padding: 0;
}
.fgm-footer__contact ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fgm-footer__contact ul li i {
  color: #9c27b0;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(156, 39, 176, 0.5));
}
@media (max-width: 768px) {
  .fgm-footer__contact ul {
    justify-content: center;
  }
}
.fgm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 25px 0;
  font-size: 0.95rem;
  color: white;
  background-color: rgb(22.696875, 23.5375, 31.103125);
}

/* TERMS */
.fgm-terms {
  background-color: #12131a;
  padding: 100px 0;
  color: #e0e0e0;
}
.fgm-terms .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-terms__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-terms__content h3 {
  font-size: 1.3rem;
  color: #9c27b0;
  margin-top: 40px;
  margin-bottom: 15px;
}
.fgm-terms__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-terms__content a {
  color: #03dac6;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.fgm-terms__content a:hover {
  color: #9c27b0;
}
.fgm-terms__content strong {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .fgm-terms {
    padding: 70px 0;
  }
  .fgm-terms__title {
    font-size: 2rem;
  }
  .fgm-terms__content h3 {
    font-size: 1.2rem;
  }
  .fgm-terms__content p {
    font-size: 0.95rem;
  }
}

.fgm-privacy {
  background-color: #12131a;
  padding: 100px 0;
  color: #e0e0e0;
}
.fgm-privacy .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.fgm-privacy__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.fgm-privacy__content h3 {
  font-size: 1.3rem;
  color: #9c27b0;
  margin-top: 40px;
  margin-bottom: 15px;
}
.fgm-privacy__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-privacy__content ul {
  margin: 15px 0 20px 25px;
  list-style: disc;
}
.fgm-privacy__content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: rgb(249.5, 249.5, 249.5);
}
.fgm-privacy__content a {
  color: #03dac6;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.fgm-privacy__content a:hover {
  color: #9c27b0;
}
.fgm-privacy__content strong {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .fgm-privacy {
    padding: 70px 0;
  }
  .fgm-privacy__title {
    font-size: 2rem;
  }
  .fgm-privacy__content h3 {
    font-size: 1.2rem;
  }
  .fgm-privacy__content p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */