.clear_both {
  clear: both; }

/*
$breakpoint's

0 - 600px: Phone (phone)
600 - 900px: Tablet portrait (tab-port)
900 - 1200: tablet landscape (tab-land)
1200 - 1800: desktop **Default**
1800px + : Big screen (big-desktop)

1em = 16px (  e.g phone: 600/16px = 37.5em)

ORDER OF MQ's base + typography > general layout + grid > page layout > components

*/
*,
*::after,
*::before {
  /* universal reset (asterix) */
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /*  forces box-sizing to be inherited, see .body (padding and border is not added tol overall sizing) */ }

html {
  /* root folder for setting rem sizes ***useful for media queries!!  */
  font-size: 62.5%;
  /* easier for maths (1rem = 10px) and default font-sixe = 16px... For user interface easiness divide 10px/16px (what we want/default size) = 0.625*/ }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (max-width: 200em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  /*no borders or padding, just width and height of box*/
  background-color: #0d1919; }
  @media (max-width: 56.25em) {
    body {
      padding: 0; } }

::selection {
  background-color: #c53a4d;
  color: #fff; }

@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translatex(-10rem);
    transform: rotate(-20deg); }
  35% {
    transform: rotate(15deg); }
  65% {
    transform: rotate(-10deg); }
  75% {
    transform: rotate(5deg); }
  80% {
    transform: translatex(20px);
    transform: rotate(-5deg); }
  85% {
    transform: rotate(3deg); }
  90% {
    transform: translatex(2rem);
    transform: rotate(-3deg); }
  100% {
    opacity: 1;
    transform: translate(0);
    transform: rotate(0deg); } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInOpacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translatey(20rem); }
  72% {
    transform: translatey(-3rem); }
  82% {
    transform: translatey(2rem); }
  100% {
    transform: translate(0); } }

body {
  font-family: "Source Code Pro", "Chennai Slab", "Helvetica Neue", Helvetica, "sans-serif";
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: #514f52; }

.heading-primary {
  display: inline-block;
  font-size: 10rem;
  letter-spacing: 3rem;
  color: #feae17;
  padding: 0 4rem 0rem 4rem;
  text-shadow: 0.4rem 0.4rem 0.8rem #262526;
  backface-visibility: hidden;
  /* removes any shaky errors in animations */ }
  @media (max-width: 75em) {
    .heading-primary {
      letter-spacing: 1rem; } }
  @media (max-width: 37.5em) {
    .heading-primary {
      font-size: 5rem;
      letter-spacing: 1rem; } }

.heading-secondary {
  font-size: 4rem;
  font-weight: 500;
  display: inline-block;
  background-color: #fff;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  transition-property: all 0.2s; }
  @media (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.5rem; } }
  .heading-secondary:hover {
    transform: skewY(-2deg) skewX(15deg) scale(1.15);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.4); }

.heading-tertiary {
  color: #c53a4d;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0.1rem 0.1rem 0.1rem #262526; }
  .heading-tertiary:hover {
    transform: translateY(-4px) skewY(-1deg) skewX(0deg);
    text-shadow: 0.6rem 0.4rem 0.6rem rgba(0, 0, 0, 0.8);
    transition: all 0.1s; }

.paragraph {
  font-size: 1.6rem;
  color: #feae17; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 4rem !important; } }

.u-margin-bottom-huge {
  margin-bottom: 10rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-huge {
      margin-bottom: 6rem !important; } }

.u-margin-bottom-medium {
  margin-bottom: 4.5rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 3.5rem !important; } }

.u-margin-bottom-small {
  margin-bottom: 2rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-bottom-small {
      margin-bottom: 1rem !important; } }

.u-margin-top-medium {
  margin-top: 5rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-top-medium {
      margin-top: 4rem !important; } }

.u-margin-top-big {
  margin-top: 8rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-top-big {
      margin-top: 6rem !important; } }

.u-margin-top-huge {
  margin-top: 10rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-top-huge {
      margin-top: 8rem !important; } }

.padding-top-bottom {
  padding: 5rem 0 5rem 0; }
  @media (max-width: 56.25em) {
    .padding-top-bottom {
      padding: 3rem 0 3rem 0; } }

/* CSS Document */
.bg-video {
  background-color: #313137;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

/* CSS Document */
.blog .heading-secondary {
  color: #fff !important; }

.blog .timeline-bg {
  width: 6896px; }

.blog .timeline {
  position: relative; }
  .blog .timeline__container {
    position: relative;
    margin: 10px 0px 0px 0px;
    width: 100%;
    height: 70rem;
    overflow: hidden; }
  .blog .timeline__slider {
    width: 100%;
    position: absolute; }
  .blog .timeline__background {
    position: absolute;
    width: inherit;
    height: inherit; }
  .blog .timeline__background-img {
    position: absolute;
    top: -6rem;
    left: 0; }
  .blog .timeline .panel {
    width: 800px;
    position: absolute; }
    .blog .timeline .panel__content {
      display: inline-block;
      padding: 0 2rem 5rem 2rem;
      position: relative;
      font-size: 1.6rem;
      color: #fff; }
    .blog .timeline .panel__content h2 {
      margin: 2rem 0 0 0; }
    .blog .timeline .panel__content p {
      color: #fff;
      position: relative;
      margin-bottom: 1.5rem; }
    .blog .timeline .panel__blog-img {
      display: block;
      margin: auto;
      width: 60rem; }
  .blog .timeline-nav {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: inherit;
    margin-top: 3%;
    margin-bottom: 3%; }
    .blog .timeline-nav__tab {
      color: #fff;
      font-size: 1.6rem;
      text-transform: uppercase;
      display: inline-block;
      border-color: #fff;
      border-style: solid;
      border-width: 0.5rem 0.5rem 0.5rem 0.5rem;
      border-radius: 1rem 1rem 1rem 1rem;
      margin-top: 1%;
      margin-left: 1%;
      text-decoration: none;
      padding: 0.5rem 1rem 0rem 1rem; }
      .blog .timeline-nav__tab:selected {
        background-color: rgba(197, 58, 77, 0.5); }

@media (max-width: 37.5em) {
  .blog .timeline {
    margin: 0;
    background: url("../img/timeline-background-small.png");
    background-repeat: repeat; }
    .blog .timeline__container {
      height: auto;
      background: none;
      filter: none;
      margin: 0; }
    .blog .timeline__slider {
      height: auto;
      position: static; }
    .blog .timeline-nav {
      display: none; }
    .blog .timeline__background {
      display: none; }
  .blog .timeline .panel {
    width: auto;
    height: auto;
    position: static;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem; }
    .blog .timeline .panel:first-child {
      padding-top: 5rem; }
    .blog .timeline .panel__blog-img {
      width: 100%; } }

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  /* rounds the corners */
  transition: all 0.2s;
  /* means all properties can be affected in the below transformations*/
  position: relative;
  /* hides the fake button */
  font-size: 1.6rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  /* x, y, amount of shade, then blur, then black + opacity */ }
  .btn:hover::after {
    transform: scaleX(3.4) scaleY(1.6);
    /* scales both axis*/
    opacity: 0; }

.btn:active, .btn:focus {
  /*active means clicked*/
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 2px #000; }

.btn--white {
  background-color: #fff;
  color: #514f52; }
  .btn--white::after {
    background-color: #fff; }

.btn--orange {
  background-color: #c53a4d;
  color: #fff; }
  .btn--orange::after {
    background-color: #c53a4d; }

.btn--paypal {
  padding: 1rem 1rem 0rem;
  background-color: #fff;
  color: #514f52; }
  .btn--paypal::after {
    background-color: #fff; }

.btn::after {
  /*fake white button behind real button*/
  content: "";
  /* specify content so is will actually appear*/
  text-align: center;
  font-size: 19pt;
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn--animated {
  animation-name: moveInBottom;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 1.5s;
  animation-fill-mode: backwards;
  /*  sets the animation to begin at  0% state */ }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  font-weight: 600;
  color: #c53a4d;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #c53a4d;
  text-shadow: 0.1rem 0.1rem 0.2rem #262526;
  padding: 0.5rem;
  transition: all 0.4s; }

.btn-text:hover {
  background-color: #c53a4d;
  color: #fff;
  box-shadow: 0rem 0.7rem 0.7rem rgba(0, 0, 0, 0.5);
  transform: translateY(-1px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
  transform: translateY(0px); }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 80rem; }
  .card__side {
    height: 70rem;
    transition: all 0.8s ease;
    font-size: 40pt;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
    .card__side--front {
      background-color: #ffffffb2;
      line-height: 1; }
    .card__side--back {
      transform: rotateY(180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, #03537388, #022e4079); }
      .card__side--back-2 {
        background-image: linear-gradient(to right bottom, #734e46a2, #26252694); }
      .card__side--back-3 {
        background-image: linear-gradient(to right bottom, #03537388, #022e4079); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__picture {
    background-size: cover;
    background-position: top;
    height: 40rem;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    .card__picture-1 {
      background-image: linear-gradient(to right bottom, #035373, #022e40), url(../img/SurvivorPack.jpg); }
    .card__picture-2 {
      background-image: linear-gradient(to right bottom, #734e46, #262526), url(../img/Designer.jpg);
      background-size: cover; }
    .card__picture-3 {
      background-image: linear-gradient(to right bottom, #035373, #022e40), url(../img/battery.jpg); }
  .card__heading {
    line-height: 1.7;
    font-size: 2.8rem;
    font-weight: 300;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 75%; }
  .card__heading-span {
    padding: 1rem 1.5rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .card__heading-span-1 {
      background-image: linear-gradient(to right bottom, rgba(3, 83, 115, 0.75), rgba(2, 46, 64, 0.75)); }
    .card__heading-span-2 {
      background-image: linear-gradient(to right bottom, rgba(115, 78, 70, 0.75), rgba(38, 37, 38, 0.75)); }
    .card__heading-span-3 {
      background-image: linear-gradient(to right bottom, rgba(3, 83, 115, 0.75), rgba(2, 46, 64, 0.75)); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.5rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #eee; }
  .card__picture {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 30rem;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0);
    width: 100%;
    padding: 0rem 4rem 3rem 4rem; }
  .card__price-box {
    color: #fff;
    margin-bottom: 0;
    margin-top: 4rem; }
  .card__price-only {
    font-size: 2rem; }
  .card__price-value {
    font-size: 5rem;
    font-weight: 100; }
  .card__price-value-1 {
    font-size: 2rem; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  @media (max-width: 56.25em), (hover: none) {
    .card {
      height: auto;
      border-radius: 3px;
      background-color: #fff;
      box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.25);
      margin-bottom: 4rem; }
      .card__side {
        height: auto;
        position: relative;
        overflow: hidden;
        box-shadow: none; }
        .card__side--back {
          transform: rotateY(0deg);
          clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 100%); }
        .card__side--front {
          height: 50rem; }
      .card__details {
        padding: 0 2rem; }
      .card:hover .card__side--front {
        transform: rotateY(0deg); }
      .card__cta {
        position: relative;
        top: 0%;
        left: 0;
        transform: translate(0);
        width: 100%;
        padding: 7rem 4rem 4rem 4rem; }
      .card__price-box {
        margin-bottom: 3rem; }
      .card__price-value {
        font-size: 4rem; } }

.composition {
  position: relative;
  height: 45vh; }
  .composition__photo {
    width: 100%;
    box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.8);
    border-radius: 0rem;
    position: absolute;
    transition: all 0.4s; }
    @media (max-width: 56.25em) {
      .composition__photo {
        float: left;
        position: relative;
        box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.25);
        transform: scale(1); } }
    .composition__photo--project {
      top: -8rem;
      width: 110%;
      box-shadow: 1rem 2rem 2rem rgba(0, 0, 0, 0.5);
      z-index: 20; }
      @media (max-width: 75em) {
        .composition__photo--project {
          left: 10rem; } }
      @media (max-width: 56.25em) {
        .composition__photo--project {
          left: 2rem; } }
      @media (max-width: 56.25em) {
        .composition__photo--project {
          width: 90%; } }
    .composition__photo--p1 {
      width: 33.333333333%;
      left: 8rem;
      top: -12rem;
      z-index: 9; }
      @media (max-width: 56.25em) {
        .composition__photo--p1 {
          top: -13rem;
          left: 0;
          transform: scale(1.2); } }
      @media (max-width: 37.5em) {
        .composition__photo--p1 {
          display: none; } }
    .composition__photo--p2 {
      width: 33.333333333%;
      left: 30rem;
      top: 0rem;
      z-index: 10; }
      @media (max-width: 56.25em) {
        .composition__photo--p2 {
          top: -18rem;
          left: 0;
          transform: scale(1.4);
          z-index: 100; } }
      @media (max-width: 37.5em) {
        .composition__photo--p2 {
          display: none; } }
    .composition__photo--p3 {
      width: 33.333333333%;
      left: 15rem;
      top: 6rem;
      z-index: 8; }
      @media (max-width: 56.25em) {
        .composition__photo--p3 {
          top: -13rem;
          left: 0;
          transform: scale(1.1); } }
      @media (max-width: 37.5em) {
        .composition__photo--p3 {
          display: none; } }
    .composition__photo:hover {
      outline: 0.2rem solid rgba(255, 255, 255, 0.75);
      transform: scale(1.2) translateY(-1rem) translateX(-1rem);
      box-shadow: 1rem 2rem 2rem rgba(255, 255, 255, 0.5);
      z-index: 20;
      outline-offset: 0rem; }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.9);
    box-shadow: 0.5rem 1rem 1rem rgba(0, 0, 0, 0.7); }

.feature-box {
  font-size: 1.5rem;
  height: 32rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
  transition: transform 0.3s;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%; }
  @media (max-width: 56.25em) {
    .feature-box {
      margin-bottom: 4rem;
      width: 25rem;
      float: left;
      display: none; } }
  .feature-box-1 {
    background-image: url(../img/front.jpg); }
  .feature-box-2 {
    background-image: url(../img/back.jpg); }
  .feature-box-3 {
    background-image: url(../img/doubleFront.jpg); }
  .feature-box-4 {
    background-image: url(../img/doubleBack.jpg); }
  .feature-box:hover {
    transform: scale(1.3); }
    @media (max-width: 56.25em) {
      .feature-box:hover {
        transform: scale(1); } }

/*  Alpine Snow */
.alpine-snow__project {
  width: 40%; }
  @media (max-width: 75em) {
    .alpine-snow__project {
      width: 55%; } }
  @media (max-width: 56.25em) {
    .alpine-snow__project {
      width: 100%; } }

.alpine-snow__modz {
  margin-top: 3rem;
  margin-left: 3rem;
  float: left;
  border-style: groove;
  border-color: aliceblue;
  border-width: 2rem;
  width: 16%;
  transform: skewX(-12deg); }
  @media (max-width: 56.25em) {
    .alpine-snow__modz {
      display: none; } }

.alpine-snow__feat {
  margin-bottom: 3rem;
  margin-right: 3rem;
  float: right;
  border-style: groove;
  border-color: aliceblue;
  border-width: 2rem;
  width: 16%;
  transform: skewX(-12deg); }
  @media (max-width: 56.25em) {
    .alpine-snow__feat {
      display: none; } }

/*  FRIENDS & COLLEAGUES */
.thanks {
  width: 75%;
  margin: 0 auto;
  box-shadow: 2rem 2rem 5rem rgba(0, 0, 0, 0.9);
  background-color: rgba(210, 140, 58, 0.9);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  @media (max-width: 56.25em) {
    .thanks {
      margin-top: 8rem;
      width: 100%;
      padding: 4rem;
      padding-left: 7rem; } }
  @media (max-width: 37.5em) {
    .thanks {
      transform: skewX(0deg); } }
  .thanks__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative;
    overflow: hidden; }
    @media (max-width: 37.5em) {
      .thanks__shape {
        float: none;
        transform: translateX(-3rem) skewX(0deg); } }
  .thanks__img {
    width: 100%;
    transform: translateX(-1rem) scale(1.2);
    backface-visibility: hidden;
    transition: all 0.5s; }
  .thanks__text {
    transform: skewX(12deg); }
    @media (max-width: 37.5em) {
      .thanks__text {
        margin-top: 15%;
        transform: skewX(0deg); } }

.skydive-popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all .4s; }
  .skydive-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80rem;
    height: auto;
    background-color: #fff;
    box-shadow: 2rem 2rem 4rem rgba(0, 0, 0, 0.6); }
    @media (max-width: 56.25em) {
      .skydive-popup__content {
        width: 100%; } }
  .skydive-popup__video video {
    margin-left: 12.5%;
    /* override other styles to make responsive */
    width: 75%    !important;
    height: auto   !important; }
  .skydive-popup:target {
    opacity: 1;
    visibility: visible; }
  .skydive-popup:target .skydive-popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .skydive-popup__close:link, .skydive-popup__close:visited {
    color: #514f52;
    position: absolute;
    top: 2.5rem;
    right: 3.5rem;
    font-size: 5rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    line-height: .6;
    text-align: center; }
    @media (max-width: 56.25em) {
      .skydive-popup__close:link, .skydive-popup__close:visited {
        background-color: rgba(255, 255, 255, 0.5);
        width: 30px;
        height: 30px;
        border-radius: 50%; } }
  .skydive-popup__close:hover {
    color: #c53a4d; }

.header {
  height: 120vh;
  width: auto;
  background-image: url(../img/heroOutlined.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: relative; }
  @media only screen and (max-width: 700px) {
    .header {
      background-size: contain;
      background-image: url(../img/hero-phone.png);
      height: 40vh !important; } }

/* CSS Document */
.footer {
  background-color: #313137;
  background-image: url(../img/background.jpg);
  background-size: contain;
  padding: 3rem 0;
  font-size: 1.4rem;
  color: #e5dfe7; }
  @media (max-width: 75em) {
    .footer {
      padding: 1rem 0;
      background-image: url(../img/backgroundMedium.jpg); } }
  @media (max-width: 56.25em) {
    .footer {
      background-image: url(../img/backgroundSmall.jpg); } }
  .footer__logo-box {
    text-align: center;
    margin-bottom: 6rem; }
    @media (max-width: 56.25em) {
      .footer__logo-box {
        margin-bottom: 3rem; } }
  .footer__logo {
    width: 40%; }
    @media (max-width: 75em) {
      .footer__logo {
        width: 60%; } }
    @media (max-width: 56.25em) {
      .footer__logo {
        width: 80%; } }
  .footer__navigation {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: inline-block; }
    @media (max-width: 56.25em) {
      .footer__navigation {
        width: 100%;
        text-align: center; } }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #e5dfe7;
    background-color: rgba(49, 49, 55, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all .3s; }
  .footer__link:hover, .footer__link:active {
    color: #c53a4d;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    transform: rotate(5deg) scale(1.3); }
  .footer__copyright {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    float: right; }
    @media (max-width: 56.25em) {
      .footer__copyright {
        width: 100%;
        float: none; } }

.row {
  max-width: 114rem;
  margin: 0 auto;
  /* centers the block element inside a block element */ }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 50rem;
      padding: 0 2rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.no-gutter {
  margin-bottom: 1rem; }
  .no-gutter::after {
    content: "";
    display: table;
    clear: both; }

.elfwing-header {
  width: 100%;
  margin: 0 0 10rem 0; }
  @media (max-width: 37.5em) {
    .elfwing-header {
      margin: 0 0 15rem 0; } }

.section-about {
  height: 145vh;
  background-image: linear-gradient(to right bottom, #318c8f, #0d1919);
  background-image: linear-gradient(#0d1919, #318c8f); }
  @media (max-width: 200em) {
    .section-about {
      height: 135vh; } }
  @media (max-width: 110em) {
    .section-about {
      height: 150vh; } }
  @media (max-width: 75em) {
    .section-about {
      height: 120vh; } }
  @media (max-width: 56.25em) {
    .section-about {
      height: 95vh; } }
  @media (max-width: 37.5em) {
    .section-about {
      height: 68vh; } }

.section-covidSurvivor {
  padding: 40rem 0 10rem 0;
  background-color: #fff;
  background-size: contain;
  background-position: top;
  position: relative;
  margin-top: -12rem;
  transform: skewY(-7deg); }
  @media (max-width: 75em) {
    .section-covidSurvivor {
      padding: 33rem 5rem 10rem 5rem; } }
  @media (max-width: 56.25em) {
    .section-covidSurvivor {
      padding: 20rem 5rem 10rem 5rem; } }
  @media (max-width: 37.5em) {
    .section-covidSurvivor {
      padding: 0rem 0 10rem 0; } }
  .section-covidSurvivor > * {
    transform: skewY(7deg); }
  .section-covidSurvivor__img {
    margin-top: -30rem;
    margin-bottom: 5rem;
    width: 100%; }
    @media (max-width: 75em) {
      .section-covidSurvivor__img {
        padding-top: 35rem;
        margin-bottom: 10rem;
        display: block;
        position: absolute; } }
    @media (max-width: 37.5em) {
      .section-covidSurvivor__img {
        margin-top: -20rem;
        margin-bottom: 10rem; } }

.section-services {
  padding: 35rem 0 5rem 0;
  margin-top: -12rem;
  scroll-padding-top: -70rem;
  background-image: linear-gradient(to right, #03537388, #022e4079), url(../img/AyersRock.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom; }
  @media (max-width: 75em) {
    .section-services {
      padding: 25rem 0 10rem 0; } }

.section-alpine-snow {
  height: 110vh;
  background-color: #fff;
  position: relative;
  z-index: 0; }
  @media (max-width: 75em) {
    .section-alpine-snow {
      height: 90vh; } }
  @media (max-width: 37.5em) {
    .section-alpine-snow {
      height: 50vh; } }

.section-blog {
  background-image: linear-gradient(to bottom, #0d1919, #313137); }
  .section-blog .heading-secondary {
    color: #c53a4d; }

.section-thanks {
  padding: 15rem 0;
  color: #fff; }
