﻿html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    color: #000;
    background-color: #000;
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}
h1 {
    margin: 0 0 45px;
}

h2,h3 {
    margin: 0 0 20px;
    color: #e99a57;
    font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {        
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;    
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;    
}

a {
    color: #000;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: grey;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.5);
    background-color: #000;
}

.navbar-custom .navbar-brand {
    position: relative;
    margin-top: -10px;
}

.navbar-custom .navbar-brand .container {
    width: 150px;
    height: 150px;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar-custom .navbar-brand .container .logo-big {
    width: 100%;
}

.navbar-custom .navbar-brand .container .logo-wide {
    display: none;
}

.navbar-custom .navbar-brand .container div {
    width: 170px;
    height: 85px;
    margin-left: -10px;
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0 !important;
    border-radius: 0 0 75px 75px;
    z-index: -1;
    transition: all .2s ease-in-out;
}


.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #000;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(0,0,0,.4);
    background-color: transparent;
    cursor: pointer;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}

.navbar-custom .nav a.btn-cta-secondary {
    background: rgba(233, 154, 87, 0.2) none repeat scroll 0 0;
    border: 2px solid #FFF;
    color: #FFF;
    margin-top: 5px;
    padding: 8px 10px;
}

.navbar-custom .nav a.btn-cta-secondary:hover {
    background: rgba(233, 154, 87, 1) none repeat scroll 0 0;
    border: 2px solid #E99A57;
    color: #FFF;
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100% !important;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.btn-default {
    border: 1px solid #EA8133;
    color: #EA8133;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #EA8133;
    outline: 0;
    color: #000;
    background-color: #EA8133;
}


footer {
    padding: 25px 0;
    background-color: #554A3D;
}

footer p {
    margin: 0;
    font-size: 16px !important;
    color: #B4A397;
}

footer a {
    color: #B4A397;
}


/*::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}*/



@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }

    .navbar-custom {
        padding: 0px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
    }

    .navbar-custom.top-nav-collapse .nav a.btn-cta-secondary {
        background: rgba(233, 154, 87, 1) none repeat scroll 0 0;
        border: 2px solid rgba(233, 154, 87, 1);
        color: #FFF;
        margin-top: 5px;
        padding: 8px 10px;
    }

    .navbar-custom.top-nav-collapse .nav a.btn-cta-secondary:hover {
        background: #d35a01 none repeat scroll 0 0;
        border: 2px solid #E99A57;
        color: #FFF;
    }

    .navbar-custom.top-nav-collapse .navbar-brand {
        position: relative;
        margin-top: 0px;
        padding: 3px;
    }

    .navbar-custom.top-nav-collapse .navbar-brand .container {
        height: 100%;
        padding: 3px;
        position: inherit;
    }

    .navbar-custom.top-nav-collapse .navbar-brand .container .logo-wide {
        height: 100%;
        width: auto;
        display: inline;
    }

    .navbar-custom.top-nav-collapse .navbar-brand .container .logo-big {
        display: none;
    }

    .navbar-custom.top-nav-collapse .navbar-brand .container div {
        display: none;
    }
    .img-title {
        padding-bottom: 15px;
    }
}

@media(max-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }

    .navbar-custom {
        letter-spacing: 1px;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom .nav a.btn-cta-secondary {
        background: rgba(233, 154, 87, 1) none repeat scroll 0 0;
        border: 2px solid rgba(233, 154, 87, 1);
        color: #FFF;
        margin: 5px;
        padding: 8px 10px;
    }

    .navbar-custom .nav a.btn-cta-secondary:hover {
        background: #d35a01 none repeat scroll 0 0;
        border: 2px solid #E99A57;
        color: #FFF;
    }

    .navbar-custom .navbar-brand .container {
        height: 100%;
        padding: 3px;
        position: inherit;
    }

    .navbar-custom .navbar-brand .container .logo-wide {
        height: 100%;
        width: auto;
        display: inline;
    }

    .navbar-custom .navbar-brand .container .logo-big {
        display: none;
    }

    .navbar-custom .navbar-brand .container div {
        display: none;
    }

    .navbar-brand.page-scroll {
        padding: 5px 0px 0px 0px;
    }

    .navbar-custom .navbar-brand {
        margin-top: 0px;
        margin-left: 5px;
    }
    .img-title {
        padding-bottom: 15px;
    }
}


.form-control:focus {
    border-color: #EA8133;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(234, 129, 51, 0.6);
    outline: 0 none;
}



section a.btn-cta-secondary {
    background: rgba(233, 154, 87, 0) none repeat scroll 0 0;
    border: 2px solid #EA8133;
    border-radius: 7px 7px 7px 7px;
    color: #EA8133;
    margin-top: 5px;
    padding: 8px 40px;
    font-size: 18px;
}

section a.btn-cta-secondary:hover {
    background: rgba(233, 154, 87, 1) none repeat scroll 0 0;
    border: 2px solid #E99A57;
    color: #FFF;
}
#alert-container
{
    text-align:left;
}
.form-group .help-block 
{       
}