#hwb-nav {
  background-color: #f1f1f1;
  height: 6rem;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  transition: height 0.2s, padding 0.2s, background-color 0.2s;
  padding: 0.6rem 0;
  z-index: 1020;
}

#hwb-nav.thin {
  height: 4rem;
  padding: 0.3rem 0;
  background-color: rgba(241, 241, 241, 0.9);
}

@media (max-width: 1199.98px) {
  #hwb-nav .container {
    /*For alignment with global header*/
    padding-left: 15px;
    padding-right: 15px;
  }
}

#hwb-nav .container, #hwb-nav .navbar-brand, #hwb-nav .site-logo {
  height: 100%;
}

#hwb-nav .site-logo {
  width: 100%;
}

#hwb-nav .navbar-brand {
  max-width: 70%;
}

#hwb-nav .nav-item .nav-link {
  color: #006bb8;
  padding: 0;
  margin: 1rem 0 1rem 1.5rem;
  position: relative;
  line-height: 1.8;
}

#hwb-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #006bb8;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: .15s linear;
}

#hwb-nav .nav-item .nav-link:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

#hwb-nav .nav-item.active .nav-link {
  font-weight: bold;
}

#hwb-nav .dropdown-menu {
  display: block;
  top: 3.25rem;
  border: 0;
  box-shadow: 0px 0px 8px #32323269;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

#hwb-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

#hwb-nav .dropdown-menu.show:after {
  content: "";
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #fff;
  left: 2.7rem;
  top: -10px;
}

#hwb-nav .dropdown-item.active, #hwb-nav .dropdown-item:active {
  color: inherit;
  background-color: inherit;
  font-weight: bold;
}

#hwb-nav .dropdown-toggle::after {
  margin-left: .3em;
  vertical-align: .15em;
}

@media (max-width: 1199.98px) {
  #hwb-nav .dropdown-menu {
    background-color: transparent;
    box-shadow: initial;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s, visibility 0.3s;
  }
  #hwb-nav .dropdown-menu.show {
    max-height: 150px;
  }
  #hwb-nav .dropdown-menu.show:after {
    content: initial;
  }
  #hwb-nav .dropdown-item {
    font-size: 1rem;
    position: relative;
    padding: 0;
    margin: 0 0 1rem 2rem;
  }
  #hwb-nav .dropdown-item:hover {
    background-color: inherit;
  }
  #hwb-nav .dropdown-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #212529;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: .15s linear;
  }
  #hwb-nav .dropdown-item:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }
}

#hwb-nav .navbar-toggler {
  padding: 0;
  color: #006bb8;
}

#hwb-nav .navbar-toggler .menu-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.25s 0.7s, opacity 0.25s 0.7s;
}

#hwb-nav .navbar-toggler.collapsed .menu-close {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}

#hwb-nav .navbar-toggler:not(.collapsed) .menu-open {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s;
}

#hwb-nav .menu-text {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.2rem;
}

@media (min-width: 576px) {
  #hwb-nav .menu-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 1199.98px) {
  #hwb-nav .navbar-collapse {
    background-color: rgba(241, 241, 241, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 22rem;
    height: 100vh;
    padding: 5rem 1rem;
    font-size: 1.3rem;
  }
  #hwb-nav .navbar-collapse.collapsing {
    right: -22rem;
    transition: right 0.3s ease;
  }
  #hwb-nav .navbar-collapse.show {
    right: 0;
    transition: right 0.3s ease-in;
  }
}

.hero {
  background-position-y: bottom;
  background-attachment: fixed;
  background-size: cover;
  padding: 0;
}

.hero > .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero h1, .hero .lead {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

@media (min-width: 576px) {
  .hero h1, .hero .lead {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero h1, .hero .lead {
    font-size: 2.2rem;
  }
}

.hero h1 {
  color: #325e88;
}

.hero .subtitle {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.hero p:last-of-type {
  margin: 0;
}

.hero .drop-shadow {
  box-shadow: -5px 0px 12px 0px rgba(0, 0, 0, 0.4);
}

.hero img {
  max-height: 350px;
  max-width: 100%;
}

.home .hero {
  background-image: linear-gradient(90deg, #228087, rgba(34, 128, 135, 0.85)), url(/css/images/hwb/genericillustration.png);
  color: #fff;
  box-shadow: 0 0 20px 0 #aaa;
}

.home .hero h1 {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.home .hero .button.narrow {
  margin-top: 1rem;
}

@media (min-width: 1200px) {
  .home .hero .button.narrow {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .home .hero .button.wide {
    display: none;
  }
}

.breadcrumb {
  margin: 0;
  padding: 1rem 0;
  background-color: transparent;
}

.breadcrumb-wrapper {
  background-color: rgba(0, 0, 0, 0.2);
}

.breadcrumb-item.active {
  color: inherit;
}

.tealblue-fadedimage-bg .breadcrumb-item a, .tealblue-fadedimage-bg .breadcrumb-item.active, .tealblue-fadedimage-bg .breadcrumb-item::before, .tealpurple-fadedimage-bg .breadcrumb-item a, .tealpurple-fadedimage-bg .breadcrumb-item.active, .tealpurple-fadedimage-bg .breadcrumb-item::before, .bluepurple-fadedimage-bg .breadcrumb-item a, .bluepurple-fadedimage-bg .breadcrumb-item.active, .bluepurple-fadedimage-bg .breadcrumb-item::before {
  color: #fff !important;
}

.site-footer {
  padding: 3rem 0;
  background-color: #444;
  color: #fff;
}

.site-footer .site-logo {
  width: 200px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.site-footer ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style-type: none;
}

.site-footer li {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .emailme_form {
    margin-top: 1rem;
  }
}

.emailme_form a {
  text-decoration: underline;
}

.emailme_form input {
  font-size: inherit;
  border: 0;
}

.emailme_form .form-group, .emailme_form p {
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  html {
    font-size: 1.25rem;
  }
  #hwb-nav, .site-footer {
    font-size: 0.8rem;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
  color: #444;
}

h1, h2, h3, h4, .strapline {
  font-weight: bold;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.home h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
}

sup {
  top: -.8em;
  font-size: 55%;
}

cite {
  font-size: .8rem;
}

a:hover {
  text-decoration: none;
}

.site-intro a, .oneimg-feature a, .twoimg-feature a, .colour-feature a, .content a {
  color: #325e88;
  text-decoration: underline;
}

.site-intro a:hover, .oneimg-feature a:hover, .twoimg-feature a:hover, .colour-feature a:hover, .content a:hover {
  text-decoration: none;
}

.colour-feature a {
  color: #fff;
}

p + h2, ul + h2 {
  margin-top: 2rem;
}

p + h3, ul + h3 {
  margin-top: 1.5rem;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}

section {
  padding: 4rem 0;
}

.grey-bg {
  background-color: #f1f1f1;
}

.teal-bg {
  background-color: #228087;
}

.red-bg {
  background-color: #d34336;
}

.blue-bg {
  background-color: #325e88;
}

.purple-bg {
  background-color: #936292;
}

.dark-bg {
  background-color: #444;
}

.fadedimage-bg {
  background-image: linear-gradient(#f1f1f1f1, #f1f1f1f1), url(/css/images/hwb/genericillustration.png);
  background-size: cover;
}

.tealblue-fadedimage-bg {
  background-image: linear-gradient(90deg, rgba(34, 128, 135, 0.95), rgba(50, 94, 136, 0.95)), url(/css/images/hwb/genericillustration.png);
}

.tealpurple-fadedimage-bg {
  background-image: linear-gradient(90deg, rgba(34, 128, 135, 0.95), rgba(147, 98, 146, 0.9)), url(/css/images/hwb/genericillustration.png);
}

.bluepurple-fadedimage-bg {
  background-image: linear-gradient(90deg, rgba(50, 94, 136, 0.95), rgba(147, 98, 146, 0.95)), url(/css/images/hwb/genericillustration.png);
}

.tealblue-fadedimage-bg, .tealpurple-fadedimage-bg, .bluepurple-fadedimage-bg {
  color: #fff;
}

.tealblue-fadedimage-bg h1, .tealpurple-fadedimage-bg h1, .bluepurple-fadedimage-bg h1 {
  color: #fff;
}

.callout {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1.5rem 1.5rem .5rem;
  box-shadow: 0 0 10px #ccc;
}

.callout h2 {
  font-size: 1.3rem;
}

.callout ul {
  padding-left: 1rem;
}

.tick-bullets ul {
  list-style: none;
  position: relative;
}

.tick-bullets li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: #936292;
  position: absolute;
  left: 0;
}

.infographic {
  width: 100%;
  margin: 1rem 0;
}

@media (min-width: 992px) {
  .infographic {
    float: right;
    width: 550px;
    margin-left: 2rem;
  }
}

.float-icon {
  width: 100%;
}

@media (min-width: 400px) {
  .float-icon {
    float: right;
    margin-left: 1rem;
    width: 150px;
  }
}

@media (min-width: 768px) {
  .float-icon {
    width: 250px;
  }
}

.member-list {
  padding: 0;
}

@media (min-width: 576px) {
  .member-list {
    font-size: .8rem;
  }
}

.member-list li {
  padding: 1.5rem;
  column-gap: 1rem;
}

.member-list li:nth-of-type(2n-1) {
  background-color: #f1f1f1;
}

.member-list img {
  width: 100%;
  max-width: 170px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.member-list p.name, .member-list p.party {
  margin: 0;
  font-weight: 600;
}

a.button {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.3rem;
  padding: 0.4rem 1.3rem;
  margin: 0 0.2rem 0.4rem 0;
  display: inline-block;
  transition: background-image 0.3s;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.3);
}

a.button.red {
  background-image: linear-gradient(#d8574b, #d34336);
}

a.button.red:hover {
  background-image: linear-gradient(#d34336, #d8574b);
}

    a.button.purple, a.button.accent1 {
        background-image: linear-gradient(#9f6f9e, #936292);

        &:hover {
            background-image: linear-gradient(#936292, #9f6f9e);
        }
    }

    a.button.blue, a.button.accent2 {
        background-image: linear-gradient(#396b9b, #325e88);

        &:hover {
            background-image: linear-gradient(#325e88, #396b9b);
        }
    }

    a.button.teal, a.button.accent3 {
        background-image: linear-gradient(#27939b, #228087);

        &:hover {
            background-image: linear-gradient(#228087, #27939b);
        }
    }



a.button.dark {
  background-image: linear-gradient(#515151, #444);

&:hover {
  background-image: linear-gradient(#444, #515151);
}
}


.site-intro {
  font-size: 1.1rem;
  text-align: center;
}

.site-intro .button {
  margin-top: 1rem;
  font-size: 1rem;
}

.colour-feature {
  padding: 0 15px;
  color: #fff;
  position: relative;
  box-shadow: 0 0 20px 0 #aaa;
}

.colour-feature .image {
  background-size: cover;
  background-position: center;
  height: 300px;
}

@media (min-width: 768px) {
  .colour-feature .image {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .colour-feature .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin-left: 49.99%;
  }
}

.colour-feature .text {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  transition: opacity 1s, left 1s;
}

@media (min-width: 992px) {
  .colour-feature .text {
    padding: 4rem 1rem;
  }
}

.oneimg-feature img {
  width: 100%;
}

.twoimg-feature img {
  box-shadow: 0 0 20px 4px #00000054;
  width: 55%;
  position: absolute;
}

.twoimg-feature img.overlapped {
  right: 0;
  bottom: 0;
}

@media (max-width: 1199.98px) {
  .twoimg-feature img {
    width: 65%;
  }
}

@media (max-width: 991.98px) {
  .twoimg-feature img {
    width: 90%;
  }
  .twoimg-feature img.overlapped {
    right: initial;
  }
}

@media (max-width: 767.98px) {
  .twoimg-feature img {
    width: 80%;
    position: relative;
  }
  .twoimg-feature img.overlapped {
    left: 20%;
    bottom: 5%;
  }
}

.icons-feature {
  text-align: center;
}

.icons-feature ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

.icons-feature a {
  color: #444;
  display: block;
  text-decoration: none;
}

.icons-feature .item-icon {
  opacity: 0;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #936292;
  transition: transform 0.3s;
}

.icons-feature a:hover .item-icon, .icons-feature li.show .item-icon {
  transform: scale(1.2);
}

.icons-feature h3 {
  opacity: 0;
  font-size: 1rem;
  font-weight: normal;
}

.icons-feature li.show h3 {
  font-weight: bold;
}

.icons-feature li.show .description {
  opacity: 1;
  visibility: visible;
}

.icons-feature .description {
  position: absolute;
  text-align: initial;
  background: #fff;
  border: 0;
  width: 15rem;
  box-shadow: 0px 0px 8px #32323269;
  font-size: 0.8rem;
  padding: 1rem;
  border-radius: .25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  margin-top: 0.5rem;
  z-index: 2;
}

.icons-feature .description .close-icon {
  text-align: right;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.icons-feature .description p {
  margin: 0;
}

@media (min-width: 992px) {
  .icons-feature li:nth-child(4n) .description {
    right: 0;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .icons-feature li:nth-child(3n) .description {
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .icons-feature li:nth-child(2n) .description {
    right: 0;
  }
}

.ambitions-grid h2 {
  text-align: center;
}

.ambitions-grid ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ambitions-grid .item {
  margin-bottom: 1rem;
}

.ambitions-grid .item .content {
  color: #fff;
  height: 100%;
}

.ambitions-grid .item .content.teal {
  background-color: #228087;
}

.ambitions-grid .item .content.red {
  background-color: #d34336;
}

.ambitions-grid .item .content.purple {
  background-color: #936292;
}

.ambitions-grid .item .content.blue {
  background-color: #325e88;
}

.ambitions-grid .item .heading-wrapper {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  border-bottom-right-radius: 3rem;
  display: flex;
  line-height: 1.2;
  align-items: center;
}

.ambitions-grid .item .number {
  flex: 0 0 12%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  font-weight: 600;
}

.ambitions-grid .item .heading {
  font-size: 1.3rem;
  font-weight: 600;
}

.ambitions-grid .item .description {
  padding: 2rem;
  font-size: 1.1rem;
}

.ambitions-grid .item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.ambition-item h1 {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin-left: -1rem;
  display: inline-block;
}

.ambition-item .priority {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.5rem;
}

.ambition-item .subtitle {
  margin-top: 0;
}

.ambition-item .tick-bullets > ul > li {
  margin: 0.5rem 0;
  opacity: 0;
}

.priorities-grid, .priorities-carousel {
  text-align: center;
}

.priorities-grid .intro, .priorities-carousel .intro {
  margin-bottom: 2rem;
}

.priorities-grid .row, .priorities-carousel .row {
  margin: -.5rem;
}

.priorities-grid ul, .priorities-carousel ul {
  padding: 0;
}

.priorities-grid li, .priorities-carousel li {
  display: inline-block;
}

.priorities-grid .item, .priorities-carousel .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 0 12px 0px #666;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.priorities-grid .spacer, .priorities-carousel .spacer {
  height: 10rem;
}

.priorities-grid .bg-image, .priorities-carousel .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.priorities-grid a:hover .bg-image, .priorities-grid a:focus .bg-image, .priorities-carousel a:hover .bg-image, .priorities-carousel a:focus .bg-image {
  transform: scale(1.1);
}

.priorities-grid .description, .priorities-carousel .description {
  background-color: rgba(50, 94, 136, 0.8);
  color: #fff;
  padding: 1rem;
  text-shadow: 0 0 5px #000000b3;
  font-size: .9rem;
  z-index: 2;
  flex-grow: 1;
}

.priorities-grid .description p, .priorities-carousel .description p {
  margin: 0;
}

.priorities-grid li {
  opacity: 0;
}

.priorities-carousel h2 {
  margin-bottom: 2rem;
}

.priorities-carousel li {
  height: initial;
}

.glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  transition: color 0.3s;
}

.glide__arrow:hover, .glide__arrow:focus {
  color: #ccc;
}

@media (max-width: 767.98px) {
  .glide__arrows {
    display: none;
  }
}

.glide__arrow--left {
  left: 1rem;
}

.glide__arrow--right {
  right: 1rem;
}

#accordion h2 {
  margin-bottom: 2rem;
}

#accordion .heading {
  text-decoration: none;
}

#accordion h3 {
  color: #fff;
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: normal;
  border-radius: .25rem;
  opacity: 0;
}

#accordion.teal h3 {
  background: #228087;
}

#accordion.blue h3 {
  background: #325e88;
}

#accordion.dark h3 {
  background: #444;
}

#accordion.purple h3 {
  background: #936292;
}

#accordion.red h3 {
  background: #d34336;
}

#accordion .content {
  padding: .8rem;
}

#accordion .fa {
  margin-left: 1rem;
}

#accordion .fa:before {
  content: "\f106";
}

#accordion .collapsed .fa:before {
  content: "\f107";
}

.fade-item {
  opacity: 0;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

#accordion.faded-in .heading h3, .priorities-grid.faded-in li, .icons-feature.faded-in li .item-icon, .icons-feature.faded-in li h3, .ambition-item .tick-bullets ul.faded-in > li, .fade-item.faded-in {
  animation: fade-in .75s ease-in-out 1 forwards;
}

#accordion.faded-in .heading:nth-of-type(2) h3, .priorities-grid.faded-in li:nth-child(2), .icons-feature.faded-in li:nth-child(2) .item-icon, .icons-feature.faded-in li:nth-child(2) h3, .ambition-item .tick-bullets ul.faded-in > li:nth-child(2) {
  animation-delay: .5s;
}

#accordion.faded-in .heading:nth-of-type(3) h3, .priorities-grid.faded-in li:nth-child(3), .icons-feature.faded-in li:nth-child(3) .item-icon, .icons-feature.faded-in li:nth-child(3) h3, .ambition-item .tick-bullets ul.faded-in > li:nth-child(3) {
  animation-delay: 1s;
}

#accordion.faded-in .heading:nth-of-type(4) h3, .priorities-grid.faded-in li:nth-child(4), .icons-feature.faded-in li:nth-child(4) .item-icon, .icons-feature.faded-in li:nth-child(4) h3, .ambition-item .tick-bullets ul.faded-in > li:nth-child(4) {
  animation-delay: 1.5s;
}

#accordion.faded-in .heading:nth-of-type(5) h3, .priorities-grid.faded-in li:nth-child(5), .icons-feature.faded-in li:nth-child(5) .item-icon, .icons-feature.faded-in li:nth-child(5) h3, .ambition-item .tick-bullets ul.faded-in > li:nth-child(5) {
  animation-delay: 2s;
}

#accordion.faded-in .heading:nth-of-type(6) h3, .priorities-grid.faded-in li:nth-child(6), .icons-feature.faded-in li:nth-child(6) .item-icon, .icons-feature.faded-in li:nth-child(6) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(6) {
  animation-delay: 2.5s;
}

#accordion.faded-in .heading:nth-of-type(7) h3, .priorities-grid.faded-in li:nth-child(7), .icons-feature.faded-in li:nth-child(7) .item-icon, .icons-feature.faded-in li:nth-child(7) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(7) {
  animation-delay: 3s;
}

#accordion.faded-in .heading:nth-of-type(8) h3, .priorities-grid.faded-in li:nth-child(8), .icons-feature.faded-in li:nth-child(8) .item-icon, .icons-feature.faded-in li:nth-child(8) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(8) {
  animation-delay: 3.5s;
}

#accordion.faded-in .heading:nth-of-type(9) h3, .priorities-grid.faded-in li:nth-child(9), .ambition-item .tick-bullets ul.faded-in li:nth-child(9) {
  animation-delay: 4s;
}

#accordion.faded-in .heading:nth-of-type(10) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(10) {
  animation-delay: 4.5s;
}

#accordion.faded-in .heading:nth-of-type(11) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(11) {
  animation-delay: 5s;
}

#accordion.faded-in .heading:nth-of-type(12) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(12) {
  animation-delay: 5.5s;
}

#accordion.faded-in .heading:nth-of-type(13) h3, .ambition-item .tick-bullets ul.faded-in li:nth-child(13) {
  animation-delay: 6s;
}
/*# sourceMappingURL=styles.css.map */