/**********************************************************************************
*****   Variables *****************************************************************
**********************************************************************************/
:root {
    --color1: rgb(219, 144, 0.5);
    --color2: rgba(23, 180, 83, 0.877);
    --color3: rgba(11, 194, 211, 0.623);
    --fondo: #F2F2F2;
    --titulos: 33px;
    --subtitulos: 20px;
    --margenes: 20px;
    --espacios: 10px;
    --espacios-contenido: 45px;
}

/**********************************************************************************
*****   General *******************************************************************
**********************************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**********************************************************************************
*****   Body **********************************************************************
**********************************************************************************/
body {
    font-family: 'Quattrocento Sans', sans-serif;
}

/**********************************************************************************
*****   Header ********************************************************************
**********************************************************************************/
header {
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 1;
    background: #FFFFFF;
}

nav {
    height: 100px;
    width: 90%;
    max-width: 1100px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    height: 70px;
}

.logo img {
    width: 50%;
    height: 50%;
    height: inherit;
    vertical-align: top;
    object-fit: cover;
}

.icono {
    color: #000000;
    font-size: 24px;
    padding: 23.5px 20px;
    display: none;
}

.icono:hover {
    cursor: pointer;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 30px 25px;
}

/**********************************************************************************
*****   Contenedor  ***************************************************************
**********************************************************************************/
.tabsini {
    width: 100%;
    height: auto;
    margin-top: 150px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenedor {
    width: 90%;
    height: auto;
    margin-top: 10px;
    padding: 1em;
    background-color: #000000;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, .8);
    border-radius: 10px;
    overflow: hidden;
}

.ul {
    width: 60%;
    height: 10%;
    display: flex;
    list-style: none;
}

.li {
    width: 33%;
    flex-grow: 1;
    text-align: center;
    line-height: 20px;
    border: solid 1px rgba(4, 51, 78, .6);
    color: #FFFFFF;
    cursor: pointer;
    background-color: lightskyblue;
    border-radius: 0px 20px 0px 0px;
    transition: all .5s ease;
}

.activo {
    font-size: 20px;
    font-weight: 600;
    background-color: #FFFFFF;
    color: #131A2C;
    border: solid 1px rgba(254, 254, 254);
}

.subcontenedor {
    width: 100%;
    height: auto;
}

.bloque {
    width: 100%;
    height: auto;
    color: #000000;
    display: none;
}

.activo {
    background: #FFFFFF;
    display: block;
    margin: auto;
}

.bloque h1 {
    font-size: 44px;
    font-weight: 600;
    color: #1b5896;
    margin: 10px 0px 0px 10px;
}

.bloque p {
    font-size: 20px;
    font-weight: 500;
    text-align: justify;
    margin: 10px 20px 10px 20px;
}

.txtbloque {
    background: #FFFFFF;
}

.cmarcas {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.scmarcas {
    width: auto;
    height: auto;
}

.scmarcas img {
    width: 170px;
    height: 90px;
    margin: 40px 40px 40px 40px;
}

.tclientes h1 {
    font-size: 36px;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
}

.bclientes {
    width: 98%;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #F2F2F2;
    margin: auto;
}

.bclientes img {
    width: 200px;
    height: 100px;
    margin: 50px 50px 50px 50px;
}

.tabscli {
    width: 100%;
    height: auto;
    /*margin-top: 150px;*/
    /*margin-bottom: 100px;*/
    /*margin: 10px 10px 10px 10px;*/
    display: flex;
    flex-direction: column;
    align-items: center;

}

.contenedorc {
    width: 98%;
    height: auto;
    /*margin-top: 10px;*/
    /*padding: 1em;*/
    /*background-color: #000000;*/
    /*box-shadow: 3px 5px 10px rgba(0, 0, 0, .8);*/
    /*border-radius: 10px;*/
    /*overflow: hidden;*/
    background-color: #000000;
}

.ulc {
    width: 50%;
    height: 10%;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.lic {
    width: 33%;
    flex-grow: 1;
    text-align: center;
    line-height: 22px;
    border: solid 1px rgba(4, 51, 78, .6);
    color: #FFFFFF;
    cursor: pointer;
    background-color: lightskyblue;
    border-radius: 0px 20px 0px 0px;
    transition: all .5s ease;
}

.activo {
    font-size: 20px;
    font-weight: 600;
    background-color: #FFFFFF;
    color: #131A2C;
    border: solid 1px rgba(254, 254, 254, 0);
}

.blqclie {
    width: 100%;
    height: auto;
}

.bloques {
    width: 100%;
    height: auto;
    color: #000000;
    display: none;
}

.active {
    background: #FFFFFF;
    display: block;
    margin: auto;
}

.nempre h2 {
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
}

.dempre {
    width: 85%;
    height: auto;
    margin-left: 15%;
}

.dempre p {
    margin: 0px 0px 0px 0px;
    font-size: 18px;
    text-align: justify;
}

/**********************************************************************************
*****   Footer ********************************************************************
**********************************************************************************/
.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
}

.marca {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: auto;
    margin-bottom: var(--espacios);
}

.marca img {
    height: 100px;
    margin: var(--espacios);
}

.textobotonselec {
    font-size: 16px;
    color: #131A2C;
    font-weight: 900;
    margin: auto;
    text-decoration: none;
}

.marca h2 {
    margin: auto;
}

.iconos {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: auto;
    align-items: center;
}

.col_texto p {
    font-size: 20px;
    color: #131A2C;
    font-weight: 900;
    margin: auto;
    text-decoration: none;
}

/**********************************************************************************
***** responsive ******************************************************************
**********************************************************************************/
/*@media screen and (max-width: 640px) {
    .icono {
        display: block;
    }

    .menu {
        position: fixed;
        top: 100px;
        background: #4B6584;
        left: 0px;
        height: 100%;
        transition: 1s;
        width: 0px;
        overflow: hidden;
    }

    .menu a {
        display: inherit;
        background: #778CA3;
        border: 1px solid #FFFFFF;
        text-align: left;
    }
}*/