
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.grecaptcha-badge{
    z-index: 9999999;
}
.text-muted {
    font-size: 12px;
    padding: 3px;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.text-danger{
    color: #f70c22;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
    background: #000;
}

#preloader:before {
    content: "";
    position: fixed;
    z-index: 9999999;
    top: calc(50% - 150px);
    left: calc(50% - 240px);
    background-image: url(../img/load.gif);
    width: 400px;
    height: 300px;
}
.text-center{
    text-align: center;
}
label{
    font-size: 13px;
    font-weight: bold;
}
label.error{
    color: #b91b2a;
    margin-top:-15px;
    font-size: 12px;

}
#callnowbutton{
    display: none;
}
input.error, select.error, textarea.error{
    border: 2px solid darkred;
}
.swal-wide{
    width:100%;
    font-size:12px;
}
html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
h1{
    font-weight: 700;
}
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
hr {
    width:90px;
    border: 2px solid crimson; 

}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
p {
    color: black;
    font-size: 1.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: .05rem;
}
.titulos {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}
.titulos span {
    color: crimson;
}

.cta {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #fff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}
.cta:hover {
    color: white;
    background-color: rgba(01,00,019,9);
}
.cta2 {
    display: inline-block;
    padding: 10px 10px;
    color: black;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid ;
    border-radius: 20px;
    font-size: 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    margin-left: 41px;
    transition-property: background-color, color;
}
.cta2:hover {
    color: white;
    background:rgba(01,00,69,9); 
}
.fs{
    font-size: 13px; 
    font-weight: bold
}
.cta3 {


    display: inline-block;
    padding: 2px 2px;
    color: white;
    font-weight: bold;
    border: 2px solid ;
    border-radius: 10px;
    font-size: 1.2rem;
    background:rgba(01,00,69,9); 
    transition: .3s ease;
    cursor: pointer;

}
.cta3:hover {
    color: white;
    background:rgba(01,00,69,9); 
}
.logo h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
}
.logo h1 span {
    color: crimson;
}

/* Inicio Sección header */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}
#header .header {
    min-height: 8vh;
    background-color: rgba(31, 30, 30, 0.24);
    transition: .3s ease background-color;
}
#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}
#header .menucel ul {

    list-style: none;
    position: absolute;
    background-color: rgb(31, 30, 30);
    width: 100%;
    height: 100vh;
    left: 150%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
#header .menucel ul.active {
    left: 0%;
}
#header .menucel ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    display: block;
}
#header .menucel ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .menucel ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .menucel ul li:hover a {
    color: crimson;
}
#header .hamburguesa {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px;
}
#header .hamburguesa:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburguesa_puls 1s ease infinite;
}
#header .hamburguesa .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}
#header .hamburguesa .bar::after,
#header .hamburguesa .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top, bottom;
}
#header .hamburguesa .bar::after {
    top: 8px;
}
#header .hamburguesa .bar::before {
    bottom: 8px;
}
#header .hamburguesa.active .bar::before {
    bottom: 0;
}
#header .hamburguesa.active .bar::after {
    top: 0;
}
/* Fin Sección Header */

/* Inicio Sección banner*/
#cabecera {
    background-image: url(../img/bn1.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}
#cabecera::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .7;
    z-index: -1;
}
#cabecera .cabecera {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
}
#cabecera h1 {
    display: block;
    font-weight: bold;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1s;
}
#cabecera h1:nth-child(1) {
    animation-delay: 1s;
}
#cabecera h1:nth-child(2) {
    animation-delay: 2s;
}
#cabecera h1:nth-child(3) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 3s;
}
#cabecera h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: crimson;
    animation: text_reveal_box 1s ease;
    animation-delay: .5s;
}
#cabecera h1:nth-child(1) span {
    animation-delay: .5s;
}
#cabecera h1:nth-child(2) span {
    animation-delay: 1.5s;
}
#cabecera h1:nth-child(3) span {
    animation-delay: 2.5s;
}

/* Fin Sección Banner */

/* Inicio Sección Servicios */
#servicios .servicios {
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}
#servicios .servicios-top {
    max-width: 500px;
    margin: 0 auto;
}
#servicios .servicios-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
#servicios .servicios-item {
    flex-basis: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#servicios .servicios-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: .85;
    z-index: -1;
}
#servicios .servicios-bottom .icon {
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
}
#servicios .servicios-item h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}
#servicios .servicios-item p {
    color: white;
    text-align: left;
}
/* Fin Sección Servicios */

/* Inicio Sección Proyectos */
#proyectos .proyectos {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}
#proyectos .proyectos-header h1 {
    margin-bottom: 50px;
}
#proyectos .all-proyectos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#proyectos .proyectos-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}
#proyectos .proyectos-info {
    padding: 30px;
    flex-basis: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
}
#proyectos .proyectos-info h1 {
    font-size: 4rem;
    font-weight: 600;
}
#proyectos .proyectos-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10px;
}
#proyectos .proyectos-info p {
    color: white;
}
#proyectos .proyectos-img {

    height: 300px;
    width: auto;
    overflow: hidden;
    position: relative;

}
#proyectos .proyectos-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: .17;
}
#proyectos .proyectos-img img {
    transition: .3s ease transform;
}
#proyectos .proyectos-item:hover .proyectos-img img {
    transform: scale(1.02);
}
/* Fin Sección proyectos */

/* Inicio Sección acerca de */
#acercade .acercade {
    flex-direction: column-reverse;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
#acercade .col-left {
    width: 250px;
    height: 360px;
}
#acercade .col-right {
    width: 100%;
}
#acercade .col-right h2 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .2rem;
    margin-bottom: 10px;
}
#acercade .col-right p {
    margin-bottom: 20px;
}
#acercade .col-right .cta {
    color: black;
    margin-bottom: 50px;
    padding: 10px 20px;
    font-size: 2rem;
}
#acercade .col-left .acercade-img {
    height: 100%;
    width: 100%;
    position: relative;
    border: 10px solid white;
}
#acercade .col-left .acercade-img::after {
    content: '';
    position: absolute;
    left: -33px;
    top: 19px;
    height: 98%;
    width: 98%;
    border: 7px solid crimson;
    z-index: -1;
}
/* Fin Sección acercade */

/* Inicio Sección Contacto */
#contactos .contactos {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}
#contactos .contactos-items {
    width: 400px;
}
#contactos .contactos-item {
    width: 80%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 18px 0 #0000002c;
    transition: .3s ease box-shadow;
}
#contactos .contactos-item:hover {
    box-shadow: 0px 0px 5px 0 #0000002c;
}
#contactos .icon {
    width: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
}
#contactos .contactos-info h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}
#contactos .contactos-info h2 {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 500;
}
/* Fin Sección contacto */

/* Inicio Sección Footer */
#footer {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
    min-height: 200px;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 10px;
}
#footer h2 {
    color: white;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: .1rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
#footer .social-icon {
    display: flex;
    margin-bottom: 30px;
}
#footer .social-item {
    height: 50px;
    width: 50px;
    margin: 0 5px;
}
#footer .social-item img {
    filter: saturate(2);
    transition: .3s ease filter;
}
#footer .social-item:hover img {
    filter: saturate(4);
}
.imgfooter{
    width: 45px;
    height: 45px;
}
#footer p {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
}
/* Fin Sección Footer */

/* Keyframes */
@keyframes hamburguesa_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}
@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: crimson;
        font-weight: bold;
    }
}
/* Fin Keyframes */

/* Responsive  */
@media only screen and (min-width: 901px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1.titulos {
        font-size: 6rem;
    }

    /* cabecera */
    #cabecera h1 {
        font-size: 7rem;
    }
    /* Fin cabecera */

    /* servicios  */
    #servicios .servicios-bottom .servicios-item {
        flex-basis: 45%;
        margin: 2.5%;
    }
    /* Fin servicios */

    /* proyectos */
    #proyectos .proyectos-item {
        flex-direction: row;
    }
    #proyectos .proyectos-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #proyectos .proyectos-item {
        height: 400px;
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    #proyectos .all-proyectos .proyectos-info {
        height: 100%;
    }
    #proyectos .all-proyectos .proyectos-img {
        height: 100%;
    }
    /*  proyectos */

    /* acerca de */
    #acercade .acercade {
        flex-direction: row;
    }
    #acercade .col-left {
        width: 600px;
        height: 400px;
        padding-left: 60px;
    }
    #acercade .acercade .col-left .acercade-img::after {
        left: -45px;
        top: 34px;
        height: 98%;
        width: 98%;
        border: 10px solid crimson;
    }
    #acercade .col-right {
        text-align: left;
        padding: 30px;
    }
    #acercade .col-right h1 {
        text-align: left;
    }
    /*  acercade */

    /* contactos  */
    #contactos .contactos {
        flex-direction: column;
        padding: 100px 0;
        align-items: center;
        justify-content: center;
        min-width: 20vh;
    }
    #contactos .contactos-items {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin: 0;
    }
    #contactos .contactos-item {
        width: 30%;
        margin: 0;
        flex-direction: row;
    }
    #contactos .contactos-item .icon {
        height: 100px;
        width: 100px;
    }
    #contactos .contactos-item .icon img {
        object-fit: contain;
    }
    #contactos .contactos-item .contactos-info {
        width: 100%;
        text-align: left;
        padding-left: 20px;
    }
    /*  contactos  */

}



@media only screen and (min-width: 1200px) {
    /* header */
    #header .hamburguesa {
        display: none;
    }
    #header .menucel ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }
    #header .menucel ul li {
        display: inline-block;
    }
    #header .menucel ul li a {
        font-size: 1.8rem;
    }
    #header .menucel ul a:after {
        display: none;
    }
    /* End header */

    #servicios .servicios-bottom .servicios-item {
        flex-basis: 22%;
        margin: 1.5%;
        height: 340px;
    }
}
@media screen and (max-width:370px) {
    .cta2 {
        margin-left: 10px;

    }
    #preloader:before {
        content: "";
        position: fixed;
        z-index: 9999999;
        top: calc(50% - 150px);
        left: calc(50% - 200px);
        background-image: url(../img/load.gif);
        width: 400px;
        height: 300px;
    }
}
@media screen and (max-width: 600px) {
    #preloader:before {
        content: "";
        position: fixed;
        z-index: 9999999;
        top: calc(50% - 150px);
        left: calc(50% - 200px);
        background-image: url(../img/load.gif);
        width: 400px;
        height: 300px;
    }    
    .cta2 {
        margin-left: 25px;

    }
    p{
        font-size: 12px;
    }
    #contactos .contactos-item {
        width: 80%;  
    }
    .grecaptcha-badge{
        display: none;
        left: -320px;
        z-index: 9999999;
    }
    #contactos .contactos-item p{}
    #proyectos .proyectos-info h1 {
        font-size: 2rem;
        font-weight: 600;
        padding: 5px;
    }
    #proyectos .proyectos-info h2 {
        font-size: 1.6rem;
        font-weight: 500;
        margin-top: 10px;
    }
    #proyectos .proyectos-info p {
        color: white;
        padding: 5PX;
    }
    #proyectos .proyectos-img {

        height: 190px;
        width: auto;
        overflow: hidden;
        position: relative;

    }
    #proyectos .proyectos-img:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
        opacity: .17;
    }
    #proyectos .proyectos-img img {
        transition: .3s ease transform;
    }
    #proyectos .proyectos-item:hover .proyectos-img img {
        transform: scale(1.02);
    }
    #contactos .contactos-items {
        width: 300px;
    }
}

@media screen and (max-width: 900.98px) {
    #preloader:before {
        content: "";
        position: fixed;
        z-index: 9999999;
        top: calc(50% - 150px);
        left: calc(50% - 200px);
        background-image: url(../img/load.gif);
        width: 400px;
        height: 300px;
    }
    .column, input[type=button], input[type=reset]  {
        width: 40%;
        margin-top: 12px;
    }
    .column img{
        height: 30%;
        padding: 5px;    
        border-radius: 40px;
        border-right: 15px solid #031D4E;  
        border-bottom: 15px solid #031D4E; 
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=email], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=number], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }

    .column {
        float: left;
        width: 100%;
        margin-top: 6px;
        padding: 40px;
    }

    .row:after {
        content: "";
        display: table;
        clear: both;
    }

}
@media screen and (max-width:800px) {


    .column, input[type=button],input[type=reset]  {
        width: 40%;
        margin-top: 12px;

    }
    .column img{
        border-radius: 40px;
        border-right: 15px solid #031D4E;  
        border-bottom: 15px solid #031D4E; 
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=email], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=number], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    textarea {
        resize: none;
        font-family: 'Montserrat', sans-serif;
    }
    .column {
        float: left;
        width: 100%;
        margin-top: 6px;
        padding: 40px;
    }

    .row:after {
        content: "";
        display: table;
        clear: both;
    }

}
@media screen and (max-width:480px) {

    #callnowbutton{display:block;position:fixed;text-decoration:none;z-index:998;width:100%;left:0;bottom:0px;height:auto;border-top:0 solid #2dc62d;border-bottom:1px solid #006700;text-shadow:0 1px #006700;text-align:center;color:#fff;font-weight:600;font-size:140%;overflow:hidden;padding-right:20px;background:#29323c;display:flex;justify-content:center;align-items:center}a{outline:0;text-decoration:none;background-color:transparent;transition-property:background-color,box-shadow,border,color,opacity,transform;transition-duration:.3s;-webkit-text-decoration-skip:objects}.wasap{max-width:5rem!important;max-height:4rem!important;cursor:pointer!important}.wasap-head{max-width:4rem!important;max-height:4rem!important;cursor:pointer!important;float:right}.llamada{float:right;display:block;flex-grow:1;
    }}
@media screen and (min-width:900.99px) {
    #preloader:before {
        content: "";
        position: fixed;
        z-index: 9999999;
        top: calc(50% - 150px);
        left: calc(50% - 200px);
        background-image: url(../img/load.gif);
        width: 400px;
        height: 300px;
    }   
    .cta2{
        margin-left: 20px;
    }
    .column, input[type=button],input[type=reset] {
        width: 40%;
        margin-top: 12px;

    }
    .column img{
        border-radius: 40px;
        border-right: 15px solid #031D4E;  
        border-bottom: 15px solid #031D4E; 
    }
    input[type=text], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=email], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    input[type=number], select, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        margin-top: 6px;
        margin-bottom: 5px;
        resize: vertical;
        border-radius: 10px;
    }
    textarea {
        resize: none;
        font-family: 'Montserrat', sans-serif;
    }
    #swal2-content{

        font-size: 15px;     
    }
    .column {
        float: left;
        width: 50%;
        margin-top: 6px;
        padding: 40px;

    }

    .row:after {
        content: "";
        display: table;
        clear: both;
    }
    .column img{
        height: 420px;
        padding: 5px;    
        border-radius: 40px;
        border-right: 15px solid #031D4E;  
        border-bottom: 15px solid #031D4E; 
    }

}
/* Modo Nocturno */
body.modnocturno {
    background: #111111;
}

body.modnocturno a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

body.modnocturno  {
    background: #000;
    -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
    color: #fff;

}
body.modnocturno h1 {
    color: #fff;

}body.modnocturno p {
    color: #fff;     
}

body.modnocturno nav a {
    color: #fff;
}

body.modnocturno nav a:hover {
    color: #FEFEFE;
}


body.modnocturno #contactos .contactos-item {

    background:rgba(01,00,019,9); 
    color: #fff; 
    box-shadow: 0px 0px 18px 0 #fff;
    transition: .3s ease box-shadow;
}
body.modnocturno #contactos .contactos-info h1 {
    font-size: 1.rem;
    line-height: 2rem;

    font-weight: 500;
    color: #fff;
}
body.modnocturno #contactos .contactos-info h2 {
    font-size:  1.rem;
    line-height: 2rem;
    font-weight: 500;
    color: #fff;
}
body.modnocturno .cta2 {
    color: black;
    background-color: white;
    box-shadow: 0px 0px 18px 0 #fff;
}
body.modnocturno .cta2:hover {
    color: white;
    background:rgba(01,00,019,9); 

}
body.modnocturno .column img{
    border-radius: 40px;
    border-right: 15px solid rgba(01,00,019,9);  
    border-bottom: 15px solid rgba(01,00,019,9); 
    box-shadow: 0px 0px 18px 0 #fff;}
.switch {
    background: #343D5B;
    border-radius: 1000px;
    border: none;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    outline: none;
}

.switch::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    background: #F1F1F1;
    top: 0;
    left: 0;
    right: unset;
    border-radius: 100px;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn-whatsapp {
    display: block;
    width: 75px;
    height: 75px;
    position: fixed;
    right: 4px;
    bottom: 11%;
    text-align: center;
    z-index: 999;
}
.switch.active {
    background: orange;
    color: #000;
}

.switch.active::after {
    right: 0;
    left: unset;
}

.switch span {
    width: 30px;
    font-size: 9px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: none;
    color: #fff;
}
/* Fin Modo Nocturno */

/* --------------Botón Arriba-------------- */
.cm-up {
    display: none;
    z-index: 999;
    position: fixed;
    background: #001e34;
    height: 50px;
    border-radius: 50px;
    padding: 10px;
    bottom: 172px;
    right: 13px;
    cursor: pointer;
}
.cm-up .cm-text-up {
    border: none;
    background: none;
    margin-top: 2px;
    outline: none;
    cursor: pointer;
    color: #fff;
    float: left;
    padding: 0;
    font-size: 16px;
    line-height: 30px;
    transition: 0.4s;
    width: 0px;
}

.cm-up .cm-icon {
    background: #001e34;
    color: #00b2ff;
    font-size: 20px;
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s
}

.cm-up:hover > .cm-text-up {
    width: 150px;
    padding: 0 6px;
}
.cm-up:hover > .cm-icon {
    background: #fff;
}
/* --------------Fin Botón Arriba-------------- */


/* formulario emergente*/
/*
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 40px;
  right: 28px;
  width: 280px;
}

.form-popup {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  border: 3px solid #f1f1f1;
  z-index: 90;
}

.form-container {
  text-align: center;    
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

.form-container input[type=text], .form-container input[type=password] {
  width: 90%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

.form-container .cancel {
  background-color: red;
}

.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}*/
/* Fin formulario emergente*/



@media (min-width: 800px) {

    /*pop up*/
    #popup_content_wrap {width: 100%;height: 100%;top: 0;left: 0;position: fixed;background: rgba(0, 0, 0, 0.74);z-index: 9999999;}
    #popup_content {
        width: 536px;
        height: 300px;
        padding: 35px;
        position: relative;
        top: -2%;
        left: 35%;
    }

    /*fin pop up*/
}
@media (max-width: 799px) {
    .hidden-xs {
        display: none !important;
    }
    .cta3{display:none;
    }
}
.img-responsive{
    display: block;
    max-width: 70%;
    height: auto;
}
@-ms-viewport {
    width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table !important;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
    label.error{
    color: #b91b2a;
    margin-top:-15px;
    font-size: 12px;

    }
}