.cards {
    position: relative;
    z-index: 1;
    padding: 73px 0 82px 0;
}

.cards__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 325px;
    z-index: -1;
}

.cards__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 19, 101, 0.85);
    z-index: 1;
}

.cards__bg__svg {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    z-index: 2;
}

.cards__bg__svg svg {
    width: 100%;
    height: auto;
}

.cards__heading {
    padding-bottom: 62px;
}

@media (max-width: 767px) {
    .cards__heading {
        padding-bottom: 30px;
    }
}

.cards__heading__title .sub-heading i,
.cards__heading__title .sub-heading,
.cards__heading__title h2 {
    color: #fff;
}

.card-item {
    padding-top: 12px;
    transition: all ease 300ms;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(37, 64, 81, 0.5);
    display: block;
    border: none;
    text-decoration: none;
    transition: all ease 300ms;
}

.card:hover {
    box-shadow: 0 0 16px rgba(37, 64, 81, 0.85);
}


.card__img {
    margin: 0 auto 0;
    width: 120px;
    position: relative;
}

.card__img img {
    margin-top: -12px;
}

.card__img_bg {
    margin: 0 auto 0;
    width: 120px;
    position: relative;
}

.card__img_bg img {
    margin-top: -12px;
}

.card__details {
    padding: 20px 30px 30px 30px;
}

.card__title {
    font-size: 18px;
    padding-bottom: 10px;
    color: #081542;
}

.card__description {
    color: #171717;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.card__img_fg {
    position: absolute !important;
    -webkit-mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask-120.png");
    mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask-120.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    left: 0;
    width: 120px !important;
    height: 109px !important;
}

.card__cta {
    color: #2C86EF;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    padding-right: 18px;
    font-family: 'Blinker', sans-serif;
    background: none;
    position: relative;
    border: none;
}

.card__cta::before {
    content: '\e903';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 11px;
    font-weight: normal;
    color: #2C86EF;
    margin-top: 1px;
}

@media (min-width: 768px) {
    .cards {
        padding: 110px 0 107px 0;
    }
    .cards__bg {
        height: 458px;
    }
    .card-item {
        padding-top: 52px;
    }
    .card {
        display: flex;
        align-items: flex-start;
        padding: 0 37px;
    }
    .card__img {
        margin: 0;
        width: 222px;
    }
    .card__details {
        padding: 30px 0 30px 25px;
        width: calc(100% - 222px);
    }
    .card__title {
        font-size: 24px;
    }
    .card__img_fg {
        position: absolute !important;
        -webkit-mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask-222.png");
        mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask-222.png");
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        left: 0;
        width: 222px !important;
        height: 201px !important;
    }
}

@media (min-width: 1200px) {
    .cards {
        padding: 110px 0;
    }
    .card-item {
        margin: 52px 0 0 0;
    }
    .card-item:hover {
        padding-top: 42px;
        padding-bottom: 10px;
    }
    .card {
        flex-wrap: wrap;
        padding: 0;
        height: 100%;
    }
    .card__img {
        max-width: 363px;
        width: 100%;
        margin: 0 auto;
    }
    .card__img img {
        position: relative;
        margin-top: -90px;
    }
    .card__img_fg {
        position: absolute !important;
        -webkit-mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask.png");
        mask-image: url("/wp-content/themes/keystonekoating/assets/img/mask.png");
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        left: 0;
        width: 363px !important;
        height: 328px !important;
    }
    .card__details {
        width: 100%;
        padding: 14px 32px 30px;
    }
    .cards__heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cards__heading__title h2 {
        padding-bottom: 0;
    }
}


@media (max-width: 767px) {
    .cards .card-flex>div.card-item:not(:first-child) {
        display: none;
    }
}

.card__watermark {
    display: none;
}


@media (min-width: 1200px) {
    .card__watermark {
        display: block;
        position: absolute;
        overflow: hidden;
        bottom: 110px;
        width: 100%;
        transition: all ease 300ms;
    }
    .card__watermark svg {
        position: relative;
        bottom: -30px;
        right: -240px;
        z-index: 0;
    }
    .card-item:hover .card__watermark {
        bottom: 120px!important;
    }
}