@charset "UTF-8";

.cardBlock {
    position: relative;
    padding: clamp( 100px, 7.29vw, 140px ) 0 ;
    background: linear-gradient(
      3deg,
      #fff 0%,
      #fff 40%,
      rgba(158,217,215,.25) 40%,
      rgba(158,217,215,.25) 100%
    );
    z-index: 0;
    overflow: hidden;
}

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

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

.cbCard .cWrap {
    box-sizing: border-box;
    padding: clamp(20px, 2.08vw, 40px);
    background-color: var( --white );
    border-bottom: none;
    box-shadow: 0 40px 50px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

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

.cbCard .cWrap .memList {
    padding: 0;
    font-size: var( --body-font-size );
    list-style-type: none;
    margin-bottom: 0;
    color: #041633;
}

.cbCard .cWrap .memList li {
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
    padding: 0 0 10px;
    display: flex;
    align-items: flex-start;
    /* gap: 16px; */
}

.memList li .fas {
    display: inline-flex;
    margin-right: 13px;
    width: 18px;
    height: 18px;
    background-color: #9ED9D7;
    border-radius: 18px;
    color: var(--white);
    padding: 11px;
    justify-content: center;
    align-items: center;
}

.cbCard .cWrap p {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 24px;
}

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

.cbCard h3 small {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: clamp(.08px, 0.13vw, 2.4px);
}

.cbCard h3 {
    color: #041633;
    font-family: var( --heading-font );
    font-size: clamp(24px, 1.46vw, 28px);
    line-height: 125%;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #E7F5F5;
}

.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: var( --black );
}

.cbCard:hover .cLink,
.cbCard .cLink:hover {
    color: var( --black );
    text-decoration: none;
}

.cbCard .cLink::after {
    content: '\f105';
    color: var( --primary-color );
    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 ) {
    .cardBlock {
        background: linear-gradient(3deg, #fff 0%, #fff 15%, rgba(158, 217, 215, .25) 15%, rgba(158, 217, 215, .25) 100%);
    }
    
    .cbCard {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .cbCard:hover {
        /* margin: 0 auto 60px; */
    }

    .cardBlock .container {
        display: flex;
        justify-content: center;
    }
    
    .cardBlock .flex-row {
        flex-wrap: wrap;
        display: flex;
        width: 44%;
    }
}

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

    .cardBlock .flex-row {
        width: 100%;
    }

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