@font-face {
  font-family: Lulo-Clean;
  src: url("https://uzuricoaching.co.za/site/fonts/Lulo-Clean.ttf") format("truetype");
}
:root {
  --header-font-family:"Lulo-Clean";
  --primary-black:#252424;
  --tl-header-bg-colour:white;
  --tl-header-height:150px;
  --tl-footer-background-colour:#252424;
  --tl-footer-colour:white;
  --tl-footer-background-colour:#252424;
  --tl-footer-colour:white;
  --tl-footer-height:100px;
}

.template-layout {
  display: grid;
  height: 100vh;
}

.tl-header {
  background-color: var(--tl-header-bg-colour);
}

.tl-nav-link {
  text-decoration: none;
  color: black;
  cursor: pointer;
  padding: 10px;
}

.div-link {
  padding-bottom: 1rem;
}

.active-div-nav {
  border-bottom: 2px solid black;
}

.tl-subheader-top {
  background-color: white;
}

.tl-header-brand, .tht-brand {
  font-family: var(--header-font-family);
  font-size: 16px;
}

.tl-sub-body {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.tl-footer {
  grid-row: 3/4;
  position: relative;
  height: var(--tl-footer-height);
  background-color: var(--tl-footer-background-colour);
  color: var(--tl-footer-colour);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 767.98px) {
  .template-layout {
    grid-template-rows: 1fr auto;
  }
  /* ------ TL HEADER ------ */
  .tl-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
    display: grid;
    grid-template-rows: var(--tl-header-height) auto;
    grid-template-columns: repeat(12, 1fr);
  }
  .tl-header-open {
    transform: translateX(0);
  }
  .tl-header-brand {
    grid-row: 1/2;
    grid-column: 2/11;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .test {
    display: none;
  }
  .tht-toggle-main-container {
    display: flex;
    justify-content: end;
  }
  .nav-toggle-btn-1, .nav-toggle-btn-2, .nav-toggle-btn-3 {
    width: 35px;
    height: 2px;
    background-color: var(--primary-black);
    margin: 5px 0;
    transition: 0.5s;
  }
  .nav-toggle-transform .nav-toggle-btn-1 {
    transform: rotate(-45deg) translate(-2px, 5px);
  }
  .nav-toggle-transform .nav-toggle-btn-2 {
    opacity: 0;
  }
  .nav-toggle-transform .nav-toggle-btn-3 {
    transform: rotate(45deg) translate(-5px, -8px);
  }
  .tl-header-nav {
    grid-row: 2/3;
    grid-column: 2/11;
  }
  .nav-link-spacer {
    padding: 0.5rem 0;
  }
  /* ------ TL BODY ------ */
  .tl-body {
    display: grid;
    grid-template-rows: var(--tl-header-height) auto;
  }
  .tl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .tl-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .tl-header-top {
    grid-column: 1/13;
    grid-row: 1/2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--tl-header-height);
    background: white;
    z-index: 1000;
    box-shadow: 1px 1px 5px #eee;
    display: flex;
    align-items: center;
    /* background: rgba(255, 0, 0, 0.2); */
  }
  .tht-brand {
    grid-column: 2/9;
  }
  .tl-subheader-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .tht-toggle-main-container {
    grid-column: 9/12;
    display: flex;
    justify-content: end;
  }
  .tl-sub-body {
    grid-row: 2;
    margin-top: 2rem;
  }
  .tl-footer {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .template-layout {
    grid-template-rows: 1fr auto;
  }
  /* ------ TL HEADER ------ */
  .tl-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
    display: grid;
    grid-template-rows: var(--tl-header-height) auto;
    grid-template-columns: repeat(12, 1fr);
  }
  .tl-header-open {
    transform: translateX(0);
  }
  .tl-header-brand {
    grid-row: 1/2;
    grid-column: 2/11;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .test {
    display: none;
  }
  .tht-toggle-main-container {
    display: flex;
    justify-content: end;
  }
  .nav-toggle-btn-1, .nav-toggle-btn-2, .nav-toggle-btn-3 {
    width: 35px;
    height: 2px;
    background-color: var(--primary-black);
    margin: 5px 0;
    transition: 0.5s;
  }
  .nav-toggle-transform .nav-toggle-btn-1 {
    transform: rotate(-45deg) translate(-2px, 5px);
  }
  .nav-toggle-transform .nav-toggle-btn-2 {
    opacity: 0;
  }
  .nav-toggle-transform .nav-toggle-btn-3 {
    transform: rotate(45deg) translate(-5px, -8px);
  }
  .tl-header-nav {
    grid-row: 2/3;
    grid-column: 2/11;
  }
  .nav-link-spacer {
    padding: 0.5rem 0;
  }
  /* ------ TL BODY ------ */
  .tl-body {
    display: grid;
    grid-template-rows: var(--tl-header-height) auto;
  }
  .tl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .tl-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .tl-header-top {
    grid-column: 1/13;
    grid-row: 1/2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--tl-header-height);
    background: white;
    z-index: 1000;
    box-shadow: 1px 1px 5px #eee;
    display: flex;
    align-items: center;
    /* background: rgba(255, 0, 0, 0.2); */
  }
  .tht-brand {
    grid-column: 2/9;
  }
  .tl-subheader-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .tht-toggle-main-container {
    grid-column: 9/12;
    display: flex;
    justify-content: end;
  }
  .tl-sub-body {
    grid-row: 2;
  }
  .tl-footer {
    padding: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .template-layout {
    grid-template-rows: var(--tl-header-height) 1fr auto;
  }
  .tl-header {
    grid-row: 1/2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: var(--tl-header-height);
    align-items: center;
  }
  .tl-header-brand {
    grid-column: 2/6;
  }
  .tht-toggle-main-container {
    display: none;
  }
  .tl-header-nav {
    grid-column: 6/12;
    display: flex;
    justify-content: end;
  }
  .nav-link-spacer {
    padding: 0 0.5rem;
  }
  .tl-body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-row: 2/3;
  }
  .tl-overlay {
    display: none;
  }
  .tl-header-top {
    display: none;
  }
  .nav-shadow {
    box-shadow: 1px 1px 5px #eee;
  }
}
@media (min-width: 1200px) {
  .template-layout {
    grid-template-rows: var(--tl-header-height) 1fr auto;
  }
  .tl-header {
    grid-row: 1/2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: var(--tl-header-height);
    align-items: center;
  }
  .tl-header-brand {
    grid-column: 2/6;
  }
  .tht-toggle-main-container {
    display: none;
  }
  .tl-header-nav {
    grid-column: 6/12;
    display: flex;
    justify-content: end;
  }
  .nav-link-spacer {
    padding: 0 0.5rem;
  }
  .tl-body {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-row: 2/3;
  }
  .tl-overlay {
    display: none;
  }
  .tl-header-top {
    display: none;
  }
  .nav-shadow {
    box-shadow: 1px 1px 5px #eee;
  }
}/*# sourceMappingURL=uzuri_main.css.map */