:root {
  --blue: blue;
  --green: green;
  --white: white;
  --light: light;
  --mid: #c0c0c0;
  --darkGrey: #41414111;
  --black: #000;
}

h1, h2, h3, h4, h6, p {
  color: unset;
}

h1,
.heading-h1 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}
@media (min-width: 992px) {
  h1,
  .heading-h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

.btn-primary {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 12px 18px;
  font-size: 16px;
}
.btn-primary.btn-small {
  padding: 8px 12px;
  font-size: 14px;
}
.btn-primary.btn-large {
  padding: 20px 40px;
  font-size: 16px;
}
.btn-primary.btn-full {
  width: 100%;
  font-size: 16px;
}

a {
  font-weight: 700;
  color: var(--black);
}
a.underlined {
  text-decoration: underline;
}

.header {
  background-color: red;
}

.mobile-nav {
  background-color: green;
}

.mobile-nav-active .mobile-nav {
  background-color: blue;
}

footer {
  background-color: yellow;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

#main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ul-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.check-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.check-list li {
  position: relative;
  margin-bottom: 16px;
  margin-left: 30px;
  line-height: 19px;
}
.check-list li::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 1rem;
  color: red;
  margin-right: 5px;
  position: absolute;
  left: -30px;
}

.z-15 {
  z-index: 15;
  position: relative;
}

.t-c-l {
  text-align: center !important;
}
@media (min-width: 992px) {
  .t-c-l {
    text-align: left !important;
  }
}

.site-container-1340 {
  padding-right: 12px;
  padding-left: 12px;
  margin: auto;
  position: relative;
  max-width: 1340px;
  width: 100%;
}