.nav-link-contacts {
  font-weight: bold;
}
/* .container__body {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
} */
.body__header {
  max-height: 428px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts {
  padding: 10px 20px;
  font-size: 1.1rem;
}
.contacts__wrap {
  display: flex;
}
.contactIcons{
  flex-direction: column;
  display: flex;
}
.contactIcon{
  margin-bottom: 10px;
}
.address{
  margin-left: 20px;
  color: black;
}
.address:hover{
  color: #800000;
}
a{
  text-decoration: none;
}
.contactIcon a img{
  width: 30px;
  height: auto;
  margin-right: 20px;
  /* transition: .3s all ease; */
}
@media (min-width: 576px) {
  .contacts {
    font-size: 1.6rem;
  }
  .contactIcon{
    margin-bottom: 15px;
  }
  .contactIcon a img{
    width: 40px;
  }
}

.contactIcon a:hover img{
  /* transform: rotate(20deg); */
  animation: icon 0.5s linear;
}
@keyframes icon {
  0%{
    transform: rotate(0deg);
  }
  25%{
    transform: rotate(20deg);
  }
  50%{
    transform: rotate(0deg);
  }
  75%{
    transform: rotate(-20deg);
  }
  100%{
    transform: rotate(0deg);
  }
}
.contactIcon a:hover{
  color: #800000;
}

.container__map {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.map__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map__wrap__frame {
  height: 400px;
  width: 100%;
}

.container__form {
  position: relative;
  background: #ECF0F3;
  height: auto;
  margin-bottom: 20px;
}
.container__form__wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
