@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
*{margin:0; padding:0; box-sizing: border-box; font-family: 'Mulish', Arial, sans-serif;}
p{font-size: 18px;}

/*Main section */
.main-section__form{display: grid;grid-template-columns: 60% 40%;}
.main-section{ width: 100%; display: grid; grid-template-rows: repeat(1, 1fr); background-color: #d4e4eb;}

.contact-form{ display: grid; grid-template-rows: 10% 80% 10%; justify-items: center; }

.main-image{width: 100%;border-radius: 10px; height: 400px;}

.login__form{display: flex; flex-direction: column; padding: 1.5rem 2rem 0;}

input[type="text"], input[type="email"]{
	height: .5rem;
	margin: .8rem 0;
	padding: 1rem;
	transition: all .7s; 
	width: 255px;
}

input[type="text"]:focus{ border-color: #C8C8;background-color: #EFEF; }

.btn__submit{
	height: 2.5rem;
	border: none;
	background-color: #31B1E5;
	color: #fff;
	padding: .5px;
	margin: .5rem 0 .3rem;
}

.btn__submit:hover{background-color: #39A1E5; cursor: pointer;}

/*Header*/
.head{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	align-items: center;
	color: #171717;
}

.menu{display: flex; }

ul{ margin-top:0; margin-bottom: 0;	padding-left: 0; list-style: none; }

li{position: relative;}
li>ul{position: absolute; display: none; background-color: rgb(12,60,96);}

li:hover > ul { display: block; }

.menu__item{ flex: auto; padding-right: 40px; font-size: 16px;}

.menu__link{
	color: #171717;
	text-decoration: none;
	display: block;
	text-align: center;
	padding: .5em;
	white-space: nowrap;
}

.lang-opt{width:40%;}

.burger-menu{display: none;}

/*END Header*/

/*Aviso*/

.aviso {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px;
}

.aviso-texto {
  display: inline-block;
  animation: aviso 20s linear infinite;
}

@keyframes aviso {
  0% { transform: translateX(150%); }
  100% { transform: translateX(-100%); }
}
    
/* END aviso*/

/*Banner*/

.banner{
    background-image: url('/assets/banner-principal.png');
    background-size: cover;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.banner_info{
    padding: 100px 100px;
    color: #171717;
    margin-left: 50px;
}

/*End banner*/

.boxes{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    justify-items: center;
    align-items: center;
    padding: 20px;
}

.boxes_box{
    background-color: #2778c0;
    color: #fff;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
}

/*elegir*/

.elegir{
    display: grid;
    grid-template-rows: 10% 20% 70%;
    text-align: center;
    padding: 25px;
}

.elegir_des{
    margin: 10px 100px;
}

.elegir_boxes{
    display: grid;
    grid-template-columns: 45% 55%;
    grid-gap: 5px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.elegir_img{
    display: grid; justify-items: right;
}

.elegir_img img{
    width: 50%; height: 325px; border-radius: 10px;
}

.elegir_lista{
    display: grid;
    justify-items: center;
}

.elegir_lista_item{
    color: #fff;
    background-color: #44b0d4;
    padding: 15px;
    margin: 10px;
    border-radius: 50px;
    width: 70%;
}


/*END elegir*/

/*SECTION CONTACTANOS*/

.contactanos{
	background-color: #e4e2e2;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	justify-items: center;
	padding: 50px;
}

.contactanos-title{ font-weight: bold; font-size: 30px; margin-top: 20px; }
.contactanos-button{width:555px;}
/*END SECTION CONTACTANOS*/

/*FOOTER*/

.foot{ 
	background-color: #44b0d4;
	padding: 25px; 
	color:#fff; 
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/*position: absolute;
	*bottom: 0;
	width: 100%;*/
}

.foot p{color: #fff;}
.foot a{text-decoration: underline;}

.social-icon{font-size: 20px;color: #fff;}

/*END FOOTER*/

/*Pagina soporte*/

.soporte{
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 70% 30%; 
    padding: 20px; 
    justify-items: center; 
    align-items: center;
}

.soporte_box{
    border: 1px solid #000; 
    padding: 25px; 
    border-radius: 5px; 
    box-shadow: 2px 2px #000;
}

/*END soporte*/

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

	.main-section__form{ display: block;}
	.main-image{height: 255px;}

	.head{display: grid; grid-template-columns: 1fr 2fr 1fr; grid-template-rows: auto auto; justify-items:center; align-items: center; padding-bottom: 25px;}
	.menu__item{ padding-right: 0; padding: 5px; border-bottom: 1px solid #fff;}
	.lang-opt{height: 40px; margin: 25px 0; width: 55%;}
	.burger-menu{ grid-column: 1; display: block;width: 2.5em;}

	.main-menu{ display: none; }
	.show {
	    
	    display: block;
	    position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.9);
          display: flex;
          justify-content: center;
          align-items: center;
          /*transform: translateX(-100%);*/
          
          transition: transform 0.3s ease-in-out;
          z-index: 999;
   
	}

/*********************/
.main-menu ul {
  list-style: none;
  text-align: center;
  display: block;
}

.main-menu ul li { margin: 20px 0; }

.main-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

.main-menu ul li a:hover { color: #ff6347; }


/* Fondo opaco */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*********************/


	/*li>ul{position: relative; display: none; background-color: rgb(12,60,96); }*/
  	.submenu li{ font-size:12px; border-bottom: 1px solid #fff; }
  	.submenu li:nth-last-child(1) {border-bottom: none; }

	/*banner*/
	
	.banner{
	    display: block;
	}

    .banner_info_texto, .banner_info_titulo{
        padding: 0 25px;
    }
    
    .banner_info_texto{
        font-size: 15px;
    }
    
    .banner_info_titulo{ font-size: 45px;}
	
	.boxes{
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    grid-gap: 5px;
	}
	
	/*elegir*/
	
	.elegir_boxes{ display: block;	}
	
	.elegir_des{ margin: 0;}
	.elegir_img{ display: block; }
	.elegir_img img{ width: 75%; }
	
	/*SECTION CONTACTANOS*/
	.contactanos{display: block; text-align: center;}
	.contactanos-title{ font-size: 35px;}
	.contactanos-button{width:255px;}
	/*footer*/
	.foot{ 
		width:100%;
		background-color: rgb(12,60,96); 
		padding: 35px;  
		position: relative; 
		bottom:0; 
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 10px;
		text-align: center;
	}

	.empty-set a{ padding: 5px; }
	
	/*Soporte pagina*/
	.soporte{ display: grid; grid-template-columns: 1fr; grid-gap: 10px; }
	.soporte_box{  margin: 0; }
}

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

	.contact-menu{ text-align: center;padding-bottom: 10px; }

	.obamacare-info__title{ font-size: 30px; }
	.obamacare-logo{width: 180px;}
	.image-girl{ width: 255px; }
	.llama-obamacare{ width: 200px; }
	.call-box{margin: 20px 40px; padding: 20px;}

    .elegir_boxes{ padding-bottom: 55px; }

    .burger-menu{display: block;width: 2.5em;}

	.main-menu{ display: none; }
	.show {display: block;}

}

@media screen and (max-width: 325px){
	.llama-obamacare{ width: 150px; }
	.call-box{margin: 30px 20px; padding: 10px;}

	.foot{ padding: 15px;}
}