html {
    font-family: Roboto, sans-serif;
    color: #4C4C4C;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}  

body{
    font-family: Roboto, sans-serif;
    background-color: white;
    margin: 0px;
    height: auto;
}

.sticky{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 10;
}

section{
    display: block;
    background-color: #ffffff;
    height: auto;
    position: relative;
}

p{
    font-size: 20px;
    margin: 20px;
    font-weight: 400;
}

h1{
    font-size: 48px;
    font-weight: 500;
    color: #5270B3;
}

h2{
    font-size: 32px;
    font-weight: 500;
    color: #5270B3;
}

h3{
    font-size: 28px;
    font-weight: 400;
    color: #5270B3;
}

h4{
    font-size: 16px;
    font-weight: 400;
}

.container-L {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    max-width: 1500px;
}

.container-M {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    max-width: 1200px;
}

.nopadding{
    padding: 0;
}

.parallax{
    display: block;
    height: auto;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: fixed;
}

.nodecoration{
    text-decoration: none;
    outline: none;
}

.nodecoration:active{
    text-decoration: none;
    outline: none;
}

.center{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centerall{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
}

.rounded-2{
    border-radius: 8px;
}

.rounded-1{
    border-radius: 4px;
}

.white{
    color: white
}

.white-50{
    color: rgba(255,255,255,0.5)
}

.white-30{
    color: rgba(255,255,255,0.3)
}

.grey-1{
    color:#36393F;
}

.shadow{
    box-shadow: 0px 3px 8px rgba(0,0,0,0.5);
}

.removeMargin-10{
    margin-left: -10px;
    margin-right: -10px;
}

.removeMargin-16{
    margin-left: -16px;
    margin-right: -16px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-container-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.grow{
    flex-grow: 1;
}

.flex-0-6{
    width: 66%;
}

.flex-1{
    width: 100%;
}

.flex-2{
    width: 50%;
}

.flex-3{
    width: 33.3333%;
}

.flex-4{
    width: 25%;
}

.flex-5{
    width: 20%;
}

.flex-5-1{
    width: 21.25%;
}

.flex-20{
    width: 5%;
}

@media screen and (max-width: 1200px) {
    .flex-0-6{
        width: 100%;
    }

    .flex-2{
        width: 100%;
    }
    
    .flex-3{
        width: 50%;
    }
    
    .flex-4{
        width: 50%;
    }
    
    .flex-5{
        width: 40%;
    }
    
    .flex-5-1{
        width: 40%;
    }
}
    
    @media screen and (max-width: 600px) {
    .flex-0-6{
        width: 100%;
    }
    
    .flex-2{
        width: 100%;
    }

    .flex-3{
        width: 100%;
    }
    
    .flex-4{
        width: 100%;
    }
    
    .flex-5{
        width: 100%;
    }
    
    .flex-5-1{
        width: 100%;
    }
}

