/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
a, em, img, strong, sub,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

html, body {
	height: 100%;
}

ol, ul {
	list-style: none;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none !important;
}

a,
button{
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
    outline: none;
}

.container {
	position: relative;
}

.aligner {
    align-items: center;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

#main-banner {
    background: url('../img/main-banner-bg.jpg') center no-repeat;
    height: 659px;
    width: 100%;
    padding-top: 40px;
}

#main-banner .logo {
    display: block;
    margin: 0 auto;
}

.info-bar {
    background: #00787f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 70px;
    margin-top: 3px;
}

.info-bar h1 {
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
}

.info-bar a {
    color: #FFF;
    font-size: 20px;
}

.info-bar a:hover {
    opacity: 0.8;
}

.boxes {
    height: 260px;
    border-left: 1px solid #d3d3d3;
    display: flex;
    justify-content: space-between;
}

.boxes .large-box {
    width: 25.5%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}

.boxes .small-boxes {
    width: 74.5%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-right: 1px solid #d3d3d3;
}

.boxes .small-boxes .box {
    width: 25%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}

.boxes .small-boxes .box:nth-child(4n) {
    border-right: none;
}

.boxes .large-box img,
.boxes .small-boxes .box img {
    max-width: 90%;
}



