#container {
    min-height: 70vh;
}
#container img {
	position: fixed;
	top: 40%;
	transform: translateY(-40%);
}
#container img:last-child {
	position: fixed;
	top: 60%;
	right: 5%;
	transform: translate(-60%, -5%);
}
#termContainer {
	width: 60%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 100px;
}
.item {
	margin-bottom: 40px;
}
.item h1, .item p, .item ol, .item li {
    font-family: 'Poppins';
    font-style: normal;
}
.item h1 {
	font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-transform: capitalize;
    color: #FFFFFF;
}
.item h2 {
	color: #fff;
	text-transform: capitalize;
}
.item p, .item ol, .item li {
	font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #757A81;
}
.item a {
	color: var(--pink);
	text-decoration: none;
	transition: var(--default-transition);
	-webkit-transition: var(--default-transition);
}
.item a:hover {
	color: var(--pink-hover);
}
.center {
	text-align: center;
}
@media screen and (max-width: 1200px) {
	#container img {
		display: none;
	}
}
@media screen and (max-width: 800px) {
	#termContainer {
		width: 90%;
	}
}