/* Carbon Accounting */
.carbon-accounting {
    position: relative;
    overflow: hidden;
}

.carbon-accounting video {
    width: 100%;
    height: 100%;

}

.carbon-accounting .content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 610px;
}

.carbon-accounting .content-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carbon-accounting .content-detail .kc-h2 {
    line-height: 1.2;
}

.carbon-accounting .content-detail .logo {
    max-width: 272px;
}

@media screen and (min-width: 1500px) {
    .carbon-accounting .sc-inner {
        padding: 200px 0;
    }
}

@media screen and (min-width: 1920px) {
    .carbon-accounting .sc-inner {
        padding: 260px 0;
    }
}

@media screen and (min-width: 992px) {
    .carbon-accounting video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

}

@media screen and (max-width: 992px) {
    .carbon-accounting video {
        position: static;
    }

}

@media screen and (max-width: 767px) {
    .carbon-accounting .content {
        gap: 40px;
        max-width: 100%;
    }

    .carbon-accounting .content-detail {
        gap: 16px;
    }
}

/* ease-of-use */
.ease-of-use {
    background-color: var(--c-dark-green);
    color: var(--c-white);

}

.ease-of-use .content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.ease-of-use .content .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 80px;
    column-gap: 60px;
}

.ease-of-use .content .content-grid .grid-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ease-of-use .content .content-grid .grid-items .topic {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
}

.ease-of-use .content .content-grid .grid-items .kc-h4 {

    font-weight: 600;
}

.ease-of-use .content .content-grid .grid-items .icon {
    min-width: 80px;
}

.ease-of-use .content .content-grid .grid-items .desc {
    line-height: 1.5;
}

.ease-of-use .content .content-img {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.ease-of-use .content .content-grid-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.ease-of-use .content .content-grid-text .grid-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ease-of-use .content .content-grid-text .heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ease-of-use .content .content-grid-text .heading .head {
    font-size: 33px;
    font-weight: 600;
    line-height: 1.5;
}

.ease-of-use .content .content-grid-text .heading .subhead {
    font-weight: 600;
    color: var(--c-primary);
}

.ease-of-use .content .content-grid-text .desc {
    line-height: 1.5;
}


@media screen and (max-width: 767px) {
    .ease-of-use .content {
        margin-top: 60px;
        gap: 60px;
    }

    .ease-of-use .content .content-grid {

        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ease-of-use .content .content-img {
        flex-direction: column;
    }

    .ease-of-use .content .content-grid-text {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ease-of-use .content .content-grid-text .grid-items {
        gap: 16px;
    }

    .ease-of-use .content .content-grid-text .heading .head {
        font-size: 24px;
    }
}