/***	SCROLLBAR	***/
/* webkit */

::-webkit-scrollbar {
    width: 0.3vw;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: gray;
    max-height: 0.1vh;
}

::-webkit-scrollbar-thumb:hover {
    background: lightgray;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding: 15vh 0;
    scrollbar-width: thin;
    scrollbar-color: darkgray transparent;
}

body {
    margin: 0;
    font: normal 2vh Manrope, sans-serif;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    height: 15vh;
    width: 100%;
    background: rgba(16, 20, 16, 0.9);
    display: flex;
    line-height: 15vh;
    padding: 0 24vw 0 9vw
}

.navbar-item {
    height: 100%;
    margin: auto;
    width: 10vw;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-size: 2.8vh;
    min-width: 120px;
}

.content-container-1 {
    display: flex;
    height: 80vh;
    width: 100%;
    background-color: rgb(16, 20, 16);
    margin-top: -15vh;
}

.general-info-container {
    height: 100%;
    width: 60%;
    padding: 27vh 0 0 17vw;
    max-width: 80vw;
}

.general-info-headline {
    line-height: 10vh;
    font-size: 8.5vh;
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    margin-bottom: 5vh;
}

.general-info-contact, .back-to-mainpage {
    background: rgb(99, 151, 2);
    font-size: 2vh;
    padding: 1.5vh 1.5vw;
    border-radius: 0.5em;
    color: white;
}

.general-info-image {
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.services-list-headline {
    line-height: 10vh;
    font-size: 6vh;
    color: black;
    padding: 2vh 6vw;
    background-color: rgb(243, 241, 231);
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
}

.services-list-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: rgb(243, 241, 231);
    color: black;
    padding: 0 4vw 3vh 4vw
}

.service-container {
    width: 50%;
    display: flex;
    margin: 2vh auto;
}

.service-image {
    object-fit: cover;
    width: 15vw;
    height: 15vw;
    border-radius: 2em;
    border: 0.1em solid gray;
}

.service-text {
    padding: 1em 2em;
    max-width: 70%;
}

.service-text h3 {
    margin: unset;
}

.footer-container {
    background-color: rgb(16, 20, 16);
    width: 100%;
    padding: 5vh 5vw;
}

.footer-container div {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}

.footer-contact-container {
    margin-bottom: 2vh;
}

.footer-headline {
    font-size: 3vh;
    margin-bottom: 2vh;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.special-page {
    background-color: rgb(243, 241, 231);
    text-align: center;
    color: black;
    margin-bottom: 5vh;
}

@media (max-width: 1750px) {
    .general-info-headline {
        line-height: 6vh;
        font-size: 5vh;
    }

    .services-list-headline {
        font-size: 4vh;
        line-height: 5vh;
    }

    .services-list-container {
        flex-flow: column;
    }

    .service-container {
        width: 100%;
    }

    .service-image {
        width: 20vw;
        height: 20vw;
    }
}

@media (max-width: 1200px) {
    .content-container-1 {
        display: block;
    }

    .general-info-container {
        width: 100%;
        height: 65%
    }

    .general-info-headline {
        line-height: 5vh;
        font-size: 4.5vh;
    }

    .general-info-contact {
        font-size: 1.5vh;
        padding: 1vh;
    }

    .general-info-image {
        width: 100%;
        height: 33%;
        object-position: bottom;
    }

    .services-list-headline {
        font-size: 3vh;
        line-height: 4vh;
    }

    .service-text {
        font-size: 1.5vh;
    }
}

@media (max-width: 1000px) {
    .navbar {
        height: 10vh;
        line-height: 10vh;
    }

    .navbar-item {
        font-size: 2vh;
    }

    .content-container-1 {
        margin-top: -10vh;
    }

    .general-info-headline {
        line-height: 4vh;
        font-size: 4vh;
    }

    .general-info-contact {
        font-size: 1.2vh;
    }

    .services-list-headline {
        font-size: 2.5vh;
        line-height: 3vh;
    }

    .service-text {
        font-size: 1.3vh;
    }

    .service-text h3 {
    	font-size: 1.5vh;
    }
}

@media (max-width: 400px) {
    .footer {
        font-size: 1.5vh;
    }

    .footer-headline {
        font-size: 2.5vh;
        margin-bottom: 1.5vh;
    }
}
