@media screen {
    body{
    /*background-color: #518e91;
    background-image: linear-gradient(90deg, rgba(23, 46, 47, .5) 50%, transparent 50%),
    linear-gradient(rgba(132, 200, 202, .5) 50%, transparent 50%);
    background-size:50px 50px;*/
    background-color: white;
    padding: 0px;
    margin: 0px;
    font-size: 14pt;
    font-family: Arial;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    }

    h1{
    display: none;
    font-size: 3vw;
    margin: 5px 0px;
    }

    h2{
    font-size: 2vw;
    margin: 5px 0px;
    font-weight: 100;    }

    h3{
    font-size: 1vw;
    margin: 5px 0px;
    font-weight: 100;
    }

    a {
    color: black;
    text-decoration: none;
    }


    p{
    padding: 20px;
    margin: 0px;
    width: 100%;
    }

    ::-webkit-scrollbar {
    display: none;
    }

    -webkit-overflow-scrolling: {
    touch;
    }

    .main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    height: 100%;
    }

    .header {
    max-height: 200px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
    font-size: 14pt;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    }

    .header div {
    transition: transform 1s ease-in-out;
    display: flex;
    width: 80%;
    padding: 20px;
    }

    .header div:hover {
    transform: scale(1.01);
    }

    .header .image {
    max-height: 100px;
    }

    .spacer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    background-image: url(images/pattern.png);
    background-repeat: repeat-x;
    background-size: 15px;
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
    height: 15px;
    }

    .mainContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    margin-top: 0;
    background-color: white;
    }

    .textBlock {
    color: black;
    display: flex;
    flex-direction: column;
    border-left: dotted 3px #84c8ca;
    padding: 0 20px;
    width: 60%;
    }

    .intro {
    margin-top: 25px;
    width: 60%;
    }

    .headline, .headline h2 {
    font-size: 2.5vw;
    color: #84c8ca;
    align-self: flex-start;
    margin-top: 15px;
    }

    div .contact {
    background-color: rgba(23, 46, 47, 0.9);
    border-radius: 100px;
    height: 200px;
    width: 200px;
    text-align: center;
    font-size: small;
    font-weight: 100;
    }

    .contact a {
    color: white;
    }

    .contact p {
    font-weight: bold;
    font-size: x-large;
    width: auto;
    }

    .teaserContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 25px 0;
    }


    .teaser{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    height: auto;
    min-height: 200px;
    background-color: rgba(23, 46, 47,.8);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1px;
    }

    .middle {
    background-color: rgba(81, 142, 145, .8);
    }

    .light {
    background-color: rgba(132, 200, 202, .8);
    }
    
    .teaser{
    transition: transform 300ms ease-in-out;
	}
	
	.teaser:hover{
	transform: scale(1.01);
	}

    .teaser33{
    width: 32%;
    }

    .teaser50{
    width: 49%;
    }


    .teaser25{
    width: 24%;
    min-height: 150px;
    }

    .teaser100{
    width: 100%;
    min-height: 30px;
    margin-bottom: 10px;
    }

    .teaser100 h2{
    padding: 10px;
    }

    .teaserTitle {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    transition: visibility 0.5s ease-in-out;
    text-align: center;
    }

    .teaser:hover .teaserTitle, .teaser:active .teaserTitle, .teaser:focus .teaserTitle {
    visibility: hidden;
    display: none;
    cursor: pointer;
    }

    .teaser:hover .teaserText, .teaser:active .teaserText, .teaser:focus .teaserText {
    visibility: visible;
    display: flex;
    cursor: pointer;
    }


    .teaserText {
    visibility: hidden;
    display: none;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    text-align: center;
    }


    .footer {
    width: 100%;
    font-size: 10pt;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    bottom: 0;
    position: sticky;
    position: -webkit-sticky;
    align-self: center;
    height: 75px;
    margin-top: 25px;
    }

    .footer ul {
    list-style-type: none;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 80%;
    }

    .footer li {
    display: flex;
    }

    .footer li a {
    text-align: center;
    height: auto;
    }

    li p{
    padding: 0px 20px;
    width: auto;
    }

}
@media (min-width: 768px){
    /* only Desktop*/
    .contactBar{
    display: none;
    }

    .footer {
    display: flex !important;
    }

}
@media (min-width: 320px) {
/* mobile */

    .footer {
    display: none;
    }

    .contactBar {
    background: rgba(255, 255, 255, 0.95);
            height: auto;
            transition: all .5s ease-in-out 0s;
            position: fixed;
            bottom: 0;
            right: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            overflow: hidden;
            text-align: center;
            }

            .contactBar p{
            padding: 0px;
            font-size: 4vw;
            }

            .contactBar li{
            padding: 0 5vw;
            }

            .contactBar ul{
            display: flex;
            align-items: center;
            justify-content: center;
            list-style-type: none;
            height: auto;
            top: 50%;
            padding: 0px;
            margin: 40px;
            }

            .contactBar li a{
            text-align: center;
            height: auto;
            }
}
@media (min-width: 680px) and (max-width: 1024px) {
    /* Tablet */

}

@media (max-width: 768px){
    /* Phone */

    .main{
    margin: 0px;
    width: 100%;
    align-items: center;
    }

    .header {
    max-height: 120px;
        position: sticky;
        position: -webkit-sticky;
        z-index: 100;
        font-size: 14pt;
        margin: 0px;
        top: 0px;
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        min-height: none;
            width: 100%;
    }

    .header div {
        display: flex;
        align-items: center;
        flex-direction: column;
        box-shadow: none;
    }

    .header div:hover {
        transform: scale(1.05);
    }

    .header .image {
        min-height: 60px;
        max-height: 80px;
        display: flex;
    }

    .mainContainer {
    margin: 0px;
    background-color: white;
        padding-bottom: 120px;
    }

    .spacer {
        margin: 0px;
            position: sticky;
            position: -webkit-sticky;
            top: 120px;
            padding: 0px;
     }

     .spacer h2{
         margin: 10px 20px;
     }

    .teaserContainer{
    flex-direction: column;
    align-items: center;
    height: auto;
    margin: 0;
    }

    .teaser {
    min-height: none;
    margin: 10px 0 0 0;
    }

    .teaser33, .teaser25, .teaser50, .teaser100 {
    width: 90%;
    height: auto;
    }

    .textBlock {
    width: 90%;
    padding: 0;
    border: none;
    }



    h1{
        font-size: 6vw;
        margin: 5px 0px;
        }

    h2{
        font-size: 5vw;
        margin: 20px 0px;
        }

    .textBlock h2 {
    font-size: 4vw;
    }

    .textBlock .headline {
    margin: 0;
    font-size: 5vw;
    align-self: flex-start;
    }

    .headline, .headline h2 {
    width: 90%;
    align-self: center;
    font-size: 5vw;


    }

    h3{
        font-size: 4vw;
        margin: 20px 0px;
        }
     p{
        font-size: 4vw;
        padding: 20px;
        margin: 0px;
        width: 90%;
        }

    .footer {
    display: none;
    }

    .contact {
    display: none;
    }

}





