﻿/********* RESET **********/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
}

body {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    /*height: 100vh;*/
    background: url(../images/bg-body.jpg) center no-repeat;
    background-size: cover;
    background-color: #001d31;
}

@media screen and (max-width: 479px) {
    body{
        padding-bottom: 20px;
        height: 100%;
    }
}

@media screen and (max-width: 719px) {
    .banner{
        display: none;
    }
}

@media screen and (min-width: 480px) {
    body{
        height: 96vh;
    }
}

.logo {
    margin-top: 30px;
    display: block;
    width: 100%;
    /*position: absolute;*/
    text-align: center;
}

.title {
    padding: 60px 0 15px;
    margin-bottom: 100px;
    display: block;
    background: url(../images/border.png) center bottom no-repeat;
    cursor: default;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.container {
    text-align: center;
}

.box {
    margin: 0 10px;
    margin-bottom: 20px;
    padding: 15px;
    display: inline-block;
    width: 240px;
    background: rgba(3, 106, 166, .5);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

    .box:hover {
        -webkit-filter: brightness(1.3);
        -moz-filter: brightness(1.3);
        filter: brightness(1.3);
    }

.button {
    margin-top: 20px;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 5px;
    background: #ffc837;
    background: -moz-linear-gradient(top, #ffc837 0%, #ff8008 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffc837), color-stop(100%,#ff8008));
    background: -webkit-linear-gradient(top, #ffc837 0%,#ff8008 100%);
    background: -o-linear-gradient(top, #ffc837 0%,#ff8008 100%);
    background: -ms-linear-gradient(top, #ffc837 0%,#ff8008 100%);
    background: linear-gradient(to bottom, #ffc837 0%,#ff8008 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc837', endColorstr='#ff8008',GradientType=0 );
    /*text-align: center;*/
    font-size: 15px;
    color: #01426f;
    text-transform: uppercase;
    font-weight: bold;
}

.banner {
    width: 100%;
    position: absolute;
    bottom: 5%;
    left: 0;
    text-align: center;
}

    .banner img {
        max-width: 90%;
        border: 3px solid rgba(255, 255, 255, .2);
        outline: 1px solid rgba(255, 255, 255, .4);
    }

}



/*@media screen and (max-width: 418px) {
    body {
        padding-bottom: 200px;
    }

    .title {
        margin-bottom: 40px;
        padding: 50px 20px 15px;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    body {
        padding-bottom: 550px;
    }

    .title {
        margin-bottom: 40px;
        padding: 50px 20px 15px;
    }
}

@media screen and (min-width: 600px) and (max-width: 768px) and (orientation: landscape) {
    body {
        padding-bottom: 300px;
    }
}*/

