body {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
}

ul,ol {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

input:focus {
	outline: none;
}

textarea:focus {
	outline: none;
}

select:focus {
	outline: none;
}

/*input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}*/

p {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}

.mr-top {
	margin-top: 70px;
}

.mr-bottom {
	margin-bottom: 20px;
}

.mr-bottom-2 {
	margin-bottom: 20px;
}

.bg-1 {
	background-color: #FAFAFB;
}

.bg-2 {
	background-color: #F5F5F5;
	padding: 15px 0;
}

.bg-3 {
	background-color: white;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8));
  }
}