@charset "utf-8";
/* CSS Document */

/* separate responsive nav for mobile */
@media (max-width: 991.98px) {
  .responsive-nav.show#navbarSupportedContent {
    /* customise as required to set text colour and coloured background of responsive nav */
    color: #000;
    background-color: #fff;
    position: fixed;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .r-nav-footer .col-12 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .responsive-nav .row:first-child {
    /* customise as required to set coloured band at top of responsive nav */
    /*background-color: var(--tsy-lime-tint);*/
    padding-top: calc(0.75* var(--vertical-spacing));
    padding-bottom: calc(0.75* var(--vertical-spacing));
    margin-bottom: calc(0.75* var(--vertical-spacing));
  }
  .responsive-nav .nav {
    flex-direction: column;
  }
  .responsive-nav .logo img {
    height: 60px;
  }
  .responsive-nav .nav-link {
    background: none;
    color: #000;
    text-decoration: underline;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: unset;
  }
  .r-nav-footer {
    /* customise as required to set text colour and coloured background of responsive nav footer */
    color: #fff;
    background-color: #000;
    padding-top: var(--vertical-spacing);
    padding-bottom: var(--vertical-spacing);
    padding-left: calc(var(--bs-gutter-x)* 0.5);
    padding-right: calc(var(--bs-gutter-x)* 0.5);
    margin-top: var(--vertical-spacing);
  }
  .r-nav-footer ul {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .r-nav-footer a {
    color: #fff !important;
    text-decoration: underline;
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
@media (max-width: 574.98px) {
  .r-nav-footer .col-12 {
    margin-right: calc(-0.5* var(--bs-gutter-x));
    margin-left: calc(-0.5* var(--bs-gutter-x));
  }
}
@media (max-width: 449.98px) {
  .r-nav-footer ul {
      flex-direction: column;
  }
}
@media (max-width: 360px) {
  .responsive-nav .logo img {
    height: 52px;
  }
}
@media (min-width: 576px) {
  .r-nav-footer .col-12 {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .r-nav-footer .col-12 {
    max-width: 720px
  }
}
@media (min-width: 992px) {
  .responsive-nav#navbarSupportedContent {
    display: none;
  }
}
