@media (max-width: 441px) {
    .card-block {
        padding: 20px !important;
    }
}

.hero-header {
    background: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/7C8EA83E5004DB1109D9153276A085A5.jpg")no-repeat;
    position: relative;
    background-size: cover;
    background-position: 54% top;
}

.hero-container {
    padding-top: 18em;
    padding-bottom: 18em;
}

.card-section {
    position: relative;
    bottom: 60px;
}

.card-block {
    padding: 40px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

/* Hero ==== */
.webit__parallax {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.webit__parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.webit__parallax .btn-outline-primary {
    border-color: #68BEEB;
    color: #68BEEB;
    border-radius: 8px;
}

.webit__parallax .btn-outline-primary:hover {
    border-color: #68BEEB;
    background-color: #68BEEB;
    color: #000;
    transform: scale(1.1);
}

.webit__parallax .webit__svg {
    height: 100px;
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: -1px;
}

@media (max-width: 767px) {
    .webit__parallax .webit__svg {
        display: none;
    }
}

/* SVG Animation ===  */

.wb__wave>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wb__wave>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.wb__wave>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.wb__wave>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.wb__wave>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}