html{
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 180%;
    overflow: hidden;
}

body {
    width: 100%;
    height: 100%;
}

*{
    margin: 0;
    padding: 0;
}

a:hover {
    color: inherit !important; 
    text-decoration: none !important;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.top-bar{
    width: 100%;
    height: 150px;
    background-color: black;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;	
    align-items: center;
    position: relative;
}

.top-bar h1{
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.top-bar img {
    transition: none;
    transform: none;
    position: absolute;
    top: 10px;
    left: 100px;
    width: 150px;
    height: auto;
    margin-top: 3px;
}

.top-bar a:hover{
    transform: none !important;	
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none; 
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
}

.dropdown-menu {
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    border: 1px solid white;
    z-index: 999;
}

.dropdown-menu a {
    padding: 10px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid gray;
}

.info-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 70px;
    margin-top: -2px;
    background-color: white;
    gap: 120px;
}

.info-bar a {
    margin-top: 13px;
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition: color 0.3s;
    font-family: Arial;
    font-weight: bold;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

.separator{
    margin-top: 11px;
    font-size: 35px;
    font-weight: 500;
    color: black;
}

.text-clearingOut{
    margin-left: 1070px;
    height: 100%;
}

.text-clearingOut h1{
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 50px;
}

.text-clearingOut h2{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-top: 30px;
}

.text-disposals{
    margin-left: -150px;
    margin-top: -20px;
}

.text-disposals a{
    margin-top: 100px;
}

.circle {
    display: inline-block;
    width: 8px; 
    height: 8px;
    border: 1px solid black; 
    border-radius: 50%;
    margin-right: 10px; 
    vertical-align: baseline; 
    position: relative;
    top: -2px; 
    margin-left: 10px; 
}

.text-clearingOut p {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.text-left{
    top: 245px;
}

.text-clearingOut {
    position: relative; 
    margin-left: 120px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    font-size: 20px;
}

.button-clearingOut {
    width: 7%;
    margin-left: 25px;
    margin-top: 10px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.button-clearingOut:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.apartments-description {
    width: 300px;
    height: auto;  /* Höhe auf auto setzen, damit es mit dem Inhalt wächst */
    margin-left: 250px;
    margin-top: 10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: flex;  /* Flexbox aktivieren */
    flex-direction: column;  /* Anordnung der Elemente vertikal (Überschrift über dem Text) */
    justify-content: flex-start;  /* Positionierung der Elemente am Anfang */
    align-items: flex-start;  /* Ausrichtung der Elemente am linken Rand */
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.apartments-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.apartments-description.hide {
    opacity: 0;
    transform: translateX(50px);
}

.apartments-description h3 {
    font-size: 20px;
    text-align: center;  
    margin-bottom: 10px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.apartments-description p {
    margin-left: 10px;  
}

.button-clearingOut {
    width: auto;
    margin-left: -600px;
    margin-top: 10px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.button-clearingOut:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.bulkyWasteAndTransport-description{
    position: relative; 
    margin-left: 120px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    font-size: 20px;
}

.bulkyWasteAndTransport-button {
    width: auto;
    margin-left: 35px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.bulkyWasteAndTransport-button:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.bulkyWasteAndTransport-description {
    width: 330px;
    height: 230px;
    margin-left: 250px;
    margin-top: -10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bulkyWasteAndTransport-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.bulkyWasteAndTransport-description.hide {
    opacity: 0;
    transform: translateX(50px);
}

.bulkyWasteAndTransport-description h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 20px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif; 
}

.bulkyWasteAndTransport-description p{
    margin-left: 10px;
}

.bauUndRenovierungsabfaelle-description{
    position: relative; 
    margin-left: 120px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    font-size: 20px;
}

.bauUndRenovierungsabfaelle-button {
    width: auto;
    margin-left: 35px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.bauUndRenovierungsabfaelle-button:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.bauUndRenovierungsabfaelle-description {
    width: 330px;
    height: 250px;
    margin-left: 250px;
    margin-top: -10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bauUndRenovierungsabfaelle-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.bauUndRenovierungsabfaelle-description.hide {
    opacity: 0;
    transform: translateX(50px);
}


.bauUndRenovierungsabfaelle-description h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 20px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif; 
}

.bauUndRenovierungsabfaelle-description p{
    margin-left: 10px;
}

.elektrokleinstgeraete-description{
    position: relative; 
    margin-left: 120px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    font-size: 20px;
}

.elektrokleinstgeraete-button {
    width: auto;
    margin-left: 35px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.elektrokleinstgeraete-button:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.elektrokleinstgeraete-description {
    width: 330px;
    height: 220px;
    margin-left: 250px;
    margin-top: -10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.elektrokleinstgeraete-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.elektrokleinstgeraete-description.hide {
    opacity: 0;
    transform: translateX(50px);
}


.elektrokleinstgeraete-description h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 20px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif; 
}

.elektrokleinstgeraete-description p{
    margin-left: 10px;
}

.NachlassUndWohnung-description{
    position: relative; 
    margin-left: 120px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    font-size: 20px;
}

.NachlassUndWohnung-button {
    width: auto;
    margin-left: 35px;
    margin-bottom: -5px;
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.NachlassUndWohnung-button:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.NachlassUndWohnung-description {
    width: 300px;
    height: 285px;
    margin-left: 280px;
    margin-top: -10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.NachlassUndWohnung-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.NachlassUndWohnung-description.hide {
    opacity: 0;
    transform: translateX(50px);
}

.NachlassUndWohnung-description h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 15px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif; 
}

.NachlassUndWohnung-description p{
    margin-left: 10px;
}

.dachrinnen-reinigen-description {
    width: 330px;
    height: 210px;
    margin-left: 250px;
    margin-top: -10px;
    border: 1px solid rgb(158, 158, 158);
    border-radius: 10px;
    font-size: 17px;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.dachrinnen-reinigen-description hr{
    width: 80%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.dachrinnen-reinigen-description.show {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.dachrinnen-reinigen-description.hide {
    opacity: 0;
    transform: translateX(50px);
}

.dachrinnen-reinigen-button {
    position: absolute;
    width: auto;
    margin-left: 30px;
    margin-top: -2px;
    margin-bottom: -5px; 
    cursor: pointer;
    color: #007bff;
    background: none;
    border: none;
    text-decoration: underline;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease; 
}

.dachrinnen-reinigen-button:hover {
    color: #0056b3;
    transform: scale(1.1); 
}

.dachrinnen-reinigen-description h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 5px;
    color: #007bff;
    font-weight: 600;
    font-family: 'Arial', sans-serif; 
}

.dachrinnen-reinigen-description p{
    margin-left: 10px;
}

.test {
    margin-top: 25px;
    margin-bottom: 25px;
}

.text-left #media{
    display: none;
}

.text-left{
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-top: 110px;
    margin-left: 700px;
}

.media p{
    display: none;	
}


@media (max-width: 1500px) {
    html{
        overflow: scroll;
    }

    button:hover{
        left: 4px;
    }

    .top-bar{
        height: 120px;
    }

    .menu-icon{
        display: block; 
        margin-top: 20px;
        margin-right: 10px;
    }

    .top-bar img{
        margin-bottom: 20px;
        width: 90px;
        margin-left: -100px;
        margin-top: 8px;
    }

    .top-bar h1{
        text-align: left;
        margin-left: 100px;
        margin-bottom: 20px;
    }

    .media p{
        display: block;
}

    .desktop{
        display: none;
    }

    .info-bar{
        display: none; 
    }
    
    .text-clearingOut{
        margin-left: 10px;
        line-height: 1.5;
        font-size: 19px !important;
    }

    .text-clearingOut p{
        white-space: nowrap;
    }

    .NachlassUndWohnung-description{
        height: 330px;
        width: 340px;
        margin-left: 0px;
        margin-top: 10px;
    }

    .NachlassUndWohnung-description p{
        white-space: normal;
    }

    .elektrokleinstgeraete-description p{
        white-space: normal !important;
    }

    .elektrokleinstgeraete-description{
        height: 270px;
        width: 340px;
        margin-left: 25px;
        margin-top: 10px;
    }

    .bauUndRenovierungsabfaelle-description p{
        white-space: normal !important;
    }

    #weiter-rechts{
        margin-left: 30px !important;
        margin-top: 0;
    }

    .NachlassUndWohnung-button{
        position: relative;
        top: -20px;
        bottom: -20px !important;
    }

    .bauUndRenovierungsabfaelle-description{
        height: 310px;
        width: 340px;
        margin-left: 25px;
        margin-top: 10px;
    }

    .bulkyWasteAndTransport-description p{
        white-space: normal !important;
    }

    .bulkyWasteAndTransport-description{
        height: 260px;
        width: 340px;
        margin-left: 25px;
        margin-top: 10px;
    }

    .bodenbelaege-description p{
        white-space: normal !important;
    }

    .bodenbelaege-description{
        height: 260px;
        width: 340px;
        margin-left: 25px;
        margin-top: 10px;
    }

    .text-disposals{
        margin-top: 450px;
        margin-left: -220px;
        line-height: 1.5;
        font-size: 19px !important;
    }

    .text-disposals p{
        white-space: nowrap;
    }

    .text-left{
        margin-top: -260px;
        margin-left: 0px;
        position: relative;
    }

    .dachrinnen-reinigen-description{
        margin-left: 4vw;
        width: 320px;
        height: 280px;
        margin-top: 20px;
    }

    .dachrinnen-reinigen-description h3{
        margin-left: 20px;
    }

    .dachrinnen-reinigen-description hr{
        margin-bottom: 0px;
    }

    .dachrinnen-reinigen-button{
        position: absolute;
        margin-top: 1px;
    }

    .dachrinnen-reinigen-description p{
        white-space: normal;
    }

    .dachrinnen-reinigen-button{
        top: 240px;
        left: 0px;
    }

    #weiter-rechts{
        margin-left: 30px;
        margin-top: 0;
    }

    .text-left #media{
        display: block;
    }

    .text-left #desktop{
        display: none;
    }
}