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

footer {
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

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;
  /* Другие свойства по необходимости */
}

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

@font-face {
  font-family: "Poppins";
  src: url("./Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  height: 100px;
  background: transparent;
  box-shadow: 0 5px 15px rgba(19, 16, 16, 0.5);
  transition: background 0.3s ease;
  max-width: 100%;
}
.header.scrolled {
  background: rgba(19, 16, 16, 0.7);
}
@media (max-width: 1040px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__logo__text {
  font-family: "Poppins";
  color: #fff;
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1040px) {
  .header__logo__text {
    font-size: 20px;
  }
}
@media (max-width: 514px) {
  .header__logo__text {
    font-size: 14px;
  }
}
.header__logo__img {
  width: auto;
  height: 75px;
  transition: transform 0.3s ease;
}
.header__logo__img:hover {
  transform: scale(1.1) rotate(3deg);
}
@media (max-width: 514px) {
  .header__logo__img {
    width: auto;
    height: 45px;
  }
}
.header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-family: "Poppins";
  margin-top: 10px;
}
@media (max-width: 514px) {
  .header__nav {
    gap: 10px;
  }
}
@media (max-width: 1040px) {
  .header__nav {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1040px) {
  .header__nav__link:nth-child(4) {
    margin-top: 20px;
  }
}
.header__nav__link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border-bottom: 2px solid transparent;
}
.header__nav__link:hover {
  color: #15cf97;
  border-color: #15cf97;
  transform: translateY(-3px);
}
.header__nav__link:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #15cf97;
  transition: width 0.3s ease;
  width: 0%;
}
.header__nav__link:hover::after {
  width: 100%;
}
.header__cta-button {
  padding: 10px 20px;
  background-color: #15cf97;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Poppins";
  letter-spacing: 2px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.header__cta-button:hover {
  background-color: #33b8a6;
  transform: translateY(-3px);
}

.header-b {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  height: 100px;
  background-color: #131010;
  box-shadow: 0 5px 15px rgba(19, 16, 16, 0.5);
  transition: background 0.3s ease;
  max-width: 100%;
}
.header-b.scrolled {
  background: rgba(19, 16, 16, 0.7);
}
@media (max-width: 1040px) {
  .header-b {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }
}
.header-b__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-b__logo__text {
  font-family: "Poppins";
  color: #fff;
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1040px) {
  .header-b__logo__text {
    font-size: 20px;
  }
}
@media (max-width: 514px) {
  .header-b__logo__text {
    font-size: 14px;
  }
}
.header-b__logo__img {
  width: auto;
  height: 75px;
  transition: transform 0.3s ease;
}
.header-b__logo__img:hover {
  transform: scale(1.1) rotate(3deg);
}
@media (max-width: 514px) {
  .header-b__logo__img {
    width: auto;
    height: 45px;
  }
}
.header-b__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-family: "Poppins";
  margin-top: 10px;
}
@media (max-width: 514px) {
  .header-b__nav {
    gap: 10px;
  }
}
@media (max-width: 1040px) {
  .header-b__nav {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1040px) {
  .header-b__nav__link:nth-child(4) {
    margin-top: 20px;
  }
}
.header-b__nav__link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border-bottom: 2px solid transparent;
}
.header-b__nav__link:hover {
  color: #15cf97;
  border-color: #15cf97;
  transform: translateY(-3px);
}
.header-b__nav__link:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #15cf97;
  transition: width 0.3s ease;
  width: 0%;
}
.header-b__nav__link:hover::after {
  width: 100%;
}
.header-b__cta-button {
  padding: 10px 20px;
  background-color: #15cf97;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Poppins";
  letter-spacing: 2px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.header-b__cta-button:hover {
  background-color: #33b8a6;
  transform: translateY(-3px);
}

.contact-form {
  position: relative;
  padding: 60px;
  background: linear-gradient(135deg, #33b8a6, #008876);
  color: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1300px) {
  .contact-form {
    padding: 40px 20px;
  }
}
.contact-form__title {
  font-family: "Poppins";
  color: #fff;
  text-shadow: 0 0 10px #15cf97, 0 0 20px rgba(21, 207, 151, 0.9);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .contact-form__title {
    font-size: 2rem;
  }
}
.contact-form__text {
  font-family: "Poppins";
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .contact-form__text {
    font-size: 1.1rem;
  }
}
.contact-form__form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-form__input {
  width: 100%;
  max-width: 400px;
  padding: 15px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-family: "Poppins";
  font-size: 1rem;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1040px) {
  .contact-form__input {
    width: 90%;
  }
}
.contact-form__input:focus {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.contact-form__submit {
  background-color: #15cf97;
  color: #000000;
  padding: 15px 40px;
  border-radius: 30px;
  font-family: "Poppins";
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: not-allowed;
}
.contact-form__submit:hover:not([disabled]) {
  background-color: #2deab1;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.contact-form__submit:disabled {
  background-color: #e7e7e7;
}
.contact-form__thank-you-popup {
  margin-top: 20px;
  font-family: "Poppins";
  font-size: 1.2rem;
  color: #15cf97;
}
.contact-form__background-animation {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
  animation: pulseAnimation 8s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
.contact-form__thank-you-popup {
  padding: 20px;
  background-color: #15cf97;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  display: none;
  opacity: 0;
  animation: fadeInPopup 0.8s ease forwards;
}
@media (max-width: 1439px) {
  .contact-form__thank-you-popup {
    width: 90%;
  }
}
@media (max-width: 740px) {
  .contact-form__thank-you-popup {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .contact-form__thank-you-popup {
    font-size: 14px;
    padding: 15px;
  }
}
.contact-form__thank-you-popup #popupMessage {
  display: none;
  opacity: 0;
  animation: fadeInPopup 0.8s ease forwards;
}
@keyframes fadeInPopup {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
  background: #000000;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1040px) {
  .services {
    padding: 20px 10px;
  }
}
.services::before {
  content: "";
  position: absolute;
  width: 3000px;
  height: 800px;
  top: 50%;
  left: 50%;
  background: rgba(0, 136, 118, 0.1);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  animation: rotateRectangle 30s linear infinite;
  z-index: 0;
}
.services::after {
  content: "";
  position: absolute;
  width: 3000px;
  height: 800px;
  top: 50%;
  left: 50%;
  background: rgba(79, 221, 155, 0.15);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  animation: rotateRectangleReverse 30s linear infinite;
  z-index: 0;
}

@keyframes rotateRectangle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateRectangleReverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.service-card {
  z-index: 1;
  flex: 1 1 320px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(50, 50, 50, 0.6), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(19, 16, 16, 0.6);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(19, 16, 16, 0.8);
}
.service-card::before, .service-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #15cf97 0%, transparent 70%);
  opacity: 0.3;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}
.service-card::before {
  width: 150px;
  height: 150px;
  top: -30px;
  left: -30px;
}
.service-card::after {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}
.service-card:hover::before, .service-card:hover::after {
  transform: scale(1);
}
.service-card .service-card__icon {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33b8a6, #15cf97);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(51, 184, 166, 0.5));
}
.service-card .service-card__icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.service-card .service-card__icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.service-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #15cf97;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(21, 207, 151, 0.7);
}
.service-card p {
  font-size: 1em;
  line-height: 1.5;
  color: #c7bec7;
  margin-bottom: 20px;
}
.service-card ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
  color: #ffffff;
}
.service-card ul li {
  font-size: 0.95em;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.service-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #15cf97;
  font-size: 1.1em;
  text-shadow: 0 0 6px #15cf97;
}
.service-card__cta {
  display: inline-block;
  padding: 12px 30px;
  background: #33b8a6;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(51, 184, 166, 0.6);
}
.service-card__cta:hover {
  background: #008876;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 136, 118, 0.8);
}

.about {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  font-family: "Poppins";
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.about__content {
  max-width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("/assets/img/image5.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}
@media (max-width: 1300px) {
  .about__content {
    padding: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 1040px) {
  .about__content {
    padding: 20px;
    border-radius: 16px;
  }
}
.about__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  color: #15cf97;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(21, 207, 151, 0.8), 0 0 20px rgba(21, 207, 151, 0.6);
  animation: neonPulse 1.5s ease-in-out infinite alternate;
}
@media (max-width: 1300px) {
  .about__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 740px) {
  .about__title {
    font-size: 2rem;
  }
}
@media (max-width: 450px) {
  .about__title {
    font-size: 1.8rem;
  }
}
.about__subtitle {
  font-size: 1.8rem;
  margin: 50px 0 30px;
  color: #33b8a6;
  text-shadow: 0 0 5px rgba(51, 184, 166, 0.5);
}
@media (max-width: 1300px) {
  .about__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 740px) {
  .about__subtitle {
    font-size: 1.4rem;
  }
}
.about__text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #c7bec7;
}
.about__text--highlight {
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(to right, #33b8a6, #008876);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 3s ease-in-out infinite alternate;
}
@media (max-width: 1300px) {
  .about__text {
    font-size: 1.1rem;
  }
}
@media (max-width: 740px) {
  .about__text {
    font-size: 1rem;
  }
}
.about__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media (max-width: 740px) {
  .about__list {
    padding-left: 10px;
  }
}
.about__item {
  position: relative;
  margin-bottom: 35px;
  padding: 20px 30px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #15cf97;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(21, 207, 151, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about__item:hover {
  transform: translateX(10px);
  box-shadow: 0 0 20px rgba(21, 207, 151, 0.6);
}
.about__item::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #15cf97;
  text-shadow: 0 0 10px #15cf97;
}
@media (max-width: 1040px) {
  .about__item::before {
    top: 5%;
    left: 4px;
  }
}
@media (max-width: 740px) {
  .about__item {
    font-size: 1rem;
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .about__item {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}

.advantages {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
}
.advantages__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}
.advantages__title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
  color: #15cf97;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: 0 4px 12px rgba(21, 207, 151, 0.6);
}
.advantages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantages__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  border-left: 4px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.advantages__item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: #15cf97;
  transform: translateX(10px);
  box-shadow: 0 0 20px rgba(21, 207, 151, 0.5);
}
.advantages__item p {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.5;
}
.advantages__icon {
  font-size: 1.8rem;
  margin-right: 20px;
  color: #33b8a6;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(51, 184, 166, 0.8);
}
.advantages::before, .advantages::after, .advantages__circle {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
  filter: blur(50px);
}
.advantages::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 207, 151, 0.6), transparent);
  top: 20%;
  left: 15%;
  animation: moveCircle 12s linear infinite;
}
.advantages::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 184, 166, 0.5), transparent);
  top: 70%;
  right: 10%;
  animation: moveCircleReverse 18s linear infinite;
}
.advantages__circle {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 136, 118, 0.5), transparent);
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  animation: moveCircle 25s linear infinite;
}

@keyframes moveCircle {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes moveCircleReverse {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: -30px, -30px scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@media (max-width: 1440px) {
  .advantages {
    padding: 70px 0;
  }
  .advantages__container {
    max-width: 850px;
    padding: 35px;
  }
  .advantages__title {
    font-size: 2.6rem;
  }
  .advantages__item {
    padding: 18px 20px;
    font-size: 1.05rem;
  }
}
@media (max-width: 1300px) {
  .advantages {
    padding: 60px 0;
  }
  .advantages__container {
    max-width: 750px;
    padding: 30px;
  }
  .advantages__title {
    font-size: 2.4rem;
  }
  .advantages__item {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .advantages__icon {
    font-size: 1.6rem;
    margin-right: 15px;
  }
}
@media (max-width: 740px) {
  .advantages {
    padding: 50px 0;
  }
  .advantages__container {
    max-width: 600px;
    padding: 25px;
    border-radius: 12px;
  }
  .advantages__title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .advantages__item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  .advantages__icon {
    font-size: 1.5rem;
    margin-right: 12px;
  }
}
@media (max-width: 450px) {
  .advantages {
    padding: 40px 0;
  }
  .advantages__container {
    max-width: 90%;
    padding: 20px;
    border-radius: 10px;
  }
  .advantages__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .advantages__item {
    padding: 10px 10px;
    font-size: 0.9rem;
  }
  .advantages__icon {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}

.footer {
  background-color: #000000;
  padding: 20px 0;
  font-family: "Poppins";
  color: #ffffff;
  text-align: center;
}
.footer__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1040px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    display: block;
  }
}
.footer__section {
  flex: 1 1 200px;
  margin: 10px;
}
.footer__section--branding {
  text-align: center;
}
@media (max-width: 514px) {
  .footer__section--branding {
    text-align: center;
  }
}
.footer__section--contact, .footer__section--links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 514px) {
  .footer__section--contact, .footer__section--links {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
}
.footer__logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 5px #15cf97, 0 0 10px #15cf97;
}
.footer__logo:hover {
  text-decoration: underline;
  color: #15cf97;
}
.footer__address, .footer__email, .footer__phone {
  display: block;
  margin: 5px 0;
  color: #c7bec7;
  text-decoration: none;
}
.footer__address:hover, .footer__email:hover, .footer__phone:hover {
  color: #15cf97;
  text-decoration: underline;
}
.footer__link {
  margin: 5px 0;
  color: #c7bec7;
  text-decoration: none;
  text-shadow: 0 0 5px #15cf97, 0 0 10px #15cf97;
}
.footer__link:hover {
  color: #15cf97;
  text-decoration: underline;
}
.footer__rights {
  margin-top: 20px;
  font-size: 0.9em;
  color: #c7bec7;
  padding-top: 15px;
  position: relative;
  overflow: hidden;
  margin: 10px;
}
.footer__rights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #15cf97;
  box-shadow: 0 0 8px rgba(21, 207, 151, 0.8), 0 0 12px rgba(21, 207, 151, 0.6), 0 0 16px #15cf97;
  transition: box-shadow 0.3s ease;
}
.footer__rights:hover::before {
  box-shadow: 0 0 10px rgba(21, 207, 151, 0.9), 0 0 20px rgba(21, 207, 151, 0.7), 0 0 25px #15cf97;
}

.privacy-policy {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #008876;
}
.privacy-policy__intro {
  margin-bottom: 1rem;
}
.privacy-policy__strong {
  font-weight: bold;
}
.privacy-policy__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1rem;
}
.privacy-policy__subheading {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #33b8a6;
}

.privacy-policy {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .privacy-policy {
    padding: 15px;
  }
}
@media (max-width: 1300px) {
  .privacy-policy {
    padding: 10px;
  }
}
.privacy-policy__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1040px) {
  .privacy-policy__table {
    font-size: 0.9rem;
  }
}
.privacy-policy__table th,
.privacy-policy__table td {
  padding: 15px;
  text-align: left;
  color: #ffffff;
  font-size: 0.95rem;
}
@media (max-width: 1439px) {
  .privacy-policy__table th,
  .privacy-policy__table td {
    padding: 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 1300px) {
  .privacy-policy__table th,
  .privacy-policy__table td {
    padding: 10px;
    font-size: 0.85rem;
  }
}
@media (max-width: 740px) {
  .privacy-policy__table th,
  .privacy-policy__table td {
    padding: 8px;
    font-size: 0.8rem;
  }
}
@media (max-width: 514px) {
  .privacy-policy__table th,
  .privacy-policy__table td {
    padding: 6px;
    font-size: 0.75rem;
  }
}
.privacy-policy__table th {
  background-color: rgba(0, 0, 0, 0.2);
  color: #33b8a6;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}
@media (max-width: 1300px) {
  .privacy-policy__table th {
    font-size: 0.85rem;
  }
}
@media (max-width: 740px) {
  .privacy-policy__table th {
    font-size: 0.8rem;
  }
}
.privacy-policy__table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}
.privacy-policy__table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy-policy__table th,
.privacy-policy__table td {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.privacy-policy__table tr:last-child td {
  border-bottom: none;
}
.privacy-policy__table tr td:last-child,
.privacy-policy__table tr th:last-child {
  border-right: none;
}

.hero-wrapper {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("/assets/img/image1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-family: "Poppins";
  padding: 100px 0;
  text-align: center;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse 6s infinite;
  pointer-events: none;
}
.hero::before {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 20%;
}
.hero::after {
  width: 300px;
  height: 300px;
  bottom: 100px;
  right: 15%;
}
.hero__content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-size: 3.5em;
  color: #029c88;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 136, 118, 0.7), 0 0 20px rgba(21, 207, 151, 0.5);
  animation: neon-text 1.5s ease-in-out infinite alternate;
}
.hero__subtitle {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 35px;
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 136, 118, 0.5);
  animation: fadeIn 2s ease-in-out;
}
.hero__cta {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #33b8a6, #008876);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0px 0px 15px rgba(0, 136, 118, 0.5);
  animation: pulse-btn 2.5s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__cta:hover {
  transform: scale(1.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}
.hero__description {
  margin-top: 25px;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero__services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1300px) {
  .hero__services {
    flex-direction: column;
    align-items: center;
  }
}
.hero__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 220px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.hero__service:hover {
  background: linear-gradient(135deg, rgba(0, 136, 118, 0.2), rgba(0, 0, 0, 0.2));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}
.hero__service::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 136, 118, 0.3) 0%, transparent 70%);
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}
.hero__service:hover::before {
  opacity: 0.5;
}
.hero__service__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  fill: #4fdd9b;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
  transition: fill 0.3s, transform 0.3s;
}
.hero__service__icon:hover {
  fill: #008876;
  transform: scale(1.2) rotate(15deg);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}
@keyframes pulse-btn {
  0%, 100% {
    box-shadow: 0px 0px 15px rgba(0, 136, 118, 0.5);
  }
  50% {
    box-shadow: 0px 0px 30px #008876;
  }
}
@keyframes neon-text {
  0% {
    text-shadow: 0 0 10px rgba(0, 136, 118, 0.5), 0 0 20px rgba(0, 136, 118, 0.5);
  }
  100% {
    text-shadow: 0 0 20px #008876, 0 0 30px #008876;
  }
}

@media (max-width: 1440px) {
  .hero {
    padding: 80px 0;
  }
  .hero__title {
    font-size: 3em;
  }
  .hero__subtitle {
    font-size: 1.4em;
  }
}
@media (max-width: 1300px) {
  .hero {
    padding: 60px 0;
  }
  .hero__title {
    font-size: 2.5em;
  }
  .hero__subtitle {
    font-size: 1.2em;
  }
  .hero__cta {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .hero__service {
    padding: 25px;
    flex: 1 1 200px;
  }
}
@media (max-width: 740px) {
  .hero {
    padding: 50px 0;
  }
  .hero__title {
    font-size: 2em;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .hero__service {
    flex: 1 1 100%;
  }
}
@media (max-width: 450px) {
  .hero__title {
    font-size: 1.8em;
  }
  .hero__subtitle {
    font-size: 0.9em;
  }
  .hero__cta {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

body {
  box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-family: "Poppins";
}

.main {
  flex: 1 1 auto;
}

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

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