@charset "UTF-8";

.cardBlock {
    position: relative;
    padding: clamp( 60px, 6.250vw, 120px ) 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 0;
}

.cardBlock .flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    gap: clamp(20px, 4.427vw, 85px);
}

.cardBlock .heading h2 {
    color: #2E2E2D;
}

.cbCard {
    background-color: transparent;
    padding: 0;
    text-align: center;
    margin: 0px;
    transition: all .5s ease;
}

.cbCard .cWrap {
    box-sizing: border-box;
    padding: 0;
    background-color: transparent;
    border-bottom: none;
    /* box-shadow: 0px 15px 30px #00000026; */
    border-radius: 0;
}

.cWrap .diffImg {
    padding-bottom: 28px;
}

.cbCard .cWrap > div.beta-match {
    margin-bottom: 0;
}

.cbCard .cWrap p {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    line-height: 150%;
    margin-bottom: 0;
}

/* .cbCard:hover {
    transform: translateY(-20px);
    transition: all .5s ease-in-out;
} */

.cbCard h3 {
    color: #2E2E2D;
    font-family: 'Outfit', sans-serif;
    font-size: clamp( 20px, 1.146vw, 22px );
    line-height: 125%;
    margin-bottom: 16px;
    font-weight: 400;
    position: relative;
    line-height: 28px;
    margin-top: 0;
}

.cbCard .cLink {
    font-weight: 600;
    font-size: clamp( 14px, 0.833vw, 16px );
    letter-spacing: clamp(0.752px, 0.080vw, 1.54px );
    text-transform: uppercase;
    color: #0F2E31;
}

.cbCard:hover .cLink,
.cbCard .cLink:hover {
    color: #0F2E31;
    text-decoration: none;
}

.cbCard .cLink::after {
    content: '\f105';
    color: #FF5332;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline;
    margin-left: 0;
    opacity: 0;
    transition: all .75s ease-in-out;
}

.cbCard:hover .cLink::after,
.cbCard .cLink:hover::after {
    opacity: 1;
    margin-left: 16px;
    transition: all .75s ease-in-out;
}


.cardBlock .btn.btn-orange {
    margin: 45px auto 0;
    clear: both;
}

.cardBlock .btn.btn-orange:hover {
    margin: 40px auto 5px;
}

@media ( max-width: 1024px ) {
    .cbCard {
        margin: 0 auto 40px;
    }

    .cbCard:hover {
        /* margin: 0 auto 60px; */
    }
    
    .cardBlock .flex-row {
        flex-wrap: wrap;
    }
}

@media ( max-width: 479px ) {
    .cardBlock {
        padding: 80px 0 40px;
    }

    .cbCard {
        width: 95%;
        /* padding: 20px; */
        margin: 0 0 43px;
    }
}