<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card-offers-wrapper{
    padding: 0 var(--container-space);
    display: flex;
    justify-content: center;
}

.card-offers-items{
    display: flex;
    width: 95%;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.card-offers-item {
    text-align: center;
    width: 32%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    position: relative;
    overflow: hidden;
    padding: 1em;
}

@keyframes moveUp {
    
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10%);
    }

    0%{
        transform: translateY(0);
    }
}

@keyframes moveDown {
    
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(10%);
    }

    0%{
        transform: translateY(0);
    }
}

.card-offer-img{
    animation: moveUp 4s infinite ;
}

.card-offers-item.centered .card-offer-img{
    animation: moveDown 4s infinite ;

}

.card-offers-bkg{
    background: rgba(255, 255, 255, 0.10);
    filter: blur(24.120712280273438px);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .3s ease;

}

.card-offers-item:hover .card-offers-bkg{
    background: linear-gradient(202deg, rgba(22, 115, 175, 0.30) 46.75%, rgba(55, 42, 147, 0.30) 99.12%);
}

.centered{
    background: linear-gradient(202deg, rgba(22, 115, 175, 0.30) 46.75%, rgba(55, 42, 147, 0.30) 99.12%);

}
.card-offer-title{
    color: #FFF;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%; /* 23px */
    text-transform: uppercase;
}

.card-offers-content{
    color: white;
    font-family: 'Poppins',sans-serif;
    padding: 0 1em;
}

.card-offers-pdf{
    margin-bottom: 10px;
}

.card-offers-pdf a{
    color:#FFF;
    font-family: 'Poppins',sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; /* 21.25px */
    text-decoration-line: underline;
    text-transform: uppercase;
}

.card-offers-item .wp-block-button.is-style-white-background-blue-border{
    margin-bottom: 30px;
}

.card-offers-bandana{
    color: #FFF;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    top: 7%;
    right: -35%;
    width: 100%;
    background-color: #1740CD;    
    transform: rotate(45deg) ;
}


@media (max-width:1024px){
    .card-offers-items{
        flex-direction: column;
    }

    .card-offers-item {
        width: 90%;
    }


    .card-offers-bandana{
        top: 10%;
        right: -39%;
    }
}


@media (max-width:576px){
    .card-offers-items{
        flex-direction: column;
    }

    .card-offers-item {
        width: 100%;
    }

    .card-offers-bandana{
        top: 7%;
        right: -33%;
    }
}</pre></body></html>