*,
*::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: 'Manrope', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

a:hover {
  color: #1e567e;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-size: 1.6rem;
}

.btn--primary {
  background-color: #2872a7;
  color: #fff;
}

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

.btn--secondary {
  background-color: #fff;
  color: #2872a7;
  border: 2px solid #2872a7;
}

.btn--secondary:hover {
  background-color: #2872a7;
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: #2872a7;
  border: 1px solid #2872a7;
}

.btn--outline:hover {
  background-color: #2872a7;
  color: #fff;
}

.btn--full {
  width: 100%;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  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: 1.5rem 0;
}

.header__content {
  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: 800;
  color: #2872a7;
}

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

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

.main-nav__item {
  margin: 0 1.5rem;
}

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

.main-nav__link:hover {
  color: #2872a7;
}

.main-nav__link.active {
  color: #2872a7;
}

.main-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2872a7;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger__line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger__line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: 8rem 0;
  background-color: #2872a7;
  color: #fff;
}

.hero__content {
  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;
}

.hero__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 4rem;
}

.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.hero__title {
  font-size: 4rem;
  margin-bottom: 2rem;
}

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

.why-us {
  padding: 8rem 0;
}

.features {
  padding: 4rem 0;
}

.feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.feature.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.feature__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 4rem;
}

.feature__title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.feature__description {
  font-size: 1.8rem;
}

.feature--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.feature--reverse .feature__content {
  padding: 0 4rem 0 0;
}

.tools {
  padding: 8rem 0;
  background-color: #f5f5f5;
}

.tools__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;
}

.tool {
  background-color: #fff;
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
}

.tool.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.tool__icon {
  margin-bottom: 2rem;
}

.tool__icon svg,
.tool__icon img {
  width: 64px;
  height: 64px;
  color: #2872a7;
}

.tool__title {
  font-size: 1.8rem;
  font-weight: 600;
}

.testimonials {
  padding: 8rem 0;
}

.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: #fff;
  border-radius: 4px;
  padding: 3rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #2872a7;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.testimonial.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial__author {
  font-weight: 600;
  color: #666;
}

.blog {
  padding: 8rem 0;
  background-color: #f5f5f5;
}

.blog__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;
}

.blog-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s ease, -webkit-transform 0.6s ease;
}

.blog-card.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card__title {
  padding: 2rem;
  font-size: 1.8rem;
}

.contact {
  padding: 8rem 0;
}

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

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #2872a7;
  outline: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}

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

.success {
  padding: 12rem 0;
  text-align: center;
}

.success__icon {
  margin-bottom: 3rem;
}

.success__icon svg {
  width: 80px;
  height: 80px;
  color: #4CAF50;
}

.success__title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.success__text {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: #1b2b4a;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo .logo {
  color: #fff;
}

.footer__copyright {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__links {
  margin-bottom: 2rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #fff;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

.social-icon {
  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;
}

.social-icon:hover {
  background-color: #2872a7;
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(27, 43, 74, 0.95);
  color: #fff;
  padding: 2rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  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;
}

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

.cookie-banner p {
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 992px) {
  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__text {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
  .hero__title {
    font-size: 3.2rem;
  }
  .feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature__image {
    margin-bottom: 3rem;
  }
  .feature__content {
    padding: 0;
  }
  .feature--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature--reverse .feature__content {
    padding: 0;
  }
  .cookie-banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-banner__content p {
    margin-bottom: 2rem;
  }
  .cookie-banner__content .cookie-banner__buttons {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99;
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
  }
  .main-nav__item {
    margin: 1.5rem 0;
  }
  .main-nav__link {
    font-size: 2rem;
  }
  .hamburger {
    display: block;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .hero {
    padding: 6rem 0;
  }
  .hero__title {
    font-size: 2.8rem;
  }
  .hero__description {
    font-size: 1.6rem;
  }
  .tools__grid,
  .testimonials__grid,
  .blog__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  .header__content .btn {
    display: none;
  }
  .hero {
    padding: 4rem 0;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

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