
*{
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root{
    --light-blue:#9ccfd3e1;
    --blue: #2a618b;
    --grey: #f5f8f9;
    
    /* box colors */
    --color1: #9bc0c3;
    --color2:  #afcccf;
    --color3: #c3d9db;
    --color4 : #e1eced;
}

body{
    background: var(--light-blue);
    background: linear-gradient(to right bottom, var(--light-blue), var(--blue));
    margin: 0px;
    padding: 0px;
    font-size: 2.0em;
}

/* NAV */
nav{
    display: block;
    font-size: 1.2em;
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--grey);
    font-size: 1.33em;
}
nav ul p{
    float: left;
    display: block;
    color: var(--text-color);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav ul li{
    float: right;
}
nav ul li a{
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
/* NAV */

/* BANNER */
.heroimage{
    background-image: url("../images/background.jpg");
    background-size: cover;
    height: 100vh;
}

.heroimage3{
    background-image: url("../images/Word-ActiveInactiveWindow.jpg");
    background-size: cover;
    height: 100vh;
}

.heroitems{
    position: relative;
    width: 1200px;
    min-height: 550px;
    height: 100vh;
    text-align: center !important;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    z-index: 2;
    padding: 0 5em;
}

/* Particles */
#particles-js{
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
}

img{
    content: "";
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.jumbotron{
    background-color: var(--light-blue);
}

.jumbotron h1{
    font-size: 4em;
}

.jumbotron p{
    font-size: 2em;
}

.Images{
    width: 25VW;
    height: 25vh;
    text-align: center;
    background-size: cover;
}

/* Services html */
.services .row .col ul{
    font-size:1.5em;
}

/* Contact form */
.contactform{
    font-size: 1.5em;
    text-align: left;
}


/* footer */
footer{
    text-align: center;
}

/* boxxes */
.blur{
    box-shadow: 10px 10px 8px 10px #888888;
}

.box1{
    padding: 2em;
    background-color: var(--color1);
}

.box2{
    padding: 2em;
    background-color: var(--color2);
}

.box3{
    padding: 2em;
    background-color: var(--color3);
}

.box4{
    padding: 2em;
    background-color: var(--color4);
} 

.box5{
    padding-top: 1.5em;
    padding-left: 2em;
    background-color: var(--color1);
}
