/* Default (mobile first) */
.mt-6 {
    margin-top: 4rem;
}

.mt-7 {
    margin-top: 5rem;
}

.mt-8 {
    margin-top: 6rem;
}

.mt-9 {
    margin-top: 7rem;
}

.mt-10 {
    margin-top: 8rem;
}

.mt-11 {
    margin-top: 9rem;
}

.mt-12 {
    margin-top: 10rem;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .sm-mt-6 {
        margin-top: 4rem;
    }

    .sm-mt-7 {
        margin-top: 5rem;
    }

    .sm-mt-8 {
        margin-top: 6rem;
    }

    .sm-mt-9 {
        margin-top: 7rem;
    }

    .sm-mt-10 {
        margin-top: 8rem;
    }

    .sm-mt-11 {
        margin-top: 9rem;
    }

    .sm-mt-12 {
        margin-top: 10rem;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .md-mt-6 {
        margin-top: 4rem;
    }

    .md-mt-7 {
        margin-top: 5rem;
    }

    .md-mt-8 {
        margin-top: 6rem;
    }

    .md-mt-9 {
        margin-top: 7rem;
    }

    .md-mt-10 {
        margin-top: 8rem;
    }

    .md-mt-11 {
        margin-top: 9rem;
    }

    .md-mt-12 {
        margin-top: 10rem;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .lg-mt-6 {
        margin-top: 4rem;
    }

    .lg-mt-7 {
        margin-top: 5rem;
    }

    .lg-mt-8 {
        margin-top: 6rem;
    }

    .lg-mt-9 {
        margin-top: 7rem;
    }

    .lg-mt-10 {
        margin-top: 8rem;
    }

    .lg-mt-11 {
        margin-top: 9rem;
    }

    .lg-mt-12 {
        margin-top: 10rem;
    }
}

/* Extra Large devices (≥1200px) */
@media (min-width: 1200px) {
    .xl-mt-6 {
        margin-top: 4rem;
    }

    .xl-mt-7 {
        margin-top: 5rem;
    }

    .xl-mt-8 {
        margin-top: 6rem;
    }

    .xl-mt-9 {
        margin-top: 7rem;
    }

    .xl-mt-10 {
        margin-top: 8rem;
    }

    .xl-mt-11 {
        margin-top: 9rem;
    }

    .xl-mt-12 {
        margin-top: 10rem;
    }
}

@media (min-width: 1400px) {
    .xxl-mt-6 {
        margin-top: 4rem;
    }

    .xxl-mt-7 {
        margin-top: 5rem;
    }

    .xxl-mt-8 {
        margin-top: 6rem;
    }

    .xxl-mt-9 {
        margin-top: 7rem;
    }

    .xxl-mt-10 {
        margin-top: 8rem;
    }

    .xxl-mt-11 {
        margin-top: 9rem;
    }

    .xxl-mt-12 {
        margin-top: 10rem;
    }
}

.car {
    fill: none;
    stroke: #e60000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.motion {
    stroke: #e60000;
    stroke-width: 3;
    stroke-linecap: round;
}

/* From Uiverse.io by adamgiebl */
.cssbuttons-io {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: 0.8em;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #CF3425, #d37068);
    color: ghostwhite;
    overflow: hidden;
}

.cssbuttons-io-sm {
    font-size: 13px !important;
}

.cssbuttons-io svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}

.cssbuttons-io span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 1.2em 0.8em 1.05em;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cssbuttons-io::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io-sm::before {
    content: "";
    background: #CF3425 !important;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
    transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
    transform: scale(0.95);
}