body,
p, 
a, 
li  {
	font-family: 'SF UI Display';
	font-weight: normal;
    font-style: normal;
	color: #011124;
}
body {
	position: relative;
	background-color: #F7F7F7;
}
body.hidden {
	overflow: hidden;
}
body.hidden:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #00000078;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 777;
}
.btn {
	background: #184A86;
	color: white;
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	cursor: pointer;
	transition: ease-in-out .2s;
	cursor: pointer;
}
.btn:hover {
	background-color: #2662AB;
}
.btn:focus,
.btn:active {
	background-color: #397DCE;
}
.flex {
	display: flex;
}
h2 {
	font-size: 32px;
}

@media screen and (max-width: 767px) {
	h2 {
		font-size: 20px;
	}
}

.white {
	color: white;
}