<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.four_box .row .inner {
    border-radius: 16px;
    border: 1px solid var(--GC-Green, #62B357);
    background: #F2F2F2;
    box-shadow: 2px 2px 80px 8px rgba(0, 0, 0, 0.24);
    padding: 55px 30px 27px 30px;
    position: relative;
    height: 493px;
    width: 31.5%;
}

.four_box .row .inner img {
    position: absolute;
    height: 493px;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 16px;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: .3s ease-in;
}

.four_box .row .inner .content {
    z-index: 1;
    position: relative;
    text-align: center;
    height: 100%;
    /* display: flex; */
    flex-wrap: wrap;
    align-items: center;
    transition: .3s ease-in;
}

.four_box .row .inner .content svg {
    width: 100%;
}

.four_box .row .inner .content h3 {
    color: var(--GC-Green-2);
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    margin: 16px 0;
}

.four_box .row .inner .content p {
    font-size: 16px;
    line-height: 24px;
}

section.four_box {
    padding: 0px 0 70px 0;
}


.four_box .row .inner:hover img {
    opacity: 1;
    z-index: 1;
    transition: .3s ease-in;
}

.four_box .row .inner:hover .content {
    opacity: 0;
    z-index: 0;
    transition: .3s ease-in;
}

.simple_text p {
    color: var(--grey-dark);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

.simple_text {
    padding: 70px 0;
}

@media screen and (max-width:991px) {
    .four_box .row .inner {
        
    }
}</pre></body></html>