﻿
/*Estilos Maritimex*/

/*************Colores ************/

.darkblue {
    background-color: #004b8e;
    color: white;
}

.menu {
    background-color: white;
}

.blue {
    background-color: #42738D;
    color: white;
}

.griss {
    background-color: #859894;
    color: white;
}

.darkgriss {
    background-color: #4B4F54;
    color: white;

}

.blu {
    color: #004b8e;
}

.dblue {
    color: #004b8e;
}

.gr {
    color: #859894;
}

.gdark {
    color: #4B4F54;
}

.blank {
    color: white;
}

/************ Contenedores ***********/

.contDiv {
    width: 50%;
    margin-top: 20px;
    background: white;
    color: black;
   
}


.alinear {
    display: flex;
    align-items: center;
    position: relative;
    right: 20px;
}

.conteDiv {
    width: 110%;
    height: 110%;
    margin-top: 10px;
    background: #F2F2F2;
    padding: 10px 0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ----------- BOTONES --------- */

.botones {
    background: #004b8e;
    color: white;
}

    .botones:hover {
        background: #31BE0E;
        color: white;
    }

.botonesClaros {
    background: #42738D;
    color: white;
}

    .botonesClaros:hover {
        background: #859894;
        color: white;
    }

.botonesCancelar {
    background: #004b8e;
    color: white;
}

    .botonesCancelar:hover {
        background: #D03B1B;
        color: white;
    }

.botonesValidar {
    background: #004b8e;
    color: white;
}

    .botonesValidar:hover {
        background: #31BE0E;
        color: white;
    }

/*    ***** BOTONES LOGIN ******/

.botonesValidarlogin {
    background: white;
    color: #42738D;
}

    .botonesValidarlogin:hover {
        background: #31BE0E;
        color: white;
    }

.botonesCancelarlogin {
    background: #42738D;
    color: white;
}

    .botonesCancelarlogin:hover {
        background: #D03B1B;
        color: white;
    }

/*    ***** BOTONES CIRCULAR ******/

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

/************** MENU *************/
.menu {
    background: white;
    color: black;
}

    .menu:hover {
        background: #15284B;
        color: white;
    }

/************ CENTRADO *****************/



/************* TABLAS ***************/

/*tr para hover de filas*/
.tr {
    background-color: #F2F2F2;
    color: black;
    font-size: 12px;
}

    .tr:hover {
        background-color: white;
        color: black;
        font-size: 12px;
        font-weight: bold;
    }

    /*Alinear encabezado*/

.alinearEncabezado {

    display: flex;
    align-items: center;
}

/* === HEADING STYLE  === */

.hrDiseño h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

    .hrDiseño h1:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 5px;
        width: 20%;
        background-color: #3F51B5;
    }

    .hrDiseño h1:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        height: 1px;
        width: 100%;
        max-width: 100%;
        background-color: #3F51B5;
    }


.hrDiseñoInicio h1 {
    font-size: 40px;
    font-weight: 1600;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

    .hrDiseñoInicio h1:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 5px;
        width: 60%;
        left: 20%;
        right: 40%;
        background-color: #3F51B5;
    }

.textDiseño {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: #004b8e;
    background: transparent;
    animation-duration: 1s;
    animation: blur-in-expand .8s;
}

.textDiseñoInicio {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: #3f51b5;
    background: transparent;
    animation-duration: 1s;
    animation: blur-in-expand .4s;
}

@keyframes blur-in-expand {
    0% {
        transform: scale(0);
        filter: blur(12px);
        opacity: 0
    }

    100% {
        transform: scale(1);
        filter: blur(0);
        opacity: 1
    }
}


/* Waves Animation start*/

.divLayoutSeparador {
    background: #15284B;
    height: 2vh;
    border-bottom-color: #004868;
    border-top-color: #004868;
}


.hero_area {
    position: relative;
    height: 12vh;
    /*width: 205vh;*/
    width: 100%;
    background-color: #004b8e;
    margin-top: -19px;
    margin-right: -10px;
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 120px;
    bottom: 0px;
    left: 0;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 17s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 20s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 23s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 30s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/* Waves Animation end*/