/*@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto');*/
@import url('../../css/resetBrowser.css');
@import url('../../css/components/navigationBar.css');
@import url('../../css/components/container-Content.css');
@import url('../../css/components/h1.css');
@import url('../../css/components/h2.css');
@import url('../../css/components/h3.css');
@import url('../../css/components/footer.css');
@import url('../../css/utils/imagePopUp.css');

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

.container-Products{
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.container-Products-Element{
	position: relative;
	width: 80%;	
	margin: 10px 0;
	margin-left: 20%;
	display: flex;
	justify-content: space-around;
}

.container-Products-Element h3{
	cursor: pointer;
	margin-top: 40px;
}

.container-Products-Element-Image{
	position: relative;
	flex: 1;
}

.container-Products-Element-Image img{
	width: 100%;
}

.container-Products-Element-Text{
	flex: 4;
	padding: 20px;
	border: 1px solid #FFF;
	border-radius: 4px;
}

.container-Products-Element-Text-Description{
	max-height: 0px;
	overflow: hidden;
	color: #666;
	font-family: 'Raleway', sans-serif;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.3; 
	-webkit-transition: all 2s ease; 
    -moz-transition: all 2s ease; 
    -ms-transition: all 2s ease; 
    -o-transition: all 2s ease; 
    transition: all 2s ease;
}

.container-Products-Element-Text-Description ul{
	margin: 20px 40px;
}

.container-Products-Element-Text-Description p{
	margin: 20px;
}

.container-Products-Element-Text-Link{
	width: 50%;	
	padding: 10px;
	margin: 40px auto;
	background: rgba(58,95,205,0);
	border: 1px solid #DDD;
	border-radius: 4px;
	text-align: center;
	color: #3a5fcd;
	font-family: 'Raleway', sans-serif;
    font-weight: normal;
    font-size: 20px;
    transition: all 0.5s ease;
}

.container-Products-Element-Text-Link:hover{
    background: rgba(58,95,205,0.75);
    border: 1px solid #999;
    box-shadow: 0px 0px 2px #999;
}

.container-Products-Element-Text-Link:hover a{
    color: #FFF;
}

.container-Products-Element-Text-Link a{
    color: #3a5fcd;
}

@media(max-width: 380px){

	.container-Products-Element{
		width: 95%;
		margin: 20px auto;
		flex-direction: column;
		align-items: center;
		border: 1px solid #EEE;
		border-radius: 4px;
	}

	.container-Products-Element-Image{
		width: 50%;
	}

	.container-Products-Element-Text h3{
		color: #3a5fcd;
		margin-top: 0;
	}

	.container-Products-Element-Text-Link{
		width: 95%;
	}

	.container-Products-Element-Text-Description p{
		margin: 0;
	}
}