p {
    color: #616161;
    font-weight: 200;
}

a {
    text-decoration: none;
}

.icons-section {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.icon {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.icon img {
    width: 50px;
    height: 50px;
}
.text {
    display: flex;
    margin-left: 30px;
    flex-direction: column;
}

.title {
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}

@media screen and (max-width: 920px) {
    .icon {
        flex-direction: column;
        align-items: center;
    }

    .icon img {
        margin-bottom: 24px;
    }

    .text {
        margin-left: 10px;
    }

    .icons-section {
        flex-direction: column;
    }

    .icon {
        margin-bottom: 10px;
    }
}