@charset "UTF-8";
html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.container {
  max-width: 1300px;
}

.h1,
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #313131;
}

.h1 {
  font-size: 40px;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}

.white {
  color: #fff;
  background-color: #17223a;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #006cb5;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #0d4471;
  color: #fff;
}

.btn-main:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--sm {
  padding: 8px 20px;
  font-size: 16px;
}

.btn-main--lg {
  padding: 10px 36px;
  font-size: 24px;
}

.btn-main--full {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  .h1 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
    font-weight: 600;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.service-card {
  position: relative;
  background: url("/static/landing/img/BGcard.png") center/cover no-repeat;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  min-height: 120px;
  height: 100%;
  transition: background 0.3s ease;
  font-family: "Inter";
  font-weight: 400;
  color: #17223a;
  text-wrap: balance;
  text-decoration: none;
}

.service-card:hover {
  background: url("/static/landing/img/BGcard2.png") center/cover no-repeat;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: left;
  justify-content: left;
}
.hero-section .section-title {
  color: white;
  margin-top: 3rem;
  margin-bottom: 8rem;
}
@media (max-width: 1000px) {
  .hero-section .mob {
    margin-top: 10rem;
    margin-bottom: 2rem;
    font-size: 50px !important;
  }
}

.hero-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (max-width: 1000px) {
  .hero-section__image img {
    content: url("/static/landing/img/BGm.png");
  }
}

.hero-section__content {
  position: relative;
  z-index: 3;
  color: #fff !important;
  padding-top: 80px;
}

.hero-btn {
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 14px;
}

.services-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "c1  c2  c3  c4" "c5  c6  c7  c8";
}

.services-grid2 {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "c1  c2  c3";
}

.services-grid3 {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "c1  c2";
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }
  .services-grid2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }
  .services-grid2 .service-card:last-child {
    grid-column: 1/-1;
  }
  .services-grid3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
  }
}
@media (max-width: 1000px) {
  .services-grid,
  .services-grid2,
  .services-grid3 {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 12px;
  }
  .services-grid2 .service-card:last-child {
    grid-column: auto;
  }
}
.about-section {
  background-color: #17223a;
  color: white;
}
.about-section .section-title {
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-list li {
  font-size: 20px;
  padding: 0.4rem 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.callback-section {
  padding: 0px 0;
}

/* ——— ОБЩАЯ ОБВОДКА ——— */
.callback-box {
  border: 1.5px solid #006cb5;
  border-radius: 0 0 10px 10px;
  padding: 35px 40px;
  padding-bottom: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ——— ФОРМА ——— */
.callback-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
}

/* ——— ПОЛЯ ——— */
.callback-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #b3b3b3;
  border-radius: 12px;
  font-size: 1rem;
  height: 48px;
}

.callback-form input:focus {
  border: 2px solid #006cb5;
  outline: none;
}

/* ——— КНОПКА ——— */
.callback-form button {
  white-space: nowrap;
  padding: 0.9rem 1.8rem;
  height: 48px;
  border-radius: 12px;
  font-size: 1rem;
}

.callback-success {
  display: none;
  margin-top: 15px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #006cb5;
  color: #006cb5;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

/* Телефоны */
@media (max-width: 1000px) {
  .callback-section {
    padding: 0px 0;
  }
  .callback-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 16px 30px;
  }
  .callback-form {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    max-width: 100%;
    gap: 12px;
  }
  .callback-form input,
  .callback-form button {
    width: 100%;
  }
}
.projects-map img {
  width: 100%;
  margin-top: 20px;
}

.principles-section {
  background: #17223a;
  padding: 60px 0;
  color: #fff;
}
.principles-section .section-title {
  color: white;
}

.principles-text {
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  text-align: left !important;
}

.principles-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .principles-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.principles-image img {
  display: block;
  height: auto;
}

.principles-image--left img {
  width: 80%;
}

.principles-image--right img {
  width: 100%;
  margin-left: auto;
}

.clients-img {
  width: 100%;
  max-width: 950px;
}

.news-section {
  background: #fff;
}

.news-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 1000px) {
  .news-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ——— Карточка новости ——— */
.news-card {
  display: block;
  background: #fff;
  border: 1.5px solid #006cb5;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
}

.news-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding: 12px 15px;
}

.news-card__title {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  color: #006cb5;
}

/* ——— Правая карточка (форма) ——— */
.news-subscribe {
  background: url("/static/landing/img/newsBG.png") center/cover no-repeat;
  border-radius: 12px;
  padding: 20px;
}

.news-subscribe__title {
  font-size: 20px;
  margin-bottom: 15px;
}

.news-subscribe input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1.5px solid #006cb5;
  border-radius: 8px;
}

.news-subscribe input:focus {
  border: 2px solid #006cb5;
  outline: none;
}

.news-subscribe button {
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */