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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

ul {
  list-style: none;
}

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

a:hover {
  color: #101d5d;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: #182b88;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.btn {
  display: inline-block;
  background-color: #182b88;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #101d5d;
  color: #fff;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #182b88;
  letter-spacing: 1px;
}

.logo:hover {
  color: #182b88;
}

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

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

.nav__link {
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav__link:hover {
  color: #182b88;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #182b88;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    padding: 6rem 2rem 2rem;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .nav__link {
    font-size: 1.2rem;
    display: block;
  }
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

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

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

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

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

@media (max-width: 768px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hero {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #182b88;
  text-align: center;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__text {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hero__contact {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e1e1e1;
  font-size: 0.9rem;
  color: #666;
}

.hero__contact p {
  margin-bottom: 0.5rem;
}

.solutions {
  padding: 5rem 0;
  background-color: #fff;
}

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

.solutions__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.solutions__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solutions__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(24, 43, 136, 0.1);
  border-radius: 50%;
  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;
}

.solutions__icon img {
  width: 24px;
  height: 24px;
}

.solutions__text {
  margin-bottom: 0;
}

.solutions__text strong {
  display: block;
  margin-bottom: 0.5rem;
}

.audience {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

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

.audience__item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.audience__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.audience__image {
  height: 200px;
  overflow: hidden;
}

.audience__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.audience__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.audience__title {
  padding: 1.5rem 1.5rem 0;
  font-size: 1.3rem;
  color: #182b88;
}

.audience__text {
  padding: 0 1.5rem 1.5rem;
  margin-bottom: 0;
}

.services {
  padding: 5rem 0;
  background-color: #fff;
}

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

.services__item {
  padding: 2rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services__title {
  font-size: 1.3rem;
  color: #182b88;
  margin-bottom: 1rem;
}

.services__text {
  margin-bottom: 0;
}

.case-study {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.case-study__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .case-study__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.case-study__image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.case-study__title {
  font-size: 1.8rem;
  color: #182b88;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .case-study__title {
    font-size: 1.5rem;
  }
}

.case-study__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .case-study__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.case-study__item h4 {
  color: #182b88;
  margin-bottom: 0.5rem;
}

.case-study__item ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.case-study__item ul li {
  margin-bottom: 0.5rem;
}

.coaches {
  padding: 5rem 0;
  background-color: #fff;
}

.coaches__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
}

.coaches__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .coaches__item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.coaches__image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.coaches__name {
  font-size: 1.8rem;
  color: #182b88;
  margin-bottom: 0.5rem;
}

.coaches__position {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.coaches__specialties {
  margin-bottom: 0;
  font-style: italic;
}

.deployment {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.deployment__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .deployment__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.deployment__image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.deployment__text {
  font-size: 1.1rem;
}

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

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

.testimonials__item {
  padding: 2rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonials__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials__quote {
  font-style: italic;
  position: relative;
}

.testimonials__quote p {
  margin-bottom: 1.5rem;
}

.testimonials__quote footer {
  text-align: right;
}

.testimonials__name {
  display: block;
  font-weight: 600;
  font-style: normal;
  color: #182b88;
}

.testimonials__position {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: #666;
}

.responsibility {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.responsibility__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .responsibility__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.responsibility__image {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.responsibility__text {
  font-size: 1.1rem;
}

.responsibility__btn {
  margin-top: 1rem;
}

.contact {
  padding: 5rem 0;
  background-color: #fff;
}

.contact__subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.contact .form-group {
  margin-bottom: 1.5rem;
}

.contact input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact input:focus {
  outline: none;
  border-color: #182b88;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 43, 136, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 43, 136, 0.2);
}

.contact__btn {
  width: 100%;
  padding: 1rem;
}

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

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

@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

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

.footer__link {
  color: #fff;
  opacity: 0.8;
}

.footer__link:hover {
  opacity: 1;
  color: #fff;
}

.footer__copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-banner__text {
  margin-bottom: 1.5rem;
}

.cookie-banner__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 576px) {
  .cookie-banner__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookie-banner__btn {
  padding: 0.75rem 1.5rem;
}

.cookie-banner__btn--learn {
  background-color: transparent;
  color: #182b88;
  border: 1px solid #182b88;
}

.cookie-banner__btn--learn:hover {
  background-color: rgba(24, 43, 136, 0.1);
}

.success {
  padding: 10rem 0;
  min-height: calc(100vh - 180px);
  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;
  background-color: #f8f9fa;
}

.success__content {
  text-align: center;
}

.success__title {
  font-size: 2.5rem;
  color: #182b88;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .success__title {
    font-size: 2rem;
  }
}

.success__btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}

@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

.privacy {
  margin: 100px 0;
}

.privacy h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
/*# sourceMappingURL=style.css.map */