.c-infoblock {
  color: #333;
  font-size: 14px;
  height: 100%;
}
.c-infoblock__wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 4px 0px #e0e0e0;
  height: 100%;
}
.c-infoblock__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin-right: 30px;
  background: #f5f5f5;
}
.c-infoblock__image img {
  max-height: 70px;
  width: auto;
}
.c-infoblock__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
  font-family: "Fira Sans", sans-serif;
  color: #00234b;
}
.c-infoblock__descr {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
}
.c-infoblock__descr p {
  margin-bottom: 10px;
}
.c-infoblock__descr p:last-child {
  margin-bottom: 0;
}
.c-infoblock__links {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.c-infoblock__links > a {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-infoblock__title {
    font-size: 24px;
  }
  .c-infoblock__descr {
    font-size: 16px;
  }
  .c-infoblock__links {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .c-infoblock__wrapper {
    flex-direction: column;
  }
  .c-infoblock__image {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 20px 0;
    width: 100%;
    height: auto;
  }
}
