/* Landings secciones
----------------------------------------------------------- */

	/*GRID de BANNERS*/
	.L-bnr-grid{
		display: grid;
		grid-template-columns: repeat(3, 32%);
		grid-row-gap: 16px;
		justify-content: space-between;
		margin: 0 auto 21px auto;
		width: 100%;
	}

/* newsletter 2 
----------------------------------------------------------- */
	.newsletter2{
		background: #f9f9f9;
		margin: 0 auto;
		padding: 21px 0;
		width: 100%;
	}
		.newsletter2 > div > b{
			color: #3e4956;
			display:block;
			font-size:34px;
			font-weight: bold;
			margin-bottom: 8px;
			text-align: center;
		}
		.newsletter2 > div > p{
			font-size:21px;
			font-weight:lighter;
			text-align: center;
		}
			.nsl-form{
				display: grid;
				grid-gap: 2%;
				grid-template-columns: 21% 21% 21% 13%;
				justify-content: center;
			}
				.nsl-form > input {
					border: 1px solid #bbb;
					border-radius: 0;
					font-weight: lighter;
					font-size: 13px;
					height: 44px;
				}
				.nsl-form > button{
					background: #e61248;
					border-radius: 8px;
					color: #fff;
					font-size: 13px;
					font-weight: bold;
					height: 44px;
				}
/* 
----------------------------------------------------------- */

/*/////////////////////////////////////////////////////////*/
@media only screen and (max-width: 480px){
	/*GRID de BANNERS*/
	.L-bnr-grid{
		grid-gap: 1%;
		grid-template-columns: repeat(2, 49%);
	}
	.nsl-form{
		grid-gap: 8px;
		grid-template-columns: 80%;
	}
}