@charset "UTF-8";

/*---------------------------------------- UNIVERSAL STYLES ----------------------------------------*/

body {
    background-color: #fff;
    color: #888;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 400;
    height: 100%;
    letter-spacing: 0.01em;
    line-height: 1.75;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.contentContainer {
    height: 100%;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 0;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 0.9em;
    margin-top: 0;
}

h3 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 0;
}

h4 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
}

h5 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
}

p {
    margin: 0 0 1em;
}

.smallText {
    font-size: 15px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

}

/*----- Small -----*/
@media(min-width: 768px) and (max-width: 991px){

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 20px;
    }

}

/*----- Medium -----*/
@media(min-width: 992px) and (max-width: 1199px){

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 22px;
    }

}

/*---------------------------------------- BUTTONS & LINKS ----------------------------------------*/

a,
a:focus,
a:visited {
    color: #005cad;
    outline: none;
    text-decoration: none;
}
a:active,
a:hover {
    color: #00aaf3;
    outline: none;
    text-decoration: none;
}

.comparisonBtn,
.comparisonBtn:focus,
.comparisonBtn:visited {
    background-color: #006699;
    border: none;
    border-radius: 5px;
    color: #fff;
    outline: none;
    padding: 15px 50px;
}
.comparisonBtn:active,
.comparisonBtn:hover {
    background-color: #005580;
}

.comparisonBtnSmall,
.comparisonBtnSmall:focus,
.comparisonBtnSmall:visited {
    background-color: #bbb;
    font-size: 15px;
    padding: 3px 25px;
}
.comparisonBtnSmall:active,
.comparisonBtnSmall:hover {
    background-color: #999;
}

/*---------------------------------------- NAV BAR ----------------------------------------*/

.wgNavbar {
    background-color: #fff;
    border: none;
    border-radius: unset;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    height: 95px;
    padding-right: 30px;
}

.wgNavbar .wgLogo {
    background-image: url(../images/logo.png);
    background-size: 309px 60px;
    height: 60px;
    margin: 20px 30px 0;
    width: 309px;
}

.wgNavbar .container-fluid a.navLink,
.wgNavbar .container-fluid a.navLink:active,
.wgNavbar .container-fluid a.navLink:focus {
    color: #005cad;
    font-size: 15px;
    padding: 55px 0 0 1em;
}
.wgNavbar .container-fluid a.navLink:hover {
    color: #00aaf3;
}

.navbar-toggle,
.navbar-toggle:focus {
    background-color: #fff;
    border: 1px solid #00aaf3 !important;
    margin-top: 17px;
    padding: 8px 9px;
}
.navbar-toggle:active,
.navbar-toggle:hover {
    background-color: #eee;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #00aaf3;
    width: 15px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    .wgNavbar {
        height: 70px;
        margin: 0;
        padding-right: 0;
    }

    .wgNavbar .navbar-nav {
        margin: 0px -15px;
    }

    .wgNavbar .wgLogo {
        background-image: url(../images/logo.png);
        background-size: 200px 39px;
        height: 39px;
        margin: 15px 0 0 15px;
        width: 200px;
    }

    .wgNavbar .container-fluid a.navLink,
    .wgNavbar .container-fluid a.navLink:active,
    .wgNavbar .container-fluid a.navLink:focus {
        background-color: #fff;
        border-bottom: 1px solid #555;
        font-size: 18px;
        font-weight: 700;
        padding: 10px 0 10px 15px;
        letter-spacing: 0.1em;
    }

    .navbar-nav {
        margin: 10px -15px;
    }

    .wgNavbar .container-fluid .navbar-collapse {
        border: none;
    }

}

/*---------------------------------------- SECTIONS ----------------------------------------*/

.sectionContainer {
    padding: 70px 0 110px;
}

.sectionContainer h1,
.sectionContainer h2,
.sectionContainer h3 {
    text-align: center;
}

.sectionContainer h4 {
    color: #555;
    text-align: center;
}

.sectionContainer .comparisonBtn {
    margin-top: 10px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    .sectionContainer {
        padding: 30px 0 50px;
    }

    .sectionContainer h4 {
        margin-bottom: 20px;
    }

}

/*----- Extra Small -----*/
@media(max-width: 767px){

    .sectionContainer {
        padding: 40px 10px 55px;
    }

}

/*----- Small -----*/
@media(min-width: 768px) and (max-width: 991px){

    .sectionContainer {
        padding: 45px 0 70px;
    }

}

/*----- Medium -----*/
@media(min-width: 992px) and (max-width: 1199px){

    .sectionContainer {
        padding: 60px 0 100px;
    }

}

/*---------------------------------------- SECTION TOP ----------------------------------------*/

#sectionTop {
    height: 100%;
    position: relative;
}

#sectionTop h1 {
    color: #fff;
    font-size: 45px;
    margin: 7px 0;
}

#sectionTop h2 {
    color: #31659c;
}

#sectionTop #billboardContainer {
    position: relative;
    text-align: center;
    top: 25%;
}

#sectionTop #billboardContainer #billboard {
    background-color: rgba(0,0,0,0.6);
    border: 2px solid #fff;
    border-radius: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 20px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    #sectionTop {
        background-image: url(../images/bg_xs.jpg);
        background-position: right;
        max-height: 800px;
    }

    #sectionTop h1 {
        font-size: 35px;
    }

    #sectionTop #billboardContainer {
        top: 50px;
    }

    #sectionTop #billboardContainer #billboard {
        padding: 15px 20px;
    }

    #menu select {
        font-size: 17px;
    }

}

/*----- Small -----*/
@media(min-width: 768px) and (max-width: 991px){

    #sectionTop h1 {
        font-size: 40px;
    }

}

/*----- Medium -----*/
@media(min-width: 992px) and (max-width: 1199px){

    #sectionTop h1 {
        font-size: 40px;
    }

}

/*---------------------------------------- SECTION ARTICLES ----------------------------------------*/

.article {
    border: 1px solid #ddd;
    display: inline-table;
    font-size: 14px;
    height: 300px;
    line-height: 1.75em;
    margin: 0 5px 10px;
    padding: 15px 10px ;
    width: 250px;
}

.articlePhoto {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    height: 119px;
    width: 228px;
}

.article a {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
}

.articleDate {
    color: #999;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    .article {
        height: auto;
        margin: 0 0 10px;
        width: 100%;
    }

    .articlePhoto {
        height: auto;
        width: 100%;
    }

}

/*---------------------------------------- SECTION ABOUT ----------------------------------------*/

#sectionAbout {
    background-color: #666;
    color: #fff;
}

#sectionAbout h2 {
    color: #fff;
}

/*---------------------------------------- FOOTER ----------------------------------------*/

footer {
    color: #999;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 10px;
    text-align: center;
}

footer a,
footer a:focus,
footer a:visited {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #000;
}
footer a:active,
footer a:hover {
    color: #cc0000;
}

#footer .list-inline > li {
    padding: 0;
}

footer .wgLogo {
    height: 34px;
    margin-bottom: 25px;
    width: 175px;
}

/*----- Extra Small -----*/
@media(max-width: 767px){

    #footer {
        padding: 60px 0 85px;
    }

    #footer .footerInfoLink {
        font-size: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }

}

/*---------------------------------------- VIDEO BACKGROUND ----------------------------------------*/

.fullscreen-bg {
    background-color: #555;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -100;
}

.fullscreen-bg__video {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

@media (min-aspect-ratio: 16/9) {

    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }

}

@media (max-aspect-ratio: 16/9) {

    .fullscreen-bg__video {
        left: -100%;
        width: 300%;
    }

}

/*----- Extra Small -----*/
@media(max-width: 767px){

    .fullscreen-bg {
        display: none;
    }

}
/*---------------------------------------- TRANSITIONS ----------------------------------------*/

.transColor {
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out;
    transition: color 200ms ease-in-out;
}

.transBGColor {
    -webkit-transition: background-color 200ms ease-in-out;
    -moz-transition: background-color 200ms ease-in-out;
    -o-transition: background-color 200ms ease-in-out;
    transition: background-color 200ms ease-in-out;
}

.transBGEnlarge {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

