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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  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;
}

a:hover {
  color: #f47142;
}

ul, ol {
  list-style: none;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input, textarea {
  font-family: "Montserrat", sans-serif;
  outline: none;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #f47142;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #f47142;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #f14d12;
  color: #ffffff;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #003461;
  color: #ffffff;
  padding: 15px;
  z-index: 1000;
  display: none;
}

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

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

@media (max-width: 768px) {
  .cookie-popup .cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-popup .cookie-content p {
    margin-bottom: 15px;
  }
}

.header {
  background-color: #003461;
  color: #ffffff;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.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: 24px;
  font-weight: 700;
  color: #ffffff;
}

.logo:hover {
  color: #ffffff;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: #003461;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .main-nav.active {
    height: auto;
    padding: 15px 0;
  }
}

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

@media (max-width: 992px) {
  .main-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 15px;
  }
}

.main-nav__item {
  margin-left: 25px;
}

@media (max-width: 992px) {
  .main-nav__item {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .main-nav__item:last-child {
    margin-bottom: 0;
  }
}

.main-nav__link {
  color: #ffffff;
  font-weight: 500;
}

.main-nav__link:hover {
  color: #f47142;
}

.mobile-menu-toggle {
  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: 25px;
  height: 20px;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(45deg);
          transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(-45deg);
          transform: translateY(-8.5px) rotate(-45deg);
}

.hero {
  background-color: #003461;
  background-image: url(./assets/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }
}

.hero__content {
  max-width: 800px;
}

.hero__title {
  font-size: 36px;
  margin-bottom: 20px;
}

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

@media (max-width: 576px) {
  .hero__title {
    font-size: 28px;
  }
}

.hero__text {
  margin-bottom: 20px;
  opacity: 0.9;
}

.about {
  padding: 80px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 40px 0;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

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

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .about__image {
    width: 100%;
  }
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__text {
  margin-bottom: 15px;
}

.services {
  padding: 80px 0;
  background-color: #f8f8f8;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 40px 0;
  }
}

.services__subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .services__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.service-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card__title {
  color: #003461;
  margin-bottom: 15px;
  font-size: 20px;
}

.tech {
  padding: 80px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .tech {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .tech {
    padding: 40px 0;
  }
}

.tech__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .tech__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tech__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tech__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .tech__image {
    width: 100%;
  }
}

.tech__text {
  margin-bottom: 15px;
}

.advantages {
  padding: 80px 0;
  background-color: #f8f8f8;
}

@media (max-width: 768px) {
  .advantages {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .advantages {
    padding: 40px 0;
  }
}

.advantages__subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .advantages__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.advantages__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.advantage-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-card__title {
  color: #003461;
  margin-bottom: 15px;
  font-size: 20px;
}

.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 40px 0;
  }
}

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

.testimonial-card {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
}

.testimonial-card__text {
  font-style: italic;
  color: #333333;
}

.systems {
  padding: 80px 0;
  background-color: #f8f8f8;
}

@media (max-width: 768px) {
  .systems {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .systems {
    padding: 40px 0;
  }
}

.systems__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

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

.systems__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.systems__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .systems__image {
    width: 100%;
  }
}

.systems__text {
  margin-bottom: 15px;
}

.faq {
  padding: 80px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .faq {
    padding: 40px 0;
  }
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.faq-item__question {
  padding: 20px;
  background-color: #f8f8f8;
  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;
  cursor: pointer;
}

.faq-item__question h3 {
  margin-bottom: 0;
  font-size: 18px;
}

@media (max-width: 576px) {
  .faq-item__question h3 {
    font-size: 16px;
  }
}

.faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-item__icon:before, .faq-item__icon:after {
  content: '';
  position: absolute;
  background-color: #003461;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-item__icon:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-item__icon:after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.faq-item.active .faq-item__icon:after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-item__answer p {
  padding: 20px 0;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.contact {
  padding: 80px 0;
  background-color: #f8f8f8;
  background-image: url(./assets/18.png);
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

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

.contact__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__text {
  margin-bottom: 30px;
}

.contact__info p {
  margin-bottom: 10px;
}

.contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #001b33;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f47142;
}

.success {
  padding: 120px 0;
  min-height: 60vh;
  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;
  text-align: center;
}

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

.success__title {
  font-size: 36px;
  margin-bottom: 20px;
}

.success__message {
  font-size: 20px;
  margin-bottom: 30px;
}

.footer {
  background-color: #003461;
  color: #ffffff;
  padding: 30px 0;
}

.footer__top {
  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;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__top .logo {
    margin-bottom: 15px;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

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

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

.footer__bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright {
  font-size: 14px;
  opacity: 0.7;
}

.terms {
  padding: 100px 0px;
}

.terms h1 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 32px;
}
/*# sourceMappingURL=style.css.map */