* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
}
:root {
  --main-color: #1b3965;
  --secondary-color: #2ecc71;
  --white-color: #ffffff;
  --black-color: #000000;
  --energy-color: #cff200;
  --energy-blue-color: #0059de;
  --padding: 16px;
  --font-size: 1.6rem;
  --background-white: #fff;
}
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* img,
video {
  max-width: 100%;
  height: auto;
  display: block;
} */

table {
  border-collapse: collapse;
  width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

[hidden] {
  display: none !important;
}
