.iti-color-boxes {
    margin: 0px auto;
    max-width: 1440px;
    padding-left: calc(60px);
    padding-right: calc(60px);
    position: relative;
    width: 100%;
    font-family: "Apercu Regular", sans-serif;

    .color-box-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: start;
        width: 100%;
        max-width: 1320px !important;
        gap: 0;
        height: initial;
        max-height: initial;
        min-height: initial;

        .et_pb_gutters3, .et_pb_column {
            margin-right: 0px !important;
        }

        .color-box-column {
            overflow: hidden;
            padding: 3.375rem 1.875rem 1.625rem;
            position: relative;
            width: 33.3333%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 315px;

            .color-box-bg-img {
                background-size: cover;
                background-position: 50%;
                background-repeat: no-repeat;
                background-blend-mode: overlay;
                opacity: .35;
                transform: scale(1);
                transition: transform 2s ease-in .1s, opacity .3s ease-in-out .1s;
                font-size: 0;
                overflow: hidden;
                bottom: -40px;
                left: 0;
                position: absolute !important;
                top: 0;
                width: 100%;
            }

            .color-box-title {
                font-family: "Apercu Pro Medium", Arial, Helvetica, sans-serif;
                color: #fff;
                /* padding-bottom: 10.4375rem; */
                padding-bottom: 6.4rem;
                font-size: 30px;
                letter-spacing: -1px;
                line-height: 1.33;
                font-weight: 500;
            }

            .color-box-cta {
                opacity: 1;
                transform: translateY(0);
                transition: transform .3s ease-in-out .4s, opacity .3s ease-in-out .4s;
                color: #fff;
                margin-top: auto;
                align-self: flex-start;
                display: inline-block;
                font-size: .75rem;
                font-weight: 600;
                letter-spacing: 1.5px;
                line-height: 1.08;
                margin-top: 1.625rem;
                padding-bottom: 5px;
                position: relative;
                text-transform: uppercase;

                &::after {
                    background: #fff;
                    bottom: 0;
                    content: "";
                    height: 1px;
                    left: 0;
                    position: absolute;
                    width: 100%;
                    animation: none;
                    transform: scaleX(0);
                    transform-origin: left;
                    transition: transform .3s ease-in;
                }

                &:hover:after {
                    transform: scale(1);
                }
            }
        }
    }
}

@media (max-width: 944px) {
    .iti-color-boxes {
        margin: 80px 0px 13rem 0px;
        padding: 0px;

        .color-box-row {
            flex-direction: column;
    
            .color-box-column {
                width: 100% !important;
                margin-bottom: 0px;
            }
        }
    }
}