/*Container page styles*/
html {
  font-size: 16px;
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
}
body {
  font-family: Inter, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  color: #0b0c0c;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}
body > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
body > div > * {
  flex: 0 0 auto;
  width: 100%;
}
a img {
  border: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

img {
  max-width: 100%;
}
body > div > main {
  margin: 0 auto 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  box-sizing: border-box;
  flex-grow: 1;
}
main > *:first-child {
  margin-top: 0;
}
a:link,
a:visited {
  color: #00607c;
  text-decoration: underline;
}
a:hover,
a:active,
a:focus {
  color: #b71800;
  text-decoration: none;
}
.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}
a.button,
a.button:link,
a.button:visited {
  border: 0;
  font-family: Inter, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: #00833b;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #00833b;
  transition: all ease-in 0.2s;
}
a.button:hover,
a.button:active,
a.button:focus {
  background: #00692f;
  border-color: #00692f;
  border-radius: 100px;
}

a.ghost.button,
a.ghost.button:link,
a.ghost.button:visited {
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all ease-in 0.2s;
}
a.ghost.button:hover,
a.ghost.button:active,
a.ghost.button:focus {
  background: #000;
  color: #fff;
}

a.button_teal,
a.button_teal:link,
a.button_teal:visited {
  border: 0;
  font-family: Inter, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: #00607c;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #00607c;
  transition: all ease-in 0.2s;
}
a.button_teal:hover,
a.button_teal:active,
a.button_teal:focus {
  background: #000;
  border-color: #000;
  border-radius: 100px;
}

a.button_red,
a.button_red:link,
a.button_red:visited {
  border: 0;
  font-family: Inter, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: #b71800;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #b71800;
  transition: all ease-in 0.2s;
}
a.button_red:hover,
a.button_red:active,
a.button_red:focus {
  background: #000;
  border-color: #000;
  border-radius: 100px;
}

.ul_list {
  padding-left: 28px;
  background: url(../images/bg-list.svg) no-repeat 7px 6px;
  background-size: 8px;
  background-position: 7px 7px;
}

ul {
  list-style: none;
}

/*Masthead and footer styles*/

header.wbcmasthead {
  margin: 0 auto 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  box-sizing: border-box;
}
header.wbcmasthead > div {
  padding: 1.4rem 0;
  border-bottom: 0.2rem solid #000;
  display: flex;
}
header.wbcmasthead img {
  width: 264px;
  max-width: 40vw;
}
@media (max-width: 1200px) {
  header.wbcmasthead {
    border-bottom: 0.2rem solid #000;
  }
  header.wbcmasthead > div {
    border-bottom: 0;
  }
}
footer.wbcfooter {
  background: #000;
}
footer.wbcfooter > div {
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 1.4rem 1rem;
}
footer.wbcfooter p {
  margin: 0;
  color: #fff;
}

.text {
  margin-top: 1.5rem !important;
}

footer.wbcfooter img {
  width: 180px;
  max-width: 35vw;
}
footer.wbcfooter ul {
  margin: 1rem 0 1rem 0;
  list-style: none;
  display: flex;
  gap: 0.5rem 3rem;
  flex-wrap: wrap;
  padding: 0;
  font-size: 0.9rem;
}
footer.wbcfooter a:link,
footer.wbcfooter a:visited {
  color: #fff;
  text-decoration: underline;
}
footer.wbcfooter a:hover,
footer.wbcfooter a:active,
footer.wbcfooter a:focus {
  color: #fff;
  text-decoration: none;
}
