.contacts__body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.contacts__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 1.875rem;
  align-items: stretch;
}
@media (width <= 63.99875rem) {
  .contacts__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}
.contacts__title {
  font-size: 1.875rem;
  font-weight: 900;
}
@media (width <= 47.99875rem) {
  .contacts__title {
    font-size: 1.25rem;
  }
}
.contacts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  counter-reset: counter3;
  align-content: start;
  grid-auto-rows: 1fr;
}
@media (width <= 47.99875rem) {
  .contacts__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}
.contacts__map {
  border-radius: 30px;
  overflow: hidden;
}
.contacts__row {
  z-index: 5;
  position: relative;
}
@media (width <= 63.99875rem) {
  .contacts__right {
    margin-top: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .contacts__right {
    padding: 0.9375rem 0.9375rem 1.25rem;
    margin: 1.875rem -0.9375rem 0;
  }
}

.contacts-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-default);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  justify-content: space-between;
  cursor: pointer;
  background: #F7F8F8;
  border-radius: 30px;
}
.contacts-item:hover {
  box-shadow: var(--shadow-default-hover);
}
.contacts-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .contacts-item__title {
    font-size: 0.875rem;
  }
}
.contacts-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.contacts-item__text a {
  text-decoration: none;
  color: inherit;
}
.contacts-item__text a:hover {
  text-decoration: underline;
}
@media (width <= 47.99875rem) {
  .contacts-item__text {
    font-size: 1rem;
  }
}
.contacts-item__phones-list {
  margin-top: 0.625rem;
}
.contacts-item__phones-item {
  font-size: 1.125rem;
  text-decoration: underline;
}

.contacts + .footer-map {
  display: none;
}

.contacts__form {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
@media (width <= 47.99875rem) {
  .contacts__form {
    margin-top: 1.875rem;
  }
}
.contacts__form-inner {
  padding: 2.5rem;
  border-radius: var(--radius-default);
  background: #56565d;
  box-shadow: var(--shadow-default);
}
@media (width <= 47.99875rem) {
  .contacts__form-inner {
    padding: 1.25rem;
  }
}
.contacts__form-title {
  color: #ffffff;
}
.contacts__form-subtitle {
  margin-top: 0.625rem;
  color: #ffffff;
  font-size: 0.9375rem;
}
.contacts__form-btn {
  border: 0.0625rem solid #ffffff;
}

.contacts-item:before {
  content: "0" counter(counter3);
  counter-increment: counter3;
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  font-size: 12px;
  opacity: 0.5;
}

.contacts__list,
.contacts__inner {
  min-height: 0;
}/*# sourceMappingURL=contacts.css.map */