.hero-subpage {
    display: flex;
    align-items: center;
    justify-content: center;
}
#karte .hero-subpage-container,
#karte .hero-img-container {
    grid-gap: 0px;
    display: flex;
    justify-content: center;
}
@media only screen and (min-width: 1151px) {
    #karte .hero-img-container {
        margin-top: 3.5vh;
        width: auto;
        height: 84vh;
    }
}
@media only screen and (max-width: 1151px) {
    #karte .hero-img-container {
        display: none;
    }
}
.hero-subpage-container {
    position: relative;
}
.pages {
    height: 100%;
}
#karte .left,
#karte .right {
    height: 100%;
    width: 50%;
}
.card-left,
.card-right {
    object-fit: cover;
    height: 100%;
}
.card-left {
    animation: fadeInLeft ease 0.6s;
}
.card-right {
    animation: fadeInRight ease 0.6s;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#karte .arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: -50px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}
#karte .arrows i {
    color: #e2001e;
    transition: all 0.3s ease;
    font-size: 30px;
    transition: all 0.3s ease;
}
#karte .arrows i:hover {
    color: #f40d2c;
    cursor: pointer;
    transform: scale(1.4);
}
#arrow-left {
    visibility: hidden;
}
@media only screen and (min-width: 1151px) {
    .hero-img-mobile-container {
        display: none;
    }
}
@media only screen and (max-width: 1150px) {
    .hero-img-mobile-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
    }
    .card-left,
    .card-right {
        height: auto;
        width: 100vw;
    }
}
