html, body {
	padding: 0;
}

/*-------- helpers -----------*/
.hidden {
	display: none !important;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.bg-blue {
	background: #061ab1;
	color: #fff;
}

/*-------- elements -----------*/
.btn,
button {
	background: #ffd100;
	border: 1px solid #ffd100;
	color: #000000;
	font-size: 14px;
	line-height: 18px;
	border-radius: 30px;
	padding: 16px 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	transition: all 0.2s ease;
}

.btn.btn-inline-block {
	display: inline-block;
	width: auto;
}

.btn:hover,
button:hover {
	background: #d6af00;
	border-color: #d6af00;
}

.btn:focus,
button:focus {
	outline: 2px solid #061ab1;
	outline-offset: 2px;
}

.btn:disabled,
button:disabled {
	background: #8b8c8c;
	border-color: #8b8c8c;
	color: #ffffff;
	outline: none;
}

/*-------- layout -----------*/
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body > main {
	flex: 1;
}

body > header,
body > main > section,
body > footer {
	padding: 30px 0;
}

/*-------- header -----------*/
.page-header {
	position: relative;
	display: flex;
	@media (min-width: 992px) {
		justify-content: center;
	}
}

.logo {
	height: 45px;
	max-width: 100%;
	margin: 0 16px 30px;
}

.btn-track {
	background-color: #ffd100;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 1rem;
	border-radius: 9999px 0 0 9999px;
	color: black;
	font-size: 0.875rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

/*-------- page sections -----------*/
.yellow-frame {
	background: #fff8d8;
}

.yellow-frame .container {
	display: flex;
	gap: 15px;
	align-items: center;
}

.yellow-frame .left-icon {
	width: 24px;
}

.yellow-frame a {
	text-decoration: underline;
}

.support {
	padding: 60px 0;
}

.support nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: space-between;
	margin-top: 30px;

	@media only screen and (min-width: 576px) {
		flex-direction: row;
	}
}

.support nav a {
	flex: 1 0 auto;
	background: #c8e7f2;
	color: #000;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .15);
	border-radius: 9px;
	padding: 18px;
	display: flex;
	gap: 20px;
	align-items: center;
}

.support nav a img {
	width: 24px;
}

/*-------- footer -----------*/
.footer-socials {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 30px;
}

.footer-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 0;
	font-size: 14px;
}

.footer-nav ul li {
	border-right: 1px solid white;
	padding: 0 12px;
}

.footer-nav ul li:last-of-type {
	border-right: none;
	padding-right: 0;
}

.footer-nav a {
	color: #ffffff;
}