@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url('../fonts/Montserrat-SemiBold.otf');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat-Light';
	src: url('../fonts/Montserrat-Light.otf');
	font-weight: lighter;
	font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat-Light', sans-serif;
}

header {
    width: 96%;
    margin: 0 auto;
    text-align: center;
}

header img {
    max-width: 80%;
    max-height: 40vh;
}

h1 {
    width:100%;
    margin: 0 0 40px 0;
    color: #094480;
    font-family: 'Montserrat-Light', sans-serif;
    font-weight: lighter;
    font-size: 2.5em;
}

.green {
    color: #81a346;
    margin-top: 40px;
}

b {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

h1 span {
    border-bottom: solid 2px;
    position: relative;
}

h1 span:before {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 6px;
    width: 100px;    
    border-bottom: solid 2px;
    left:-100px;
}
h1 span:after {
    position: absolute;
    bottom: -6px;
    height: 6px;
    width: 6px;
    content: "";
    border:solid 2px;
    border-radius: 50%;
}
  
h1 span:after {
    right: -10px;
    left: auto;
}

.page {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    width: calc(100% - 8%);
    min-height: calc(100vh - 4vh);
    padding: 2vh 4%;       
}

.column {
    width: 46%;
    align-self: flex-start;
}

.form {
    background: #81a346;
    padding: 20px;
}
#page2 {
    background: #094480;
    color: #fff;
}

h2 {
    font-size: 2em;
}

.page p,
.page h2,
.page h3 {
    width:28%;
    margin: 2% 72% 2% 0;
}

.page p {
    line-height: 1.5em;
    font-size: 1.1em;
}

.page .column p {
    width: 100%;
}

.page h2 {
    font-family: 'Montserrat-Light', sans-serif;
    font-weight: lighter;
    line-height: 1.5em;
}

h2 b {
    border-bottom: solid 2px;
    position: relative;
}


h2 b:after {
    position: absolute;
    bottom: -6px;
    height: 6px;
    width: 6px;
    content: "";
    border:solid 2px;
    border-radius: 50%;
}
  
h2 b:after {
    right: -10px;
    left: auto;
}

#page2 h2 b,
#page2 h2 b:after {
    border-color:#81a346;
}

.column img {
    max-width: 100%;
    max-height: 50vh;
}

.img {
    text-align: center;
    margin-bottom: 40px;
}

#page3 h2,
#page3 b {
    color: #81A346;
}

#page3 h2 b,
#page3 h2 b:after,
#page4 h2 b,
#page4 h2 b:after {
    border-color:#094480;
}

#page4 {
    background: #81a346 url("../images/global.png") top right no-repeat;
    background-size: 50vw;
    color: #fff;
}

#page4 h2 {
    color: #fff;
}
#page4 h3,  
#page4 p b {
    color: #094480;
}

#page4 .column {
    margin-top: 34vh;
}

footer {
    margin: 20px 0;
    padding: 20px 0;
    text-align: center;
    background: #094480;
    color:#fff;
}

footer h4 {
    font-size: 48px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Montserrat-SemiBold', sans-serif ;
}

@media only screen and (max-width: 600px) {

    .column {
        width: 100%;
    }

    .page p, .page h2, .page h3 {
        width: 100%;
        margin: 2% 0;
    }

    #page4 {
        background-size: 90vw;
    }
    #page4 h2 {
        margin-top: 40vh;
    }

    #page4 .column {
        margin-top: 0;
    }

}

