#discount{
	margin-top: 3rem;
	background-image: url("../../images/offer/zendu-discount-paralax.jpg");
	color: #FFF;
	font-family: 'Work Sans', sans-serif;
}

#discount .pimage-content{
	padding: 2rem;
}

#discount h2{
	font-size: 4.5rem;
}

#discount p{
	text-align: left;
	font-size: 1.5rem;
}

.dropdown-parent{
	margin: auto;
	padding: .5rem 1.2rem;
	border: 1px solid #82CE64;
	max-width: 250px;
	font-size: 1rem;
	position: relative;
	cursor: pointer;
	font-family: 'Work Sans', sans-serif;
	color: #707070;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.dropdown-parent .dropdown-links{
	position: absolute;
	left: 0;
	top: calc(100% + 1px);
	max-height: 0;
	width: 100%;
	opacity: 0;
	overflow: hidden;
	transition: opacity .5s, max-height .75s;
	z-index: 1000;
	
}

.dropdown-parent:hover .dropdown-links{
	display: block;
	opacity: 1;
	max-height: 500px;
	max-width: 500px;
	transition: opacity .5s, max-height .75s;
}

.dropdown-links li{
	padding: .75rem;
}

.dropdown-links li:hover{
	background-color: rgba(205, 205, 205, .5);
	color: #82CE64;
}




.massage {
	max-width: 950px;
	padding: 2rem;
	margin: auto;
	margin-top: 5rem;
	font-family: 'Work Sans', sans-serif;
	color: #707070;
	}

.massage .row{
	display: flex;		
	flex-direction:row;
	justify-content: space-between;
}

.row-item{
	width:600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.row-item:nth-child(even){
	margin-left: 40%;
}

.massage p{
	font-size: 1.2rem;
}

.massage .gray-title{
	font-family: 'Work Sans', sans-serif;
	font-size: 1.5rem;
}

.massage .gray-title::after{
	width: 30px;
}

#disclamer{
	color: #82CE64;
	font-family: 'Work Sans', sans-serif;
	font-size: 1.2rem;
	max-width: 1000px;
	display: flex;
	justify-content: center;
	margin: 3rem auto;
	padding: 1rem 5rem;
	text-align: justify;
}

.hide{
	display: none;
}

@media screen and (max-width: 650px){
	.row{
		flex-wrap: wrap;
		padding-left: 2rem;
	}

	.row-item:nth-child(even){
		margin-left: unset;
	}

	#discount p{
		font-size: 1.2rem;
	}

	#discount h2{
		font-size: 4rem;
	}
}


@media screen and (max-width: 450px){
    #disclamer{
        padding: 1rem 2rem;
    }

	#discount .pimage-content{
		padding: 1rem;
	}

	#discount p{
		font-size: 1rem;
	}

	#discount h2{
		font-size: 3rem;
	}

	#discount svg{
		max-width: 40px;
	}
}