.content {
    padding: 90px 50px 30px 50px;
}

p,
h1,
h2 {
    color: white;
    font-family: Montserrat;
}

h1 {
    font-size: 30px;
    font-weight: 600;
}

h1 a,
h1 a:hover {
    color: #82c1fb;
}

h2 {
    font-size: 20px;
    font-weight: 500;
}

.about_row {
    display: flex;
    flex-wrap: wrap;
}

.about_col {
    flex: 0 0 25%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pict {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #d2d2d2;
}

.pict img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desc {
    margin: 5px 5px -5px 20px;
    flex-grow: 1;
}

@media screen and (max-width: 1350px) {
    .about_col {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 760px) {
    .about_row {
        flex-direction: column;
    }
}