/* Contacts */

.contacts-section {
  box-shadow: 0px 0px 20px 14px rgba(0, 24, 87, 0.03);
  padding: 45px;
  margin-bottom: 180px;
}

.contacts-timetable-title {
  color: #323232;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 30px;
  text-align: center;
}

.contacts-content__block {
  display: flex;
  justify-content: space-between;
}

.contacts-content__info:first-child {
  margin-left: 0px;
  margin-right: 30px;
}

.contacts-content__info:last-child {
  margin-right: 0px;
  margin-left: 30px;
}

.contacts-content__info {
  margin-right: 30px;
  margin-left: 30px;
  display: flex;
  align-items: flex-start;
}

.contacts-content__info svg {
  margin-right: 20px;
}

.contacts-content__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
}

.contacts-content__paragraph {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {

  .contacts-section {
    box-shadow: none;
    margin-bottom: 80px;
    padding: 0;
  }

  .contacts-timetable-title {
    font-size: 12px;
    line-height: 16px;
  }

  .contacts-content__block {
    flex-direction: column;
  }

  .contacts-content__info, .contacts-content__info:first-child, .contacts-content__info:last-child {
    margin: 0;
    margin-bottom: 20px;
  }

  .contacts-content__info svg {
    width: 44px;
    height: 44px;
  }

  .contacts-content__text {
    width: calc(100% - 64px);
  }

  .contacts-content__title {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
  }

  .contacts-content__paragraph {
    font-size: 12px;
    line-height: 16px;
  }

  .contacts-content__paragraph b {
    color: #323232;
  }

}