/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

.app-container {
	max-width: calc(1440px - 200px);
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.sub-text {
	font-family: Fixel Display;
	font-weight: 700;
	font-size: 44px;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	color: #FFFFFF;
}

.app-btn {
	padding: 24px 44px;
	border-radius: 16px;
	font-family: Avenir Next;
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	color: #FFFFFF;
	width: fit-content;
	margin: 0 auto;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

.tablet {
	display: flex;
}

.mobile {
	display: none;
}

@media screen and (max-width:1024px) {
	.app-container {
		max-width: calc(100% - 48px);
	}

	.sub-text {
		font-size: 32px;
	}

	.tablet {
		display: none;
	}

	.mobile {
		display: flex;
	}

	.app-btn {
		padding: 16px 0;
		font-size: 16px;
		width: 100%;
	}
}
.dropd{
	    top: 25px;
    left: -35px;
	position: absolute;
	display: flex;
	padding: 20px 0;
	flex-direction: column;

	gap: 10px;
	align-items: center;
	justify-content: center;
	width: 200px;
	background-color: #FFFFFFB2;
    backdrop-filter: blur(15px);
	border-radius: 16px;
}
.dropd a{
	color: #16172C!important;

}
.dropdown{
	position: relative;
}