@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

html, body{
    padding: 0;
    margin: 0;

    font-family: 'Lato', sans-serif;
}

header{
    background-color: #2E75B6;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 72px;

    z-index: 100;

    border-bottom: 4px solid rgb(35, 88, 138);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header img{
    height: 100%;

    padding: 0;

    margin-left: 64px;
    margin-right: 64px;
}
header a{
    text-decoration: none;
    color: white;
    font-weight: 600;

    height: 100%;
    line-height: 72px;

    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.4rem;
}
header a.active{
    background-color: rgb(35, 88, 138);
}
header a:hover{
    background-color: rgb(35, 88, 138);
}

@media only screen and (max-width: 880px) {
    header{
        display: none;
    }
}

.mobileheader{
    background-color: #2E75B6;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 72px;

    border-bottom: 4px solid rgb(35, 88, 138);

    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.mobileheader img{
    height: 100%;

    padding: 0;

}
.mobileheader i{
    margin-right: 24px;
    color: white;

    font-size: 2rem;

    cursor: pointer;
}

@media only screen and (max-width: 880px) {
    .mobileheader{
        display: flex;
    }
}
.mobilemenu-container{
    display: none;

    position: fixed;
    left: 0;
    top: 72px;
    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,0.5);
}
.mobilemenu{
    display: flex;
    left: 0;
    top: 72px;
    width: 100%;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    background-color: #2E75B6;

    transition: all ease-in-out 2s;
}
.mobilemenu a{
    width: 100%;
    padding: 16px;

    text-align: center;
    color: white;
    text-decoration: none;

    font-size: 1.6rem;
}
.mobilemenu a.active{
    background-color: rgb(35, 88, 138);
}

.hamburger{
    transition: all ease-in-out 2s;
}

#home{
    margin-top: 72px;
    width: 100%;
    height: 80vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /* The image used */
    background-image: url("img/background_min.jpg");
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#home .slogan-container{
    width: 76%;
}

@media only screen and (max-width: 1560px) {
    #home .slogan-container{
        width: 80%;
    }
}
@media only screen and (max-width: 1440px) {
    #home .slogan-container{
        width: 85%;
    }
}

#home .slogan{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6rem;
    font-weight: bold;

    margin: 0;
    margin-top: 20px;
    margin-bottom: 20px;

    color: white;
}

#home .slogan.left{
    text-align: left;

    animation-name: aufblende-1;
    animation-duration: 2s;
}
#home .slogan.center{
    text-align: left;
    margin-left: 26%;

    animation-name: aufblende-2;
    animation-duration: 3.5s;
}
#home .slogan.right{
    text-align: right;

    animation-name: aufblende-3;
    animation-duration: 5s;
}

@media only screen and (max-width: 1300px) {
    #home .slogan{
        text-align: center !important;
        margin-left: 0 !important;
    }
}
@media only screen and (max-width: 700px) {
    #home .slogan{
        font-size: 5rem;
    }
}
@media only screen and (max-width: 500px) {
    #home .slogan{
        font-size: 4rem;
    }
}

#whatwedo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    padding-top: 64px;
}

#whatwedo a{
    text-decoration: none !important;
    color: black;
}

#whatwedo .item{
    width: 160px;

    margin: 0;
    margin-left: 140px;
    margin-right: 140px;
    margin-bottom: 64px;

    text-decoration: none !important;

    transition: all ease-in-out .4s;
    cursor:pointer;
}

@media only screen and (max-width: 500px) {
    #whatwedo{
        flex-direction: column;
    }
    #whatwedo .item{
        margin-left: 0;
        margin-right: 0;
    }
}
#whatwedo .item:hover{
    transform: scale(1.1);
}
#whatwedo .item img{
    width: 100%;
}
#whatwedo .item p{
    text-align: center;
}
#whatwedo .item .title{
    font-size: 1.2rem;
    font-weight: bold;
}
#whatwedo .item .desc{
    text-align: center;

}

.page{
    padding: 64px;
}
.page p{
    font-size: 1.1rem;
}
.page ul{
    font-size: 1.1rem;
}
.page .head{
    font-size: 1.6rem;
    font-weight: 600;

    margin: 0;
    margin-bottom: 16px;
}
.page .subhead{
    font-size: 1.3rem;
    font-weight: 600;

    margin: 0;
    margin-bottom: 16px;
}

#consulting{
    /* The image used */
    background-image: url("img/blue_with_lamps_min.jpg");
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: white;

    padding-right: 26%;
}

#training{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
#training .image{
    min-width: 400px;
    height: 400px;
    margin-right: 64px;
    margin-top: 6px;

    background-image: url("img/coaching_min.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 1200px) {
    #training .image{
        display: none;
    }
}

#whois{
    /* The image used */
    background-image: url("img/background_dark_min.jpg");
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: white;
}

#kontakt{
    background-color: rgb(77, 77, 77);
    color: white;
}

.contactform{
    max-width: 1200px;
    margin: auto;
}

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.inputfield{
    width: 100%;
    height: 36px;
    margin-top: 8px;
    margin-bottom: 8px;

    padding: 8px;
    box-sizing: border-box;
}

#messagetext{
    font-family: 'Lato', sans-serif;
    font-size: 1rem;

    height: 100px;
}

#sendbutton{
    width: 100%;
    padding: 8px;
    margin-top: 8px;

    background-color: #2E75B6;
    border: 0;
    color: white;

    font-size: 1.2rem;
    font-weight: bold;


    transition: all ease-in-out .4s;
    cursor: pointer;
}
#sendbutton:hover{
    background-color: rgb(35, 88, 138);
}


.formresult-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.formresult-container i{
    font-size: 8rem;
    color: #ffffff;
}
.formresult-container p{
    font-size: 1.3rem;
    color: #ffffff;
}



.footer{
    width: 100%;
    height: 64px;

    padding:0;
    padding-left: 64px;
    padding-right: 64px;
    box-sizing: border-box;

    background-color: rgba(60,60,60,1);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 500px) {
    .footer{
        padding-left: 16px;
        padding-right: 16px;
    }
}

.footer p{
    color: white;
    font-weight: 500;
}

.footer .links a{
    text-decoration: none;
    color: white;
    margin-left: 4px;
    margin-right: 4px;
}