/*
    Theme Name: SMDC revamp v2.0
    Author: Sol Cabreza
    Description: revamp v2.0
    version: 2.0
*/
*,
*::before,
*::after  {
    padding: 0;
    margin: 0;
    font-family: 'smFont', sans-serif;
    box-sizing: border-box;
}

body{
  background-color: #DEE2E6 !important  ;
  scroll-behavior: smooth;
}

p{
  font-size: 20px;
  font-weight: 300;
  color: #001845;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}

#thank-you-modal {
  display: none !important;
}

#thank-you-modal p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

#thank-you-modal button {
  background: #0073aa;
  color: #fff;
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#thank-you-modal button:hover {
  background: #005177;
}

/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #001845;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #012a77;
}

@media screen and (max-width: 768px) {

  p{
    font-weight: 300;
  }
}