.follow-block {
  display: none;
    background-color: #bdbdbd;
}
.follow-block__wrapper {
  margin: 0 auto;
  max-width: 1450px;
}
.follow-block__list {
    padding: 10px;
    background-color: #212121;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
		flex-direction: row;
    justify-content: space-around;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
}
.follow-block__item {
    display: block;
    position: relative;
		width: 25%;
		margin-right: 1%;
    margin-left: 1%;
}
.follow-block__img {
    width: 100%;
    position: relative;
}
.follow-block__text {
    display: block;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.follow-block__text:hover{
	text-decoration: underline;
}
.follow-block__text i {
    color: #ffba00;
    margin-left: 5px;
}
@media (max-width:640px) {
  .follow-block {
    display: block;
}
	.follow-block__list{
		flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
	}
	.follow-block__item{
		width: 98%;
    margin-top: 1%;
    margin-bottom: 1%;
	}
}
