/**************************/
/*********General**********/
/**************************/

body {
    color: #414141;
    -webkit-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #414141;
}

h1 small {
    font-weight: 300;
}

h1 small small {
    font-size: 90%;
}

h1 small small a {
    cursor: pointer;
}

a {
    color: #396C81;
}

.isotope-container {
    opacity: 0;
}

.rotate {
    -webkit-animation: spin 3s infinite linear;
    animation: spin 3s infinite linear;
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}
@keyframes spin {
    100% {
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}
    
.lead {
    font-size: 23px;
    font-weight: 200;
}

.menu-bar {
    float: right;
    margin-top: 10px;
}

.social-icons {
    float: left;
    margin-top: 5px;
}

.social-icons a {
    color: #444;
    font-size: 20px;
}

.social-icons a:hover {
    color: #396C81;
}

.header {
    margin-top: 7px;
    margin-bottom: 20px;
    clear: both;
}

.field-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.film-element {
    margin-bottom: 20px;
    max-width: 100%;
}

.film-element img {
    max-width: 100%;
}

.film-title {
    color: #777;
    font-weight: 300;
}

.modal-dialog {
    width: 808px;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.timeline {
    border-left: 3px solid #eee;
    margin-left: 0;
}

.timeline ul {
    padding: 0;
    list-style: none;
}

.timeline h2 {
    margin: 0;
}

.timeline h2 small {
    display: block;
    text-align: right;
    margin-top: 10px;
}

.circle {
    background-color: #396C81;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    float: left;
    margin-left: -24px;
    margin-right: 12px;
    margin-top: 9px;
}

.form-success {
    position: fixed;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 999;
}

/**************************/
/*******Contact Form*******/
/**************************/

.form-control,
.form-control:hover,
.form-control:focus,
.form-control:active {
    border: 0;
    box-shadow: none;
    padding: 0;
    border-top: 1px solid #414141;
    border-radius: 0;
}

.form-control {
    font-size: 25px;
}

label {
    position: absolute;
    top: -13px;
    left: 0;
    font-size: 11px;
    color: #aaa;
    transition: all 0.1s linear;
    opacity: 0;
    font-weight: bold;
}

label.on {
    color: #396C81;
}

label.show {
    top: -18px;
    opacity: 1;
}

textarea {
    resize: none;
}

.btn-submit {
    border: none;
    border-radius: 0;
    background-color: #396C81;
    color: white;
    font-size: 20px;
}

.btn-submit:hover {
    background-color: #414141;
    color: white;
}

.btn-detail {
    border: none;
    border-radius: 0;
    background-color: #396C81;
    color: white;
    font-size: 15px;
}

.btn-detail:hover {
    background-color: #414141;
    color: white;
}

.cmsmap {
    width: 100%;
    height: 225px;
}

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

/* General styles for all menus */
 
.cbp-spmenu {
    background: #396C81;
    position: fixed;
}

.cbp-spmenu img {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
 
.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 400;
}
 
.cbp-spmenu a:hover {
    background: #414141;
    color: #fff;
    text-decoration: none;
}
 
.cbp-spmenu a:active {
    background: #414141;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #fff;
}
 
/* Orientation-dependent styles for the content of the menu */
 
.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000;
}
 
.cbp-spmenu-vertical a {
    padding: 1em;
}
 
/* Vertical menu that slides from the left or right */
 
.cbp-spmenu-right {
    right: -240px;
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0px;
}
 
 
/* Push classes applied to the body */
 
.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0;
}
 
.cbp-spmenu-push-toleft {
    left: -240px;
}
 
/* Transitions */
 
.cbp-spmenu,
.cbp-spmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*************************/
/*******Menu Icon*********/
/*************************/

.menu-icon {
    padding: 10px;
    padding-right: 15px;
    display: block;
    cursor: pointer;
    margin-left: 83px;
}

.menu-icon.toggle:before, .menu-icon.toggle:after {
    opacity: 0;
}

.menu-icon.toggle .line {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-icon.toggle .line:before {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.menu-icon .line {
    width: 2.3rem;
    height: 2px;
    background: #414141;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-icon .line:before {
    content: "";
    width: 2.3rem;
    height: 2px;
    background: #414141;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-icon:before, .menu-icon:after {
    content: "";
    width: 2.3rem;
    height: 2px;
    background: #414141;
    display: block;
    margin-bottom: 0.7rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-icon:after {
    margin-top: 0.7rem;
}

.logo-bar {
    margin-top: 0;
}

/**************************/
/****Responsive Queries****/
/**************************/

@media (min-width: 768px) {
    .menu-icon {
        padding-right: 10px;
    }
}

@media (min-width: 1036px) {
    .logo-bar {
        margin-top: -33px;
    }
    
    .menu-bar {
        margin-top: 18px;
    }
}

@media (min-width: 1200px) {  
    .modal-dialog {
        width: 975px;
    }
}