/*============== generell css ===============*/

body {
    margin: 0;
    font-family: 'Montreal';
    overflow: auto;
    background-color: black;
}

.my-container {
    width: 100%;
    height: 100vh;
    background-color: black;
}

.vinorate-text-logo {
    position: fixed;
    z-index: 1;
    top: 1em;
    left: 1.5em;
    width: 8em;
    height: 3em;

    background: white;
    -webkit-mask-image: url(assets/Text_LOGO_v5.svg);
    -webkit-mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url(assets/Text_LOGO_v5.svg);
}

.vinorate-logo {
    z-index: 1;
    top: 1em;
    left: 1.5em;
    width: 8em;
    height: 3em;

    background: white;
    -webkit-mask-image: url(assets/Text_LOGO_v5.svg);
    -webkit-mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url(assets/Text_LOGO_v5.svg);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.90);
}

.picture-self {
    background: url(assets/VINORATE_2022_01.png) no-repeat center;
    background-size: contain;
    height: 80vh;
    width: 60vh;
    position: absolute;
    left: 10em;
    bottom: 0;
}

/*---------------------------------------------------- */

/*============== Fonts css ===============*/

@font-face {
    font-family: Montreal;
    src: url(assets/Neue_Montreal_Regular_400.otf);
    font-display: swap;
}

@font-face {
    font-family: MontrealBold;
    src: url(assets/Neue_Montreal_Bold_700.otf);
    font-display: swap;
}

/*---------------------------------------------------- */

/*============== Video Background css ===============*/

.video-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;  
}

/*---------------------------------------------------- */

/*============== Down Arrow css ===============*/

.down-arrow {
    border: solid white;
    width: 20px;
    height: 20px;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-animation: arrow 2s ease-in-out infinite;
    -moz-animation: arrow 2s ease-in-out infinite;
    animation: arrow 2s ease-in-out infinite;
}

.arrow-container {
    position: absolute;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: 100vw;
}

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow{
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/*---------------------------------------------------- */

/*============== Ref Links css ===============*/

.contact-container {
    position: absolute;
    bottom: 2%;
    right: 2%;
    display: flex;
}

.contact-item {
    margin: 0 0 0 1em;
    width: 70px;
    color: white;
    text-decoration: none;
}

.contact-item.nr-1:hover {
    color: white;
    text-decoration: none;
    font-family: MontrealBold;
}

.contact-item.nr-2:hover {
    color: white;
    text-decoration: none;
    font-family: MontrealBold;
}

.contact-item.nr-3:hover {
    color: white;
    text-decoration: none;
    font-family: MontrealBold;
}

/*---------------------------------------------------- */

/*============== Section Container ===============*/

.self-description-container {
    position: absolute;
    width: 40%;
    overflow: scroll;
    height: 100%;
    right: 10em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.self-description-title-container {
    font-family: 'Palanquin', sans-serif;
    position: relative;
    margin-bottom: 2em;
    height: 5em;
}

.self-description-title {
    position: absolute;
    bottom: 0;
    font-weight: 900;
    font-size: 3em;
    line-height: 1em;
    color: white;
    font-family: MontrealBold;
}

.self-description {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.2em;
    padding-bottom: 2em;
    line-height: 1.7em;
    font-family: Montreal;
}

.self-description b {
    font-family: MontrealBold;
}

.self-description a {
    color: white;
    font-family: Montreal;
}

.self-description span {
    font-family: MontrealBold;
}

/*---------------------------------------------------- */

/*============== @Media for Mobile ===============*/

@media screen and (max-width: 1400px) {
    .picture-self {
        left: 5em;
    }
}

@media screen and (max-width: 1200px) {
    .self-description-container {
        right: 5em;
    }
}

@media screen and (max-width: 1050px) {
    .picture-self {
        left: 1em;
    }

    .self-description-container {
        right: 1em;
    }
}

@media screen and (max-width: 850px) {
    .picture-self {
        display: none;
    }

    .vinorate-text-logo {
        position: absolute;
    }

    .overlay {
        position: absolute;
        width: 80%;
        height: 90%;
        border-radius: 5px;
        margin-left: 20%;
        background-color: rgba(0, 0, 0, 0.80);
    }

    .self-description-container {
        right: 1em;
        width: 80%;
    }

    .down-arrow {
        display: none;
    }
}

@media screen and (max-height: 850px) {
    .self-description {
        font-size: 1em;
    }
}

@media screen and (max-height: 750px) {
    .self-description-title {
        font-size: 2em;
    }
}

/*---------------------------------------------------- */

/*============== footer-area css ===============*/

.section5{
    position: absolute;
    padding-top: 2em;
    max-width: 100vw;
    background-color: rgba(0, 0, 0, 0.90);
}

.section5 a, .Impressum a, .Datenschutz a{
    color: white;
    text-decoration: none;
}

.section5 p{
    margin-bottom: 0px;
}


.nightshyft{
    color: white;
    font-size: small;
    font-family: Montreal;
    padding-bottom: 2em;
}

.nightshyft a{
    color: white;
    font-size: small;
    font-family: Montreal;
}

.copyrigth{
    color: white;
    padding-top: 2em;
    padding-bottom: 2em;
    font-family: Montreal;
}

.Impressum, .Datenschutz{
    margin-top: 10vh;
}

.Impressum p, .Datenschutz p, .Impressum b, .Datenschutz b{
    color: white;
}

.Impressum svg:hover{
    fill: #D4AF37;
}

@media screen and (max-width: 450px) {
    .copyrigth{
        font-size: small;
    }
}

/*---------------------------------------------------- */