html {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    height: 100%;
    background-image: url(../images/background.jpg);
    background-position: left;
    background-size: 100% auto;
    float: left;
}

*{box-sizing: border-box}

#wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#pageContainer {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top:-150px;
    padding-top:150px;
    padding-bottom: 0;
    overflow-x: hidden;
    box-sizing: content-box;
}

header{
    position: relative;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    background-color: #fff;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #656565;
    text-align: center;
}

#content{
    position: relative;
    margin-top: -60px;
    margin-bottom: 150px;
    z-index: 2;
}

/********************************/
/**************Divs**************/
/********************************/
#header-style{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.whiteshape-container{
    position: absolute;
    left: 0;
    top: 99px;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.whiteshape{
    width: 90%;
    max-width: 800px;
    pointer-events: none;
}

.orangeshape{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.header-logo{
    position: relative;
    width: 100%;
    height: 100px;
    text-align: center;
    background-color: #fff;
    z-index: 3;
}

.logo{
    height: 140px;
    margin: 20px auto 0;
}

.text-orange{
    margin: 20px 0 20px 0;
    padding: 1px 15px 15px;
    background-color: #e48c42;
    /*border-radius: 23px;*/
    text-align: right;
    color: #fff;
}

.sublogo{
    width: 100%;
    border: solid 15px #fff;
    /*border-radius: 20px;*/
}

.text-intro{
    margin: 0 0 20px;
}

.text-intro h1{
    color: #355ca1;
}

.subimg{
    margin: 30px 0 0 0;
    width: 100%;
    padding-bottom: 100%;
    /*border-radius: 25px;*/
    background-position: center;
    background-size: cover;
    /*cursor: pointer;*/
}

.footer-logo{
    margin-top: -70px;
    width: 150px;
}

footer p{
    margin: 0;
    color: #fff;
}

.galleryItem {
    margin-bottom: 30px;
}

/********************************/
/**********Other Pages***********/
/********************************/


/********************************/
/**************Menu**************/
/********************************/

#nav{
    position: relative;
    z-index: 8;
    display: none;
}

#nav ul{
    margin: 0;
    padding: 20px 12% 30px;
    background-color: #355ca1;
    list-style: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#nav ul li{
    margin: 0;
    width: 100%;
    height: 34px;
    line-height: 34px;
    text-align: right;
    border-top: solid 1px #627aa4;
}

#nav ul li:first-of-type{
    border: none;
}

#nav ul li a{
    font-family: 'Droid Sans', sans-serif;
    color: #fff;
}

#nav ul .current-page a{
    color: #e48c42;
}

#but-menu{
    display: none;
}

#nav-desktop{
    position: relative;
    z-index: 8;
}

#nav-desktop ul{
    margin: 20px 0;
    padding: 20px 0 30px;
    background-color: #355ca1;
    list-style: none;
    /*border-radius: 20px 20px 20px 20px;*/
}

#nav-desktop ul li{
    position: relative;
    margin: 0;
    width: 100%;
    padding-right: 20px;
    min-height: 34px;
    line-height: 34px;
    text-align: right;
    border-top: solid 1px #627aa4;
}

#nav-desktop ul li:first-of-type{
    border: none;
}         

#nav-desktop ul li ul {
    display: none;
}

/*
#nav-desktop ul li.active ul {
    display: block;
} 
*/

#nav-desktop ul li:hover ul {
    display: block;
}     

#nav-desktop ul li ul {
    position: absolute;
    top: 0px;
    right: -180px;
    margin: 0px 0;
    padding: 0;
    width: 200px;
    list-style: none;
    border: 0;
}

#nav-desktop ul li ul li{
    margin: 0;
    width: 100%;
    padding-right: 20px;
    height: 34px;
    line-height: 34px;
    text-align: right;
    border: 0;
}

#nav-desktop ul li a{
    font-family: 'Droid Sans', sans-serif;
    color: #fff;
}

#nav-desktop ul .current-page a{
    color: #e48c42;
}

#nav-desktop ul li ul li a {
    font-size: 15px !important;
}

/********************************/
/**************Heads*************/
/********************************/

h1{
    font-family: 'Droid Sans', sans-serif;
    font-size: 23px;
    font-weight: bold;
}

h2{
    font-family: 'Droid Sans', sans-serif;
    font-size: 15px;
    font-weight: bold;
}

/********************************/
/************Paragraphs**********/
/********************************/

p, #content table tr td{
    font-family: 'Droid Sans', sans-serif;
    font-size: 15px;
    line-height: 23px;
}

p2{
    font-family: 'Droid Sans', sans-serif;
    font-size: 10px;
    font-style: italic;
}

#content table tr td {
    padding-right: 20px;
}

.text-intro a {
    text-decoration: underline !important;
}

.text-intro img {
    max-width: 100%;
    height: auto;
}

/********************************/
/**************Buttons***********/
/********************************/

a, a:hover, a:link, a:visited, a:link:active, a:visited:active{ 
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/********************************/
/**************Sliders***********/
/********************************/

#slider{
    position: absolute;
    left: -1px;
    top: -1px;
    width: 101%;
    height: 100%;
    z-index: 1;
}

#slider .slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center 33%;
    /*background-size: cover;*/
    display: none;
}

/********************************/
/***********Mobile Divs**********/
/********************************/

/********************************/
/***********Mobile Menu**********/
/********************************/

img.facebook {
    width: 25px;
}

@media only screen and (min-width: 768px) {
    /* ANIMATIONS */
    
    #nav-desktop ul li{
        transition: padding 0.400s;
    } 
    
    /*
    #nav-desktop ul li:hover{
        padding-right: 7px;
    }
    */
    
    /*
    .subimg:hover{
        transition: all 0.200s;
        transform: scale(1.03,1.03);
    }
    */
}

@media only screen and (max-width: 767px) {
    
    header{
        height: 450px;
        max-width: 100%;
        margin: 0;
    }
    
    #slider .slide {
        width: 100%;
        height: 450px;
        background-position: center center;
    }
    
    .whiteshape-container{
        display: none;
    }
    
    .whiteshape{
        display: none;
    }
    
    .orangeshape{
        display: none;
    }
    
    .logo{
        float: left;
        margin: 10px 20px;
        height: 80px;
    }
    
    #nav-desktop{
        display: none;
    }
    
    #nav{
        display: initial;
        position: absolute;
        float: left;
        left: 0;
        top: 100px;
        margin: 0;
        width: 100%;
        height: auto;
        padding: 0;
        z-index: 8;
    }
    
    #nav ul{
        height: 0px;
        padding: 0;
        overflow: hidden;
    }
    
    #nav ul li{
        display: table;
        margin: 0 0;
        width: 100%;
        height: 30px;
        line-height: 30px;
        text-align: center;
    }
    
    #nav ul li a {
        font-weight: bold;
    }
    
    #nav ul li ul li a {
        font-weight: normal;
    }
    
    #but-menu{
        display: initial;
        position: absolute;
        right: 20px;
        top: 50px;
        width: 40px;
        cursor: pointer;
        z-index: 3;
    }
    
    #content{
        margin-top: 0;
    }
      
}

@media only screen and (max-width: 400px) {
    

}