@charset "UTF-8";

.cardBlock {
    position: relative;
    padding: 0;
    overflow: hidden;
    /* background-color: #f8f8f8; */
    z-index: 0;
}

.cardBlock .container {
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #97d145 0%, #f10b83 49%, #0089a3 100%) 1;
    padding-bottom: clamp(60px, 6.25vw, 120px);
}

.cardBlock .flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    margin-left: 0;
    width: 100%;
    gap: clamp(20px, 2.344vw, 45px);
}

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

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

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

.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;
}

.cWrap .imageWrap {
    position: relative;
}

.cbCard .imageWrap > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 60px;
}

.cbCard h3 {
    position: absolute;
    color: #f8f8f8;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    margin: 0;
    display: flex;
    width: 80%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp( 20px, 1.146vw, 22px );
    line-height: clamp( 26px, 1.354vw, 28px );
    font-weight: 600;
    line-height: 28px;
    padding: 14px;
    background-color: #F10B83;
    justify-content: center;
}

.cbCard .cont {
    margin-top: 48px;
    text-align: center;
}

.cbCard .cLnkWrp {
    text-align: center;
}

.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;
    outline-color: #ACED4F;
    background-color: #ACED4F;
}

.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;
        gap: 0;
    }

    .cWrap {
        place-items: center;
    }

    .cWrap .imageWrap {
        position: relative;
        width: 50%;
        text-align: center;
    }
}

@media ( max-width: 567px ) {

    .cardBlock .container {
        padding-bottom: 0;
    }
    
    .cWrap .imageWrap {
        width: 100%;
    }

    .cbCard h3 {
        width: 64%;
    }
}

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

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