@font-face {
  font-family: 'MuseoSansRound';
  /* Antes de descargar el archivo, le decimos al buscador
  que intente buscar en local la fuente con nombre
  Cabin, Cabin Regular o Cabin-Regular */
  src: local('MuseoSansRound'),
       url(MuseoSansRound-700.ttf) format('ttf');
       /*local('MuseoSansRound-500'),
       local('MuseoSansRound-700'),*/
}
.container{
    display: grid;
    width: 75%;
    grid-template-columns: repeat( auto-fit, minmax( 200px, 1fr ) );
    grid-gap: 20px;
    font-family: 'PT Sans', sans-serif;
    margin: 0 auto;
    margin-bottom: 25px;
}
.item{
    color: #3288C7;
    background-color: white;
    border: 2px solid #3288C7;
    padding: 20px;
    text-align: center;
    border-radius: 50px 0px 50px 0px;
    /*background-image: url(../img/test4.svg);*/
    min-height: 150px;
}
.item p {
    width: 100%;
    height: 100px;
}
.header{
    display: grid;
    min-height: 500px;
    background-color: #3288C7;
    color: white;   
    grid-template-columns:1.5fr 1fr ;
    font-family: 'DM Sans', sans-serif;
    background-image: url(/img/consultacpe/Fondo-inicio.svg);
    background-size: cover;

}
.frase-header{
    display : flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.frase-header h1{
    font-size: 3.2em;
    font-weight: bold;
}
.frase-header .subfrase{
    font-size: 1.2em;
    margin-top: 50px;
}
.image-header{

    display: flex;
    align-items: center;
}
.image-header img{
    min-width: 100px;
    max-width: 250px;
}
.finder{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5em;
}
.finder .subFinder{
    width: 70%;
    margin:0 10px;
}
.finder input{
    color:#3288C7;
    border-radius: 50px;
    border: 2px orange solid;
    padding: 0.2em 0.5em;
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-family: 'MuseoSansRound', 'Arial';

}
.finder input::placeholder{
    color:#3288C7;
    opacity: 0.7;
}
.finder input:focus{
    outline: none;
}

.menu{
    width: 100%;
    font-family: 'PT Sans', sans-serif;
}




.menu li a{
    text-decoration: none;
    color: #3288C7;
    opacity: 1;
    font-size: 100%;
    vertical-align: baseline;
    font-weight: 400;
}
.menu nav{
    max-width: 1180px;
    height: 80px;
    margin: 0px auto;
    display: flex;
    align-items: center;
}
.menu ul{
    display: flex;
    list-style: none;
    width: 100%;
}

.menu ul li a{
    margin: 0px 10px;
    padding: 10px;
    border-radius: 5px;
}
.nav-icon, nav-icon span{
    display: none;
}
.nav-icon{
    width: 36px;
    height: 28px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.nav-icon span {
    background: #3288C7;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px;
}

.nav-icon span:nth-of-type(1) {
    top: 0;
}

.nav-icon span:nth-of-type(2) {
    top: 12px;
}

.nav-icon span:nth-of-type(3) {
    bottom: 0;
}
.nav-icon.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}

.nav-icon.active span:nth-of-type(2) {
    display: none;
}

.nav-icon.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}
.logo img{
    width: 80px;
}

.login {
    margin-left: auto;
  }

.login button{
    background-color: #3288C7;
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: transparent;
    padding: 5px 15px;

}
.login button:hover{
    background-color: #2E76AC;
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: transparent;
    padding: 5px 15px;

}

@media only screen and (max-width: 700px) {
    .header{
        display: grid;
        min-height: 500px;
        background-color: #3288C7;
        color: white;   
        grid-template-columns:1fr ;
        font-family: 'DM Sans', sans-serif;
        background-image: url(/img/consultacpe/Fondo-inicio.svg);
        background-size: cover;
    
    }
    .image-header{
        display: none;
    }

    .frase-header h1{
        font-size: 3em;
        font-weight: bold;
     }

     .frase-header{
        display : flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .menu {
        position: relative;
        z-index: 999;
        font-family: 'PT Sans', sans-serif;
    }
    .logo {
        margin: 0 auto;
    }
	.menu ul {
        flex-direction: column;
        justify-content: center;
		background: rgba(255, 255, 255, .8);
        position: absolute;
        top: 80px;
        left: 0px;
        width: 100%;
        z-index: 980;
    }
    .menu ul li {
        padding: 10px;
        text-align: center;
    }
    .menu ul li a {
				display: block;
        background: transparent;
        margin: 0px;
        padding: 20px;
    }
    .menu ul li a:hover {
        color: #3288C7;
        background: orange;
        
    }
    .nav-icon,
    .nav-icon span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        z-index: 999;
    }
}

#buscar {
    height: 40px; 
    width: 65%; 
    text-align: center; 
    font-weight: bold; 
    border-color: #3288C7; 
    background-color: #3288C7; 
    cursor: pointer; 
    color: white;
}
.captcha {
    display: flex; 
    justify-content: center;
}
.btn_buscar {
    margin-top: 12px;
    display: flex; 
    justify-content: center;
}
.label {
    text-align: right; 
    font-size: 16px;
}
#razon_social {
    font-weight: bold; 
    text-decoration: 
    underline; color: #3288C7;
}
.btn_consulta {
    border-color: #3288C7; 
    background-color: #3288C7;
}

