/* SCROLLBAR width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;


}

/* SCROLLBAR Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* SCROLLBAR Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* SCROLLBAR Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}






.center {
  display: flex;
  justify-content: center;
}





.container {
  width: 100%;
  max-width: var(--max-width);
}

/* reset */
button {
  border-radius: 0;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

button:focus,
button:focus-visible {
  outline: 0
}


.bigButton {
  background: #d51a27;

  font-family: 'Teko', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 4px;

  color: white;

  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  width: fit-content;

  padding: 0.9rem 1.9rem;

}

.bigButton:hover {
  background-color: #d51a2688;
  color: white;
  padding: 0.9rem 3rem;
  letter-spacing: 5px;
}

.button {
  color: #d51a27;
  border-width: 8px;
  border-color: #ffffff;
  border-radius: 0px;
  letter-spacing: 4px;

  font-size: 16px;
  font-family: 'Teko', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;

  background-color: #ffffff;

  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  width: fit-content;
  padding: 15px 60px;
}

.button:hover {
  letter-spacing: 5px;
  color: #5c2d30;
  background-color: #ffffffa7;
  padding: 15px 90px;
}



.glow {
  box-shadow: 0px 30px 110px 14px rgba(152, 165, 181, 0.6)
}