.primary-color {
    color: #b22222 !important;
}

.primary-bg {
    background-color: #b22222 !important;
}

.secondary-color {
    color: #c28151 !important;
}

.secondary-bg {
    background-color: #c28151 !important;
}

.accent-color {
    color: #ada08e;
}

.accent-bg {
    background-color: #ada08e;
}

.accent-light {
    color: #eee4dc;
}

.accent-light-bg {
    background-color: #eee4dc;
}

.accent-dark {
    color: #292929;
}

.accent-dark-bg {
    background-color: #292929;
}

.white-color {
    color: #ffffff;
}


body {
    font-family: 'Inter', sans-serif;
    width: 100%;
}

p {
    font-weight: 300;
}

.footer-left {
    background-image: url(../assets/Bild-Pferde_07.jpg) !important;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 250px;
}

.custom-header_text {
    background-color: #262626bd;
    color: #fff;
}

.nav-logo_img {
    max-width: 35px;
    height: fit-content;
}

.navbar-brand {
    font-weight: 400;
    font-size: 16px;
    margin-left: 10px;
    line-height: 1.3;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
}

.nav-link:hover {
    color: #b98056 !important;
}

.nav-link.active {
        color: #b98056 !important;
}

.navbar-collapse {
    flex-grow: 0;
}

.footer-link {
    color: #eee4dc;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.custom-link:hover {
    color: #ada08e;
}

.contactform input {
    max-width: 400px;
}


@media (max-width: 767.98px) {

    .custom-header_row {
        align-self: flex-end;
    }

    .read-more {
        visibility: hidden;
    }

    .card--custom {
        width: 100% !important;
        font-size: 0.8em;
    }

    .custom-header {
        padding: 0px !important;
        height: 80vh !important;
        background-image: url(../assets/praxis-header-mobil.jpg) !important;
    }

    .header-container_custom {
        padding: 0px !important;
        height: 80vh !important;
    }

    .custom-list {
        gap: 0px !important;
    }

    .footer-left {
        background-position: center;
        text-align: center;
        height: 200px;
    }

}

.custom-header_row {
    width: 100%;
}

.card--custom {
    padding: 10px;
    width: 30vw;
    background-color: rgba(255, 255, 255, 0.623);
    color: rgba(0, 0, 0, .9);
    position: relative;
    z-index: 4;
}

.header-container_custom {
    position: relative;
    height: 85vh;
    max-width: 100%;
}

.custom-header {
    height: 90vh;
    background-image: url(../assets/praxis-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-header_text p {
    font-weight: 300;
}

.btn-primary {
    min-width: 130px;
    font-weight: 300;
    border: none;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
}

.btn-primary:hover {
    background-color: #ada08e !important;
    border: none;
    box-shadow: none;
    outline: none;
}

.btn-primary:focus {
    background-color: #ada08e;
    border: none;
    box-shadow: none !important;
    outline: none !important;
}

.btn .btn-primary:active {
    background-color: #9e1b20;
    border: none;
    box-shadow: none;
    outline: none;
}

.btn-secondary {
    font-weight: 300;
}

.read-more_icon {
    font-size: 50px;
    color: #fff;
}

.icon-circle {
    min-width: 35px;
    height: 35px;
    border-radius: 9999999px;
}

/* .icon-circle:hover {
    background-color: #ada08e !important;
} */

.div-hover:hover {
    cursor: pointer;
}

.icon-link {
    text-decoration: none;
    font-weight: 300;
}

.icon-link:hover {
    color: #ada08e;
}

.read-more {
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0px;
}

.content-bg {
    width: 100%;
}

.custom-list {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.custom-list--left {
    display: flex;
    flex-direction: column;
}

.custom-list p i{
    font-weight: 700;
}

.custom-list p {
    font-weight: 500;
}

.custom-list_left {
    width: fit-content;
    text-align: left;
}

.custom-list_right {
    width: fit-content;
    text-align: left;
}

.custom-modal {
    font-weight: 300 !important;
}

.font-small {
    font-size: 12px;
    font-weight: 300;
}

.footer-head {
    font-size: 14px;
    font-weight: 500;
}

.footer-head--b {

    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* CSS ANIMATIONS */

.read-more {
    -webkit-animation: jump 3s ease 0s infinite normal;
    -moz-animation: jump 3s ease 0s infinite normal;
    -ms-animation: jump 3s ease 0s infinite normal;
    animation: jump 3s ease 0s infinite normal;
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-15px);
    }

    80% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}