/*Colors*/

.bg-blue-js{
    background-color: #00396f;
}

.bg-red-js{
    background-color: #b72831;
}

.bg-light-blue-js{
    background-color: #00abc8;
}

.bg-grey-js{
    background-color: #f2f2f2;
}

.bg-yellow-js{
    background-color: #f5a41a;
}

.color-blue-js{
    color: #00396f;
}

.color-red-js{
    color: #b72831;
}

.color-light-blue-js{
    color: #00abc8;
}

.color-grey-js{
    color: #f2f2f2;
}

.color-yellow-js{
    color: #f5a41a;
}

.color-white-js{
    color: #FFFFFF;
}

/* Loader */
body.loader-active{
    overflow: hidden !important;
}
section#loader{
    visibility: visible;
    opacity:1;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    height: 0%;
    width: 0%;
    position: relative;
    top:0;
    z-index: 1000000;
}
section#loader.loader-hide{
    visibility: hidden;
    opacity:0;
    z-index: -1;
}
section#loader .loader-overlay {
    background-color: rgba(0, 171, 200, 0.97);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1000001;
    top: 0;
    left: 0;
}
section#loader .loader-overlay svg.mainSVG {
    width: 100%;
    height: 100%;
    visibility: hidden;
}


/* Titulos Landings */
.land-titles {
    font-size: 40px;
    font-weight: 900;
    margin-top: 40px;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}

span.land-title-1 {
    color: #00396f;
}

span.land-title-2{
    color: #00abc8;
}

.land-titles:before {
    content: "";
    border: 2px solid #00396f;
    position: absolute;
    width: 80px;
    top: calc(50% - 1px);
    left: 0;
}

.land-titles:after {
    content: "";
    border: 2px solid #00396f;
    position: absolute;
    width: 80px;
    top: calc(50% - 1px);
    right: 0;
}

span.land-subtitle {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
}

.img-banner-landing {
    width: 100%;
}

@media (max-width: 1200px) {
    .land-titles:before,
    .land-titles:after {
        display: none;
    }

    .land-titles {
        font-size: 30px;
        font-weight: 900;
        margin-top: 30px;
        padding-left: 0px;
        padding-right: 0px;
        line-height: 1;
        text-transform: uppercase;
    }
}