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

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background-color: #1976D2;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #145ca4;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #1976D2;
  color: #1976D2;
}

.btn--outline:hover {
  background-color: #1976D2;
  color: #fff;
}

.btn--small {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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);
}

.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;
  height: 80px;
}

.header--fixed {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.logo--footer {
  color: #fff;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav.active {
    left: 0;
  }
}

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

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

.nav__item {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .nav__item {
    margin: 0;
    margin-bottom: 20px;
  }
}

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

.nav__link:hover {
  color: #1976D2;
}

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

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

@media (max-width: 768px) {
  .nav__link {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
  }
}

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

.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 {
  padding: 150px 0 80px;
  background: -webkit-gradient(linear, left top, right top, from(#083A6F), to(#0d5fb6));
  background: linear-gradient(to right, #083A6F, #0d5fb6);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.hero__text {
  font-size: 18px;
  margin-bottom: 16px;
}

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

.hero .btn {
  margin-top: 20px;
}

.about {
  padding: 80px 0;
}

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

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

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

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .about__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
}

.about__text {
  margin-bottom: 16px;
}

.values__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

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

@media (max-width: 992px) {
  .values__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.values__item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1976D2;
}

.values__item p {
  color: #666;
}

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

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

@media (max-width: 992px) {
  .services__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -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;
  position: relative;
}

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

.service-card__number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  background-color: #1976D2;
  color: #fff;
  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;
  font-weight: 600;
}

.service-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 30px;
}

.service-card__text {
  color: #666;
}

.business {
  padding: 80px 0;
}

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

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

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

.business__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.business__text {
  margin-bottom: 16px;
}

.blog {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.blog__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.blog__subtitle {
  color: #666;
}

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

@media (max-width: 1200px) {
  .blog__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .blog__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  -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;
}

.blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.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:hover .blog-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-card__content {
  padding: 20px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card__text {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-card__link {
  font-weight: 600;
  font-size: 14px;
}

.blog-card__link:hover {
  color: #145ca4;
}

.testimonials {
  padding: 80px 0;
}

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

@media (max-width: 992px) {
  .testimonials__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonial {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial__quote {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.testimonial__quote::before, .testimonial__quote::after {
  content: '"';
  color: #1976D2;
  font-size: 40px;
  line-height: 0;
  position: relative;
}

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

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

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

@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 {
  margin-top: 30px;
}

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

.contact__form-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact__form {
  width: 100%;
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #1976D2;
  -webkit-box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
          box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

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

.success {
  height: calc(100vh - 80px - 100px);
  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;
  padding: 80px 0;
  margin-top: 80px;
}

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

.success__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.success__text {
  font-size: 24px;
  margin-bottom: 40px;
}

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

.footer {
  background-color: #111;
  color: #fff;
  padding: 50px 0;
}

.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;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 576px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.footer__nav-item {
  margin-left: 30px;
}

@media (max-width: 576px) {
  .footer__nav-item {
    margin-left: 0;
  }
}

.footer__nav-link {
  color: #fff;
  opacity: 0.8;
}

.footer__nav-link:hover {
  opacity: 1;
}

.footer__copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
}

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

.cookie-popup.show {
  display: block;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

.cookie-popup__content p {
  margin-bottom: 15px;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.terms {
  padding-top: 100px;
  padding-bottom: 100px;
}

.terms h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 32px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */