/* MODULOS ESPECIALIZADOS ======================================================= */
#modules {
    position: relative;
    align-items: center;
	padding: 120px 0;
}

#modules.gray {
	background-color: #f8f8f9;
}

#modules h2{
	font-weight: 200;
	font-size: 45px;
	color: #4F4DA7;
	margin: 0 0 20px 0px;
	text-align: center;
}

#modules .pageWidth {
	z-index: 1;

}

#modules .pageWidth > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#modules .pageWidth > div > div{
	width: calc(50% - 15px);
	background-color: #FFF;
	margin: 0 7px 40px 7px;
	box-sizing: border-box;
	position: relative;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	transition: all .3s;
	border-radius: 5px;
	overflow: hidden;
}

#modules .pageWidth > div > div:hover{
	box-shadow: 0 0 15px rgba(0,0,0,.3);
}

#modules .pageWidth > div > div .photo{
	min-height: 350px;
}

#modules .pageWidth > div > div:nth-child(1) .photo{
    background: url("module_crm.png") no-repeat 0 0;
    background-size: cover;
}

#modules .pageWidth > div > div:nth-child(2) .photo{
    background: url("module_hcm.png") no-repeat 0 0;
    background-size: cover;
}


#modules .pageWidth .wrapper{
	padding: 35px 50px 50px 50px;
}


#modules .pageWidth .wrapper span {
	width: 80px;
	height: 80px;
	text-align: center;
	margin-left: -5px;
	margin-bottom: 5px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 300;
	font-size: 30px;
	background-color: #FFF;
	transition: all .3s;
}

#modules .pageWidth .crm:hover .wrapper span {
	background-color: #FC636B;
	color: #FFF;
}

#modules .pageWidth .hcm:hover .wrapper span {
	background-color: #FFB900;
	color: #FFF;
}

#modules .pageWidth .crm .wrapper span {
	color: #fc636b;
	background-color: #FEEFF0;
}
#modules .pageWidth .hcm .wrapper span {
	color: #fd9a00;
	background-color: #FFF8E5;
}



#modules .pageWidth h3{
	font-weight: 300;
	font-size: 27px;
	margin: 0 0 20px 0;
}

#modules .pageWidth p{
	font-weight: 200;
	font-size: 20px;
	line-height: 29px;
	margin: 0 0 20px 0;
}

#modules .pageWidth p a{
    font-weight: 300;
}

#modules .pageWidth .crm p a{
    color: #FC636B;
}
#modules .pageWidth .hcm p a{
    color: #fd9a00;
}


#modules .pageWidth .crm p a:hover {
    cursor: pointer;
    text-decoration: underline;
}

#modules .pageWidth .hcm p a:hover {
    cursor: pointer;
    text-decoration: underline;
}


@media screen and (max-width: 850px) {
	#modules {
		padding: 120px 0;
	}
	#modules .pageWidth .wrapper{
		padding: 35px 30px 30px 30px;
	}

	#modules .texture{
		width: 70%;
	}

}


@media screen and (max-width: 750px) {
	#modules .pageWidth > div{
		flex-direction: column;
	}
	#modules .pageWidth > div > div{
		width: 100%;
		background-color: #FFF;
		margin: 0 0 30px 0;
	}

}