.about-wrap {
    position: relative;
    height: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-wrap>img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.1;
}

.section-about {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 0 90px 0;
}

.section-about>h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
}

.section-about>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.section-about>img{
    width: 40px;
    height: 40px;
    margin-top: 80px;
}

@media screen and (max-width: 600px) {
    .section-about{
        padding: 80px 0;
    }
    .section-about>h2{
        font-size: 24px;
    }

    .section-about>p{
        font-size: 15px;
    }
}