@font-face {
	font-family: 'MontserratLight';
	src: url('/static/font/Montserrat-Light.ttf');
}

@font-face {
	font-family: 'Montserrat';
	src: url('/static/font/Montserrat-Regular.ttf');
}

@font-face {
	font-family: 'MontserratMedium';
	src: url('/static/font/Montserrat-Medium.ttf');
}

@font-face {
	font-family: 'MontserratSemiBold';
	src: url('/static/font/Montserrat-SemiBold.ttf');
}

@font-face {
	font-family: 'MontserratBold';
	src: url('/static/font/Montserrat-Bold.ttf');
}

@font-face {
	font-family: 'MontserratExtraBold';
	src: url('/static/font/Montserrat-ExtraBold.ttf');
}

template{
	display: none;
}

html,
body{
	height: 100%;
}

html,body{
	scroll-behavior: auto;
}

*{
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
	position: relative;
	font-family: 'Montserrat';
	-webkit-font-smoothing: antialiased;
	background: white;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: #353535;
	font-size: 16px;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

body{
	--blue: #2B4B9B;
	--default_color: #353535;
}

template{
	display: none;
}

input[type='submit'] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }



input,
textarea,
select{
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Montserrat';
}

select:focus{
	border: none;
}

a{
	text-decoration: none;
	color: var(--default_color);
}

.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	color: #FFFFFF;
	font-family: 'MontserratSemiBold';
	cursor: pointer;
}

.page_wrapper{
	transition: opacity 0.5s;
	overflow-x: hidden;
}

svg{
	display: block;
}

.ellipsis{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}