<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    color: inherit;
}
body {
    font-family: "termina";
}

.main-nav {
    background: #333;
	z-index: 50;
}
.main-nav-inner {
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}
.main-nav img {
    width: 300px;
}
.main-nav a {
	z-index: 100;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-nav ul li:not(.cta) a {
    font-weight: 900;
    color: #fff;
}
.main-nav ul li.cta {
    background: #39c7cf;
    padding: 10px 40px;
    margin-left: 20px;
}
.main-nav ul li.cta a{
    color: #333;
}

.main-footer {
	background: #333;
}
.footer-inner {
	max-width: 1440px;
	margin: auto;
}
.footer-details {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 80px 0;
}
.footer-details img {
	width: 200px;
}
.footer-detail {
	display: flex;
	flex-direction: column;
	width: 25%;
}
.footer-detail h1 {
	font-weight: 900;
	color: #5c5b5b;
	font-size: 32px;
}
.footer-detail a {
	color: #c4c4c4;
}
.disclaimer-footer {
	background: #282727;
}
.disclaimer-details {
	display: flex;
	color: #fff;
	justify-content: space-between;
	font-family: arial;
	padding: 20px 0;
}
.disclaimer-details a {
	color: #c4c4c4;
}
.disclaimer-details a:hover {
	color: #39c7cf;
}
.mobile-nav-toggle {
	display: none;
}

@media screen and (max-width: 767px) {
	.mobile-nav-toggle {
		display: flex;
		flex-wrap: wrap;
		aspect-ratio: 1/1;
		height: 30px;
		align-content: space-around;
		z-index: 100;
		position: relative;
	}
	.mobile-nav-toggle.active {
		align-items: center;
		justify-content: center;
	}
	.mobile-nav-toggle.active .mobile-toggle-bar.mid-bar {
		display: none;
	}
	.mobile-nav-toggle.active .mobile-toggle-bar.top-bar {
		transform: rotate(-45deg);
		position: absolute;
	}
	.mobile-nav-toggle.active .mobile-toggle-bar.bottom-bar {
		transform: rotate(45deg);
		position: absolute;
	}
	.mobile-toggle-bar {
		width: 100%;
		height: 4px;
		background: #fff;
		border-radius: 3px;
	}
	.main-nav {
		position: fixed;
		width: 100%;
	}
	.main-nav-inner {
		padding: 10px 20px;
		min-height: initial;
	}
	.main-nav ul {
		display: none;
		height: 100vh;
		position: absolute;
		inset: 0;
		background: #000;
		padding: 100px 20px;
	}
	.main-nav ul.active {
		display: block;
	}
	.main-nav ul li {
		width: 100%;
	}
	.main-nav ul li.dashed {
		border-bottom: 1px dashed #fff;
	}
	.main-nav ul li a {
		font-weight: 300;
		padding: 15px 25px;
		font-size: 20px;
		display: block;
	}
	.main-nav ul li.cta {
		margin: 40px 0 0 0;
		padding: 0;
		text-align: center;
		font-size: 16px;
	}
	.main-nav img {
		width: 150px;
		display: inherit;
	}
	.footer-details {
		flex-wrap: wrap;
		padding: 40px 0;
	}
	.footer-detail {
		width: 100%;
		align-items: center;
		margin: 20px 0;
	}
	.footer-detail h1 {
		font-size: 18px;
	}
	.disclaimer-details {
		flex-wrap: wrap;
	}
	.disclaimer-details p {
		width: 100%;
		text-align: center;
		padding: 10px;
	}
}</pre></body></html>