.front-page #contacts-block {
  padding-top: 40px;
}

#contacts-block {
  margin-bottom: 80px;
  background-color: #FFFFFF;
}
#contacts-block .container {
  position: relative;
}
#contacts-block .block-title {
  margin-bottom: 25px;
}
#contacts-block .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 25px;
}
#contacts-block .item {
  display: flex;
  align-items: flex-start;
}
#contacts-block .item img {
  margin-top: 2px;
/*   margin-right: 10px; */
}
#contacts-block .item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#contacts-block .item__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 119%;
  color: #406CB4;
}
#contacts-block .item__content > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #797A84;
}
#contacts-block .item__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #797A84;
}
#contacts-block .item__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #797A84;
}
#contacts-block .item__link:hover {
  color: #406CB4;
}
#contacts-block .item__socilas {
  display: flex;
}
#contacts-block .item__socilas > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #E35054;
  margin-right: 15px;
  transition: background 0.3s ease-in;
}
#contacts-block .item__socilas svg {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
#contacts-block .item__socilas a + a {
  margin-left: 15px;
}
#contacts-block .item__socilas a:hover {
  background-color: #406CB4;
}
#contacts-block .map-holder {
  height: 400px;
}
@media (max-width: 1070px) {
  #contacts-block .wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 700px) {
  #contacts-block .wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 535px) {
  #contacts-block .item {
    width: 100%;
  }
}
@media (max-width: 410px) {
  #contacts-block .wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}/*# sourceMappingURL=block.css.map */