@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');/*letras del banner*/
@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');/* OJO LETRA DE LOS TITULOS MUY LINDA*/

:root{
    --linea--borde-relleno:#3498db;
    --linea--borde-vacio:#e0e0e0;
}
	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		
	}
	body{
		/* background: url(https://www.xtrafondos.com/wallpapers/montanas-con-nieve-en-el-bosque-3934.jpg);
		background-size: 100vw 100vh;
		background-repeat: no-repeat; */
		background: #fff;
	}
	/* .capa{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.6);
		
		z-index: -1;
		top: 0;left: 0;
	} */
	.container{
		display: grid;
    	grid-template-columns: repeat(12, minmax(0,1fr));
	
	}
	
	/*Estilos para el encabezado*/
	header{
		grid-column: 1 / 13;
		grid-row: 1;
		width: 100%;
		/* height: 100px; */
		font-family: 'Montserrat Alternates', sans-serif;
	}
	.cont_header{		
		background: #fcfbfb;
		background: #4c0808;
		/* height: 65px; */
		box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
		box-shadow: 0 10px 15px rgba(0,0,0, .2);
		display: grid;
		grid-template-columns: repeat(12, minmax(0,1fr));
		font-family: 'Poppins', sans-serif;
		padding-bottom: 15px;
		padding-top: 10px;
		/* border: 3px solid blue; */
		z-index: 5;
	}

	.logo2{
		grid-column: 2/8;  
		grid-row: 1;
		margin-left: 10px; 
		font-weight: 900;
		text-shadow: rgb(110, 110, 110) 1px 1px 1px;
		cursor: pointer;
	}
	/* elementos que conforman el logo */
	.namediv{
		font-size: 35px;
		font-size: 25px;
		color: #FEBA0B;
		cursor: pointer;      
	}
	.pay{
		color: #FEBA0B;
		font-size: 45px;
		font-size: 35px;
		cursor: pointer;
	}
	.com{
		cursor: pointer;
		color: #fff;
	}

	/* Menu nuevo */
	/* Estilos del menu */
	.icon_menuClientAuth{
	
		padding-top: 3px;
		border: 1px solid #a1a0a0af;
		border: 1px solid #FEBA0B;
		width: 40px;
		height: 40px;
		text-align: center;
		border-radius: 3px;

		display: block;

		grid-column: 9/12;
		grid-row: 1;
		align-self: center;
		justify-self:end;
		margin-right: 50px;

	}
	.icon_menuClientAuth label{
		color: #a1a0a0;
		color: #ffffff;
		font-size: 20px;
		cursor: pointer;
	}
	#btn-menu{
		display: none;
	}
	.container-menu{
		position: absolute;
		background: rgba(0,0,0,0.5);
		/* background: rgba(135, 46, 46, 0.5); */
		/* box-sizing: border-box; */
		width: 100%;
		/* height: 310vh; */
		/* height: auto; */
		/* height: 150vh; */
		min-height: 100vh;
		top: 0;left: 0;
		transition: all 500ms ease;
		opacity: 0;
		visibility: hidden;
		font-family: 'Montserrat Alternates', sans-serif;
		z-index: 9;
		
	}
	#btn-menu:checked ~ .container-menu{
		opacity: 1;
		visibility: visible;
	}
	.cont-menu{
		width: 100%;
		max-width: 250px;
		background: #1c1c1c;
		height: 100vh;
		position: relative;
		transition: all 500ms ease;
		transform: translateX(-100%);
		z-index: 10;
	}
	#btn-menu:checked ~ .container-menu .cont-menu{
		transform: translateX(0%);
	}
	.cont-menu nav{
		transform: translateY(15%);
	}
	.cont-menu nav a{
		display: block;
		text-decoration: none;
		padding: 20px;
		color: #c7c7c7;
		cursor: pointer;
		border-left: 5px solid transparent;
		transition: all 400ms ease;
		
	}
	.cont-menu nav a:hover{
		border-left: 5px solid #c7c7c7;
		background: #1f1f1f;
	}
	.cont-menu label{
		position: absolute;
		right: 5px;
		top: 10px;
		color: #fff;
		cursor: pointer;
		font-size: 18px;
		
	}



	/* Menu viejo  */
	.cont_header .btn-menu{
		float: left;
		line-height:100px;
		margin-top: 10px;
	}
	.cont_header .btn-menu label{
		color: rgb(146, 145, 145);
		font-size: 25px;
		cursor: pointer;
	}


	.cont_header .menu{
		float: right;
		line-height: 100px;
		
	}
	.cont_header .menu a{
		display: inline-block;
		padding: 15px;
		line-height: normal;
		text-decoration: none;
		color: rgb(105, 105, 105);
		transition: all 0.3s ease;
		border-bottom: 2px solid transparent;
		font-size: 15px;
		margin-right: 5px;
		
		/* border: 3px solid grey;/*Quitar los bordes al menu */
	}
	.cont_header .menu a:hover{
		border-bottom: 2px solid #c7c7c7;
		padding-bottom: 5px;
	}
	/*Fin de Estilos para el encabezado*/

	/*Menù lateral*/
	#btn-menu{
		display: none;
	}
	.container-menu{
		position: absolute;
		background: rgba(0,0,0,0.5);
		width: 100%;
		height: 100vh;
		top: 0;left: 0;
		transition: all 500ms ease;
		opacity: 0;
		visibility: hidden;
		font-family: 'Montserrat Alternates', sans-serif;
	}
	#btn-menu:checked ~ .container-menu{
		opacity: 1;
		visibility: visible;
	}
	.cont-menu{
		width: 100%;
		max-width: 250px;
		background: #1c1c1c;
		height: 100vh;
		position: relative;
		transition: all 500ms ease;
		transform: translateX(-100%);
	}
	#btn-menu:checked ~ .container-menu .cont-menu{
		transform: translateX(0%);
	}
	.cont-menu nav{
		transform: translateY(15%);
	}
	.cont-menu nav a{
		display: block;
		text-decoration: none;
		padding: 20px;
		color: #c7c7c7;
		border-left: 5px solid transparent;
		transition: all 400ms ease;
		
	}
	.cont-menu nav a:hover{
		border-left: 5px solid #c7c7c7;
		background: #1f1f1f;
	}
	.cont-menu label{
		position: absolute;
		right: 5px;
		top: 10px;
		color: #fff;
		cursor: pointer;
		font-size: 18px;
	}

	.avatar{
		width: 25px;
		height: 25px;
	}	
	/*Fin de Menù lateral*/
/* Seccion de contenido */
section{
	grid-column: 1 / 13;
	grid-row: 2;
	/* width: 100%; */
	

	
}

#numbTel{
	margin-top: 25px;
	margin-bottom: 15px;
	background: #2c9a42c0;
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	width: 250px;
	margin-left: 10px;
	
	border-radius: 15px;
	border: 3px solid #fff;
	box-shadow: 0 5px 10px rgba(0,0,0, .2);
	cursor: pointer;
	
}

section .banner{
	display: grid;
    grid-template-columns: repeat(12, minmax(0,1fr));

	/* border: 3px solid brown; */

	
    
}
section .banner img{
	grid-column: 1 / 13;
	grid-row: 1;
	width: 100%;
	height: 100%;
	/* border-radius: 25px; */
}
section .banner .box_baner{
	grid-column: 1 / 6;
	grid-row: 1;
	width: 70%;
	margin: auto;
	margin-top: 180px;
	margin-bottom: 0px;
	/* padding-left: 75px;
	padding-top: 50px;
	margin-left: 25px; */
	
    /* border: 1px solid saddlebrown; */
}
section .banner .titl{
	font-size: 50px;
	padding: 15px;
	text-shadow: rgb(110, 110, 110) 1px 1px 1px;
	background: rgba(93, 92, 92, 0.233);
	border-radius: 25px;
	
}
section .banner .titl span{
color: rgb(246, 191, 11);
}
section .banner .anuncio{
	font-family: 'Poppins', sans-serif;
	font-family: 'Open Sans', sans-serif;
	/* font-family: 'Muli', sans-serif; */
	width: 100%;
	/* letter-spacing: 0.05em; */
	font-size: 20px;
	/* border: 1px solid rgb(102, 95, 95); */
	/* text-shadow: rgb(110, 110, 110) 1px 1px 1px; */
	padding: 10px;
	color: rgb(104, 99, 95);
	/* padding-right: 50px;
	margin-bottom: 20px; */
	font-weight: 300;
	/* padding-left: 150px; */
}
.imgEnvios{
	margin-top: 50px;
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0,0,0, .2);
}
section .banner .resalt_text{
	/* font-family: 'Muli', sans-serif; */
	font-family: 'Muli', sans-serif;
	font-size: 35px;
	color: #05366e;
	font-weight: 600;
	text-shadow: rgb(255, 255, 255) 2px 2px 2px ;
	padding-top: 25px;
	padding-bottom: 40px;
	
}

section .banner .anuncio span{
	color: rgb(246, 191, 11);	
}
.tarifas{
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-size: 25px;
	padding-left: 10px;
	/* text-shadow: rgb(110, 110, 110) 3px 1px 1px; */
}
.btn{
	border: 2px solid rgb(246, 191, 11);
	padding: 15px;
	border-radius: 25px;
	color: rgb(246, 191, 11);
	font-weight: 600;
	display: block;
	width: 70%;
	text-align: center;
	background: #05366e;
	cursor: pointer;
	
	
	margin-top: 80px;
}
.btn:hover{
	background: #05366ed2;
}
/* Btn para tamaño pequeño de pantalla */
#btnMedia{
	display: none;
}


/* section .box_remesas{
	/* margin-top: 25px; 
	
	border-top: 1px solid #807e7e;
	padding: 15px;
	max-width: 500px;
   	flex-wrap: wrap;
	margin-bottom: 50px;
	

}
section .box_remesas label{
	padding: 0%;
	/* border: 1px solid blue; 
	font-size: 20px;
	letter-spacing: 0.15em;
	/* text-transform: uppercase; 
}


section .box_remesas input{
	width: 200px;
	height: 40px;
	padding-left: 15px;
	background: rgba(192, 192, 192, 0.356);
	border: none;
	color: #fff;
	font-weight: 600;
	font-size: 25px;
	letter-spacing: 0.15em;
	text-shadow: rgb(110, 110, 110) 1px 1px 1px;
	outline: none;
	border-radius: 5px;
	margin: 0px;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	margin-bottom: 10px;
}

section .box_remesas .cmb_moneda{
	margin: 0;
	width: 80px;
	padding: 10px;
	/* height: 39px; 
	border: 1px solid #807e7e;
    background: none;
    outline: none;
    color: rgb(246, 191, 11);
	margin-bottom: 10px;
    
}
section .box_remesas select option{

    color: rgb(24, 23, 23);
    
}
section .box_remesas button{
	height: 40px;
	font-size: 15px;
	letter-spacing: 0.15em;
	padding: 10px;
	color: rgb(255, 255, 255);
	background: chocolate;
	border: none;
	font-weight: 600;
	border-radius: 5px;
}
section .box_remesas button:hover{
	height: 40px;
	font-size: 15px;
	letter-spacing: 0.15em;
	padding: 10px;
	color: rgb(21, 9, 88);
	font-weight: 600;
	background: rgb(246, 191, 11);
	border: none;
	border-radius: 5px;
} */


/* section .banner .eslogan{
	grid-column: 1 / 13;
	grid-row: 1;
	align-self: flex-end;
    justify-self: flex-end;
	padding-right: 50px;
	padding-bottom: 50px;
	letter-spacing: 0.15em;
	font-size: 25px;
	text-shadow: rgb(110, 110, 110) 1px 1px 1px;
	color: #fff;
} */













/* SEccion aboutUs */
.secction_title_service{ 
    grid-column: 1 / 13; /*............> Row 2 Grid Body*/
    grid-row: 3;
    text-align: center;
    margin-top: 1%;
    margin-bottom: 1%;
	/* border-bottom: 1px solid rgb(146, 147, 148); */
	
}
.title_service{
    font-size: 35px;
    color: #5e5d5d;
    margin-top: 30px;
    font-weight: 300;
    font-family: 'Muli', sans-serif;
    margin-bottom: 20px;
}
.sub_title_service{
	width: 60%;
	margin: auto;
    text-align: center;
    font-size: 20px;
    color: #6a6a6ad7;
    margin-top: 30px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    line-height : 35px;
	
}
/* linea de titulo */
.line_title_service{
    content: "";
    display: block;
    background-color: rgb(245, 192, 47);
    width: 250px;
    height: 2px;
    /* height: 1.5%; */
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
.box_tarjetas{
	grid-column: 1 / 13; 
    grid-row: 4;
	font-size: 18px;
    color: #6a6a6ad7;
	background: rgba(194, 192, 192, 0.116);

}
.box_tarjetas .title_box_tarjetas{
	text-align: center;
	font-size: 30px;
    color: #5e5d5d;
    margin-top: 30px;
    font-weight: 300;
    font-family: 'Muli', sans-serif;
	margin-bottom: 30px;
}
.container_body{
	       
    max-width: 1200px;
    /* max-width: 1500px;4 tarjetas por pagina */
    /* height: 530px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    font-family: sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}
.container_body .card{
    width: 330px;
    height: 260px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    /* transition: all 0.25s; */
    margin-bottom: 50px;
    background: #fff;
	/* background: transparent; */
}
.container_body .card img{
    margin-top: 15px;
}

/* barra de paso */
.box_barra{
	grid-column: 1 / 13;
    grid-row: 5;
    text-align: center;
	/* border: 3px solid slategrey; */
	/* margin-top: 20px; */
	
}

.title_box_barra{
	font-size: 30px;
    color: #5e5d5d;
    margin-top: 30px;
    font-weight: 300;
    font-family: 'Muli', sans-serif;
    margin-bottom: 40px;
}
.progreso-contenedor{
	margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 650px;
}


.progreso-contenedor::before {
    content: '';
    background-color: var(--linea--borde-vacio);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    z-index: -1;
    transition: 0.4s ease;
} 

.progreso {
    background-color: var(--linea--borde-relleno);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    /* width: 0%; */
    width: 100%;
    z-index: -1;
    transition: 0.4s ease;
}

.circulo{
    background-color: #fff;
    color: #999;
    border-radius: 50%;
    height: 40px;
    width: 40px;    
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--linea--borde-vacio);
    transition: 0.4s ease;
}

.circulo.active{
    border-color: var(--linea--borde-relleno);
}

.container_pasos{
	display: flex;
    flex-wrap: wrap;
	color: #6a6a6ad7;
    justify-content: center;
    margin: auto;
	
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;	
}
.title_box_barra{
	margin-top: 50px;
}
.card_pasos{
	width: 230px;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    margin-bottom: 80px;
    
}

/* Beneficios de usar DIVPAY */
.box_why{
	grid-column: 1 / 13;
    grid-row: 6;
	font-size: 18px;
    color: #6a6a6ad7;
	background: rgba(194, 192, 192, 0.116);
	text-align: center;
}
.box_why .title_box_why{
	font-size: 30px;
	color: #5e5d5d;
	margin-top: 40px;
	font-weight: 300;
	font-family: 'Muli', sans-serif;
	margin-bottom: 40px;
	}

	.container_box_why{
		max-width: 1200px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: auto;
		font-family: sans-serif;
		letter-spacing: 0.03em;
		line-height: 1.6;
		font-family: 'Open Sans', sans-serif;
		padding-bottom: 50px;
	}
	.box_why .container_box_why .card{
		width: 230px;
		height: auto;
		padding: 15px;
		border-radius: 8px;
		box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
		/* overflow: hidden; */
		margin: 20px;
		text-align: center;
		transition: all 0.25s;
		margin-bottom: 50px;
		background: #fff;
		
	}
	.box_why .container_box_why .card img{
		margin-top: 20px;
		width: 50px;
		height: 50px;
		/* border: 2px solid orange; */
	}
	.box_why .container_box_why .card h4{
		font-weight: 600;
		text-align: center;
		margin-bottom: 5px;
		
		/* border: 2px solid orange; */
	}
	.box_why .container_box_why .card p{
		font-size: 14px;
		font-weight: 300;
		margin-top: 10px;
		margin-bottom: 20px;
		/* border: solid 3px rgb(192, 21, 21); */
	}

	


/*------ whatsapp para mensajeria ---------------*/
.appWhatsapp{
    position: fixed;
    width: 60px;
    right: 20px;
    /* bottom: 100px;  para que se vea el icono de messenger*/
    bottom: 70px;
    z-index: 100;
}
.appWhatsapp img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}
.appWhatsapp img:hover{
    transform: scale(1.2);
}
/* ----------------  FOOTER  ----------------------------*/
.footer_cliente{
    grid-column: 1 / 13;
    grid-row: 8;

    margin-top: 50px;
    text-align: center;
    color: #999999;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 15px;
    font-size: 12px;
    /* border: 2px solid salmon; */
}
.footer_cliente a{
    color: #cecdcd;
    text-decoration: none;
}
.footer_cliente a:hover{
    color: #05366e;
    
}

/* MEDIA QUERY */


@media only screen and (max-width: 890px){
	
	section .banner .box_baner{
		grid-column: 1 / 13;
		grid-row: 1;
		width: 100%;
		margin: 0;
		padding: 35px;
		
		/* border: 1px solid rgb(49, 139, 19); */	
		
	}

	section .banner .resalt_text{
		/* font-family: 'Muli', sans-serif; */
		/* text-align: center; */
		padding-left: 50px;
		font-size: 35px;
		color: #05366e;
		font-weight: 600;
		text-shadow: rgb(255, 255, 255) 2px 2px 2px ;
		padding-top: 15px;
		padding-bottom: 30px;
		
	}
	section .banner img{
		grid-column: 1 / 13;
		grid-row: 2;
		width: 100%;
		height: 100%;
		/* border-radius: 25px; */
	}

	section .banner .anuncio{		
		padding-left: 50px;
	}
	#btnMedia{
		display: block;
		grid-column: 1 / 5;		
		grid-row: 2;
			border: 2px solid rgb(246, 191, 11);
			padding: 10px;
			border-radius: 25px;
			color: rgb(246, 191, 11);
			font-weight: 600;
			display: block;
			width: 80%;
			height: 40px;
			text-align: center;
			background: #05366e;
			cursor: pointer;		
			margin: 0px;
			margin-top: 170px;
			margin-left: 35px;
		
		
	}
	#btnMedia:hover{
		background: #05366ed2;
	}
	#btn_boxBaner{
		display: none;
	}
	.btn{
		
		width: 50%;
		margin: auto;	
		margin-top: 80px;
		margin-bottom: 50px;
	}
	#numbTel{
		width: 250px;
		margin-left: 45px;
		padding: 10px;
	
	}
	
	
}

@media only screen and (max-width: 480px){
	.namediv{		
		font-size: 15px;		      
	}
	.pay{		
		font-size: 20px;		
	}
	.icon_menuClientAuth{
	
		padding: 0px;
		order: 1px solid #a1a0a0af;
		border: 1px solid #FEBA0B;
		width: 30px;
		height: 30px;
		text-align: center;
		border-radius: 3px;

		display: block;

		grid-column: 9/12;
		grid-row: 1;
		align-self: end;
		justify-self:end;
		margin-right: 0px;

	}
	section .banner .box_baner{		
		padding: 15px;		
		
	}

	section .banner .resalt_text{
		/* font-family: 'Muli', sans-serif; */
		color: #5e5d5d;
		font-weight: 300;
		text-align: center;
		padding-left: 0px;
		font-size: 25px;		
		padding-top: 10px;
		padding-bottom: 25px;
		
	}
	section .banner .anuncio{		
		padding-left: 25px;
		font-size: 14px;
		/* border: 1px solid salmon; */
	}
	#btnMedia{		
		width: 100%;			
		margin-top: 100px;
		display: none;
	}
	.title_service{
		font-size: 25px;
		
	}

	.secction_title_service{ 
		grid-column: 2 / 12; /*............> Row 2 Grid Body*/		
		
	}
	.title_box_barra{
		font-size: 25px;
		padding-left: 15px;
		padding-right: 15px;
		
						
	}
	.box_why .title_box_why{
		font-size: 25px;
		padding-left: 15px;
		padding-right: 15px;
		
		}

	.progreso-contenedor{		
		max-width: 90%;
		
	}

	.container_pasos{
		padding: 15px;
	}
	.card_pasos{
		width: 30%;
		margin-left: 5px;
		margin-right: 5px;
		text-align: center;
		margin-bottom: 80px;
		font-size: 14px;
	
		
		
	}
	.box_why .container_box_why .card{
		width: 200px;
		height: auto;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
		/* overflow: hidden; */
		margin: 10px;
		text-align: center;
		transition: all 0.25s;
		margin-bottom: 50px;
		background: #fff;
		
	}

	#numbTel{		
		margin-left: 25px;
		cursor: pointer;	
	}
	
}

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

	#numbTel{
		margin-top: 15px;
		margin-bottom: 15px;
		background: #2c9a42c0;
		font-size: 20px;
		color: #fff;
		font-weight: 600;
		width: 70%;
		margin-left: 25px;
		border-radius: 15px;
		border: 3px solid #fff;
		box-shadow: 0 5px 10px rgba(0,0,0, .2);
		
	}
}