@charset "UTF-8";
.contacts {
  background: #fff;
  color: #000;
  /* телефон, почта, время */
  /* адреса  реквизиты */
  /* карта */
}
.contacts .contacts-title {
  font-weight: 600;
  font-size: 2rem;
  font-family: "Montserrat";
  text-align: left;
}
.contacts .contacts-subtitle {
  color: #4e4e4e;
  margin: 1.5rem 0;
  line-height: 1.6;
  text-align: left;
  font-size: 1.125rem;
}
.contacts .contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.contacts .contacts-grid .contact-card {
  flex: 1 1 250px;
  background: #e3e1e1;
  border-radius: 30px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 250px;
  transition: transform 0.2s ease;
}
.contacts .contacts-grid .contact-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}
.contacts .contacts-grid .contact-card .label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1.125rem;
}
.contacts .contacts-grid .contact-card .value {
  line-height: 1.4;
  font-size: 1.125rem;
}
.contacts .contacts-grid .contact-card .value a {
  color: inherit;
  text-decoration: none;
}
.contacts .contacts-grid .contact-card .value a:hover {
  text-decoration: underline;
}
.contacts .contacts-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
}
.contacts .contacts-addresses .address-card {
  background: #e3e1e1;
  border-radius: 30px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contacts .contacts-addresses .address-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}
.contacts .contacts-addresses .address-card .label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contacts .contacts-addresses .address-card .value {
  color: #333;
  line-height: 1.6;
}
.contacts .contacts-addresses .address-card .btn-requisites {
  display: inline-block;
  background: #af4100;
  color: #fff !important;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
}
.contacts .contacts-addresses .address-card .btn-requisites * {
  color: #fff !important;
  text-decoration: none;
}
.contacts .contacts-addresses .address-card .btn-requisites:hover {
  background: rgba(179, 61, 11, 0.8);
}
.contacts .contacts-map {
  border-top: 1px solid #e5e5e5;
}
.contacts .contacts-map iframe {
  border: none;
  width: 100%;
  height: 450px;
  display: block;
}
@media (max-width: 992px) {
  .contacts .contacts-addresses {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .contacts .contacts-addresses .address-card {
    width: 90%;
    margin: 0 auto;
  }
  .contacts .contacts-grid {
    flex-direction: column;
    align-items: center;
  }
  .contacts .contacts-grid .contact-card {
    width: 90%;
    margin: 0 auto;
  }
  .contacts .contacts-map iframe {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */