/*
* ----------------------------------------------------------------------------------------
* GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300i,400,500,700');

body {
    background-color: #8affff;
    font-family: 'Ubuntu', Arial, sans-serif;
    color: #000;
    font-size: 12px;
}

/* Links */
a {
	color: #006080;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
a:hover {
    color: #000;
    text-decoration: underline;
}
a:focus {
    outline: none;
    text-decoration: none;
}

/* Media */
img {
    max-width: 100%;
    width: auto\9;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #006080;
}
b, strong {
    font-weight: 500;
}

/* BG/Colors */
.hightlight {
    color: #006080;
    font-weight: 500;
}

/* Dividers */
hr.space {
    margin: 0;
    height: 15px;
    border: 0;
}

/*
* ----------------------------------------------------------------------------------------
* CONTENT SECTION
* ----------------------------------------------------------------------------------------
*/
.none {
    position: inherit !important;
}
.section {
    background: #fff;
    position: relative;
}
.col-left {
    width: 100%;
    height: 100%;
    background: #8affff;
    text-align: center;
}
.col-right {
    width: 100%;
}
.article {
    padding: 25px 20px;
}
.article h1,
.article h2 {
    font-weight: 700;
    text-transform: uppercase;
}
.article h1 {
    font-size: 30px;
    margin: 25px 0 0;
}
.article h2 {
    font-size: 18px;
    margin: 4px 0 12px;
}
.article h3 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.article h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 25px;
}
.article p strong {
    color: #006080;
}
.article ol li {
    color: #006080;
    font-weight: 500;
}
.article a.itemlink {
    background: #c4ffff;
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    min-height: 90px;
    padding: 10px;
    margin-top: 10px;
    text-transform: uppercase;
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: end!important;
    align-items: flex-end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}
.article a.icon {
    background-repeat: no-repeat;
    background-position: 0 0;
}
.article a.item1 {
    background-image: url(../images/icon-01.png);
}
.article a.item2 {
    background-image: url(../images/icon-02.png);
}
.article a.item3 {
    background-image: url(../images/icon-03.png);
    background-position: right top;
}
.article a.item4 {
    background-image: url(../images/icon-04.png);
}
.article a.item5 {
    background-image: url(../images/icon-05.png);
}
.article a.item6 {
    background-image: url(../images/icon-06.png);
}

/* Language */
.language {
    font-weight: 500;
    padding: 30px 18px;
    text-align: right;
    color: #fff;
}
.language > a {
    display: inline-block;
    color: #000;
    margin: 0 2px;
}
.language > a.active {
    color: #01f9f9;
}

/* Menus */
.menu-bg {
    background: #8affff url(../images/img01.jpg) no-repeat right 0;
    background-size: cover;
    height: 480px;
    overflow: hidden;
}
.navbar-default {
    background: transparent;
    text-align: right;
    border: 0;
    margin-bottom: 0;
}
.navbar-nav>li {
    margin-bottom: 12px;
}
.navbar-default .navbar-nav>li>a {
    display: inline-block;
    background: rgba(255,255,255,0.6);
    color: #000;
    font-weight: 500;
    padding: 4px 22px 4px 8px;
    text-transform: uppercase;
    transition: all 0.5s ease-out;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    background: rgba(255,255,255,0.3);
    text-decoration: none;
}
.navbar-collapse {
    border: 0;
    box-shadow: none;
}
.navbar-toggle {
    float: none;
    border: 0;
    padding: 0;
    margin: 5px 20px 0 0;
}
.navbar-toggler-icon {
    display: inline-block;
    background: url(../images/toggle-icon.png) no-repeat 0 0;
    width: 23px;
    height: 41px;
}
.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover {
    background: transparent;
}

/* Forms */
#contactForm {
    margin-top: 25px;
}
.form-control {
    height: 38px;
    border-radius: 0;
    border-color: #b2b2b2;
    border-width: 2px;
    box-shadow: none;
    resize: none;
}
.submit-btn {
    background: #2d5765;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    border: 0;
    padding: 10px 25px;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease-out;
}
.submit-btn:hover {
    background: #000;
}

/* Back To Top */
.back-to-top {
    background: #006080;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    z-index: 99999;
    display: none;
    -webkit-transition: background-color .3s ease-in-out;
    -moz-transition: background-color .3s ease-in-out;
    -ms-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}
.back-to-top:hover,
.back-to-top:focus {
    background-color: #000;
    color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* Media Queries
* ----------------------------------------------------------------------------------------
*/
@media (min-width: 768px) {
    /* Menu */
    .menu-bg {
        height: 550px;
    }
    .navbar-nav {
        margin-top: 45px;
    }
    .navbar-nav>li {
        float: none;
        display: block;
    }

    /* Content */
    .col-left {
        position: absolute;
        float: left;
        width: 41.66666667%;
        padding-bottom: 50px;
    }
    .col-right {
        float: right;
        width: 57%;
    }
    .article {
        padding: 0 30px 50px 20px;
    }   
}

@media (min-width: 992px) {
    /* Menu */
    .menu-bg {
        height: 700px;
    }

    /* Content */
    .col-left {
        position: absolute;
        float: left;
        width: 33.33333333%;
        padding-bottom: 50px;
    }
    .col-right {
        float: right;
        width: 66%;
    }
}

@media (max-width: 768px) {
    /* Menus */
    .menu-bg {
        background-size: inherit;
    }

    /* Content */
    .article h1 {
        margin-top: 0;
    }
}