/* -----------------------------------------------
Base
----------------------------------------------- */

body {
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #333;
  background: #eee;
  text-align: left;
}

*,
:after,
:before {
  box-sizing: border-box;
}

a {
  color: #00abf7;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #016597;
    text-decoration: none;
  }
}

button {
  background: none;
  border: none;
  &:hover {
    cursor: pointer;
  }
}

p {
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.2;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 1rem;
  }
}

table {
  border-collapse: collapse;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

button,
input {
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

[hidden] {
  display: none !important;
}
