/* -- Right Choise -- */
.right-choise {
	background: #EEEEEE;
}
.right-choise .container {
	overflow: hidden;
	margin-top: 25px;
	position: relative;
}

.right-choise .content {
	background-color: #FFFFFF;
	width: 490px;
	height: 306px;
	display: inline-block;
	border-radius: 16px;
	margin: 10px;
}
.right-choise .content img {
	display: block;
	position: relative;
	text-align: center;
	margin-top: 94px;

}
.right-choise .content .text {
	display: block;
	position: relative;
	text-align: center;
	margin-top: 10px;
	font-size: 28px;
	color: #3F3F3F;
	font-weight: 600;
}
.right-choise .content .text_to_show {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	margin-top: -236px;
	border-radius: 16px;
	background-color: #0669BF;
	width: 490px;
	height: 307px;
	opacity: 0;
	transition: all 0.2s ease-in-out;
	text-align: left;
	font-size: 16px;
	color: #ffffff;
	padding: 0 25px;
}
.right-choise .content .text_to_show a {
	color: #ffffff;
}
.right-choise .content:hover .text_to_show {
	opacity: 1;
}

@media (max-width: 560px) {
	.right-choise .container {
		padding-bottom: 50px;
	}
	.right-choise .content {
		margin: 70px 0 0 0;
		height: 150px;
		width: 100%;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.right-choise .content:first-child {
		margin-top: 0px;
	}
	.right-choise .content img {
		display: block;
		position: relative;
		text-align: center;
		margin-top: 15px;
		border-radius: 16px;
	}
	.right-choise .content .text {
		display: block;
		position: relative;
		text-align: center;
		margin-top: 10px;
		margin-bottom: 0px;
		font-size: 28px;
		color: #3F3F3F;
		font-weight: 600;
	}
	.right-choise .content .text_to_show {
		display: block;
		position: relative;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		margin-top: 0;
		opacity: 1;
		background-color: #ffffff;
		height: auto;
		width: 100%;
		color: #3F3F3F;
		padding: 0px 25px 25px 25px;
	}
	.right-choise .content .text_to_show a {
		color: #3F3F3F;
	}
}