.about-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 100px;

}
.about-profile__title {
    margin-bottom: 60px;
}

.about-profile__desc {
    white-space: pre-line;
}

@media screen and (width < 1024px) {
    .about-profile {
        grid-template-columns: 100%;
        gap: 60px;
    }
}
@media screen and (width < 768px) {
    .about-profile{
        margin-bottom: 60px;
    }
}
@media screen and (width < 576px) {
    .about-profile{
        gap: 40px;
    }
    .about-profile__title {
        margin-bottom: 40px;
    }
}

.about-idea {
    padding-bottom: 80px;
}
.about-idea__group {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.25);
    background-color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.about-idea__item {
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;

}
.about-idea__img {
    width: 68px;
}

@media screen and (width < 1024px) {
    .about-idea__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (width < 768px) {
    .about-idea{
        padding-bottom: 60px;
    }
    .about-idea__img {
        width: 48px;
    }
}

@media screen and (width < 576px) {
    .about-idea__item {
        padding: 24px 16px;
        gap: 8px;
    }
    .about-idea__img {
        width: 36px;
    }
}