* {
  box-sizing: border-box;
  font-family: 'Neue Haas Grotesk';
  line-height: 1;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --gray: #595959;
  --gray-medium: #BABABA;
  --light: #EEEEEE;
  --white: #FFFFFF;

  --heading-h1: 2.5rem;
  --heading-h2: 1.75rem;
  --heading-h3: 1.5rem;
  --heading-h4: 1.125rem;
  --body-lg: 1.125rem;
  --body-md: 1rem;
  --body-sm: .875rem;
}

@media screen and (min-width: 48em) {
  :root {
    --heading-h1: 3rem;
    --heading-h2: 2rem;
    --heading-h3: 1.75rem;
    --heading-h4: 1.5rem;
    --body-lg: 1.25rem;
    --body-md: 1.125rem;
    --body-sm: 1rem;
  }
}

@media screen and (min-width: 64em) {
  :root {
    --heading-h1: 5rem;
    --heading-h2: 3rem;
    --heading-h3: 2rem;
    --heading-h4: 1.5rem;
    --body-lg: 1.5rem;
    --body-md: 1.25rem;
    --body-sm: 1rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* Foundation Grid */
.grid-container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto; 
}

@media print, screen and (min-width: 64em) {
  .grid-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem; 
  } 
}

.grid-x {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; 
}

.cell {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%; 
}

.cell.auto {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.cell.shrink {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; 
}

.grid-x > .auto {
  width: auto;
}

.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, 
.grid-x > .small-full, 
.grid-x > .small-1, 
.grid-x > .small-2, 
.grid-x > .small-3, 
.grid-x > .small-4, 
.grid-x > .small-5, 
.grid-x > .small-6, 
.grid-x > .small-7, 
.grid-x > .small-8,
.grid-x > .small-9, 
.grid-x > .small-10, 
.grid-x > .small-11, 
.grid-x > .small-12 {
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto; 
}

@media print, screen and (min-width: 48em) {
  .grid-x > .medium-shrink, 
  .grid-x > .medium-full, 
  .grid-x > .medium-1, 
  .grid-x > .medium-2, 
  .grid-x > .medium-3, 
  .grid-x > .medium-4, 
  .grid-x > .medium-5, 
  .grid-x > .medium-6, 
  .grid-x > .medium-7, 
  .grid-x > .medium-8, 
  .grid-x > .medium-9, 
  .grid-x > .medium-10, 
  .grid-x > .medium-11, 
  .grid-x > .medium-12 {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    lex-basis: auto; 
  } 
}

@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, 
  .grid-x > .large-full, 
  .grid-x > .large-1, 
  .grid-x > .large-2, 
  .grid-x > .large-3, 
  .grid-x > .large-4, 
  .grid-x > .large-5,
  .grid-x > .large-6, 
  .grid-x > .large-7, 
  .grid-x > .large-8, 
  .grid-x > .large-9, 
  .grid-x > .large-10, 
  .grid-x > .large-11, 
  .grid-x > .large-12 {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; 
  } 
}

.grid-x > .small-1, 
.grid-x > .small-2, 
.grid-x > .small-3, 
.grid-x > .small-4, 
.grid-x > .small-5, 
.grid-x > .small-6, 
.grid-x > .small-7, 
.grid-x > .small-8, 
.grid-x > .small-9, 
.grid-x > .small-10, 
.grid-x > .small-11, 
.grid-x > .small-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; 
}

.grid-x > .small-1 {
  width: 8.33333%; 
}

.grid-x > .small-2 {
  width: 16.66667%; 
}

.grid-x > .small-3 {
  width: 25%; 
}

.grid-x > .small-4 {
  width: 33.33333%;
}

.grid-x > .small-5 {
  width: 41.66667%; 
}

.grid-x > .small-6 {
  width: 50%; 
}

.grid-x > .small-7 {
  width: 58.33333%; 
}

.grid-x > .small-8 {
  width: 66.66667%; 
}

.grid-x > .small-9 {
  width: 75%; 
}

.grid-x > .small-10 {
  width: 83.33333%; 
}

.grid-x > .small-11 {
  width: 91.66667%; 
}

.grid-x > .small-12 {
  width: 100%; 
}

@media print, screen and (min-width: 48em) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto; 
  }

  .grid-x > 
  .medium-shrink, 
  .grid-x > .medium-1, 
  .grid-x > .medium-2, 
  .grid-x > .medium-3, 
  .grid-x > .medium-4, 
  .grid-x > .medium-5, 
  .grid-x > .medium-6, 
  .grid-x > .medium-7, 
  .grid-x > .medium-8, 
  .grid-x > .medium-9, 
  .grid-x > .medium-10, 
  .grid-x > .medium-11, 
  .grid-x > .medium-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; 
  }

  .grid-x > .medium-shrink {
    width: auto; 
  }

  .grid-x > .medium-1 {
    width: 8.33333%; 
  }

  .grid-x > .medium-2 {
    width: 16.66667%;
  }

  .grid-x > .medium-3 {
    width: 25%; 
  }

  .grid-x > .medium-4 {
    width: 33.33333%; 
  }

  .grid-x > .medium-5 {
    width: 41.66667%;
  }

  .grid-x > .medium-6 {
    width: 50%; 
  }

  .grid-x > .medium-7 {
    width: 58.33333%; 
  }

  .grid-x > .medium-8 {
    width: 66.66667%; 
  }

  .grid-x > .medium-9 {
    width: 75%;
  }

  .grid-x > .medium-10 {
    width: 83.33333%;
  }

  .grid-x > .medium-11 {
    width: 91.66667%; 
  }

  .grid-x > .medium-12 {
    width: 100%; 
  } 
}

@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto; 
  }

  .grid-x > .large-shrink, 
  .grid-x > .large-1, 
  .grid-x > .large-2, 
  .grid-x > .large-3, 
  .grid-x > .large-4, 
  .grid-x > .large-5, 
  .grid-x > .large-6, 
  .grid-x > .large-7, 
  .grid-x > .large-8, 
  .grid-x > .large-9, 
  .grid-x > .large-10, 
  .grid-x > .large-11, 
  .grid-x > .large-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; 
  }

  .grid-x > .large-shrink {
    width: auto; 
  }

  .grid-x > .large-1 {
    width: 8.33333%; 
  }

  .grid-x > .large-2 {
    width: 16.66667%; 
  }

  .grid-x > .large-3 {
    width: 25%; 
  }

  .grid-x > .large-4 {
    width: 33.33333%; 
  }

  .grid-x > .large-5 {
    width: 41.66667%;
  }

  .grid-x > .large-6 {
    width: 50%; 
  }

  .grid-x > .large-7 {
    width: 58.33333%; 
  }

  .grid-x > .large-8 {
    width: 66.66667%; 
  }

  .grid-x > .large-9 {
    width: 75%; 
  }

  .grid-x > .large-10 {
    width: 83.33333%;
  }

  .grid-x > .large-11 {
    width: 91.66667%; 
  }

  .grid-x > .large-12 {
    width: 100%; 
  } 
}

.grid-margin-x:not(.grid-x) > .cell {
  width: auto; 
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto; 
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem; 
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; 
  } 
}

.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem; 
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem; 
    } 
  }

.grid-margin-x > .auto {
  width: auto; 
}

.grid-margin-x > .shrink {
  width: auto; 
}

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.25rem); 
}

.grid-margin-x > .small-2 {
  width: calc(16.66667% - 1.25rem);
}

.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem); 
}

.grid-margin-x > .small-4 {
  width: calc(33.33333% - 1.25rem); 
}

.grid-margin-x > .small-5 {
  width: calc(41.66667% - 1.25rem); 
}

.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem); 
}

.grid-margin-x > .small-7 {
  width: calc(58.33333% - 1.25rem); 
}

.grid-margin-x > .small-8 {
  width: calc(66.66667% - 1.25rem); 
}

.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}

.grid-margin-x > .small-10 {
  width: calc(83.33333% - 1.25rem); 
}

.grid-margin-x > .small-11 {
  width: calc(91.66667% - 1.25rem); 
}

.grid-margin-x > .small-12 {
    width: calc(100% - 1.25rem); 
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x > .auto {
    width: auto;
  }

  .grid-margin-x > .shrink {
    width: auto; 
  }

  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.875rem); 
  }

  .grid-margin-x > .small-2 {
    width: calc(16.66667% - 1.875rem); 
  }

  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem); 
  }

  .grid-margin-x > .small-4 {
    width: calc(33.33333% - 1.875rem); 
  }

  .grid-margin-x > .small-5 {
    width: calc(41.66667% - 1.875rem); 
  }

  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem); 
  }

  .grid-margin-x > .small-7 {
    width: calc(58.33333% - 1.875rem); 
  }

  .grid-margin-x > .small-8 {
    width: calc(66.66667% - 1.875rem); 
  }

  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem); 
  }

  .grid-margin-x > .small-10 {
    width: calc(83.33333% - 1.875rem);
  }

  .grid-margin-x > .small-11 {
    width: calc(91.66667% - 1.875rem); 
  }

  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem); 
  }

  .grid-margin-x > .medium-auto {
    width: auto; 
  }

  .grid-margin-x > .medium-shrink {  
    width: auto; 
  }

  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.875rem); 
  }

  .grid-margin-x > .medium-2 {
    width: calc(16.66667% - 1.875rem); 
  }

  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem); 
  }

  .grid-margin-x > .medium-4 {
    width: calc(33.33333% - 1.875rem);
  }

  .grid-margin-x > .medium-5 {
    width: calc(41.66667% - 1.875rem); 
  }

  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x > .medium-7 {
    width: calc(58.33333% - 1.875rem);
  }

  .grid-margin-x > .medium-8 {
    width: calc(66.66667% - 1.875rem);
  }

  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem); 
  }

  .grid-margin-x > .medium-10 {
    width: calc(83.33333% - 1.875rem); 
  }

  .grid-margin-x > .medium-11 {
    width: calc(91.66667% - 1.875rem); 
  }xs

  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem); 
  } 
}

@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto; 
  }

  .grid-margin-x > .large-shrink {
    width: auto; 
  }

  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.875rem);
  }

  .grid-margin-x > .large-2 {
    width: calc(16.66667% - 1.875rem); 
  }

  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem); 
  }

  .grid-margin-x > .large-4 {
    width: calc(33.33333% - 1.875rem);
  }

  .grid-margin-x > .large-5 {
    width: calc(41.66667% - 1.875rem); 
  }

  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem); 
  }

  .grid-margin-x > .large-7 {
    width: calc(58.33333% - 1.875rem); 
  }

  .grid-margin-x > .large-8 {
    width: calc(66.66667% - 1.875rem); 
  }

  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem); 
  }

  .grid-margin-x > .large-10 {
    width: calc(83.33333% - 1.875rem); 
  }

  .grid-margin-x > .large-11 {
    width: calc(91.66667% - 1.875rem); 
  }

  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem); 
  } 
}

.align-left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; 
}

.align-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; 
}

.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; 
}

.align-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; 
}

.align-spaced {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; 
}

.align-left.vertical.menu > li > a {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; 
}

.align-right.vertical.menu > li > a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; 
}

.align-center.vertical.menu > li > a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; 
}

.align-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; 
}

.align-self-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; 
}

.align-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; 
}

.align-self-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; 
}

.align-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; 
}

.align-self-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; 
}

.align-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; 
}

.align-self-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch; 
}

.align-center-middle {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center; 
}

.small-order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; 
}

.small-order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; 
}

.small-order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3; 
}

.small-order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4; 
}

.small-order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5; 
}

.small-order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6; 
}

@media print, screen and (min-width: 48em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; 
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; 
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; 
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; 
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; 
  } 
}

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; 
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; 
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; 
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; 
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; 
  }
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; 
}

.flex-child-auto {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; 
}

.flex-child-grow {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto; 
}

.flex-child-shrink {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; 
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; 
}

.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; 
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; 
}

.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; 
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; 
  }
  .medium-flex-child-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; 
  }
  .medium-flex-child-grow {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; 
  }
  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; 
    }
  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; 
  }
  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; 
  }
  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; 
  }
  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; 
  } 
}

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; 
  }
  .large-flex-child-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; 
  }
  .large-flex-child-grow {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; 
  }
  .large-flex-child-shrink {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; 
  }
  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; 
  }
  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; 
  }
  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; 
  }
  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; 
  }
}

/* ########## */
/* Typography */
/* ########## */
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('NeueHaasDisplay.eot');
  src: url('NeueHaasDisplay.eot?#iefix') format('embedded-opentype'),
      url('NeueHaasDisplay.woff2') format('woff2'),
      url('NeueHaasDisplay.woff') format('woff'),
      url('NeueHaasDisplay.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-size: var(--heading-h1);
  font-weight: 500;
}
h2 {
  font-size: var(--heading-h2);
  font-weight: 500;
}
h3 {
  font-size: var(--heading-h3);
  font-weight: 500;
}
h4 {
  font-size: var(--heading-h4);
  font-weight: 500;
}
p {
  font-size: var(--body-sm);
  line-height: 1.5;
}
p.copy-medium {
  font-size: var(--body-md);
}
p.copy-large {
  font-size: var(--body-lg);
}

/* ####### */
/* Buttons */
/* ########*/
a {
  text-decoration: none;
}
a.button {
  font-size: 1rem;
  line-height: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  padding: 11px 24px;
}
a.button svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
  margin-left: 8px;
}
a.button.outline {
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 24px;
  -webkit-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
}
a.button.outline:hover {
  color: var(--white);
  background-color: var(--black);
}
a.button.outline:hover svg {
  fill: var(--white);
}
@media screen and (min-width: 48em) {
  a.button {
    font-size: 1.125rem;
    padding: 15px 24px;
  }
  a.button svg {
    margin-left: 16px;
  }
}

/* ######### */
/* Preloader */
/* ######### */
div.overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: var(--black);
  z-index: 100;
}


/* ###### */
/* Topbar */
/* ###### */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 9999;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}
nav div.nav-container {
  width: 100%;
  max-width: 100rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
/* Logo */
nav a.nc-brand {
  height: 32px;
  z-index: 102;
}
nav a.nc-brand svg {
  height: 32px;
  fill: var(--black);
}

@media screen and (min-width: 48em) {
  nav a.nc-brand {
    height: 40px;
    z-index: 102;
  }
  nav a.nc-brand svg {
    height: 40px;
  }
}

body.homepage nav a.nc-brand svg,
body.work nav a.nc-brand svg
 {
  fill: var(--white);
}
nav a.nc-brand.change-color svg {
  fill: var(--white);
}
/* Call to action */
nav div.nav-cta {
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 102;
}

@media screen and (min-width: 48em) {
  nav div.nav-cta {
    height: 48px;
  }
}

nav div.nav-cta a.button.change-color {
  color: var(--white);
  border: 1px solid var(--white);
}
nav div.nav-cta a.button.change-color svg {
  fill: var(--white);
}
nav div.nav-cta a.button.change-color:hover {
  background-color: var(--white);
  color: var(--black);
}
nav div.nav-cta a.button.change-color:hover svg {
  fill: var(--black);
}
body.homepage nav a.button,
body.work nav a.button {
  color: var(--white);
  border: 1px solid var(--white);
}
body.homepage nav a.button svg,
body.work nav a.button svg {
  fill: var(--white);
}
body.homepage nav a.button:hover,
body.work nav a.button:hover { 
  color: var(--black);
  background-color: var(--white);
  -webkit-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
}
body.homepage nav a.button:hover svg,
body.work nav a.button:hover svg {
  fill: var(--black);
}

/* Hamburger */
nav a.hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 32px;
}
nav a.hamburger span {
  width: 32px;
  height: 2px;
  position: absolute;
  left: 4px;
  display: block;
  background-color: var(--black);
  transform: rotate(0deg);
  transition: transform 200ms ease-in-out, all 200ms ease-in-out;
}
body.homepage nav a.hamburger span,
body.work nav a.hamburger span {
  background-color: var(--white);
}
nav a.hamburger span.top-line {
  top: calc(50% - 4px);
}
nav a.hamburger span.top-bottom {
  top: calc(50% + 4px);
}
nav a.hamburger:hover span {
  width: 40px;
  left: 0;
}

@media screen and (min-width: 48em) {
  nav a.hamburger {
    width: 48px;
    height: 48px;
    margin-left: 48px;
  }
  nav a.hamburger span {
    width: 40px;
  }
  nav a.hamburger span.top-line {
    top: calc(50% - 8px);
  }
  nav a.hamburger span.top-bottom {
    top: calc(50% + 8px);
  }
  nav a.hamburger:hover span {
    width: 48px;
    left: 0;
  }
}

nav a.hamburger.rotate-lines span.top-line {
  top: 50%;
  background-color: var(--white);
  transform: rotate(45deg);
}
nav a.hamburger.rotate-lines span.top-bottom {
  top: 50%;
  background-color: var(--white);
  transform: rotate(-45deg);
}
/* Menu */
div.menu-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-between;
  transform-style: preserve-3d;
  transform: translate3d(0vw, 0px, 0px) scale(0, 0, 1) rotateX('0deg') rotateZ('0deg') skew(0deg, 0deg);
  z-index: 101;
}
div.menu-content.is-active {
  display: flex;
  transform: translate3d(100vw, 0px, 0px) scale(1, 1, 1) rotateX('0deg') rotateZ('0deg') skew(0deg, 0deg);
}
div.menu-wrap {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--black);
  z-index: 102;
  padding-bottom: 64px;
}
div.menu-content div.grid-container {
  width: 100%;
}
div.menu-content div.grid-container div.grid-x > div:nth-of-type(2) {
  display: flex;
  justify-content: flex-start;
}
div.menu-content ul.menu li {
  list-style: none;
  margin-bottom: 32px;
}
div.menu-content ul.menu li:last-child {
  margin-bottom: 0;
}
div.menu-content ul.menu li a {
  font-size: 3rem;
  text-decoration: none;
  color: var(--white);
}
div.menu-content ul.menu li a:hover {
  color: var(--gray);
}
div.menu-content div.social {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 64px;
}
div.menu-content div.social a {
  display: inline-block;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--white);
  transition: all .4s;
}
div.menu-content div.social a:nth-of-type(1) {
  margin-bottom: 24px;
}
div.menu-content div.social a:hover {
  color: var(--gray);
}
div.menu-content div.social a.email {
  margin-top: 32px;
}
div.menu-content div.social a svg {
  fill: var(--white);
  margin-left: 8px;
}
div.menu-content div.social a:hover svg {
  fill: var(--gray);
}

@media screen and (min-width: 48em) {
  div.menu-wrap {
    padding-bottom: 128px;
  }
  div.menu-content ul.menu li a {
    font-size: 5rem;
    text-decoration: none;
    color: var(--white);
  }
  div.menu-content div.social a {
    font-size: 1.5rem;
  }
  div.menu-content div.social a svg {
    margin-left: 8px;
  }
  div.menu-content div.social a.email {
    margin-top: 48px;
  }
}
@media screen and (min-width: 64em) {
  div.menu-content div.social {
    margin-top: 0;
  }
}



/* ############# */
/* General Rules */
/* ############# */
div.section-title {
  margin-bottom: 32px;
}
div.section-title h4 {
  border-top: 1px solid var(--gray-medium);
  border-bottom: 1px solid var(--gray-medium);
  padding-top: 8px;
  padding-bottom: 8px;
}



/* ######## */
/* Homepage */
/* ######## */
section.hero-homepage {
  color: var(--white);
  background-color: var(--black);
  padding: 128px 0 128px 0;
}
section.hero-homepage h1 {
  line-height: 1.125;
  margin-top: 48px;
}
section.hero-homepage div.work-together {
  z-index: -1;
  margin-top: 48px;
}
section.hero-homepage div.work-together img {
  height: 80px;
  -webkit-animation: rotation 8s infinite linear;
  animation: rotation 8s infinite linear;
}
@media screen and (min-width: 48em) {
  section.hero-homepage {
    padding: 144px 0 128px 0;
  }
  section.hero-homepage h1 {
    margin-top: 0;
  }
  section.hero-homepage div.work-together {
    margin-top: 80px;
  }
}

@media screen and (min-width: 64em) {
  section.hero-homepage div.work-together img {
    height: auto;
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Intro */
section.intro-homepage {
  color: var(--white);
  background-color: var(--black);
  padding-bottom: 128px;
}
section.intro-homepage p.copy-large {
  margin-bottom: 40px;
}
section.intro-homepage a.button.outline {
  color: var(--white);
  border: 1px solid var(--white);
}
section.intro-homepage a.button.outline svg {
  fill: var(--white)
}
section.intro-homepage a.button.outline:hover {
  background-color: var(--white);
  color: var(--black);
}
section.intro-homepage a.button.outline:hover svg {
  fill: var(--black);
}

/* Selected Works */
section.selected-works {
  color: var(--white);
  background-color: var(--black);
  padding-bottom: 32px;
}
section.selected-works div.work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 48px;
}

@media screen and (min-width: 48em) {
  section.selected-works {
    padding-bottom: 80px;
  }
  section.selected-works div.grid-x:last-child {
    margin-top: 48px;
  }
  section.selected-works div.grid-x > div:nth-of-type(1) {
    width: calc(50% - 16px);
    margin-right: 16px;
  }
  section.selected-works div.grid-x > div:nth-of-type(2) {
    width: calc(50% - 16px);
    margin-left: 16px;
  }
  section.selected-works div.work {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 64em) {
  section.selected-works {
    padding-bottom: 128px;
  }
}

section.selected-works div.work.block a {
  cursor: not-allowed;
}
section.selected-works div.work a.picture-zoom {
  width: 100%;
  max-height: 800px;
  overflow: hidden;
}
section.selected-works div.work a.picture-zoom img {
  width: 100%;
  opacity: 0.6;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all .2s ease-in;
}
section.selected-works div.work:hover a.picture-zoom img {
  opacity: 1;
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
section.selected-works div.work div.info-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
}
section.selected-works div.work div.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  order: 2;
}
section.selected-works div.work div.info h4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--white);
}
section.selected-works div.work div.info a h4 svg path {
  fill: var(--white);
  stroke: none;
}
section.selected-works div.work div.info a:hover h4 {
  color: var(--gray);
}
section.selected-works div.work div.info a:hover h4 svg path {
  fill: var(--gray);
}
section.selected-works div.work div.info p {
  font-size: var(--body-md);
  color: var(--gray-medium);
  margin-top: 8px;
}
section.selected-works div.work div.info-project a.button {
  max-height: 48px;
  order: 1;
  color: var(--gray-medium);
  border-color: var(--gray-medium);
  margin-bottom: 24px;
}
@media screen and (min-width: 48em) {
  section.selected-works div.work div.info-project {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 24px;
  }
  section.selected-works div.work div.info {
    order: 1;
  }
  section.selected-works div.work div.info-project a.button {
    order: 2;
  }
}
section.selected-works div.work div.info-project a svg {
  margin-left: 8px;
}
section.selected-works div.work div.info-project a svg path {
  fill: transparent;
  stroke: var(--gray-medium);
}

/* Services */
section.services {
  background-color: var(--light);
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (min-width: 48em) {
  section.services ul.accordion {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  section.services ul.accordion div.line {
    margin: 48px 0;
  }
}
section.services ul.accordion {
  margin-top: 64px;
}
section.services ul.accordion li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
section.services ul.accordion li div.accordion-trigger {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
section.services ul.accordion li div.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
section.services ul.accordion li div.title span {
  color: var(--gray-medium);
  margin-right: 8px;
}
section.services ul.accordion li a {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url(../images/show-more.svg);
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: transform .2s ease-in-out;
}
section.services ul.accordion li a.rotate-plus {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.services ul.accordion div.accordion-content {
  padding-top: 32px;
}
section.services ul.accordion div.accordion-content p:nth-of-type(1) {
  margin-bottom: 24px;
}
section.services ul.accordion div.line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--gray-medium);
  margin: 24px 0;
}
@media screen and (min-width: 48em) {
  section.services ul.accordion {
    margin-top: 128px;
  }
  section.services ul.accordion div.line {
    margin: 48px 0;
  }
}

/* #### */
/* Work */
/* #### */ 
body.work section.selected-works {
  color: var(--white);
  background-color: var(--black);
  padding: 144px 0 128px 0;
}

/* ######## */
/* About me */
/* ######## */
body.about {
  background-color: var(--light);
}
section.hero-about {
  color: var(--black);
  padding: 144px 0 128px 0;
}
section.hero-about h1 {
  line-height: 1.125;
}
section.hero-about div.work-together {
  margin-top: 48px;
}
section.hero-about div.work-together img {
  height: 80px;
  -webkit-animation: rotation 8s infinite linear;
  animation: rotation 8s infinite linear;
}
section.hero-about div.picture-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 64px;
}
@media screen and (min-width: 48em) {
  section.hero-about div.work-together {
    margin-top: 80px;
  }
  section.hero-about div.picture-container {
    margin-top: 0;
    padding-left: 48px;
  }
}
@media screen and (min-width: 64em) {
  section.hero-about div.work-together img {
    height: auto;
  }
  section.hero-about div.picture-container {
    padding-left: 0;
  }
}
/* Info */
section.about-data {
  margin-bottom: 80px;
}
section.about-data p {
  margin-bottom: 24px;
}
section.about-data p:last-of-type {
  margin-bottom: 0;
}
section.about-data a.button {
  margin-top: 48px;
}
section.about-data ul.data-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-medium);
  padding-top: 32px;
  padding-bottom: 32px;
}
section.about-data ul.data-list li:first-child {
  padding-top: 0;
}
section.about-data ul.data-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
section.about-data div.title p {
  margin-bottom: 8px;
}
section.about-data div.title p.role {
  color: var(--gray);
}
section.about-data div.data-dates p span {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
section.about-data div.data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
section.about-data div.data-list div.skill-tool {
  width: 50%;
}


/* ####### */
/* Project */
/* ####### */
section.project-hero {
  padding-top: 88px;
}
section.project-hero div.hero-picture {
  width: 100%;
  max-height: 960px;
  overflow: hidden;
}
section.project-info {
  margin-top: 32px;
}
section.project-info div.grid-x div {
  margin-bottom: 24px;
}

@media screen and (min-width: 48em) {
  section.project-info {
    margin-top: 64px;
  }
  section.project-info div.grid-x div {
    margin-bottom: 0px;
  }
}

section.project-info div.section-title {
  margin-top: 16px;
  margin-bottom: 16px;
}
section.project-info div.section-title h4 {
  font-size: 1rem;
}
section.project-info p {
  color: var(--gray);
}
section.project-info p.title {
  color: var(--black);
}
section.project-info p.copy-large,
section.project-info p.copy-medium {
  color: var(--black);
  margin-bottom: 24px;
}
section.project-info p.copy-medium:last-child {
  margin-bottom: 0;
}
section.project-info div.grid-x:last-child {
  margin-top: 80px;
}
section.project-screens {
  margin-top: 128px;
}
section.project-screens img {
  margin-bottom: 24px;
}
section.project-navigation {
  margin-top: 24px;
}
section.project-navigation div.grid-x div:nth-of-type(2) {
  display: flex;
  justify-content: flex-end;
}
section.project-navigation div.previous a,
section.project-navigation div.next a {
  display: flex;
  flex-direction: column;
}
section.project-navigation div.previous a.block,
section.project-navigation div.next a.block {
  cursor: not-allowed;
}
section.project-navigation h2 {
  display: flex;
  align-items: center;
  color: var(--black);
}
section.project-navigation div.next h2 {
  justify-content: flex-end;
}
section.project-navigation div.previous a:hover h2,
section.project-navigation div.next a:hover h2 {
  color: var(--gray);
}
section.project-navigation h2 svg {
  height: 24px;
  fill: var(--black);
}
section.project-navigation div.previous a:hover h2 svg,
section.project-navigation div.next a:hover h2 svg {
  fill: var(--gray);
}
section.project-navigation div.previous h2 svg {
  margin-right: 8px;
}
section.project-navigation div.next h2 svg {
  margin-left: 8px;
}
section.project-navigation div.previous ul.project-name,
section.project-navigation div.next ul.project-name {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
}
section.project-navigation ul.project-name {
  margin-top: 16px;
}
section.project-navigation ul.project-name li {
  font-size: .875rem;
  color: var(--gray);
}
section.project-navigation div.next ul.project-name li {
  text-align: right;
}
@media screen and (min-width: 48em) {
  section.project-navigation h2 svg {
    height: 32px;
  }
  section.project-navigation div.previous h2 svg {
    margin-right: 16px;
  }
  section.project-navigation div.next h2 svg {
    margin-left: 16px;
  }
  section.project-navigation ul.project-name li {
    font-size: 1.125rem;
  }
}
section.project-navigation div.next ul.project-name li {
  margin-right: 4px;
}
section.project-navigation div.previous ul.project-name li {
  margin-left: 4px;
}
section.project-navigation div.previous ul.project-name li:first-child {
  margin-left: 0;
}

section.project-navigation div.line {
  width: 100%;
  height: 1px;
  background-color: var(--gray-medium);
  margin-top: 128px;
}

/* ###### */
/* Footer */
/* ###### */
footer {
  background-color: var(--white);
  padding-top: 64px;
}
footer div.grid-x {
  margin-bottom: 48px;
}
footer h1 {
  margin-bottom: 8px;
}
footer h2 a {
  text-decoration: none;
  color: var(--black);
}
footer h2 a:hover {
  text-decoration: underline;
}
footer div.services-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 48px;
}
footer div.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
footer div.services span {
  font-size: 1rem;
  line-height: 1;
  color: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 24px;
  margin-bottom: 16px;
  margin-right: 16px;
  padding: 11px 24px;
}
footer div.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 32px;
}
footer div.social a {
  line-height: 1.5rem;
  color: var(--black);
  text-decoration: none;
  margin-right: 48px;
}
footer div.social a svg {
  fill: var(--black);
  margin-left: 8px;
}
footer p.copyright {
  color: var(--gray);
  padding-bottom: 32px;
}
@media screen and (min-width: 48em) {
  footer {
    padding-top: 80px;
  }
  footer div.grid-x {
    margin-bottom: 80px;
  }
  footer div.services-social {
    margin-top: 0;
  }
}
@media screen and (min-width: 64em) {
  footer {
    padding-top: 128px;
  }
  footer div.services span {
    font-size: 1.5rem;
    margin-right: 32px;
  }
  footer div.services span:last-child {
    margin-top: 32px;
  }
  footer div.social {
    margin-top: 48px;
  }
  footer div.social a {
    font-size: 1.5rem;
  }
  footer p.copyright {
    padding-bottom: 48px;
  }
}