body{
	position: relative;
	padding: 0;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	background-color: #1D5C42;
	font-size: 20px;
	font-weight:300;
}

.esquina{
	position: fixed;
	bottom: 0;
	right: 0;
}

strong{
	font-weight: 600;
	margin-top: .5rem;
}

a:link,
a:active,
a:visited{
	color: #fff;
}

a:hover{
	text-decoration: none;
}

.logo{
	max-width: 270px;
	width: 100%;
	margin-bottom: 7rem;
}

.row > div{
	height: 100vh;
}

ul{
	list-style: none;
	padding: 0;
}

.title{
	font-size: 30px;
}

.subtitle{
	margin: 4rem 0;
	padding-bottom: 4rem;
	position: relative;
}

.subtitle:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 18px);
	width: 36px;
	height: 2px;
	background-color: #ABC785;
}

address,
ul{
	margin-bottom: 0;
}


/************************ RESPONSIVE ************************/

/* X-Large desktop */
@media (min-width: 1200px) {
	    
}

/* Large desktop */
@media (max-width: 1199px) {
	    
}

/* Portrait tablet to landscape and desktop */
@media (max-width: 991px) { 
	.esquina{
		bottom: -30px;
		right: -30px;
	}
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	.esquina{
		bottom: -60px;
		right: -60px;
	}
	
	.logo{
		margin-bottom: 3rem;
	}
	
	body{
		font-size: 16px;
	}
	
	.title{
		font-size: 20px;
	}
	
	.subtitle{
		font-size: 16px;
		margin: 2rem 0;
		padding-bottom: 2rem;
	}
}

/* Landscape phones and down */
@media (max-width: 320px) {
	.esquina{
/*		display: none;*/
		bottom: -130px;
		right: -130px;
	}
	
}