.carbon {
    position: relative;
    padding: 160px 0;
}
.carbon .container::after {
        content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gradient-divider-ver);
    position: relative;
    bottom: 0;
    left: 0;
}
.carbon__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.carbon h2 {
    font-size: 52px;
    line-height: 90%;
    color:var(--text-black);
    margin-bottom: 75px;
}

.carbon h3 {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 20px;
    color:var(--text-black);
}

.carbon p {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 80px;
}
.carbon__card {
    background: var(--color-lightgray);
    padding: 15px;
    margin: 0 -15px;
    border-radius: 40px;
    margin-bottom: 160px;
}
.carbon__card img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.carbon__learn {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 160px;
}

.carbon__learn a {
    font-size: 52px;
    line-height: 90%;
    color: var(--text-black);
}

.carbon__learn img {
    max-height: 600px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .carbon h2 {
        font-size: 32px;
        line-height: 100%;
        order: 1;
    }
    .carbon h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .carbon p {
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 60px;
    }
    .carbon__advantages {
        order: 2;
    }
    .carbon__card {
        order: 3;
        display: none;
    }
    .carbon__learn {
        flex-direction: column-reverse;
        order: 5;
        gap: 40px;
    }
    .carbon__report {
        order: 4;
        margin: 0 auto 160px;
    }
    .carbon__learn a {
        font-size: 42px;
        line-height: 100%;
    }
}