ul {
  list-style: none;
}

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

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  background-color: #0097e9;
  color: var(--white);
  text-align: center;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  font-size: var(--Font-primary);
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
}

.btn-primary:hover {
  background-color: #00a6ff;
  box-shadow: var(--Default-Shadow);
}
.btn-secondary {
  color: var(--white);
  background-color: black;
}
.btn-secondary:hover {
  background-position: 60px;
  background-color: var(--white);
  color: var(--dark-color);
}

.max-width-lg {
  max-width: var(--max-width);
}

/* Fonts */

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.6rem;
}
h5{
  font-size: 15px;
  font-weight: 400;
}
h6 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
}

p {
  line-height: 150%;
  font-size: 16px;
  
}

a {
  text-decoration: underline;
  color: blue;
  transition: 0.2s all;
}

a:hover {
  color: rgb(0, 0, 163);
}

.v-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}