.theme-customization-services .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.theme-customization-services .box {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    padding: 25px;
}

.theme-customization-services.yellow {
    background-color: var(--lightcream);
}

.theme-customization-services.green {
    background-color: var(--pista);
}

.theme-customization-services.section-text-right .section-title.text-center {
    text-align: right;
}

.theme-customization-services .bottom-text:has(.btn) {
    text-align: center;
}

.theme-customization-services .box .icon {
    display: flex;
    margin-bottom: 15px;
}

.theme-customization-services .box h3 {
    margin: 0 0 8px 0;
}

.theme-customization-services .box .icon svg {
    width: 24px;
    height: auto;
}

.theme-customization-services .box .icon:not(:has(svg)) {
    font-weight: 500;
    color: var(--theme-red);
}

.theme-customization-services .box h3 span {
    margin-top: 10px;
    color: var(--theme-red);
    background: rgba(173, 81, 81, 0.05);
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding: 5.5px 12.5px;
    border-radius: 30px;
    font-family: Montserrat;
    margin-bottom: 5px;
}

.theme-customization-services .bottom-text {
    margin-top: 20px;
    font-weight: 500;
}

.bottom-text p {
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    .theme-customization-services .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media only screen and (max-width: 991px) {
    .theme-customization-services .box {
        border-radius: 20px;
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .theme-customization-services .wrapper {
        display: block;
    }

    .theme-customization-services .wrapper .box:not(:last-child) {
        margin-bottom: 16px;
    }

    .theme-customization-services .box h3 span {
        font-size: 11px;
        padding: 6.5px 13.5px;

    }
}