@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
    scroll-behavior: smooth;
}

header{
    position: fixed;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ebad0b;
    z-index: 1000;
}

header .logo{
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 700;
    padding-left: 100px;
}

header ul{
    position: relative;
    display: flex;
    padding-right: 100px;
}

header ul li{
    list-style: none;
    position: relative;
}

header ul li a{
    position: relative;
    padding: 5px 10px;
    color: #FFF;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

header ul li a:hover{
    background: black;
}

.toggle{
    display: none;
}

section{
    position: relative;
    display: flex;
    /* justify-content: space-between;
    justify-content: center;
    align-items: center;*/
    min-height: 25vh;
    padding: 150px 100px 100px;
}

.images{
    padding: 50px;
}

#reg, #feat{
    /*max-height: 70vh;*/
    display: block;
    margin: 0 auto;
    max-height: 70vh;
    max-width: 90vw;
}

section img{
    /*max-height: 50vh;
    margin-left: 100px;
    display: flex;
    border: solid 2px green;*/
}
section h2{
    font-size: 2.5em;
    text-transform: uppercase;
}

section p{
    font-size: 18px;
    /*max-width: 800px;
    background-color: green;*/
}

section a{
    text-decoration: none;
    color: #ebad0b;
    font-size: 18px;
}

footer p{
    width: 100%;
    background: #ebad0b;
    text-align: center;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

#lang{
    display: none;
}

.instructionPhotos{
    max-width: 1000px;
    max-height: 70vh;
    padding-right: 30px;
    padding-left: 30px;
}

#goingOnlineIcon{
    max-height: 50vh;
}

#profile{
    padding: 150px 100px 80px;
}

.mobilePhotosSection{
    display: none;
    max-width: 90vw;
}

#blackSection1{
    background: black;
}

@media (min-width: 993px){
    #appMenu, #contact{
        position: relative;
        /*justify-content: center;
        align-items: center;*/
        background-color: #111;
        color: #ebad0b;
    }
}
@media(max-width: 1300px) and (min-width: 993px){
    .instructionPhotos{
        max-width: 50vw;
        max-height: 40vh;
    }
    #goingOnlineIcon{
        display: none;
    }
}
@media (max-width: 992px){
    section{
        display: flex;
        justify-content: space-between;
        padding: 100px 50px 100px;
        flex-direction: column;
        min-height: 15vh;
    }
    header .logo{
        font-size: 35px;
        padding-left: 50px;
    }
    section p{
        font-size: 13px;
    }
    section a{
        font-size: 20px;
        padding: 20px;
    }
    #profile{
        padding: 200px 50px 100px;
    }
    header{
        min-height: 7vh;
    }
    header ul{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vj - 80px);
        padding: 50px 100px;
        text-align: center;
        overflow: auto;
        transition: 0.5s;
        background: #000;
        flex-direction: column;
        transform:translateY(-100%);
        opacity: 0;
    }
    header.active ul{
        transform: translateY(0);
        opacity: 1;
    }
    header ul li a{
        margin: 5px 0;
        font-size: 24px;
    }
    .toggle{
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        margin-right: 50px;
    }
    .toggle:before{
        content: '';
        position: absolute;
        top: 4px;
        width: 100%;
        height: 2px;
        background: #fff;
        z-index:1;
        box-shadow: 0 10px 0 #FFF;
    }
    .toggle:after{
        content: '';
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: #fff;
        z-index:1;
        box-shadow: 0 10px 0 #FFF;
    }
    header.active .toggle:before{
        top:14px;
        transform: rotate(45deg);
        box-shadow: 0 0 0 #FFF;
    }
    header.active .toggle:after{
        top:14px;
        transform: rotate(-45deg);
        box-shadow: 0 0 0 #FFF;
    }
    footer p{
        font-size: 25px;
    }
    .instructionPhotos{
        display: none;
    }
    .blackMobileSection{
        background-color: black;
        color: #ebad0b;
    }
    .whiteMobileSection{
        background-color: white;
        color: #ebad0b;
    }
    .instructionMobilePhotos{
        max-width: 90vw;
    }
}