* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Karla', sans-serif;
	font-size: 16px;
}

.container {
	background: hsl(204, 43%, 93%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}



.box {
	margin: 200px 200px;
	width: 700px;
	height: 520px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	box-shadow: 6px 15px 15px 0px rgba(0, 0, 0, 0.1), -6px 0px 15px 0px rgba(0, 0, 0, 0.1);

}



.row-1 {
	width: 100%;
	height: 45%;
}

.row-2 {
	width: 100%;
	height: 55%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	
}


.box-1 {
	padding: 40px 45px;
	width: 100%;
	height: 100%;
	background: white;
	color: hsl(218, 22%, 67%);
	font-weight: 700;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.title {
	color: hsl(179, 62%, 43%);
	font-size: 30px;
	margin-bottom: 20px;
}

.sub-title-1 {
	color: hsl(71, 73%, 54%);
	font-size: 23px;
	margin-bottom: 15px;
}

.paragraph-1 {
	font-size: 17.5px;
	line-height: 1.5em;
}




.box-2 {
	background: hsl(179, 62%, 43%);
	border-bottom-left-radius: 10px;
}

.box-3 {
	background:  hsl(179, 62%, 43%);
	border-bottom-right-radius: 10px;
	opacity: 0.8;
}


.box-2,
.box-3 {
	width: 50%;
	height: 100%;
	padding: 40px 45px;
	color:  hsl(204, 43%, 93%);
	font-weight: 700;
} 


.sub-title-2,
.sub-title-3 {
	font-size: 23px;
	color: white;
	margin-bottom: 15px;
}


.paragraph-2,
.paragraph-3 {
	font-size: 17px;
	line-height: 1.4em;
	font-weight: 400;
}

.paragraph-2 {
	color: white;
	margin-top: 10px;
}

.paragraph-3 {
	color: hsl(204, 43%, 93%);
	margin-top: 15px;
}

.price {
	margin-top: 15px;
	margin-bottom: 5px;
}

span {
	font-size: 35px;
	color: white;
	font-weight: 700;
}

sup {
	font-size: 20px;
	color: color: hsl(204, 43%, 93%);
	padding-left: 15px;
	font-weight: 400;
}

.btn {
	width: 250px;
	height: 50px;
	padding: 10px 20px;
	margin-top: 30px;
	font-size: 20px;
	text-align: center;
	color: white;
	background: hsl(71, 73%, 54%);
	cursor: pointer;
	border: 3px solid hsl(71, 73%, 54%);
	border-radius: 5px;
	box-shadow: 6px 15px 15px 0px rgba(0, 0, 0, 0.1), -6px 0px 15px 0px rgba(0, 0, 0, 0.1);
	transition-duration: 0.2s;

}

.btn:hover {
	color: hsl(71, 73%, 54%);
	background: white;
	border: 3px solid hsl(71, 73%, 54%);

}


/* ------------ media ------------ */
@media only screen and (max-width: 730px) {

.box {
	margin: 60px 200px;
	width: 90%;
	height: 80%;

}



.row-1 {
	height: 36%;
}

.row-2 {
	height: 64%;
	flex-direction: column;
	
}


.box-1 {
	padding: 35px 35px;
}



.box-2 {
	border-bottom-left-radius: 0;
}

.box-3 {
	border-bottom-left-radius: 10px;
}


.box-2,
.box-3 {
	width: 100%;
	height: 50%;
	padding: 35px 35px;
} 

.btn {
	width: 100%;
	height: 55px;
	margin-top: 40px;

}


}



@media only screen and (max-width: 430px) {

.title {
	font-size: 22px;
	margin-bottom: 22px;
}

.sub-title-1 {
	font-size: 16px;
	margin-bottom: 18px;
}

.paragraph-1 {
	font-size: 13px;
	line-height: 1.7em;
}

.sub-title-2,
.sub-title-3 {
	font-size: 20px;
	margin-bottom: 18px;
}


.paragraph-2,
.paragraph-3 {
	font-size: 16px;
	line-height: 1.7em;
}


span {
	font-size: 30px;
}

sup {
	font-size: 15px;
}


.btn {
	font-size: 18px;
}



}




@media only screen and (max-width: 335px) {


.box-1 {
	padding: 35px 20px;
}

.box-2,
.box-3 {
	padding: 35px 20px;
} 

.btn {
	width: 100%;
	height: 55px;
	padding: 10px 10px;
	margin-top: 40px;


}






