@charset "UTF-8";
/*------ COLORS ------*/
.bg-primary {
  background: #0563A1;
}

.bg-secondary {
  background: #2C2E36;
}

.bg-tertiary {
  background: #8DC63F;
}

.bg-grey {
  background: #E1E3ED;
}

.bg-white {
  background: #fff;
}

.fc-dark {
  color: #1A1A1A;
}

.fc-normal {
  color: #333333;
}

.fc-light {
  color: #555555;
}

.fc-xlight {
  color: #CCCCCC;
}

.fc-white {
  color: #fff !important;
}

/*------ NEUTRAL ------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #2C2E36;
  color: #555555;
  padding: 0;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto;
  font-size: 12px;
}

/*------ GRID ------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.row {
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  flex-wrap: wrap;
}
.row.reverse {
  flex-wrap: wrap-reverse;
}
.row .row {
  padding: 0 !important;
}

.row-wrap {
  flex-wrap: wrap !important;
}

.column-12,
.column-11,
.column-10,
.column-9,
.column-8,
.column-7,
.column-6,
.column-5,
.column-4,
.column-3,
.column-2,
.column-1,
.all-column-3 > div {
  flex-basis: 100%;
}

.all-column-3 > div {
  margin: 10px 0;
}
.all-column-3 > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  grid-gap: 45px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------ FLEXBOX CONTROLS ------*/
.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.ai-center {
  align-items: center;
}

/*------ SPACING CONTROLS ------*/
.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ps-relative {
  position: relative;
}

.ps-absolute {
  position: absolute;
}

.ps-right {
  right: 0;
}

.ps-left {
  left: 0;
}

.hide-sm {
  display: none;
}

.hide-md {
  display: block;
}

.hide-lg {
  display: block;
}

.show-sm {
  display: block;
}

.show-md {
  display: none;
}

.show-lg {
  display: none;
}

/*------ LISTS ------*/
ul {
  margin: 0 0 1.4rem 0;
  padding: 0;
  list-style: none;
}
ul.inline-list {
  margin: 0 auto;
  overflow: hidden;
}
ul.inline-list li {
  margin: 0 8px;
  display: inline-block;
  float: none;
}
ul li {
  font-size: 1rem;
  margin-bottom: 0;
}
ul.p-large li {
  font-size: 1.125rem;
}

/*------ ICONS ------*/
.icon {
  height: 41px;
  margin-bottom: 16px;
}
.icon path {
  fill: #2C2E36;
}

@media only screen and (min-width: 48.75em) {
  body {
    font-size: 16px;
  }

  .row {
    flex-wrap: nowrap;
    padding-left: 45px;
    padding-right: 45px;
  }

  .column-12 {
    flex-basis: 100%;
  }

  .column-11 {
    flex-basis: 91.66666664%;
  }

  .column-10 {
    flex-basis: 83.33333332%;
  }

  .column-9 {
    flex-basis: 75%;
  }

  .column-8 {
    flex-basis: 66.66666664%;
  }

  .column-7 {
    flex-basis: 58.33333332%;
  }

  .column-6 {
    flex-basis: 50%;
  }

  .column-5 {
    flex-basis: 41.666666664%;
  }

  .column-4 {
    flex-basis: 33.333333332%;
  }

  .column-3 {
    flex-basis: 25%;
  }

  .column-2 {
    flex-basis: 16.666666667%;
  }

  .column-1 {
    flex-basis: 8.333333333%;
  }

  .all-column-3 > div {
    flex-basis: calc(25% - 40px);
  }

  .hide-sm {
    display: block;
  }

  .hide-md {
    display: block;
  }

  .hide-lg {
    display: none;
  }

  .show-sm {
    display: none;
  }

  .show-md {
    display: none;
  }

  .show-lg {
    display: block;
  }

  /*------ SPACING CONTROLS ------*/
  .space-50 {
    margin: 0 -25px;
  }
  .space-50 > div,
.space-50 > li,
.space-50 > a {
    margin: 0 25px;
  }

  .space-40 {
    margin: 0 -20px;
  }
  .space-40 > div,
.space-40 > li {
    margin: 0 20px;
  }

  .space-40-all {
    margin: -20px;
  }
  .space-40-all > div,
.space-40-all > li {
    margin: 20px;
  }

  .space-20 {
    margin: 0 -10px;
  }
  .space-20 > div,
.space-20 > li,
.space-20 a {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 63em) and (min-width: 48.75em) {
  .hide-sm {
    display: block;
  }

  .hide-lg {
    display: block;
  }

  .hide-md {
    display: none;
  }

  .show-sm {
    display: none;
  }

  .show-md {
    display: block;
  }

  .show-lg {
    display: none;
  }
}
button,
.button {
  border-style: solid;
  border-width: 3px;
  cursor: pointer;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  display: inline-block;
  padding: 0;
  font-size: 1rem;
  background-color: #0563A1;
  border-color: #0563A1;
  color: #ffffff;
  transition: background-color 300ms ease-out, border-color 300ms ease-out;
  height: 44px;
  line-height: 38px;
  padding: 0 28px;
}
button.secondary,
.button.secondary {
  border-color: #8DC63F;
  color: #fff;
  background: transparent;
}
button.secondary:hover, button.secondary:focus,
.button.secondary:hover,
.button.secondary:focus {
  background-color: #8DC63F;
  border-color: #8DC63F;
  color: #fff;
}
.bg-white button.secondary, .bg-grey button.secondary,
.bg-white .button.secondary,
.bg-grey .button.secondary {
  color: #2C2E36;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  background-color: #034570;
  border-color: #034570;
}
button:last-child,
.button:last-child {
  margin-right: 0;
}

.calendar > div {
  flex-grow: 1;
  padding: 0 20px;
  flex-basis: 100%;
}
.calendar h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
.calendar li {
  margin-top: 25px;
}
.calendar li strong {
  display: block;
  white-space: nowrap;
}
.calendar li strong span {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin-right: 6px;
}
.calendar hr {
  margin-top: 15px;
  border: 1px solid #E1E3ED;
}

.bg-cal1 {
  background-color: #EB7DBA;
}

.bg-cal2 {
  background-color: #F9F871;
}

.bg-cal3 {
  background-color: #9C6DB6;
}

.bg-cal4 {
  background-color: #00A1AD;
}

.bg-cal5 {
  background-color: #ff7500;
}

@media only screen and (min-width: 63em) {
  .calendar > div {
    border-right: 1px solid #E1E3ED;
    flex-basis: 14.28%;
  }
  .calendar > div:first-child {
    border-left: 1px solid #E1E3ED;
  }
  .calendar h3 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 63em) and (min-width: 48.75em) {
  .calendar {
    flex-wrap: wrap;
  }
  .calendar > div {
    border-right: 1px solid #E1E3ED;
    flex-basis: 25%;
  }
  .calendar > div:first-child {
    border-left: 1px solid #E1E3ED;
  }
  .calendar h3 {
    margin-top: 1.5rem;
  }
}
.card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 30px;
}
.bg-white .card {
  border-color: #E1E3ED;
  background: #fff;
}
.bg-dark .card h2 {
  color: #fff;
}
.bg-dark .card li {
  color: #CCCCCC;
}
.bg-dark .card svg path {
  fill: #E1E3ED;
}
.bg-dark .card .price span {
  color: #CCCCCC;
}
.homepage .card:first-child {
  margin-bottom: 0 !important;
}
.card .icon {
  margin-bottom: 8px;
}
.card span {
  display: block;
  color: #8DC63F;
  font-size: 3rem;
  line-height: 1;
}
.card .price {
  font-size: 2.625rem;
  font-weight: 600;
}
.card .price span {
  font-size: 0.875rem;
  color: #555555;
  display: inline;
  font-weight: 400;
}
.card strong {
  color: #8DC63F;
  font-weight: 700;
}
.card img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  overflow: hidden;
  margin-right: 15px;
}
.card h2 {
  font-size: 1.5rem;
}
.card h3 {
  margin-bottom: 0;
}
.card ul {
  margin-top: 1.25em;
  margin-bottom: 3.5em;
  min-height: 60px;
}
.card ul li {
  margin-top: 12px;
}
.card .p-small,
.card .p-large {
  margin: 0;
}
.card.ta-center h2,
.card.ta-center h3,
.card.ta-center li {
  text-align: center;
}
.card small {
  margin: 4px 0 0;
}

@media only screen and (min-width: 48.75em) {
  .homepage .card:first-child {
    margin-bottom: 0 !important;
  }
}
.cover {
  height: 300px;
  overflow: hidden;
}

.body {
  background: #fff;
  padding-top: 30px;
}

@media only screen and (min-width: 40.063em) {
  .cover {
    height: 500px;
  }
}
footer {
  padding: 3.5rem 0;
}
footer ul {
  color: #eaeaea;
  margin-bottom: 5px;
}
footer .social {
  margin-bottom: 20px;
}
footer .social svg {
  width: 20px;
}
footer .social svg:hover path {
  fill: #8DC63F;
}
footer .social svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

form label {
  display: block;
  margin-bottom: 2px;
}
form label span {
  font-style: italic;
  margin-left: 2px;
  color: #CCCCCC;
}
form .form-group {
  width: 100%;
}
form .list-unstyled {
  margin: 4px 0 0;
}
form .list-unstyled li {
  color: #FF563B;
}
form .row {
  flex-wrap: wrap;
}
form input[type=text],
form input[type=email],
form textarea {
  display: block;
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 14px;
}
form input[type=text]:focus,
form input[type=email]:focus,
form textarea:focus {
  border-color: #8DC63F;
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.15);
  outline: 0;
}
form input[type=checkbox] {
  border-radius: 3px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  outline: 0;
  font-size: inherit;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  top: 5px;
  margin: 0 10px 0 0;
}
form input[type=checkbox]:focus {
  border-color: #8DC63F;
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.15);
  outline: 0;
}
form input[type=checkbox]:checked {
  border-color: #8DC63F !important;
  background-color: #8DC63F;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
}
form .alert {
  position: relative;
  border-radius: 4px;
  padding: 15px 30px 15px 15px;
  margin-bottom: 15px;
  font-weight: bold;
  background: #FF563B;
  color: #fff;
}
form .alert.alert-success {
  background: #8DC63F;
}
form .alert button {
  width: 44px;
  padding: 0;
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  top: 0;
}

.gallery {
  position: relative;
}
.gallery .card {
  margin-bottom: 20px;
}
.gallery .item {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery .item:first-of-type {
  position: static;
  pointer-events: auto;
  opacity: 1;
}
.gallery .item .card:nth-child(1) {
  margin-right: 0;
}
.gallery .item .card:nth-child(2) {
  margin-left: 0;
}
.gallery .controls {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
}
.gallery .controls .control-button {
  display: inline-block;
  margin: 0 5px;
  font-size: 2.5em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.1s;
  color: rgba(216, 216, 216, 0.65);
}
.gallery .controls .control-button:hover {
  color: #fff;
}
.gallery .controls .control-button:first-of-type {
  color: #fff;
}
.gallery .secondary-controls {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.gallery .secondary-controls .control-arrows {
  display: none;
}
.gallery .secondary-controls .control-arrows:first-of-type {
  display: block;
}
.gallery .secondary-controls a {
  pointer-events: auto;
  height: 60px;
  width: 60px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3em;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
}
.gallery .secondary-controls a:nth-child(1) {
  float: left;
}
.gallery .secondary-controls a:nth-child(2) {
  float: right;
}
.gallery .control-operator {
  display: none;
}
.gallery .control-operator:target ~ .controls .control-button {
  color: rgba(216, 216, 216, 0.65);
  animation: none;
}
.gallery .control-operator:target ~ .secondary-controls .control-arrows {
  display: none;
}
.gallery .control-operator:target ~ .item {
  pointer-events: none;
  opacity: 0;
  animation: none;
}
.gallery .control-operator:nth-of-type(1):target ~ .controls .control-button:nth-of-type(1), .gallery .control-operator:nth-of-type(2):target ~ .controls .control-button:nth-of-type(2), .gallery .control-operator:nth-of-type(3):target ~ .controls .control-button:nth-of-type(3) {
  color: #fff;
}
.gallery .control-operator:nth-of-type(1):target ~ .secondary-controls .control-arrows:nth-of-type(1), .gallery .control-operator:nth-of-type(2):target ~ .secondary-controls .control-arrows:nth-of-type(2), .gallery .control-operator:nth-of-type(3):target ~ .secondary-controls .control-arrows:nth-of-type(3) {
  display: block;
}

/*--- CAROUSEL ANIMATION ---*/
@keyframes controlAnimation-2 {
  0% {
    color: rgba(216, 216, 216, 0.65);
  }
  14.3%, 50% {
    color: white;
  }
  64.3%, 100% {
    color: rgba(216, 216, 216, 0.65);
  }
}
@keyframes galleryAnimation-2 {
  0% {
    opacity: 0;
  }
  14.3%, 50% {
    opacity: 1;
  }
  64.3%, 100% {
    opacity: 0;
  }
}
.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.items-2.autoplay .control-button {
  animation: controlAnimation-2 14s infinite;
}

.items-2.autoplay .item {
  animation: galleryAnimation-2 14s infinite;
}

.items-2 .control-button:nth-of-type(1),
.items-2 .item:nth-of-type(1) {
  animation-delay: -2s;
}

.items-2 .control-button:nth-of-type(2),
.items-2 .item:nth-of-type(2) {
  animation-delay: 5s;
}

@keyframes controlAnimation-3 {
  0% {
    color: rgba(216, 216, 216, 0.65);
  }
  9.5%, 33.3% {
    color: white;
  }
  42.9%, 100% {
    color: rgba(216, 216, 216, 0.65);
  }
}
@keyframes galleryAnimation-3 {
  0% {
    opacity: 0;
  }
  9.5%, 33.3% {
    opacity: 1;
  }
  42.9%, 100% {
    opacity: 0;
  }
}
.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.items-3.autoplay .control-button {
  animation: controlAnimation-3 21s infinite;
}

.items-3.autoplay .item {
  animation: galleryAnimation-3 21s infinite;
}

.items-3 .control-button:nth-of-type(1),
.items-3 .item:nth-of-type(1) {
  animation-delay: -2s;
}

.items-3 .control-button:nth-of-type(2),
.items-3 .item:nth-of-type(2) {
  animation-delay: 5s;
}

.items-3 .control-button:nth-of-type(3),
.items-3 .item:nth-of-type(3) {
  animation-delay: 12s;
}

@keyframes controlAnimation-4 {
  0% {
    color: rgba(216, 216, 216, 0.65);
  }
  9.5%, 33.3% {
    color: white;
  }
  42.9%, 100% {
    color: rgba(216, 216, 216, 0.65);
  }
}
@keyframes galleryAnimation-4 {
  0% {
    opacity: 0;
  }
  7.1%, 25% {
    opacity: 1;
  }
  32.1%, 100% {
    opacity: 0;
  }
}
.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(4):target ~ .item:nth-of-type(4) {
  pointer-events: auto;
  opacity: 1;
}

.items-4.autoplay .control-button {
  animation: controlAnimation-4 28s infinite;
}

.items-4.autoplay .item {
  animation: galleryAnimation-4 28s infinite;
}

.items-4 .control-button:nth-of-type(1),
.items-4 .item:nth-of-type(1) {
  animation-delay: -2s;
}

.items-4 .control-button:nth-of-type(2),
.items-4 .item:nth-of-type(2) {
  animation-delay: 5s;
}

.items-4 .control-button:nth-of-type(3),
.items-4 .item:nth-of-type(3) {
  animation-delay: 12s;
}

.items-4 .control-button:nth-of-type(4),
.items-4 .item:nth-of-type(4) {
  animation-delay: 19s;
}

@keyframes controlAnimation-5 {
  0% {
    color: rgba(216, 216, 216, 0.65);
  }
  9.5%, 33.3% {
    color: white;
  }
  42.9%, 100% {
    color: rgba(216, 216, 216, 0.65);
  }
}
@keyframes galleryAnimation-5 {
  0% {
    opacity: 0;
  }
  5.7%, 20% {
    opacity: 1;
  }
  25.7%, 100% {
    opacity: 0;
  }
}
.gallery .control-operator:nth-of-type(1):target ~ .item:nth-of-type(1) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(2):target ~ .item:nth-of-type(2) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(3):target ~ .item:nth-of-type(3) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(4):target ~ .item:nth-of-type(4) {
  pointer-events: auto;
  opacity: 1;
}

.gallery .control-operator:nth-of-type(5):target ~ .item:nth-of-type(5) {
  pointer-events: auto;
  opacity: 1;
}

.items-5.autoplay .control-button {
  animation: controlAnimation-5 35s infinite;
}

.items-5.autoplay .item {
  animation: galleryAnimation-5 35s infinite;
}

.items-5 .control-button:nth-of-type(1),
.items-5 .item:nth-of-type(1) {
  animation-delay: -2s;
}

.items-5 .control-button:nth-of-type(2),
.items-5 .item:nth-of-type(2) {
  animation-delay: 5s;
}

.items-5 .control-button:nth-of-type(3),
.items-5 .item:nth-of-type(3) {
  animation-delay: 12s;
}

.items-5 .control-button:nth-of-type(4),
.items-5 .item:nth-of-type(4) {
  animation-delay: 19s;
}

.items-5 .control-button:nth-of-type(5),
.items-5 .item:nth-of-type(5) {
  animation-delay: 26s;
}

@media only screen and (min-width: 48.75em) {
  .gallery .item .card:nth-child(1) {
    margin-right: 20px;
  }
  .gallery .item .card:nth-child(2) {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 63em) and (min-width: 48.75em) {
  .gallery .item .card:nth-child(1) {
    margin-right: 20px;
  }
  .gallery .item .card:nth-child(2) {
    margin-left: 20px;
  }
}
.home nav {
  margin: 0;
  background: rgba(44, 46, 54, 0.75);
}
.home header {
  padding: 0;
  height: calc(100vh - 94px);
}
.home header p {
  margin: 0;
}
.home header .hero-cta {
  height: 100%;
  background: rgba(44, 46, 54, 0.75);
  padding: 30px 0;
  margin-top: 94px;
}
.home header .hero-cta h1 {
  font-size: 3rem;
  margin-top: -5%;
}
.home header .bg-video {
  background-size: cover;
  background-image: url("../images/hero-mobile.jpg");
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  overflow: hidden;
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  top: -94px;
}
.home header .bg-video video {
  display: none;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.home header .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
}
.home header .scroll-down:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.home header .scroll-down:after {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 2px;
  height: 50px;
  background: #fff;
  animation: down-arrow 2s linear infinite;
}
.home h1 {
  color: #fff;
}
.home main > .row,
.home main > .bg-white,
.home main > .bg-dark,
.home main > .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.home .bg-picture {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 33%;
  top: 0;
}
.home .bg-picture.programs {
  background-image: url("../images/homepage-programs.jpg");
}
.home .bg-picture.nutrition {
  background-image: url("../images/homepage-nutrition.jpg");
}
.home .grid {
  margin-top: 40px;
}

@keyframes down-arrow {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
@media only screen and (min-width: 48.75em) {
  .home header .bg-video {
    background-image: none;
  }
  .home header .bg-video video {
    display: block;
  }
}
@font-face {
  font-family: "Flaticons Social";
  src: url("../fonts/flaticons-social.eot");
  src: url("../fonts/flaticons-social.eot?#iefix") format("embedded-opentype"), url("../fonts/flaticons-social.woff") format("woff"), url("../fonts/flaticons-social.ttf") format("truetype"), url("../fonts/flaticons-social.svg#flaticons-social") format("svg");
  font-weight: normal;
  font-style: normal;
}
.flaticon.social:before {
  font-family: "Flaticons Social";
  speak: none;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.flaticon.social.facebook-1:before,
.flaticon.social.facebook:before,
.flaticon.social.A1:before {
  content: "";
}

.flaticon.social.twitter-1:before,
.flaticon.social.twitter:before,
.flaticon.social.A2:before {
  content: "";
}

.flaticon.social.kippt-1:before,
.flaticon.social.kippt:before,
.flaticon.social.A3:before {
  content: "";
}

.flaticon.social.vimeo-1:before,
.flaticon.social.vimeo:before,
.flaticon.social.A4:before {
  content: "";
}

.flaticon.social.flickr-1:before,
.flaticon.social.flickr:before,
.flaticon.social.A5:before {
  content: "";
}

.flaticon.social.pinterest-1:before,
.flaticon.social.pinterest:before,
.flaticon.social.A6:before {
  content: "";
}

.flaticon.social.skype-1:before,
.flaticon.social.skype:before,
.flaticon.social.A7:before {
  content: "";
}

.flaticon.social.dribbble-1:before,
.flaticon.social.dribbble:before,
.flaticon.social.A8:before {
  content: "";
}

.flaticon.social.tumblr-1:before,
.flaticon.social.tumblr:before,
.flaticon.social.A9:before {
  content: "";
}

.flaticon.social.google-plus-1:before,
.flaticon.social.google-plus:before,
.flaticon.social.A10:before {
  content: "";
}

.flaticon.social.linkedin-1:before,
.flaticon.social.linkedin:before,
.flaticon.social.A11:before {
  content: "";
}

.flaticon.social.github-1:before,
.flaticon.social.github:before,
.flaticon.social.A12:before {
  content: "";
}

.flaticon.social.vine-1:before,
.flaticon.social.vine:before,
.flaticon.social.A13:before {
  content: "";
}

.flaticon.social.instagram-1:before,
.flaticon.social.instagram:before,
.flaticon.social.B1:before {
  content: "";
}

.flaticon.social.rdio-1:before,
.flaticon.social.rdio:before,
.flaticon.social.B2:before {
  content: "";
}

.flaticon.social.dropbox-1:before,
.flaticon.social.dropbox:before,
.flaticon.social.B3:before {
  content: "";
}

.flaticon.social.rss-1:before,
.flaticon.social.rss:before,
.flaticon.social.B4:before {
  content: "";
}

.flaticon.social.cargo-1:before,
.flaticon.social.cargo:before,
.flaticon.social.B5:before {
  content: "";
}

.flaticon.social.stumbleupon-1:before,
.flaticon.social.stumbleupon:before,
.flaticon.social.B6:before {
  content: "";
}

.flaticon.social.paypal-1:before,
.flaticon.social.paypal:before,
.flaticon.social.B7:before {
  content: "";
}

.flaticon.social.behance-1:before,
.flaticon.social.behance:before,
.flaticon.social.B8:before {
  content: "";
}

.flaticon.social.zootool-1:before,
.flaticon.social.zootool:before,
.flaticon.social.B9:before {
  content: "";
}

.flaticon.social.etsy-1:before,
.flaticon.social.etsy:before,
.flaticon.social.B10:before {
  content: "";
}

.flaticon.social.foursquare-1:before,
.flaticon.social.foursquare:before,
.flaticon.social.B11:before {
  content: "";
}

.flaticon.social.facebook-2:before,
.flaticon.social.B12:before {
  content: "";
}

.flaticon.social.twitter-2:before,
.flaticon.social.B13:before {
  content: "";
}

.flaticon.social.kippt-2:before,
.flaticon.social.C1:before {
  content: "";
}

.flaticon.social.vimeo-2:before,
.flaticon.social.C2:before {
  content: "";
}

.flaticon.social.flickr-2:before,
.flaticon.social.C3:before {
  content: "";
}

.flaticon.social.linkedin-2:before,
.flaticon.social.C4:before {
  content: "";
}

.flaticon.social.facebook-3:before,
.flaticon.social.C5:before {
  content: "";
}

.flaticon.social.twitter-3:before,
.flaticon.social.C6:before {
  content: "";
}

.flaticon.social.kippt-3:before,
.flaticon.social.C7:before {
  content: "";
}

.flaticon.social.vimeo-3:before,
.flaticon.social.C8:before {
  content: "";
}

.flaticon.social.flickr-3:before,
.flaticon.social.C9:before {
  content: "";
}

.flaticon.social.pinterest-2:before,
.flaticon.social.C10:before {
  content: "";
}

.flaticon.social.skype-2:before,
.flaticon.social.C11:before {
  content: "";
}

.flaticon.social.dribbble-2:before,
.flaticon.social.C12:before {
  content: "";
}

.flaticon.social.youtube-1:before,
.flaticon.social.youtube:before,
.flaticon.social.C13:before {
  content: "";
}

.flaticon.social.facebook-4:before,
.flaticon.social.D1:before {
  content: "";
}

.flaticon.social.twitter-4:before,
.flaticon.social.D2:before {
  content: "";
}

.flaticon.social.kippt-4:before,
.flaticon.social.D3:before {
  content: "";
}

.flaticon.social.vimeo-4:before,
.flaticon.social.D4:before {
  content: "";
}

.flaticon.social.flickr-4:before,
.flaticon.social.D5:before {
  content: "";
}

.flaticon.social.pinterest-3:before,
.flaticon.social.D6:before {
  content: "";
}

.flaticon.social.skype-3:before,
.flaticon.social.D7:before {
  content: "";
}

.flaticon.social.dribbble-3:before,
.flaticon.social.D8:before {
  content: "";
}

.flaticon.social.tumblr-2:before,
.flaticon.social.D9:before {
  content: "";
}

.flaticon.social.google-plus-2:before,
.flaticon.social.D10:before {
  content: "";
}

.flaticon.social.linkedin-3:before,
.flaticon.social.D11:before {
  content: "";
}

.flaticon.social.rss-2:before,
.flaticon.social.D12:before {
  content: "";
}

.flaticon.social.stumbleupon-2:before,
.flaticon.social.D13:before {
  content: "";
}

.main-nav {
  padding: 10px 45px;
  height: 94px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
  background: rgba(44, 46, 54, 0.75);
}
.main-nav a {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Proxima Nova", "Lucida Sans", Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  transition: color 300ms ease-out;
}
.main-nav a:hover {
  color: #8DC63F;
}
.main-nav a:hover svg path {
  fill: #8DC63F;
}
.main-nav a svg {
  width: 16px;
  position: relative;
  top: 2px;
}
.main-nav a svg path {
  transition: fill 300ms ease-out;
}

header {
  background-size: cover;
  padding: 94px 0 0;
}
header p {
  margin: 0;
}
header .hero-cta {
  height: 100%;
  background: rgba(44, 46, 54, 0.75);
}

#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle input {
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #ffffff;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggle input:checked ~ ul {
  transform: none;
}
#menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menu {
  position: absolute;
  width: 250px;
  height: 100vh;
  margin: -46px 0 0 -176px;
  padding: 50px;
  padding-top: 7rem;
  background-color: #2C2E36;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
#menu li {
  padding: 0;
  transition-delay: 2s;
}
#menu li a {
  padding: 10px 0;
  display: inline-block;
}
#menu li svg {
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.secondary header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.secondary header .hero-cta {
  padding: 7rem 0;
}
.secondary .pad-sm {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.secondary .pad-sm .row {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
.secondary main .row {
  padding-top: 5em;
  padding-bottom: 5em;
}
.secondary img {
  width: 100%;
  margin-bottom: 20px;
  object-fit: cover;
}
.secondary div p:last-child {
  margin-bottom: 0;
}
.secondary h2 {
  margin-bottom: 5px;
}

.membership .row {
  padding-bottom: 1.25em;
}
.membership .row .card {
  margin-bottom: 1.25em;
}
.membership .double-price span span {
  display: block;
}
.membership .double-price div:nth-child(2) {
  position: relative;
  padding: 0 13px;
  margin-top: -12px;
  color: #CCCCCC;
}
.membership .double-price div:nth-child(2):before {
  background: #E1E3ED;
  content: "";
  height: 10px;
  width: 1px;
  display: block;
  position: absolute;
  top: -8px;
  left: 50%;
}
.membership .double-price div:nth-child(2):after {
  background: #E1E3ED;
  content: "";
  height: 10px;
  width: 1px;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
}
.membership header {
  background-image: url(../images/hero-membership.jpg);
  background-position: 50% 40%;
}

.schedule header {
  background-image: url(../images/hero-schedule.jpg);
  background-position: 50% 50%;
}

.programs header {
  background-image: url(../images/hero-programs.jpg);
  background-position: 50% 25%;
}

.about header {
  background-image: url(../images/hero-about.jpg);
  background-position: 50% 35%;
}

.contact header {
  background-image: url(../images/hero-contact.jpg);
  background-position: 50% 35%;
}

.events header {
  background-image: url(../images/hero-events.jpg);
  background-position: 50% 35%;
}

.event-barbelle header {
  background-image: url(../images/hero-barbelle.jpg);
  background-position: 50% 35%;
}

.event-pull header {
  background-image: url(../images/hero-pull.jpg);
  background-position: 50% 35%;
}

.event-future header {
  background-image: url(../images/hero-future.jpg);
  background-position: 50% 35%;
}

.nutrition header {
  background-image: url(../images/hero-nutrition.jpg);
  background-position: 50% 35%;
}

@media only screen and (min-width: 48.75em) {
  .secondary img {
    margin-bottom: 0;
  }
}
h1, h2, h3, h4, h5 {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-rendering: optimizeLegibility;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

h1 {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 2.375rem;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  text-align: left;
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
  color: #1A1A1A;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333333;
}

h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1A1A1A;
  margin: 0 0 2px;
}

p {
  text-align: left;
  font-family: inherit;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.4rem;
  text-rendering: optimizeLegibility;
  color: #555555;
}
p.p-large {
  font-size: 1.125rem;
}
p.p-small {
  font-size: 0.875rem;
}
p.p-short {
  max-width: 475px;
}
p.p-short.ta-center {
  margin-right: auto;
  margin-left: auto;
}

.bold {
  font-weight: 700;
}

small {
  font-size: 11px;
  color: #7e7e7e;
  display: block;
}

a {
  color: #0563A1;
  text-decoration: none;
  line-height: inherit;
}

.bg-dark p {
  color: #CCCCCC;
}

/*------ ALIGNMENT ------*/
.ta-center {
  text-align: center !important;
}

/*# sourceMappingURL=app.css.map */
