*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0A0E2A;
}

.section__text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  max-width: 800px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
}

.btn--primary {
  background-color: #4C6EF5;
  color: #fff;
}

.btn--primary:hover {
  background-color: #1c47f2;
}

.btn--secondary {
  background-color: transparent;
  color: #4C6EF5;
  border: 1px solid #4C6EF5;
}

.btn--secondary:hover {
  background-color: rgba(76, 110, 245, 0.1);
}

.header {
  background-color: #fff;
  padding: 2rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0E2A;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.nav__link {
  font-size: 1.6rem;
  font-weight: 500;
}

.nav__link:hover {
  color: #4C6EF5;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0A0E2A;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.hero {
  background-color: #fff;
  padding: 8rem 0;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0A0E2A;
}

.hero__text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.team {
  padding: 8rem 0;
  background-color: #0A0E2A;
  color: #fff;
}

.team .section__title,
.team .section__text {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.team__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(240px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.team__member {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team__member:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.team__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team__position {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.stats {
  padding: 8rem 0;
}

.stats__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0A0E2A;
}

.stats__subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #1E1B4B;
}

.stats__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.stats__grid--small {
  -ms-grid-columns: (minmax(240px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stats__item {
  background-color: #0A0E2A;
  color: #fff;
  padding: 3rem;
  border-radius: 8px;
}

.stats__item--small {
  padding: 2rem;
}

.stats__value {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #4C6EF5;
}

.stats__description {
  font-size: 1.6rem;
  line-height: 1.5;
}

.stats__text {
  font-size: 1.8rem;
  margin: 3rem 0;
  max-width: 800px;
}

.testimonials {
  padding: 8rem 0;
  background-color: #0A0E2A;
  color: #fff;
}

.testimonials .section__title {
  color: #fff;
  text-align: center;
}

.testimonials__subtitle {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 5rem;
  text-align: center;
  color: #fff;
}

.testimonials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 8px;
}

.testimonial__stars {
  margin-bottom: 2rem;
  color: #FFD700;
  font-size: 2rem;
}

.testimonial__text {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.testimonial__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial__position {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  padding: 8rem 0;
}

.contact__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0A0E2A;
}

.contact__text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 2rem;
}

.form__input {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(10, 14, 42, 0.2);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form__input:focus {
  outline: none;
  border-color: #4C6EF5;
}

.form__input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.form__input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.form__input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.form__input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__form .btn {
  width: 100%;
  margin-top: 1rem;
}

.confirmation {
  padding: 8rem 0;
}

.confirmation__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0A0E2A;
}

.confirmation__text {
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 800px;
}

.footer {
  background-color: #0A0E2A;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.footer__address {
  font-size: 1.4rem;
  opacity: 0.8;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.footer__social .social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__social .social__link:hover {
  background-color: #4C6EF5;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__links .footer__link {
  font-size: 1.4rem;
  opacity: 0.8;
}

.footer__links .footer__link:hover {
  opacity: 1;
  color: #4C6EF5;
}

.footer__copyright {
  font-size: 1.4rem;
  opacity: 0.7;
  margin-top: 1rem;
}

.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: #0A0E2A;
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.cookie-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-popup__content p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991px) {
  html {
    font-size: 58%;
  }
  .hero__title {
    font-size: 3.8rem;
  }
  .stats__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0A0E2A;
    padding: 8rem 2rem 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .nav__link {
    color: #fff;
    font-size: 2rem;
    display: block;
    padding: 1rem 0;
  }
  .nav__link:hover {
    color: #4C6EF5;
  }
  .burger {
    display: block;
  }
  .hero {
    padding: 6rem 0;
  }
  .hero__title {
    font-size: 3.2rem;
  }
  .section__title {
    font-size: 2.8rem;
  }
  .testimonials__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .cookie-popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  .hero__title {
    font-size: 3rem;
  }
  .team__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer .container {
    text-align: center;
  }
  .footer__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */