/* ////////////////////////////////////////////////
# SDGs
//////////////////////////////////////////////// */
.about{
    display: flex;
    gap: 30px;
    margin-top: 60px;
}
.about-img img{
    width: 330px;
    flex-shrink: 0;
}
.block + .block{
    margin-top: 80px;
}
.initiatives{
    margin-top: 40px;
}
.initiatives-item-text h4{
    font-size: 14px;
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 8px;
}
.initiatives-item{
    display: flex;
    gap: 40px;
    padding: 20px 50px;
    align-items: center;
}
.initiatives-item:nth-child(even){
    background: #f7f7f2;
}
.initiatives-item-img{
    flex-shrink: 0;
    width: 250px;
}
.sdgsBlockImg{
    display: flex;
    justify-content: center;
}
.sdgsBlockImg img {
    float: unset;
    max-width: 120px;
}

@media screen and (max-width: 767px){
    .about {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .about-img img {
        width: 100%;
    }
    .initiatives-item{
        flex-direction: column;
        gap: 19px;
        padding: 20px;
        align-items: initial;
    }
    .initiatives-item-img {
        margin: 0 auto;
        width: unset;
    }
    .sdgsBlockImg img{
        width: 80px;
        width: calc(160/750*100vw);
    }
    .block + .block {
        margin-top: 60px;
    }
    .initiatives-item-text h4{
        margin-top: 0;
    }
    .initiatives {
        margin-top: 30px;
    }
    .initiatives-item:nth-child(even){
        background: #efefe6;
    }
}