body {
    margin: 0px;
    padding: 0px;
    font-family: Arial;
    background-color: white;
}

.image1 {
    bottom: 120px !important;
}

.header {
    width: 100%;
    position: fixed;
    background-color: white;
    z-index: 1;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.1);
}

.header .menu {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header .menu .item {
    padding: 15px 40px;

}

.header .menu .item:hover {
    background-color: #f5f5f5;
}

.header a {
    text-decoration: none;
    color: black;
}

.header-image {
    height: 500px;
    background-image: url("header-image.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px -390px;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width: 300px;
}

.content {
    box-sizing: border-box;
    padding: 80px 50px;
    width: 1300px;
    margin: 0 auto;
}

.content .stalling {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content .stalling .text {
    width: 700px;
}

.content .reverse {
    flex-direction: row-reverse;
}

.content .stalling .image img{
    width: 400px;
    height: 400px;
}

.content p {
    line-height: 30px;
    margin: 20px 0px;
    padding: 0px;
}

.content h1 {
    margin: 0px;
}

.content .divider {
    margin: 20px 0px;
    height: 3px;
    width: 100%;
    background-color: blue;
}

.content .button {
    background-color: blue;
    color: white;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
}

.foto {
    text-align: center;
}

.foto .button {
    margin: 20px 0px;
}

.title {
    font-size: 70px;
    margin-top: 250px;
    color: white;
    text-align: center;
    -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: black;
}

/* Framework overrides */
ul:not(.browser-default) {
    padding-left: 25px !important; 
    list-style-type: disc !important;
}

ul:not(.browser-default)>li {
    list-style-type: disc !important;
}

.parallax-container {
    height: 500px !important;
  }

  @media screen and (max-width: 1300px) {
    .content {
        width: 100%;
        padding: 80px 15%;
    }

    .content .stalling .image {
        display: none;
    }

    .content .stalling .text {
        width: 100%;
    }

    .header .menu {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .header {
        display: none;
    }

    #home {
        height: 300px !important;
    }

    .title {
        margin-top: 100px;
        font-size: 50px;
    }

    .intro {
        flex-direction: column-reverse;
    }

    .intro .logo {
        margin-bottom: 50px;
    }
}