/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	
	--  01. Basic
	--  02. Preloader
    --  03. Background Content
    --  04. Navigation
    --  05. Section
 
 
 ******************************************************************/




/** 1. Basic
*******************************************************************/

html
{
    font-size: 10px;
}

body
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: normal;

    color: #fff;
    background: #fff;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;

    letter-spacing: 0;

    color: #fff;
}

h1
{
    font-size: 5rem;
}

h2
{
    font-size: 4rem;
}

h3
{
    font-size: 3.5rem;
}

h4
{
    font-size: 3rem;
}

h5
{
    font-size: 2.5rem;
}

h6
{
    font-size: 2rem;
}

p
{
    font-size: 1.5rem;
    line-height: 1.74em;

    letter-spacing: .02em;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
    text-decoration: none;
}

a:hover
{
    color: #111;
}

@media (max-width:600px)
{
    html
    {
        font-size: 8px;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 7px;
    }
}



/** 2. Preloader
*******************************************************************/

.preloader
{
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;

    background: #fff;
}

.preloader.hide-preloader
{
    height: 0;
    
    -webkit-transition: .8s ease .3s;
         -o-transition: .8s ease .3s;
            transition: .8s ease .3s;
}

.preloader .spinner
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;

    -webkit-animation: spinner-pulse .6s infinite ease-in-out;
            animation: spinner-pulse .6s infinite ease-in-out;
    text-align: center;

    opacity: 1;
    border-radius: 100%;
    background-color: #111;
}

.preloader.hide-preloader .spinner
{
    opacity: 0;
    
    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
}

@-webkit-keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);

        opacity: 0;
    }
}

@keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);
                transform: scale(1.0);

        opacity: 0;
    }
}



/** 3. Background Content
*******************************************************************/

.background-content
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 50%;

    overflow: hidden;

    width: 100%;
    height: 100%;

    -webkit-transform: translate3d(-50%,0,0) !important;
            transform: translate3d(-50%,0,0) !important;
}

.background-content-inner
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 110%;
    height: 110%;

    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.background-content .background-img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}



/** 4. Navigation
*******************************************************************/

.navigation-main
{
    position: fixed;
    z-index: 100 !important;
    top: 0;

    width: 100%;
    height: 75px;
    padding: 0 30px;

    border-bottom: 1px solid rgba(0,0,0,.12);
    background: #fff;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.14);
            box-shadow: 0 0 6px 0 rgba(0,0,0,.14);
}

.navigation-main .container-fluid
{
    max-width: 960px;
}

.navigation-main .navbar-collapse
{
    width: 100%;
}

.navigation-main .navbar-brand
{
    padding: 0;
}

.navigation-main .navbar-brand img
{
    position: absolute;
    top: 50%;

    max-height: 44px;
    margin: 0;
    padding: 0;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.navigation-main button
{
    font-size: 28px;

    margin-right: 0;

    color: #000;
}

.navigation-main ul
{
    margin: 0;
    padding: 0;

    list-style: none;
}

.navigation-main ul li a,
.navigation-main ul li span
{
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 75px;

    display: block;

    margin: 0;
    padding: 0 15px;

    cursor: pointer;
    -webkit-transition: all .1s  linear;
         -o-transition: all .1s  linear;
            transition: all .1s  linear;
    letter-spacing: .096em;
    text-transform: uppercase;

    color: #000;
    background: none !important;
}

.navigation-main ul li a:hover,
.navigation-main ul li span:hover,
.navigation-main ul li.current a
{
    color: #13bbbd;
}



/** MEDIA QUERIES  **/

@media (max-width: 1000px)
{
    .navigation-main ul li a,
    .navigation-main ul li span
    {
        padding: 0 10px;
    }

    .navigation-main .container-fluid
    {
        padding: 0;
    }

    .navigation-main
    {
        padding: 0;
    }

    .navbar-header
    {
        padding: 0 24px;
    }
}

@media (min-width: 841px)
{
    .navigation-main .dropdown:hover .dropdown-menu
    {
        display: block;
    }
}

@media (max-width: 840px)
{
    .navigation-main
    {
        height: 60px;
    }

    .navbar-header
    {
        float: none;

        margin: 0 !important;
    }

    .navbar-toggle
    {
        line-height: 60px;

        display: block;

        margin-top: -4px !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .navbar-collapse
    {
        margin: 0 !important;
        padding: 0;

        border-top: 1px solid transparent;
        background: #fff;
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
                box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    }

    .navbar-collapse.collapse
    {
        display: none!important;
    }

    .navbar-nav
    {
        float: none!important;

        margin: 7.5px -15px;
        padding-top: 15px !important;
        padding-bottom: 26px !important;
    }

    .navbar-nav > li
    {
        float: none;
    }

    .navbar-nav > li > a
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-text
    {
        float: none;

        margin: 15px 0;
    }

    .navbar-collapse.collapse.in
    {
        display: block !important;
    }

    .collapsing
    {
        overflow: hidden !important;
    }

    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 60px !important;

        padding-left: 40px !important;
    }

    .navbar-nav .open .dropdown-menu
    {
        position: static;

        float: none;

        width: auto;
        margin-top: 0;
        padding: 0;

        border: 0;
        background-color: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu > li > a
    {
        padding: 0;
    }
}

@media (max-height: 840px) and (max-width: 840px)
{
    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 44px !important;
    }

    .navigation-main
    {
        height: 60px;
    }

    .navigation-main .navbar-brand img
    {
        max-width: 120px;
    }
}

@media (max-height: 600px) and (max-width: 840px)
{
    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 34px !important;
    }
}



/** 5. Section
*******************************************************************/

section
{
    position: relative;

    margin: 0 auto;
    padding: 16rem 0;

    background: rgba(45, 45, 45, .86);
}

section.white
{
    position: relative;

    background: #fff;
}

section.link-route
{
    position: relative;

    padding: 2.5rem 0;
}

section.white h1,
section.white h2,
section.white h3,
section.white h4,
section.white h5,
section.white h6
{
    color: #000;
}

section.white p,
section.white a,
section.white span
{
    color: #333;
}

section:last-of-type
{
    padding-bottom: 20rem;
}

section .container-fluid
{
    max-width: 980px;
}

section .headline
{
    line-height: 1.4em;

    margin-top: 0;
    margin-bottom: .9em;
}

@media (max-width:768px)
{
    section .headline br
    {
        display: none;
    }
}
