:root {
    --custom-red: #b3586c;
    --custom-white: #ffffff;
    --custom-yellow: #f4ee75;
    --custom-blue: #39a2da;
    --custom-dark-blue: #283e70;
}

section {
    min-height: 100vh;
    position: relative;
}

.next-section-icon {
    background-image: url("assets/img/arrow-down-circle-svgrepo-com.svg");
}

.prev-section-icon {
    background-image: url("assets/img/arrow-up-circle-svgrepo-com.svg");
}

.text-custom-red {
    color: var(--custom-red);
}

.text-custom-yellow {
    color: var(--custom-yellow);
}

.text-custom-blue {
    color: var(--custom-blue);
}

.text-custom-white {
    color: var(--custom-white);
}

.bg-custom-red {
    background: var(--custom-red);
}

.bg-custom-yellow {
    background: var(--custom-yellow);
}

.bg-custom-blue {
    background: var(--custom-blue);
}

.bg-custom-white {
    background: var(--custom-white);
}

.fs-80 {
    font-size: 80px;
}

#menu {
    position: fixed;
    top: 20px;
    right: -215px;
    z-index: 2;
    width: 250px;
    transition: right 0.4s ease-in-out,visibility 0.4s ease-in-out;
}

#menu .menu-item {
    text-decoration: none;
    width: 100%;
    box-shadow: -1px 1px 1px 0px black;
    font-style: italic;
    font-weight: bold;
}

#menu .menu-item:nth-child(1) a {
    text-decoration: none;
    width: 100%;
    color: var(--custom-white);
}

#menu .menu-item:nth-child(1) {
    background: var(--custom-red);
    border-radius: 5px 0px 0px 5px;
}

#menu .menu-item:nth-child(2) {
    color: var(--custom-dark-blue);
    margin-left: 40px;
    border-radius: 0px 0px 0px 5px;
}

#menu .menu-item:nth-child(3) {
    color: var(--custom-white);
    margin-left: 80px;
    border-radius: 0px 0px 0px 5px;
}

#menu .menu-item:nth-child(4) {
    color: var(--custom-dark-blue);
    margin-left: 120px;
    border-radius: 0px 0px 0px 5px;
}

#menu .menu-item:nth-child(5) {
    color: var(--custom-white);
    margin-left: 160px;
    border-radius: 0px 0px 0px 5px;
}

.prev-section-icon,
.next-section-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.call-now-button {
    background-color: #f6f186 !important;
    color: var(--custom-dark-blue) !important;
    font-weight: bolder;
    max-width: 150px;
    transition: 330ms ease-in-out;
}

.call-now-button:hover {
    scale: 1.1;
}

.icon-small {
    width: 20px;
}

#hauptseite {
    background-color: var(--custom-blue);
    color: white;
}

#hauptseite .logo {
    position: absolute;
    width: 1400px;
    transform: rotate(25deg);
    right: -960px;
    top: -300px;
}

#dienstleistungen {
    background-color: var(--custom-white);
    color: var(--custom-dark-blue);
}

#dienstleistungen img {
    aspect-ratio: 1;
}

#referenzen {
    background-color: var(--custom-red);
    color: var(--custom-white);
}

#customers-carousel {
    box-shadow: 0px 0px 4px 1px white;
}

#ueber-uns {
    background-color: var(--custom-dark-blue);
    color: var(--custom-white);
}

#footer,
#kontakt {
    background-color: var(--custom-blue);
    color: var(--custom-white);
}

section .bottom-text {
    color: #aaaaaa;
}

#customers-carousel img {
    max-height: 60vh;
}

#google-map-wrapper iframe {
    width: 100%;
    height: 50vh;
}

#footer {
    min-height: auto !important;
}

#datenschutz-zustimmung-fehlt-overlay {
    max-width: 300px;
}

@media only screen and (max-width: 576px) {
    #dienstleistungen .card img {
        max-height: 120px;
    }
    #dienstleistungen .card .card-body {
        padding: 10px;
    }
    .call-now-button {
        max-width: 100% !important;
    }
    .fs-80 {
        font-size: 35px;
    }
}