/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
	outline: none;
	font-size: small;
}
html {
	overflow-x: hidden;
}
body {
	font-family: 'Manrope', sans-serif;
}

.container {
	max-width: 1456px;
	margin: 0 auto;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: small;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
	font-size: small;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: small;
    color: inherit;
    background-color: transparent;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}


@media (max-width: 600px) {
	.container {
		margin: 0;
	}
}