@charset "UTF-8";
/* Contacts Hero — desktop + mobile (Figma) */
.contacts-hero {
  margin: 157px 24px 50px 24px;
  background-color: #f9faff;
  border-radius: 24px;
  padding: 64px 0;
}
@media (max-width: 767px) {
  .contacts-hero {
    padding: 44px 0;
    margin: 124px 0 50px 0;
    border-radius: 0;
  }
}
.contacts-hero .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8b93a7;
}
.contacts-hero .breadcrumbs a {
  color: #8b93a7;
  text-decoration: none;
  transition: color 0.25s ease;
}
.contacts-hero .breadcrumbs a:hover {
  color: #011c51;
}
.contacts-hero .breadcrumbs .current-item,
.contacts-hero .breadcrumbs span[property=name] {
  color: #011c51;
}
@media (max-width: 767px) {
  .contacts-hero .breadcrumbs {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 18px;
  }
}
.contacts-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .contacts-hero__top {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .contacts-hero__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contacts-hero__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .contacts-hero__info {
    gap: 14px;
  }
}
.contacts-hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #011c51;
}
@media (max-width: 767px) {
  .contacts-hero__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.contacts-hero__text {
  margin: 0;
  max-width: 520px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #5F646E;
}
.contacts-hero__text p {
  margin: 0 0 8px;
}
.contacts-hero__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contacts-hero__text {
    max-width: none;
    font-size: 15px;
    line-height: 22px;
  }
}
.contacts-hero__cards {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .contacts-hero__cards {
    margin-top: 2px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contacts-hero__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contacts-hero__card {
    padding: 24px;
    gap: 12px;
    border-radius: 12px;
  }
}
.contacts-hero__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin-top: 2px;
  color: #011c51;
}
.contacts-hero__card-icon svg {
  display: block;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
}
.contacts-hero__card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-hero__card-label {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  color: #011C51;
}
.contacts-hero__card-value {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #5F646E;
  text-decoration: none;
  word-break: break-word;
}
.contacts-hero__card-value[href]:hover {
  color: #011c51;
}
.contacts-hero__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  padding: 16px 20px;
  border: 1px solid #d5deeb;
  border-radius: 12px;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contacts-hero__socials {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px;
  }
}
.contacts-hero__socials-label {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: normal;
  font-weight: 600;
  color: #011c51;
}
.contacts-hero__socials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.contacts-hero__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.contacts-hero__social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.contacts-hero__social img {
  display: block;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts-hero__map {
  position: relative;
  min-width: 0;
  min-height: 420px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #eef2f8;
  border: 1px solid rgba(2, 62, 183, 0.2470588235);
  box-sizing: border-box;
}
.contacts-hero__map img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .contacts-hero__map {
    min-height: 340px;
    height: auto;
    aspect-ratio: 16/11;
  }
  .contacts-hero__map img {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .contacts-hero__map {
    min-height: 0;
    aspect-ratio: 16/10;
    border-radius: 12px;
  }
}
.contacts-hero__description {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #d5deeb;
  border-radius: 12px;
  background-color: #fff;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5f646e;
}
.contacts-hero__description p {
  margin: 0 0 10px;
}
.contacts-hero__description p:last-child {
  margin-bottom: 0;
}
.contacts-hero__description strong,
.contacts-hero__description b {
  font-weight: 700;
  color: #011c51;
}
@media (max-width: 767px) {
  .contacts-hero__description {
    margin-top: 16px;
    padding: 16px;
    font-size: 14px;
    line-height: 22px;
    border-radius: 12px;
  }
}/*# sourceMappingURL=style.css.map */