@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;
}

.contacts-section {
  padding: 40px 0 60px;
}

.contacts-card {
  background: #17223a;
  color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .contacts-card {
    grid-template-columns: 1fr;
  }
}

.contacts-card__info p {
  margin: 0 0 4px;
}
.contacts-card__info a {
  color: #fff;
  text-decoration: none;
}
.contacts-card__info .grey {
  color: black;
}

.contacts-card__buttons {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}
.contacts-card__buttons .btn-main {
  width: 50%; /* кнопки на всю ширину */
  text-align: center;
}

.btn-main--sm {
  padding: 6px 16px;
}

.contacts-card__map {
  border-radius: 12px;
  overflow: hidden;
  background: #d6d6d6;
  min-height: 190px;
}
.contacts-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.grey {
  background-color: #d9d9d9;
}
.grey:hover {
  background: #929292;
}/*# sourceMappingURL=style.css.map */