body *{
	transform: none !important;
	transition: none !important;
	pointer-events: auto;
}

#nav-bar{
	opacity: 1;
}

main{
	margin-top: 130px;
}

section{
	margin-bottom: 30px;
}

section:first-of-type{
	margin-bottom: 80px;
}

section h1{
	padding: 0 0 .7% 0;
}

#yellow-line{
	background-color: #ebc84a;
	width: 150px;
	height: 2px;
	margin: 0 auto 10px auto;
	padding: 0;
}

section div{
    background-color: #4a4a4a;
    padding: 0 75px;
    border-radius: 20px;
}

section h2{
	text-align: left;
	padding: 0 0 1% 0;
	font-size: 1.55vw;
	margin-left: 75px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
}

section h2::before{
	content: "";
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 12px solid #ebc84a;
}

section div p{
	text-align: left;
	margin-bottom: 20px;
}

section div p:last-of-type{
	margin-bottom: 0;
}

section div ul{
	list-style-type: disc;
	margin: 0 0 20px 25px;
}

section div ul li{
	padding-bottom: 10px;
}

section div a{
	color: #fff;
}

.privacyLink{
	display: none;
}

@media only screen and (min-width: 1280px) {
    section h2{
        font-size: 20px;
    }
    
    section div ul{
		font-size: 18px;
	}
}

@media (max-width: 900px){
	/* typography – switch from vw to px so it doesn't get tiny */
	h1{
		font-size: 28px;
		line-height: 1.3;
	}

	section h2{
		font-size: 16px;
		line-height: 1.3;
		margin-left: 30px;
	}
	
	section div{
	    padding: 20px 40px;
	}
	
	section div ul{
		font-size: 14px;
	}
}

@media (max-width: 600px){	
	/* headings a bit smaller */
	h1{
		font-size: 24px;
	}
	
	section h2{
		margin-left: 10px;
	}
	
	section div ul{
		font-size: 13px;
	}
}