/* ----- Reset css ----- */
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
  vertical-align: middle;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
img,
article {
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

ul {
  list-style-type: none;
  margin: 0px;
}

input,
textarea,
select,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

html {
  text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -o-text-size-adjust: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #aaaaaa;
}

:-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

::-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #aaaaaa;
}
