#advantages {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    gap: 40px;
    align-items: center;
}

#advantages h1 {
    grid-column: 1 / -1;
    text-align: center;
}

.advantages_block {
    border-right: 1px solid var(--main-color);
}

.advantages_block:last-child {
    border-right: none;
}

.advantages_block h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

.advantages_block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantages_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 200px;
    margin-top: 20px;
    border-bottom: 1px solid var(--main-color);
}

.advantages_item img {
    width: 100px;
    height: 100px;
}

.advantages_item.header {
    border: none;
    margin: 0;
    height: auto;
}

.advantages_item.header p {
    display: none;
    position: absolute;
    bottom: 20px;
}


@media (max-width: 600px) {
    #about img {
        padding: 80px 0;
    }
}

@media (max-width: 1120px) {
    #advantages {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .advantages_block {
        border-right: none;
        border-bottom: 1px solid var(--main-color);
        width: 100%;
        padding-bottom: 20px;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        position: relative;
        align-items: center;

    }

    .advantages_block:last-child {
        border-bottom: none;
    }

    .advantages_block h1 {
        font-size: 8vw;
        margin: 0;
        white-space: nowrap;
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: start;
    }

    .advantages_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100vw;
        height: 25vw;
        margin-top: 0;
        margin-right: 0;
        border-bottom: none;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .advantages_item img {
        width: 12vw;
        height: 12vw;
        margin-top: 10px;
    }

    .advantages_item p {
        font-size: 3.5vw;
        white-space: normal;
        text-align: center;
        padding: 0 15px;
    }

    .advantages_block::-webkit-scrollbar {
        display: none;
    }

    .advantages_item.header {
        border: none;
        margin: 0;
        height: auto;
    }

    .advantages_item.header p {
        display: block;
    }
}