/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

a {
  text-decoration: none; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  font-size: 62.5%;
  font-smoothing: antialiased;
  font-smooth: always; }
  @media only screen and (min-width: 641px) and (max-width: 1380px) {
    html {
      font-size: 55%; } }
  @media only screen and (min-width: 1px) and (max-width: 640px) {
    html {
      font-size: 55%; } }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 100%; }
  body.news-open, body.menu-open {
    overflow: hidden; }

p strong {
  font-weight: bold; }

a {
  transition-duration: 0.4s; }

.outer .inner {
  position: relative;
  margin: 0 auto; }
  .outer .inner.dark-green {
    background-color: #00A49A; }
    .outer .inner.dark-green h2, .outer .inner.dark-green h3, .outer .inner.dark-green h4 {
      color: white !important; }
  .outer .inner.light-green {
    background-color: #9BC12D; }

#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00A49A;
  width: 100vw;
  height: 0;
  opacity: 0;
  z-index: 100;
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: all; }
  #main-menu.open {
    opacity: 1;
    height: 100vh; }
  #main-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    #main-menu ul li {
      font-size: 4.2rem;
      line-height: 6.2rem;
      text-align: center;
      text-transform: uppercase; }
      #main-menu ul li a {
        color: white; }
        #main-menu ul li a:hover {
          color: #9BC12D; }

#banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background-color: #00A49A;
  z-index: 101; }
  #banner .inner {
    height: 10rem; }
  #banner #site-title {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%); }
    #banner #site-title h1 {
      display: block;
      width: 30rem;
      height: 3rem;
      background-image: url("../images/activebwdlogo.svg");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: left center;
      text-indent: -999999px; }
      #banner #site-title h1 a {
        display: block;
        width: 100%;
        height: 100%; }
      @media only screen and (min-width: 1px) and (max-width: 640px) {
        #banner #site-title h1 {
          width: 26rem;
          height: 3rem; } }
  #banner #hamburger {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    width: 32px;
    height: 24px;
    text-indent: -999999px;
    z-index: 102;
    cursor: pointer; }
    #banner #hamburger:before {
      width: 32px;
      height: 4px;
      background: #9BC12D;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      transition-duration: 0.4s;
      pointer-events: none; }
    #banner #hamburger:after {
      width: 32px;
      height: 4px;
      background: #9BC12D;
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      transition-duration: 0.4s;
      pointer-events: none; }
    #banner #hamburger a {
      width: 32px;
      height: 24px;
      display: block; }
      #banner #hamburger a:before {
        width: 32px;
        height: 4px;
        background: white;
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        left: 0;
        transition-duration: 0.4s; }
      #banner #hamburger a:hover:before {
        background: #9BC12D; }
    #banner #hamburger.open:before, #banner #hamburger.open:after, #banner #hamburger.open a:before {
      background: #9BC12D; }
    #banner #hamburger.open:before {
      top: 10px;
      transform: rotate(45deg); }
    #banner #hamburger.open:after {
      top: 10px;
      transform: rotate(-45deg); }
    #banner #hamburger.open a:before {
      opacity: 0; }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      #banner #hamburger {
        display: block; } }

#carousel {
  padding-top: 10rem;
  width: 100vw;
  height: calc(100vh - 10rem);
  min-height: 60rem;
  overflow: hidden; }
  #carousel .slides {
    width: 100%;
    height: calc(100vh - 10rem);
    min-height: 60rem; }
    #carousel .slides .slick-track {
      width: 100%;
      height: calc(100vh - 10rem);
      min-height: 60rem; }
    #carousel .slides .slide {
      position: relative;
      width: 100%;
      height: 100%; }
      #carousel .slides .slide .image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }
      #carousel .slides .slide .message {
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: rgba(155, 193, 45, 0.9);
        width: 46rem;
        height: 46rem; }
        @media only screen and (min-width: 1px) and (max-width: 640px) {
          #carousel .slides .slide .message {
            height: 220px; } }
        #carousel .slides .slide .message:before {
          content: '';
          position: absolute;
          top: 7rem;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 32rem;
          height: 5rem;
          background-image: url("../images/carousel-graphic.svg");
          background-position: left center;
          background-repeat: no-repeat;
          background-size: contain; }
          @media only screen and (min-width: 1px) and (max-width: 640px) {
            #carousel .slides .slide .message:before {
              left: 7rem;
              top: 2rem;
              transform: none;
              width: 38px;
              height: 34px; } }
        #carousel .slides .slide .message .text {
          position: absolute;
          width: 32rem;
          left: 50%;
          top: 14rem;
          transform: translate(-50%, 0);
          color: white;
          font-size: 2.8rem;
          line-height: 4.2rem;
          font-weight: 800; }
          @media only screen and (min-width: 1px) and (max-width: 640px) {
            #carousel .slides .slide .message .text {
              font-size: 2.1rem;
              line-height: 3.2rem;
              top: 8rem; } }

form {
  position: relative; }
  form .input-group {
    position: relative;
    margin-bottom: 0.9rem; }
    form .input-group label {
      display: none; }
    form .input-group input {
      background-color: transparent;
      border: 2px solid #9BC12D;
      font-family: 'Nunito Sans', sans-serif;
      font-size: 1.8rem;
      padding: 4px 10px;
      width: calc(100% - 20px);
      color: white;
      outline: none; }
      form .input-group input::placeholder {
        color: #9BC12D;
        font-size: 1.6rem; }
  form input[type='submit'] {
    border: none;
    background-color: #9BC12D;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 4px 20px;
    cursor: pointer; }
    form input[type='submit']:hover {
      color: #00A49A; }

.news-tiles {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 0; }
  @media only screen and (min-width: 641px) and (max-width: 1380px) {
    .news-tiles {
      max-width: calc(100% - 6rem); } }
  .news-tiles h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #00A49A;
    font-weight: bolder;
    margin: 0 0 4rem 0;
    text-align: center; }
  .news-tiles .tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 500px;
    overflow: hidden;
    transition-duration: 0.4s; }
    .news-tiles .tile-group.closed {
      height: 1px;
      opacity: 0; }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .news-tiles .tile-group {
        display: block; } }
    .news-tiles .tile-group .tile {
      width: calc(33.333% - 20px);
      cursor: pointer; }
      @media only screen and (min-width: 1px) and (max-width: 640px) {
        .news-tiles .tile-group .tile {
          width: calc(100% - 12rem);
          margin: 0 auto 6rem auto; } }
      .news-tiles .tile-group .tile .thumbnail {
        width: 100%;
        padding-top: 75%;
        position: relative;
        overflow: hidden; }
        .news-tiles .tile-group .tile .thumbnail .image {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          transition-duration: 0.5s;
          background-size: cover;
          background-position: center center; }
      .news-tiles .tile-group .tile .title {
        font-size: 2.4rem;
        line-height: 3.2rem;
        color: #6F6F6F;
        margin: 2rem 0;
        font-weight: bold;
        display: block; }
      .news-tiles .tile-group .tile a {
        display: block;
        width: 192px;
        font-size: 1.4rem;
        color: #9BC12D;
        border: 1px solid #9BC12D;
        text-align: center;
        text-transform: uppercase;
        padding: 0.8rem 0; }
      .news-tiles .tile-group .tile:hover .thumbnail .image {
        transform: scale(1.05); }
      .news-tiles .tile-group .tile:hover .title {
        color: #00A49A; }
      .news-tiles .tile-group .tile:hover a {
        color: #00A49A;
        border-color: #00A49A; }
  .news-tiles .news-loadmore {
    margin: 0 auto 6rem auto;
    width: 192px; }
    .news-tiles .news-loadmore a {
      display: block;
      text-align: center;
      color: white;
      background-color: #9BC12D;
      font-size: 1.8rem;
      text-transform: uppercase;
      padding: 2rem 0;
      font-weight: 800; }
      .news-tiles .news-loadmore a:hover {
        background-color: #00A49A; }

.news-modal {
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 164, 154, 0.5);
  z-index: 200;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: all;
  transition-delay: 0.2s; }
  .news-open .news-modal {
    top: 0;
    opacity: 1; }
  .news-modal .text {
    width: calc(100vw - 40px);
    max-height: calc(100vh - 20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: white;
    box-shadow: 0 0 75px rgba(0, 0, 0, 0.1); }
    .news-modal .text h2 {
      background-color: #00A49A;
      color: #9BC12D;
      text-transform: uppercase;
      text-align: center;
      font-size: 2.8rem;
      padding: 3rem 0;
      position: relative;
      top: -1px;
      left: -10px;
      width: calc(100% + 20px); }
    .news-modal .text .story {
      width: calc(100% - 40px);
      max-width: 860px;
      margin: 6rem auto; }
      .news-modal .text .story h3 {
        font-size: 2.4rem;
        color: #00A49A;
        font-weight: 800;
        margin-bottom: 2.4rem; }
      .news-modal .text .story p {
        font-size: 1.8rem;
        line-height: 2.8rem;
        margin-bottom: 2.8rem;
        color: #6F6F6F; }
        .news-modal .text .story p a {
          color: #00A49A; }
          .news-modal .text .story p a:hover {
            color: #9BC12D; }
      .news-modal .text .story .links::after {
        clear: both;
        content: "";
        display: block; }
      .news-modal .text .story .links .close {
        float: left;
        margin-left: 32px;
        color: #9BC12D;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 1.6rem;
        margin-top: 3.2rem;
        cursor: pointer;
        position: relative;
        transition-duration: 0.2s; }
        .news-modal .text .story .links .close:before {
          position: absolute;
          top: 4px;
          left: -32px;
          content: '';
          width: 24px;
          height: 4px;
          background-color: #9BC12D;
          transform: rotate(45deg);
          transition-duration: 0.2s; }
        .news-modal .text .story .links .close:after {
          position: absolute;
          top: 4px;
          left: -32px;
          content: '';
          width: 24px;
          height: 4px;
          background-color: #9BC12D;
          transform: rotate(-45deg);
          transition-duration: 0.2s; }
        .news-modal .text .story .links .close:hover {
          color: #00A49A; }
      .news-modal .text .story .links .next {
        float: right;
        color: #00A49A;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 1.6rem;
        margin-top: 3.2rem;
        cursor: pointer;
        position: relative;
        margin-right: 32px; }
        .news-modal .text .story .links .next:after {
          content: '';
          position: absolute;
          top: -8px;
          right: -32px;
          width: 28px;
          height: 28px;
          background-repeat: no-repeat;
          background-position: center center;
          background-size: contain;
          background-image: url("../images/more.svg"); }
        .news-modal .text .story .links .next:hover {
          color: #9BC12D; }
    .news-modal .text img {
      max-width: 100%;
      height: auto; }

.soundbite {
  padding: 7rem 0 24rem 0;
  text-align: center;
  color: white;
  font-size: 2.8rem;
  line-height: 4.2rem; }
  .soundbite.trees {
    background-image: url("../images/trees.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    border-bottom: 10px solid #00A49A; }
  .soundbite .text {
    width: 52.8rem;
    margin: 0 auto; }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .soundbite .text {
        width: calc(100% - 6rem); } }
  .soundbite.darkgreen {
    background-color: #00A49A;
    border-bottom-color: #00A49A; }
  .soundbite.lightgreen {
    background-color: #9BC12D;
    border-bottom-color: #9BC12D; }

#timetable {
  padding-top: 15rem; }

.two-columns.inner {
  width: 100vw;
  display: flex; }
  @media only screen and (min-width: 1px) and (max-width: 640px) {
    .two-columns.inner {
      display: block;
      padding: 0; } }
  .two-columns.inner.plantpots {
    background-image: url("../images/plantpots.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    border-bottom: 10px solid white;
    padding-bottom: 10rem; }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .two-columns.inner.plantpots {
        padding-bottom: 10rem; } }
  .two-columns.inner .column {
    width: 50%; }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .two-columns.inner .column {
        width: 100%; } }
    .two-columns.inner .column.text {
      padding: 10rem 0; }
      @media only screen and (min-width: 1px) and (max-width: 640px) {
        .two-columns.inner .column.text {
          padding: 0 0 0 0; } }
      .two-columns.inner .column.text .story {
        max-width: 49rem;
        min-width: 32rem;
        width: calc(100% - 40px);
        font-size: 1.8rem;
        line-height: 2.8rem;
        font-weight: 400;
        color: white; }
        @media only screen and (min-width: 641px) and (max-width: 1380px) {
          .two-columns.inner .column.text .story {
            max-width: calc(100% - 6rem); } }
        .two-columns.inner .column.text .story p {
          margin-bottom: 2.8rem; }
        .two-columns.inner .column.text .story h2 {
          font-size: 2.8rem;
          line-height: 4.2rem;
          margin-bottom: 4.2rem;
          color: #00A49A;
          text-transform: uppercase;
          font-weight: bold; }
          .two-columns.inner .column.text .story h2.spotlight {
            padding: 0 40px;
            position: relative;
            display: inline-block; }
            .two-columns.inner .column.text .story h2.spotlight:before, .two-columns.inner .column.text .story h2.spotlight:after {
              background-image: url("../images/highlight-arrows.svg");
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center center;
              display: block;
              content: '';
              width: 32px;
              height: 32px;
              position: absolute;
              top: 4px;
              left: 0; }
            .two-columns.inner .column.text .story h2.spotlight:after {
              left: auto;
              right: 0;
              transform: rotate(180deg); }
        .two-columns.inner .column.text .story h3 {
          font-size: 2.8rem;
          line-height: 4.2rem;
          margin-bottom: 4.2rem;
          font-weight: bold;
          color: white; }
        .two-columns.inner .column.text .story h4 {
          color: #9BC12D;
          font-size: 2.8rem;
          line-height: 4.2rem;
          font-weight: bold;
          margin-bottom: 4.2rem; }
      .two-columns.inner .column.text.col1 .story {
        float: right;
        margin-right: 6rem; }
        .two-columns.inner .column.text.col1 .story::after {
          clear: both;
          content: "";
          display: block; }
        @media only screen and (min-width: 641px) and (max-width: 1380px) {
          .two-columns.inner .column.text.col1 .story {
            margin-right: 3rem; } }
        @media only screen and (min-width: 1px) and (max-width: 640px) {
          .two-columns.inner .column.text.col1 .story {
            float: none;
            margin: 0 auto; } }
      .two-columns.inner .column.text.col2 .story {
        float: left;
        margin-left: 6rem; }
        .two-columns.inner .column.text.col2 .story::after {
          clear: both;
          content: "";
          display: block; }
        @media only screen and (min-width: 641px) and (max-width: 1380px) {
          .two-columns.inner .column.text.col2 .story {
            margin-left: 3rem; } }
        @media only screen and (min-width: 1px) and (max-width: 640px) {
          .two-columns.inner .column.text.col2 .story {
            float: none;
            margin: 0 auto; } }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .two-columns.inner .column.image {
        width: 100%;
        margin-bottom: 4rem; } }
    @media only screen and (min-width: 1px) and (max-width: 640px) {
      .two-columns.inner .column.image.col2 {
        margin-bottom: 0; } }
    .two-columns.inner .column.image .image-bg {
      width: 100%;
      height: 100%;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat; }
      @media only screen and (min-width: 1px) and (max-width: 640px) {
        .two-columns.inner .column.image .image-bg {
          padding-top: 67%; } }

.two-columns.white .column.text .story p {
  color: #6F6F6F; }

#footer {
  background-color: #9BC12D;
  background-image: url("../images/leapers.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 100px;
  padding: 10rem 0 40rem 0;
  position: relative; }
  #footer .inner {
    max-width: 1088px; }
    #footer .inner p {
      font-size: 2.8rem;
      line-height: 4rem; }
      #footer .inner p strong {
        color: #00A49A;
        font-weight: bold;
        text-transform: uppercase; }
      #footer .inner p a {
        color: white; }
        #footer .inner p a:hover {
          color: #00A49A; }
  #footer .logos {
    margin-top: 16rem; }
    #footer .logos::after {
      clear: both;
      content: "";
      display: block; }
    #footer .logos div {
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain; }
    #footer .logos #sportengland {
      float: left;
      width: 170px;
      height: 50px;
      background-image: url("../images/sportengland.svg");
      text-indent: -9999px;
      display: block; }
    #footer .logos #togetheranactivefuture {
      float: left;
      width: 105px;
      height: 92px;
      background-image: url("../images/activefuture.svg");
      text-indent: -9999px;
      display: block;
      margin-right: 40px; }
