/*--------- FONTS ----------*/

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: fallback;
}

/*--------- CONST ----------*/

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg: #F6F8FE;
  --bg-dark: #161B2E;
  --white: #FFFFFF;
  --text: #0F1729;
  --text-grey: #5A6478;
  --text-white: #C8D2E2;
  --accent: #4A9EF7;
  --accent-deep: #2D6FD9;
}

/*--------- NULLING STYLE ----------*/

*{
	padding: 0;
	margin: 0;
	border: 0;}
*,*:before, after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 16px;
  font-weight: 400;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;}
div, p, a, span {font-family: var(--font);}
input,button,textarea{font-family: var(--font);}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-mox-focus-inner {padding:0; border:0;}
a, a:visited{text-decoration: none; cursor: pointer;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{display: block; vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-family: var(--font); font-weight: 400}

/*--------- CUSTOM ----------*/

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: var(--text);
  transition: all 0.2s;
}

img {
  width: 100%;
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 20px;
  }
}