@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-20px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-20px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bg-image {
    /* The image used */
    background-image: url("/assets/img/header-image.jpg");

    /* Add the blur effect */
    /*-webkit-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");
    filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");*/

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media(max-width: 1024px) {
    .bg-image {
        background-attachment: inherit !important;
    }

    #scroll-down-button {
        display: none !important;
    }
}

/* Position text in the middle of the page/image */
.bg-text {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 50%;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

section {
    min-height: 350px;
    padding: 30px 0px 30px;
    background: white;
    margin-top: 59px;
}

section > p {
    text-align: justify;
}

footer {
    position: static;
    bottom: 0px;
    background: #343a40;
    width: 100%;
    padding: 30px 0px 0px;
    color: white;
}

footer div div div.col-xs-3.col-lg-3 ul {
    padding-left: unset;
    list-style: none !important;
}

.color-2 {
    background: #1c1c1c;
    color: white;
}

#scroll-top-button {
    display: block;
    border-radius: 100px;
    height: 35px;
    width: 35px;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #184277;
    font-size: 15px;
    transition: all 0.3s;
}

#scroll-top-button:hover {
    background: #205faf !important;
}

#scroll-top-button i {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
}

.navbar-brand {
    width: 30%;
}

.small-footer {
    font-size: 13px;
    background: #24272b;
    padding: 7.5px 0px 7.5px;
    text-align: center;
    color: #888787;
}

.small-footer div span a {
    color: #888787;
}

.smaller,
.smaller > a {
    font-size: 10px;
    color: #404040 !important;
}

.nav-item {
    background: transparent;
    /*border: 1px solid white;*/
    margin-left: 15px;
    border-radius: 5px;
    transition: 0.2s all;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.nav-link:hover,
.nav-link:active {
    background: white;
    color: black !important;
    border-radius: 5px;
}

.nav-link.active {
    background: white;
    color: black !important;
    border-radius: 5px;
}

.nav-link,
.nav-link:visited {
    color: white;
}

.nav-link:focus,
.navbar-dark .navbar-nav .nav-link:focus {
    color: white;
    outline: none !important;
}

.section-header {
    text-align: center;
    color: #184277;
    text-shadow: 0px 5px 6px rgba(2, 1, 1, 0.15);
}

.section-header i {
    font-size: 50px;
    width: 100%;
}

.bg-dark {
    background: #184277 !important;
    border-bottom: 3px solid white;
    -webkit-box-shadow: 0px 8px 15px -3px rgba(40, 40, 40, 0.5);
    box-shadow: 0px 5px 7px 0px rgba(40, 40, 40, 0.5);
}

#home-section p {
    text-align: justify;
}

.section-content p {
    margin-bottom: 0;
}

.section-content {
    padding: 15px 0px 0px 0px;
    margin: 0 auto;
    width: 60%;
    text-shadow: 0px 5px 6px rgba(255, 255, 255, 0.15);
}

.color-2 .container .section-header {
    color: white !important;
}

/*
#pferdetransporter-section div > div:nth-child(1) {
    margin: 0 auto;
    display: flex;
}

#pferdetransporter-section div > div > div:nth-child(1) > div:nth-child(1),
#pferdetransporter-section div > div > div:nth-child(1) > div:nth-child(2) {
    width: 50%;
}

#pferdetransporter-section div > div > div:nth-child(1) > div:nth-child(2) {
    padding: 0px 15px;
    display: none;
}

#pferdetransporter-section.loaded .container .section-content > div:nth-child(1) > div:nth-child(2) {
    display: block;
    -webkit-animation: slide-in-right 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#pferdetransporter-section table {
    color: white;
}

#pferdetransporter-section img {
    display: none;
}

#pferdetransporter-section.loaded img {
    display: block;
    border-radius: 10px;
    -webkit-animation: slide-in-left 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-left 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#pferdetransporter-section tr:nth-child(-n+10000) > td:nth-child(1) {
    width: 20%;
    padding: 7.5px 0px;
}*/

.section-content {
    text-align: justify;
}

.wrapped-text {
    column-count: 2;
    column-gap: 50px;
}

.carousel-inner {
    border-radius: 10px;
}

.split-text {
    display: flex;
    margin-top: 15px;
}

.split-text div {
    width: 50%;
}

.split-text div ul {
    padding: 0px;
    list-style-type: square;
    margin-left: 20px;
}

.bg-text {
    word-break: break-all;
}

footer a {
    color: white !important;
}

footer a:hover {
    color: #4ea4ff !important;
}
