<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.home-center {
    margin-bottom: 32px;
}

.home-center-container {
    padding: 0 43px;
    border-radius: 10px;
    background: var(--1, linear-gradient(180deg, #398BEE 27.60%, #0056BB 100%));
    position: relative;
    padding-bottom: 35px;
    padding-top: 33px;
}

.home-center .decor {
    position: absolute;
    right: 37px;
    top: -85px;
}

.home-center-top {
}

.home-center-top h3 {
    margin: 0;
    font-family: 'SFB';
    font-size: 26px;
    color: #fff;
    line-height: 39px;
}

.home-center-top span {
    font-size: 24px;
    color: #fff;
    line-height: 36px;
}

.home-center-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(4,minmax(0,1fr));
    column-gap: 10px;
    row-gap: 8px;
    margin-top: 21px;
    position: relative;
}

.home-center-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #FFF;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px rgba(57, 139, 238, 0.47) inset;
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 15px;
    transition: 0.6s cubic-bezier(.3,2.2,.3,1);
}

.home-center-item:hover {
    box-shadow: 0px 4px 32px 0px rgba(57, 139, 238, 0.47) inset;
}

.home-center-item img {
    width: 56px;
}

.home-center-item h3 {
    margin: 0;
    color: #0359BE;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 16px;
    font-family: 'SFB';
    line-height: 24px;
    margin-left: 8px;
    flex: 1;
}

/*RS*/

@media(max-width:1023px) {
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {
    .home-center .decor {
        display: none;
    }

    .home-center-container {
        padding: 20px 15px;
    }

    .home-center-top h3 {
        font-size: 22px;
        line-height: 24px;
    }

    .home-center-top span {
        font-size: 17px;
        line-height: 26px;
        margin-top: 9px;
        display: block;
    }

    .home-center-list {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .home-video .heading-left img {
        display: none;
    }

    .home-video .heading-left .content {
        margin-left: 0;
    }
}
</pre></body></html>