/** Definiciones de pagina cuerpo y temas del cuerpo 
    Se hace el reset estandard w3,
    Se definen temas para el suerpo
**/    
html {
    box-sizing: border-box;
    font-size: 100%;
    /** Reset para REMS - 62.5% = 10px de 16px **/
}
body{
    font-family: "Noto Sans", sans-serif;
    margin: 1rem;
    /*margin-left: 7rem;
    margin-right: 7rem;*/
}
/** Body Adaptacion a moviles */
@media (max-width: 1020px) {
    body{
        margin: 0px;
        margin-top: 1rem;
        width: 100vw;
    }
}
/** Se definen temas para el cuerpo 
    Y la funcion en js que los alterna
    Cualquier tema adicional, se debe incluir en el js
**/
/*.bdclasprotect{
    background: #b7bae9;;
    color: rgb(0, 0, 0);
}*/
.bdclas{
    color: #ffffff;
    background-image: url(../img/bkimg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: 0rem;
    background-position-y: 0rem;
    background-size: cover;
}
.bdclasw{
    background: #ffffff;
    color: rgb(0, 0, 0);
}
.bdclasb{
    color: #ffffff;
    background: rgb(0, 0, 0);
}
/** Agregar a changtm() en seguros.js cualquier otro item, para adaptar al tema */

/* Layout navbarbtn */
/* Estilos para botones */
.btntm{
    background-color: black;
    color: #ffffff;
    margin: 15px;
    margin-top: 0px;
    padding: 10px;
    font-size: medium;
    border-radius: 15px;
    width: -webkit-fill-available;
}
/** Seccion uno: parte superior y presentacion de la pagina
    Y sub-secciones que la componen:
    suizq contiene:
        Los logos, en la seccion:
    suizqlogos, y cada logo tiene su estilo: logouno, logodos
        Y  el texto en la seccion
    suizqtxt, 
 **/
.seccionuno{
    display: flex; 
    flex-direction: row;
    justify-content: center;
    margin-top: 0rem;
}
/** Seccion uno izquierda **/
.suizq{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: space-around;
}
/** Seccion uno izquierda contenedor de logos y logos **/
.suizqlogos{
    display: flex;
    justify-content: space-between;
}
.logouno{
    border-radius: 1rem;
    height: 192px;
    width: 175px;
}
.logodos{
    border-radius: 1rem;
    width: 290px;
    height: 192px;
}
/** Seccion uno izquierda, para los textos, incluye h1
     A 2 h3's que contiene solo le dimos clase a la tipografia **/
.suizqtxt{
    margin-left: 0rem;
    margin-right: 5rem;
}
.suizqtxt h1{
    font-size: 3rem;
    /*font-family: "Montserrat", sans-serif;*/
    opacity: 1;
    font-weight: normal;
}
/** Fin Seccion uno izquierda, para el los botones inactivada
.suizqbuttons{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-right: 7rem;
} **/

/** Seccion uno derecha **/
.suder{
    margin-right: 2rem;
    margin-left: 2rem;
}
/** Seccion uno - adaptacion a moviles */
@media (max-width: 1020px) {
    .seccionuno{
        display: flex; 
        flex-direction: column;
        margin-top: 0rem;
        width: fit-content;
    }
    .suizq{
        padding: 0rem;
         margin-left: 1rem;
        margin-right: 1rem;
    }
    .suizqlogos{
        display: flex;
        align-items: center;
    }
    .logouno{
        height: 7rem;
        width: 7rem;
    }
    .logodos{
        width: 10rem;
        height: 7rem;
    }    
    .suder{
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0px;
    }
    .suizqtxt h1{
        font-size: 1.8rem;
    }
    /*.suizqbuttons{
        flex-direction: column;
        margin-right: 0rem;
    }*/
}
/** Fin Seccion uno **/

/** Seccion 2 - opciones del portafolio 
    Incluye un encabezado centrado con textc
    2 filas rowchoice, con 2 columnas colchoice c/u
    cada colchoice incluye su estilo de imagen
    y su estilo de boton blqiv
    colchoice determina tambien el borde o no
**/
.seccionchoice{
    display: flex; 
    flex-direction: column;
}
.rowchoice{
    display: flex; 
    flex-direction: row;
    justify-content: space-evenly
}
.colchoice{
    width: 44vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 10px; 
}
.colchoice img{
    height: 80%;
    width: 80%;
    align-self: center;
}
.blqiv{    
    background-color: black;
    color: #ffffff;
    margin: 15px;
    margin-top: 0px;
    padding: 10px;
    font-size: medium;
    border-radius: 15px;
    margin-top: 10px;
}
@media (max-width: 1020px) {
    .seccionchoice h1{
        font-size: 1.2rem;
    }
}
/* Menu cont */
.mn-cont {
  z-index: 10000;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  width: 100vw;
  flex-direction: row;
  top: 0px;
  left: 0px;
  height: 100%;
  justify-content: center;
  margin-top: 4rem;
}
/* Ventana emergente */
.spk-cont {
  z-index: 10000;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  width: 100vw;
  flex-direction: row;
  top: 0px;
  left: 0px;
  height: 100%;
  justify-content: center;
}
.spk-clg {
    z-index: 10001;
    position: absolute;
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    top: 0px;
    border-radius: 0.5rem;
    align-items: center;
}
.spkblck{
    background-color: rgba(255, 255, 255, 0.5);
}
.xcloseicon {
    position: absolute;
    left: 87vw;
    margin-right: 2rem;
    top: 0.4rem;
    font-family: 'Nunito Sans';
    font-weight: bold;
    font-size: 2rem;
;
}
.xclose{    
    position: absolute;
    right: 0rem;
    margin-right: 2rem;
    top: 1rem;
    font-family: 'Nunito Sans';
    font-weight: bold;
    font-size: 2rem;
}
.backclose{    
    position: absolute;
    left: 5vw;
    font-size: 2rem;
    top: 0.9rem;
    font-family: 'Nunito Sans';
    font-weight: bold;
}
.nav-icons{
    display: flex;
    margin-top: 5rem;
    margin-bottom: 15px;
    justify-content: space-evenly;
    width: auto;
    position: relative;
    left: 0rem;
}
.nav-icons-brdrs{
    display: flex;
    margin-top: 5rem;
    margin-bottom: 15px;
    justify-content: space-evenly;
    border-top: ridge;
    border-bottom: ridge;
    width: 100vw;
    position: relative;
    left: -7rem
}
.spk-icons{
    display: flex;
    justify-content: space-evenly;
    border-top: ridge;
    border-bottom: ridge;
    width: inherit;
}
.img_share{
    width: 35px;
    height: 35px;
    margin: 10px;
}
.imgpui{
    width: 40%;
    height: 40%;
}
.imgpu{
    width: 19rem;
    height: 19rem;
    float: left;
    margin-right: 15px;
}
.page-nav{
    display: flex;
    width: 100vw;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: black;
    color: white;
    height: 4rem;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-size: xx-large;
    z-index: 1000;
}
.textnav{
    text-align: center;
}
/* Adaptaciones a movil */
@media (max-width: 1020px){
    .xclose{
        margin-right: 4vw;
    }
    .nav-icons{
        left: 0rem
    }
    .spk-cont {
      justify-content: center;
    }
    .spk-clg h1{
        font-size: 1.5rem;
    }
    .imgpui{
        width: 60%;
        height: 60%;
    }
    .imgpu{
        width: 60%;
        height: 60%;
    }
    .page-nav´{
        font-size: x-large;
    }
    .fa-bars{
        margin-left: 1rem;
    }
    .textnav{
        margin-left: 3rem;
        font-size: 1.3rem;
    }
}
/* Utliidades css */
.textc {
    display: flex;
    justify-content: center;
}
/* Adaptaciones a movil */
@media (max-width: 1020px) {
    .textc {
        display: flex;
        justify-content: center;
    }
}
.tonoshow{
    display: none;
    width: 0px;
    height: 0px;
}
.textcent {
    justify-content: center;
}
.infosegi{
    margin: 15px;
    font-size: x-large;
}
.infoseg{
    margin: 1rem;
    font-size: x-large;
    border-top: 1rem;
    border-style: solid;
    padding: 1rem;
    padding-top: 0rem;
    margin-right: 3rem;
}
.infosegline{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.inmginfobtn{
    overflow: auto;
}
.infoxtra{    
    margin: 1rem;
    margin-right: 15px;
    font-size: x-large;
    border-style: solid;
    padding: 1rem;
    margin-right: 3rem;
}
@media (max-width: 1020px) {
    .infosegi{
        font-size: 1rem;
    }
    .infoseg{
        display: flex;
        font-size: 1.4rem;
        flex-direction: column;
        align-items: center;
    }
    .infosegline{
        font-size: 1.4rem;
    }
    .inmginfobtn{
        font-size: 1.4rem;
    }
}
/* Estilos para tipografia (fuentes) 
    Previamente incluidas en head con su codigo de google fonts
*/
.nunito-sans-seg {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

.noto-sans-seg {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.playfair-display-seg {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 2px;
}
/* Color Boton Para el tema negro */
.btnblck{
    background-color: #3f3b3bd6;
}
/* estilos para el menu*/
.mnenush{
    flex-direction: column;
    position: fixed;
    z-index: 1002;
    top: 4rem;
    background-color: black;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}
.mnenushln{
    display: flex;
    flex-direction: row;
    align-items: center;
}