html, body {
    color: #333;
} 

#lg-outer { 
    background-color: rgba(0,0,0,0.7);
}
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95) !important;
}
 
body {
    font-family: 'open_sansregular';
}

h1 {
    font-size: 22px;
    font-family: 'open_sanslight';
}
 
h2 {
    font-size: 20px;
    font-family: 'open_sanslight';
}

h3 {
    font-size: 18px;
    font-family: 'open_sanslight';
}

h3 {
    font-size: 16px;
    font-family: 'open_sanslight';
}

a {
    color: inherit;
    text-decoration: none
}

a:hover { 
    color: inherit;
}



.bt-1 {
    display: inline-block;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    padding: 10px 30px; 
    border-radius: 1px; 
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-weight: lighter;
    transition: all 0.3s ease-in-out 0s;
}

.bt-1-small {
    padding: 10px 10px;
}

.bt-1:hover {
    background-color: #ccc;
    color: #000;
}

.bt-2 {
    display: inline-block;
    background-color: #333;
    font-size: 14px;
    color: #fff;
    padding: 10px 30px; 
    border-radius: 1px; 
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-weight: lighter;
    transition: all 0.3s ease-in-out 0s;
}

.bt-2-small {
    padding: 10px 10px;
}

.bt-2:hover {
    background-color: #000;
    color: #ccc;
}

.bt-3 {
    background-color: #BB0808;
    font-size: 14px;
    color: white;
    padding: 20px 10px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-weight: lighter;
    transition: all 0.3s ease-in-out 0s;
    font-size: 17px;
    font-weight: bold;
}

.bt-3-small {
    padding: 10px 10px;
}

.bt-3:hover {
    background-color: red;
}

.bt-1.enviando, .bt-2.enviando, .bt-3.enviando {
    opacity: 0.5;
}

.bt-1.enviando:before, .bt-2.enviando:before, .bt-3.enviando:before {
    content: '\e817';
    font-family: "icon";
    font-style: normal;
    font-weight: normal;
    speak: none;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    -moz-animation: spin 3s infinite linear;
    -o-animation: spin 3s infinite linear;
    -webkit-animation: spin 3s infinite linear;
    animation: spin 3s infinite linear;
    display: inline-block;
}

.menu a {
    
    display: block;
    width: calc(100% / 5);
    float: left;
    position: relative;
    color: white;
    padding: 20px 0;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;

    
}

.menu a:hover:not(.selected) {
    color: #008aff;
}
.menu a.selected {
    color: white;
    background-color: #008aff;
}

.menu a.selected {
    color: white;
    background-color: #008aff;
}

.menu a.selected::before {
    background-color: #008aff;
}

.menu a::before {
    
    width: 1px;
    height: 13px;
    background-color: rgba(255,255,255,0.6);
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 2;
    display: block;
    content: '';
    
}

.menu a:last-child::before {
    display: none;
}

.banner img {
    
    display: block;
    /*width: 100%;
    margin: 0 auto;
    max-width: 1920px;*/
    
}

.swiper-container-horizontal > .swiper-pagination-bullets {

    bottom: 0;

}

input, select, textarea {
    background-color: #f5f5f5;
    border: 1px solid #c9c9c9; 
    color: #333333;
    font-size: 15px;
    border-radius: 2px;
    font-family: open_sansregular; 
    height: 34px;
}

.inputtext {
    padding: 7px 10px; 
    resize: none;
    transition: all 0.5s ease-in-out 0s;
    width: 100%; 
    margin-bottom: 10px;
    font-family: open_sanslight;
}

.inputtext option {
    
}

.inputtext:focus {
    background-color: rgba(30, 45, 111, 0.14);
    border: 1px solid #008aff;
    box-shadow: 0 0 3px rgba(30, 45, 111, 0.14);
}



.box {
    position: relative;
    width: 100%;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

.box:before {
    content: "";
    display: block;
    padding-top: 100%; /* 1:1*/
}

.ratio2_1:before {
    padding-top: 50%;
}

.ratio1_2:before {
    padding-top: 200%;
}

.ratio4_3:before {
    padding-top: 75%;
}

.ratio16_9:before {
    padding-top: 56.25%;
}