html {
    color: #141414;
	font-family: Inter ,-apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, Tahoma, Sans-Serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	-webkit-font-smoothing: subpixel-antialiased !important;
}
a {
	background: none;
    color: #007AFF;
	cursor: pointer;
	text-decoration: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
select {
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
    background: none repeat scroll 0 0 #FFF;
    width: auto;
    height: auto;
    border-color: #9b9b9b;
    border-style: solid;
    border-width: 1px;
    padding: 3px;
}
input,
select,
textarea {
	color: #555;
	font-family: Inter, sans-serif;
	font-size: 15px;
	line-height: 28px;
	outline: none;
}
table {
	border-collapse: collapse;
    border-spacing: 0;
}

/* Layout */
.container {
    margin: 0 auto;
	max-width: 1100px;
    width: 100%;
}

@media screen and (max-width: 992px) {
	.container {
		width: 100%;
	}
}