h1 {
  text-align: center;
  margin-bottom: 0px;
}

.contacts-container {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
}

.contacts-content {
  width: 60%;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-right: 80px;
}

.contacts-item-container {
  display: flex;
  align-items: center;
  max-width: 280px;
  font-size: 1rem;
  font-weight: 400px;
  margin-top: 20px;
  line-height: 1.5;
}

.contacts-icon {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.contacts-social-media {
  display: flex;
  flex-direction: column;
}

.contacts-social-icons {
  display: flex;
  max-width: 280px;
  margin-top: 20px;
}

.contacts-social-icon {
  margin-right: 16px;
}

.contacts-image {
  display: flex;
  max-width: 560px;
  height: 100%;
  width: auto;
  border-radius: 12px;
  overflow: hidden;
}
.contacts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1600px) {
  .contacts-image img {
    max-height: 500px;
  }
}
@media screen and (max-width: 1450px) {
  .contacts-content {
    width: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .contacts-item-container {
    max-width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .contacts-container {
    flex-direction: column;
  }
  .contacts-content {
    width: 100%;
    margin-right: 0px;
  }
  .contacts-item-container {
    font-size: 0.9rem;
  }
  .contacts-image {
    max-width: none;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .contacts-social-icon {
    width: 32px;
    height: auto;
  }
}

/*# sourceMappingURL=contacts.css.map */
