/*================ FEATURE CARDS ================*/
.cards-wrap {
    padding-bottom: 40px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(201, 162, 75, 0.25);
    background: linear-gradient(145deg,
            rgba(201, 162, 75, 0.16) 0%,
            rgba(23, 42, 77, 0.55) 55%,
            rgba(11, 15, 25, 0.65) 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, .4),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    color: #fff;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1),
                box-shadow .45s ease,
                border-color .45s ease,
                background .45s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: cardRise .7s ease forwards;
}

.col-lg-3:nth-child(1) .card {
    background: linear-gradient(145deg,
            rgba(201, 162, 75, 0.20) 0%,
            rgba(30, 58, 95, 0.55) 55%,
            rgba(11, 15, 25, 0.65) 100%);
}

.col-lg-3:nth-child(2) .card {
    background: linear-gradient(145deg,
            rgba(80, 200, 220, 0.18) 0%,
            rgba(20, 45, 70, 0.55) 55%,
            rgba(11, 15, 25, 0.65) 100%);
}

.col-lg-3:nth-child(3) .card {
    background: linear-gradient(145deg,
            rgba(120, 220, 150, 0.16) 0%,
            rgba(20, 50, 60, 0.55) 55%,
            rgba(11, 15, 25, 0.65) 100%);
}

.col-lg-3:nth-child(4) .card {
    background: linear-gradient(145deg,
            rgba(201, 162, 75, 0.14) 0%,
            rgba(40, 30, 70, 0.55) 55%,
            rgba(11, 15, 25, 0.65) 100%);
}

.col-lg-3:nth-child(1) .card { animation-delay: .05s; }
.col-lg-3:nth-child(2) .card { animation-delay: .2s; }
.col-lg-3:nth-child(3) .card { animation-delay: .35s; }
.col-lg-3:nth-child(4) .card { animation-delay: .5s; }

@keyframes cardRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .55) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: left .75s ease;
    pointer-events: none;
}

.card:hover::before {
    left: 125%;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(201, 162, 75, .7);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .5),
        0 0 25px rgba(201, 162, 75, .18),
        0 0 0 1px rgba(201, 162, 75, .3),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.card .card-body i {
    transition: transform .45s ease, color .35s ease;
}

.card:hover .card-body i {
    transform: translateY(-6px) scale(1.1);
    color: var(--gold);
}

.card h4 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: .5px;
    margin: 14px 0 6px;
}

.card p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .7;
}