body, html {
    overflow-x: hidden;
    background: black;
    margin: 0;
}
header {
    background-color: black;
    height: 110px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
.social-container {
    position: absolute;
    right: 3%;
    display: flex;
    align-items: center;
}
.social-icon {
    height: 20px;
    margin-right: 0.7em;
    cursor: pointer;
    transition: opacity 0.4s;
}
.social-icon:hover {
    opacity: 0.7;
    transition: opacity 0.4s;
}
.logo-container {
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    height: 70px;
    background: black;
    transition: opacity 0.4s;
}
.logo-container:hover {
    opacity: 0.7;
    transition: opacity 0.4s;
}
.logo-container img {
    object-fit: contain;
    max-width:100%;
    width: 100%;
    height: 100%;
}
#hero {
    display: flex;
    height: calc(100vh - 110px);
    flex-direction: row;
}
.hero-image {
    display: flex;
    background-size: cover;
    transition: flex 0.3s;
    position: relative;
    width: 25%;
}
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 1));
    z-index: 3!important;
}
.overlay-black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 2;
}
.logo-container-chalets {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30000!important;
    cursor: pointer;
    height: 95px;
    transition: opacity 0.4s;
}
.logo-container-chalets:hover {
    opacity: 0.7;
    transition: opacity 0.4s;
}
.logo-container-chalets img {
    object-fit: contain;
    max-width:100%;
    width: 100%;
    height: 100%;
}
.beschrieb-container {
    position: absolute;
    bottom: 2.4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30!important;
    cursor: pointer;
    color: white;
    font-family: 'PT Sans', serif;
    font-size: 15px;
    text-align: center;
}
.beschrieb-container img {
    object-fit: contain;
    max-width:100%;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation : portrait) {
    #hero {
        flex-wrap: wrap;
        display: flex;
    }
    .hero-image {
        display: flex;
        height: 20%;
        width: 100%;
        background-size: cover;
        transition: flex 0.3s;
        position: relative;
        background-position: 50% 50%;
    }
    .overlay-black {
        opacity: 0.1;
    }
    .overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5));
        height: 40%;
    }
    .logo-container-chalets { 
        height: 30px;
    }
    .beschrieb-container {
        bottom: -18%;
        font-size: 12px;
    }
}