:root {
  --primary: #1abc9c;
  --gray: #dadada;
  --gray-light: #f3f3f3;
}
body,
#siteWrapper {
  height: 100dvh;
}
#siteWrapper {
  display: flex;
  flex-direction: column;
}
#siteWrapper > .container {
  flex: 1;
}
.flex {
    display: flex;
}
.gap-8 {
 gap: 8px
}
/* HEADINGS START */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  border-bottom: 2px solid var(--gray);
  padding-bottom: 8px;
}

h1 {
  font-size: 28px;
  margin-top: 28px;
  margin-bottom: 18px !important;
}

h2 {
  font-size: 24px;
  margin-top: 26px;
  margin-bottom: 16px !important;
}

h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 14px !important;
}

h4 {
  font-size: 18px;
  margin-top: 24px;
  border-bottom: unset;
  margin-bottom: 12px !important;
  padding-bottom: 0px !important;
}

h5 {
  font-size: 12px;
  margin-top: 22px;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}
h6 {
  font-size: 12px;
  margin-top: 18px;
  margin-bottom: 4px !important;
  padding-bottom: 0px !important;
  border-bottom: unset;
  text-transform: uppercase;
}

/* For small screens */
@media (max-width: 991px) {
  h1 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 16px !important;
  }

  h2 {
    font-size: 20px;
    margin-top: 22px;
    margin-bottom: 14px !important;
  }

  h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px !important;
  }

  h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px !important;
  }

  h5 {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 8px !important;
  }
  h6 {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 4px !important;
  }
}

/* HEADINGS END */

/* PAGES START */
/* Videos */
.video-previews {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
/* PAGES END */

/* Overwriting */
img {
    max-width: unset !important;
}
td, th {
    padding: 8px 
}
ol {
    list-style-type: decimal; 
}
ol li ol, ol li ul {
  padding-left: 32px;
}
.grid li:before {
    position: static
}
a h3 {
  transition: color 100ms linear;
}
a:hover h3 {
  color: var(--primary) !important;
}

h3 a {
  color: inherit !important;
  transition: color 100ms linear;
}
h3:hover a {
  color: var(--primary) !important;
}

/* TEMPORARY */
.content{
    padding-left: 0 !important;
    float: unset !important;
    
}
.grid li:before , .grid li:after {
    border: none !important
}
ul , ol {
  margin-bottom: 0 !important
}
.grid li {
  float: unset;
  position: static;
  width: unset !important;
  padding: 0;
  opacity: 1;
}
.grid li:hover {
  cursor: unset !important;
  background-color: unset !important;
}

a {
  scroll-margin-top: 250px;
}
@media (max-width: 991px) {
  a {
    scroll-margin-top: unset;
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  /* 
     The float property set to "unset" can cause an issue 
     where the next column overlaps the current one, 
     disrupting the layout flow.
  */
  .col-md-3 {
    float: unset !important;
  }
}










































