@font-face {
    font-family: 'Oswald';
    src:
            local('Oswald Bold'),
            local('Oswald-Bold'),
            url('/assets/webfonts/Oswald-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Quicksand';
    src:
            local('Quicksand Medium'),
            local('Quicksand-Medium'),
            url('/assets/webfonts/Quicksand-Medium.ttf') format('truetype');
}


body, html {
    min-height: 100vh;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 1.8em;
    font-weight: 400;
    color: #666;
}

section {
    font-size: 16px;
    font-family:'Oswald-Bold', sans-serif;
    text-align: center;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
}

#text {
    position: absolute;
    font-size: 5em;
    color: #1c1a4c;
}

.parallax img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.container {
    max-width: 90%;
    position: relative;
    margin: 0 auto;
}

.box-wrap {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.sec1, .sec4, .sec5 {
    position: relative;
    display: grid;
    align-items: center;
    flex: 40%;
    padding: 6px 15px;
    border-radius: 20px;
}

.sec6, .sec7 {
    margin: 50px 70px;
    position: relative;
    display: grid;
    align-items: center;
    flex: 80%;
    padding: 6px 15px;
    border-radius: 20px;
}

.sec1 {
    background-color: #1c1a4c;
    color: #ffffff;
}
.sec4 {
    background-color: #ffffff;
    color: #04041a;
}

.sec6 {
    background-color: #ffd1d1;
    color: #04041a;
}
.sec5, .sec7 {
    background-color: #1c1a4c;
    color: #ffffff;
}

.sec1 h2, .sec5 h2,.sec6 h2, .sec7 h2 {
    margin: 20px 20px;
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 10px;
}

.sec4 h2{
    margin: 20px 20px;
    font-size: 3em;
    color: #1c1a4c;
    margin-bottom: 10px;
}

.sec1 h3, .sec4 h3, .sec5 h3,.sec6 h3, .sec7 h3 {
    margin: 20px 20px;
    font-size: 1.5em;
    color: #04041a;
    margin-bottom: 10px;
}

.sec1 h3{
    margin: 20px 20px;
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.sec1 p, .sec4 p, .sec5 p,.sec6 p, .sec7 p {
    margin: 20px 20px;
    font-size: 1em;
    color: #ffffff;
    font-weight: 300;
}

.sec6 p{
    color: #04041a;
}

.sec6 p .asterik{
    color: #424242;
}

.sec7 p .asterik{
    color: #575ab3;
}

.sec2, .sec3 {
    position: relative;
    flex: 50%;
    border-radius: 20px;
}

.sec2 h2,.sec3 h2 {
    font-size: 3em;
    color: #04041a;
}

.sec2 p, .sec3 p {
    font-size: 1em;
    color: #04041a;
    font-weight: 300;
}

.buttonbright{
    width: 70%;
    margin: 5px; /* or whatever you like */
    padding: 5px 5px;
    color: black;
    border: none;
    border-radius: 20px;
    --color-1: white;
    --color-2: #ffd1d1;
    /*
      You can access variables using the 'var()' function:
    */
    background: linear-gradient(120deg, var(--color-1), var(--color-2));
}

.buttonbright:hover{
    color: dimgrey;
    --color-1: white;
    --color-2: #ffd1d1;
    /*
      You can access variables using the 'var()' function:
    */
    background: linear-gradient(120deg, var(--color-2), var(--color-1));
}

.buttondark{
    width: 70%;
    margin: 5px; /* or whatever you like */
    padding: 5px 5px;
    color: white;
    border: none;
    border-radius: 20px;
    --color-3: #222474;
    --color-4: #04041a;
    /*
      You can access variables using the 'var()' function:
    */
    background: linear-gradient(20deg, var(--color-3), var(--color-4));
}

.buttondark:hover{
    color: grey;
    --color-3: #222474;
    --color-4: #04041a;
    /*
      You can access variables using the 'var()' function:
    */
    background: linear-gradient(20deg, var(--color-4), var(--color-3));
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 0.8s all ease;
}

.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

.question{
    font-weight: bold;
}

.no {
    text-transform: uppercase;
    color: #cc0000;
}
.yes {
    text-transform: uppercase;
    color: #778F80;
}

.asterik {
    font-size: 0.8em;
}

.newsection{
    position: relative;
    background-color: #f4f4f4;
}
.newsection2{
    position: relative;
    background-color: #04041a;
}

.newsection3{
    position: relative;
    background-image: url('');
}
.footer-placeholder {
    position: absolute;
    flex-shrink: 0;
}

@media screen and (max-width: 70em) {
    .box-wrap {
        flex-direction: column;
    }
}
