﻿:root {
    --color: #071a66;
}

body {
    background-image: url("/Images/vhcArl.png");
    background-position: top;
    background-color: #a6c5f7;
    background-repeat: no-repeat;
}

section.main1 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #060487, #301952, #057bad ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #060487, #301952, #057bad);
}

section.main2 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #057bad, #301952, #060487 ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #057bad, #301952, #060487);
}

section.main3 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #057bad, #301952, #060487 ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #057bad, #301952, #060487);
}

section.main4 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #057bad, #301952, #060487 ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #057bad, #301952, #060487);
}

section.main5 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #057bad, #301952, #060487 ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #057bad, #301952, #060487);
}
section.main6 {
    display: flex;
    justify-content: center;
    position: relative;
    background: #060487; /* fallback for old browsers */
    background: -webkit-linear-gradient( 170deg, #057bad, #301952, #060487 ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient( 170deg, #057bad, #301952, #060487);
}


.hero-text-container, .parallax-text-container {
    width: 100%;
    height: 10vh;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title, .parallax-title {
    padding: 1.2em 1.2em;
    max-width: 90%;
    background: rgba(11, 111, 111, 0.2);
    font-size: 26px;
    text-align: center;
    color: WHITE;
    border-radius: 5px;
    border: 1px solid
}

.buffer {
    width: 100%;
    min-height: 10vh;
    background-color: var(--color);
}

div.article {
    max-width: 1500px;
    background: white;
    padding: 3em;
    border-radius: 5px;
    line-height: 1.8;
    margin: 100px 10px;
}

.columns {
    -webkit-columns: 240px 3; /* Chrome, Safari, Opera */
    -moz-columns: 240px 3; /* Firefox */
    columns: 240px 3;
    column-gap: 60px;
    column-rule: 1px solid darkgrey;
}

    .columns > * {
        margin: 0 0 24px 0;
    }

    .columns > img {
        width: 100%;
    }

    .columns p:first-child:first-letter {
        font-weight: 100;
        float: left;
        font-size: 500%;
        line-height: 1.2;
        margin: -0.15em 8px -0.2em 0
    }

.footer {
    background: #3b61b8;
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

div.footer-container {
    width: 1500px;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.card {
    width: 300px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1em;
    text-align: left;
}









section {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-1 {
    background-color: #e0ffff;
}

section .container {
    margin: 10px;
}



section .text-container {
    display: flex;
}

    section .text-container .text-box {
        margin: 10px;
        padding: 5px;
        background: #cad1fa;
    }

        section .text-container .text-box h3 {
            font-size: 15px;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

@media (max-width: 900px) {

    section .text-container {
        flex-direction: column;
    }
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }
