
/* Animations */

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInOut {
    0%,100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-moz-keyframes fadeInOut {
    0%,100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%,100% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
}

.fade-in-out {
    opacity: 1; /* make things invisible upon start */
    -webkit-animation: fadeInOut ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeInOut ease-in 1;
    animation: fadeInOut ease-in 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 0)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 4s;
    -moz-animation-duration: 4s;
    animation-duration: 4s;
}

.fade-in.slogan, .fade-in.slogan-years {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.fade-in.img-fluid {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.scroll-in {
    opacity: 0;
    transition: opacity 1000ms ease-in;
}

.scroll-in.appear {
        opacity: 1;
    }

.from-left {
    grid-column: 2 / 3;
    transform: translateX(-50%);
}

.from-right {
    grid-column: 3 / 4;
    transform: translateX(50%);
}

.from-right,
.from-left {
    transition: transform 400ms ease-in;
}

    .from-right.appear,
    .from-left.appear {
        transform: translateX(0);
    }

.scroll-color {
    background-color: white;
    transition: background-color 1000ms ease-in;
}

    .scroll-color.appear {
        background-color: #c30039
    }

/* Animations Finish */
/*_____________________________________________________________________________*/


/* Base Style: Mobile First */

.white-space {
    padding: 20px 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.white-space-small {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.jumbotron {
    min-height: 30vh;
    background-color: grey;
    color: white;
}

.btn-primary.vaupel {
    color: #ffffff;
    background-color: #c30039 !important;
    border-color: #c30039 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn:hover {
    color: #ffffff;
    background-color: #a20027 !important;
}

.btn-primary.horst-kind {
    color: #ffffff;
    background-color: #5694eb !important;
    border-color: #1a6fe8 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-primary.index-conversion {
    color: #c30039;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.card-title:hover {
    text-decoration: none;
}

.modal-title-link:hover {
    text-decoration: none;
}

.grey-background {
    background-color: #aaa;
}

.home-center-image {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    height: 100vh; /* Full viewport height */
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: #fff; /* optional: background color */
}

.home-center-image img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.slogan {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
    font-style: italic;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    padding-top: 10px;
    margin-top: 10px;
    text-align: center;
    color: #c30039;
}

/* Footer */
    #footer {
    background: #c40039 !important;
    padding: 5px 0;
    }

    #footer h5 {
        padding-left: 0px;
        border-left: transparent;
        padding-bottom: 0px;
        margin-bottom: 0px;
        color: #ffffff;
    }

    #footer a, dd {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer p {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer ul.list-horizontal {
        list-style-type: none !important;
        display: inline-block;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    #footer ul.list-horizontal li {
        float: left;
    }

    #footer ul.list-horizontal li a {
        display: block;
        color: white;
        text-align: center;
        padding: 3px;
        text-decoration: none;
    }

    #footer ul.social li {
        padding: 2px 0;
    }

    #footer ul.social li a i {
        margin-right: 5px;
        font-size: 20px;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.social li:hover a i {
        font-size: 20px;
        margin-top: -10px;
    }

    #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
        color: #ffffff;
    }

    #footer ul.social li a:hover {
        color: #eeeeee;
    }

    #footer ul.quick-links li {
        padding: 3px 0;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.quick-links li:hover {
        padding: 3px 0;
        margin-left: 3px;
        font-weight: 700;
    }

    #footer ul.quick-links li a i {
        margin-right: 5px;
    }

    #footer ul.quick-links li:hover a i {
        font-weight: 700;
    }

/* Small Displays (Mobile) */
@media only screen and (max-width: 320px) {

    /* INDEX */
    #products img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 2.4rem;
        font-weight: 400;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.6rem;
    }

    #products h3.vaupel {
        color: #c30039;
        font: Helvetica, Helvetica, sans-serif;
        font-size: 24px;
    }

    #products .card {
        min-height: 60vh;
    }

    #products .card-body {
        padding: 10px;
    }

    #products ul.card-list {
        padding-left: 20px;
        padding-right: 5px;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

}

@media only screen and (min-width: 321px) and (max-width: 480px) {

    .white-space {
        padding: 30px 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .white-space-small {
        padding: 15px 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    /* INDEX */
    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 3.0rem;
        font-weight: 400;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100%;
        height: auto;
        max-height: 180vh;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.8rem;
    }

    #products h3.vaupel {
        color: #c30039;
        font: Helvetica, Helvetica, sans-serif;
        font-size: 24px;
    }

    #products .card {
        min-height: 50vh;
    }

    #products .card-body {
        padding: 20px;
    }

    #products ul.card-list {
        padding-left: 0.75rem;
        padding-right: 0.25rem;
        font-size: 1.0rem;
    }

    #products ul.card-list.SEL {
        margin: 0.75rem;
        padding-left: 0.75rem;
        padding-right: 5px;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.8rem;
    }

    /* FOOTER */

    #footer h5 {
        padding-left: 0;
        border-left: transparent;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 769px) {


    .white-space {
        padding: 35px 0;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .white-space-small {
        padding: 20px 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* INDEX */
    #index img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 3.2rem;
        font-weight: 400;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100%;
        height: auto;
        max-height: 90vh;
    }
    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 3.5rem;
    }

    #products h3.vaupel {
        color: #c30039;
        font: Helvetica, Helvetica, sans-serif;
        font-size: 24px;
    }

    #products .card {
        min-height: 60vh;
    }

    #products .card-body {
        padding: 0.75rem;
    }

    #products ul.card-list {
        padding-left: 2rem;
        padding-right: 1rem;
        font-size: 1.25rem;
    }

    #products ul.card-list.SEL {
        margin: 1.5rem;
        padding-left: 1.5rem;
        padding-right: 0.25rem;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.6rem;
    }

    /* FOOTER */
    #footer {
        background: #c40039 !important;
        padding: 10px 0;
    }

    #footer h5 {
        padding-left: 5px;
        border-left: transparent;
        padding-bottom: 5px;
        margin-bottom: 5px;
        color: #ffffff;
    }

    #footer a, dd {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer p {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer ul.list-horizontal {
        list-style-type: none !important;
        display: inline-block;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    #footer ul.list-horizontal li {
        float: left;
    }

    #footer ul.list-horizontal li a {
        display: block;
        color: white;
        text-align: center;
        padding: 3px;
        text-decoration: none;
    }

    #footer ul.social li {
        padding: 2px 0;
    }

    #footer ul.social li a i {
        margin-right: 5px;
        font-size: 25px;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.social li:hover a i {
        font-size: 25px;
        margin-top: -10px;
    }

    #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
        color: #ffffff;
    }

    #footer ul.social li a:hover {
        color: #eeeeee;
    }

    #footer ul.quick-links li {
        padding: 5px 0;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.quick-links li:hover {
        padding: 3px 0;
        margin-left: 3px;
        font-weight: 700;
    }

    #footer ul.quick-links li a i {
        margin-right: 10px;
    }

    #footer ul.quick-links li:hover a i {
        font-weight: 700;
    }
}

@media only screen and (min-width: 770px) and (max-width: 992px) {

    .white-space {
        padding: 40px 0;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .white-space-small {
        padding: 25px 0;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    /* INDEX */
    #index img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 3.2rem;
        font-weight: 400;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100%;
        height: auto;
        max-height: 90vh;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 3.5rem;
    }

    #products h3.vaupel {
        color: #c30039;
        font: Helvetica, Helvetica, sans-serif;
        font-size: 24px;
    }

    #products .card {
        min-height: 60vh;
    }

    #products .card-body {
        padding: 0.75rem;
    }

    #products ul.card-list {
        padding-left: 2rem;
        padding-right: 1rem;
        font-size: 1.8rem;
    }

    #products ul.card-list.SEL {
        margin: 2rem;
        padding-left: 2rem;
        padding-right: 0.25rem;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.8rem;
    }

    /* FOOTER */
    #footer {
        background: #c40039 !important;
        padding: 10px 0;
    }

    #footer h5 {
        padding-left: 5px;
        border-left: transparent;
        padding-bottom: 5px;
        margin-bottom: 5px;
        color: #ffffff;
    }

    #footer a, dd {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer p {
        color: #ffffff;
        text-decoration: none !important;
        background-color: transparent;
        -webkit-text-decoration-skip: objects;
    }

    #footer ul.list-horizontal {
        list-style-type: none !important;
        display: inline-block;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    #footer ul.list-horizontal li {
        float: left;
    }

    #footer ul.list-horizontal li a {
        display: block;
        color: white;
        text-align: center;
        padding: 3px;
        text-decoration: none;
    }

    #footer ul.social li {
        padding: 2px 0;
    }

    #footer ul.social li a i {
        margin-right: 5px;
        font-size: 30px;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.social li:hover a i {
        font-size: 30px;
        margin-top: -10px;
    }

    #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
        color: #ffffff;
    }

    #footer ul.social li a:hover {
        color: #eeeeee;
    }

    #footer ul.quick-links li {
        padding: 5px 0;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        transition: .5s all ease;
    }

    #footer ul.quick-links li:hover {
        padding: 3px 0;
        margin-left: 3px;
        font-weight: 700;
    }

    #footer ul.quick-links li a i {
        margin-right: 10px;
    }

    #footer ul.quick-links li:hover a i {
        font-weight: 700;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1399px) {

    .white-space {
        padding: 40px 0;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .white-space-small {
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* INDEX */
    #index img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 3.6rem;
        font-weight: 300;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100%;
        height: auto;
        max-height: 90vh;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 3rem;
    }

    #products h3.vaupel {
        color: #c30039;
        font: Helvetica, Helvetica, sans-serif;
        font-size: 24px;
    }

    #products .card-body {
        padding: 0.5rem;
    }

    #products ul.card-list {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 1.1rem;
    }

    #products ul.card-list.SEL {
        margin: 1rem;
        padding-left: 1rem;
        padding-right: 0.25rem;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.2rem;
    }

    /* FOOTER */
    #footer {
        background: #c40039 !important;
        padding: 10px 0;
    }

        #footer h5 {
            padding-left: 5px;
            border-left: transparent;
            padding-bottom: 5px;
            margin-bottom: 5px;
            color: #ffffff;
        }

        #footer a, dd {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer p {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer ul.list-horizontal {
            list-style-type: none !important;
            display: inline-block;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

            #footer ul.list-horizontal li {
                float: left;
            }

                #footer ul.list-horizontal li a {
                    display: block;
                    color: white;
                    text-align: center;
                    padding: 3px;
                    text-decoration: none;
                }

        #footer ul.social li {
            padding: 2px 0;
        }

            #footer ul.social li a i {
                margin-right: 5px;
                font-size: 30px;
                -webkit-transition: .5s all ease;
                -moz-transition: .5s all ease;
                transition: .5s all ease;
            }

            #footer ul.social li:hover a i {
                font-size: 30px;
                margin-top: -10px;
            }

            #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
                color: #ffffff;
            }

                #footer ul.social li a:hover {
                    color: #eeeeee;
                }

        #footer ul.quick-links li {
            padding: 5px 0;
            -webkit-transition: .5s all ease;
            -moz-transition: .5s all ease;
            transition: .5s all ease;
        }

            #footer ul.quick-links li:hover {
                padding: 3px 0;
                margin-left: 3px;
                font-weight: 700;
            }

            #footer ul.quick-links li a i {
                margin-right: 10px;
            }

            #footer ul.quick-links li:hover a i {
                font-weight: 700;
            }

}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {

    .white-space {
        padding: 40px 0;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .white-space-small {
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* INDEX */
    #index img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 4.4rem;
        font-weight: 300;
    }

    #index p.lead {
        font-size: 1.5rem;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100% auto;
        height: auto;
        max-height: 70vh;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 3.4rem;
    }

    #products .card {
        min-height: 60vh;
    }

    #products .card-body {
        padding: 0.5rem;
    }

    #products ul.card-list {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1.3rem;
    }

    #products ul.card-list.SEL {
        margin: 2rem;
        padding-left: 2rem;
        padding-right: 0.25rem;
    }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.2rem;
    }

    /* FOOTER */
    #footer {
        background: #c40039 !important;
        padding: 10px 0;
    }

        #footer h5 {
            padding-left: 5px;
            border-left: transparent;
            padding-bottom: 5px;
            margin-bottom: 5px;
            color: #ffffff;
        }

        #footer a, dd {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer p {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer ul.list-horizontal {
            list-style-type: none !important;
            display: inline-block;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

            #footer ul.list-horizontal li {
                float: left;
            }

                #footer ul.list-horizontal li a {
                    display: block;
                    color: white;
                    text-align: center;
                    padding: 3px;
                    text-decoration: none;
                }

        #footer ul.social li {
            padding: 2px 0;
        }

            #footer ul.social li a i {
                margin-right: 5px;
                font-size: 30px;
                -webkit-transition: .5s all ease;
                -moz-transition: .5s all ease;
                transition: .5s all ease;
            }

            #footer ul.social li:hover a i {
                font-size: 30px;
                margin-top: -10px;
            }

            #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
                color: #ffffff;
            }

                #footer ul.social li a:hover {
                    color: #eeeeee;
                }

        #footer ul.quick-links li {
            padding: 5px 0;
            -webkit-transition: .5s all ease;
            -moz-transition: .5s all ease;
            transition: .5s all ease;
        }

            #footer ul.quick-links li:hover {
                padding: 3px 0;
                margin-left: 3px;
                font-weight: 700;
            }

            #footer ul.quick-links li a i {
                margin-right: 10px;
            }

            #footer ul.quick-links li:hover a i {
                font-weight: 700;
            }

}

@media only screen and (min-width: 1920px) {
    .white-space {
        padding: 40px 0;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .white-space-small {
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* INDEX */
    #index img.vaupel {
        width: 100%;
        height: auto;
    }

    #index h1.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 1.6rem;
    }

    #index h2 {
        font-size: 4.4rem;
        font-weight: 300;
    }

    #index p.lead {
        font-size: 1.5rem;
    }

    /* PRODUCTS */
    #products .img-fluid {
        width: 100% auto;
        height: auto;
        max-height: 70vh;
    }

    #products h2.vaupel {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 3.4rem;
    }

    #products .card {
        min-height: 60vh;
    }

    #products .card-body {
        padding: 0.5rem;
    }

    #products ul.card-list {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1.3rem;
    }

        #products ul.card-list.SEL {
            margin: 2rem;
            padding-left: 2rem;
            padding-right: 0.25rem;
        }

    #products h2.card-title {
        font: Helvetica, Helvetica, sans-serif;
        font-size: 2.2rem;
    }

    
    /* Footer */
    #footer {
        background: #c40039 !important;
        padding: 30px 0;
    }

        #footer h5 {
            padding-left: 10px;
            border-left: 3px solid #eeeeee;
            padding-bottom: 3px;
            margin-bottom: 0px;
            color: #ffffff;
        }

        #footer a, dd {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer p {
            color: #ffffff;
            text-decoration: none !important;
            background-color: transparent;
            -webkit-text-decoration-skip: objects;
        }

        #footer ul.list-horizontal {
            list-style-type: none !important;
            display: inline-block;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

            #footer ul.list-horizontal li {
                float: left;
            }

                #footer ul.list-horizontal li a {
                    display: block;
                    color: white;
                    text-align: center;
                    padding: 16px;
                    text-decoration: none;
                }

        #footer ul.social li {
            padding: 3px 0;
        }

            #footer ul.social li a i {
                margin-right: 5px;
                font-size: 25px;
                -webkit-transition: .5s all ease;
                -moz-transition: .5s all ease;
                transition: .5s all ease;
            }

            #footer ul.social li:hover a i {
                font-size: 30px;
                margin-top: -10px;
            }

            #footer ul.social li a, ul.quick-links li a, dl.contact-list dd {
                color: #ffffff;
            }

                #footer ul.social li a:hover {
                    color: #eeeeee;
                }

        #footer ul.quick-links li {
            padding: 3px 0;
            -webkit-transition: .5s all ease;
            -moz-transition: .5s all ease;
            transition: .5s all ease;
        }

            #footer ul.quick-links li:hover {
                padding: 3px 0;
                margin-left: 5px;
                font-weight: 700;
            }

            #footer ul.quick-links li a i {
                margin-right: 5px;
            }

            #footer ul.quick-links li:hover a i {
                font-weight: 700;
            }
}

