/* Came up with this hoping it'd work but atm it only works in Firefox grrr..... */
/* Generate the row class plus column def */
* {
  -webkit-column-gap: inherit;
  column-gap: inherit;
}
/* A pixel based grid */
/* A percentage based grid */
/* Generate classes which hide named columns */
/* Generate classes which hide named columns */
/*
  Generate a non-named grid with the given properties
*/
/*
  Generate a named grid with the given properties
*/
/*
  Generate a non-named grid, wrapped in a media query
*/
/*
  Generate a named grid, wrapped in a media query
*/
/* Grid Generation */
.hidden {
  display: none;
}
.wrapper {
  width: 100vw;
  margin: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
}
.wrapper * {
  -webkit-column-gap: 0vw;
  column-gap: 0vw;
}
.grid-gutter-left {
  left: 0%;
}
.grid-gutter-right {
  riught: 0%;
}
.faux-row {
  position: relative;
  width: 100vw;
  margin: auto;
}
.faux-row-inset {
  position: relative;
  width: 100vw;
  margin: auto;
}
.faux-row-positioned-left-inset {
  position: absolute;
  left: 0px;
  margin-left: 5vw;
}
.faux-row-positioned-right-inset {
  position: absolute;
  right: 0px;
  margin-right: 5vw;
}
.faux-row-positioned-left {
  position: absolute;
  left: 0px;
  margin-left: 5vw;
}
.faux-row-positioned-right {
  position: absolute;
  right: 0px;
  margin-right: 5vw;
}
.row {
  clear: both;
  box-sizing: border-box;
  margin-left: 0vw;
}
.row::after,
.row::before {
  display: block;
  clear: both;
  content: " ";
}
.row:after,
.row:before {
  display: block;
  clear: both;
  content: " ";
}
.row > .col-break {
  clear: both;
}
.row.row-no-wrap {
  white-space: nowrap;
  font-size: 1px;
}
.row.row-no-wrap > * {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  float: none;
  font-size: 1rem;
}
.row > * {
  position: relative;
  float: left;
}
.col-1,
.col-1-breakout-none {
  width: 7.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-1-high {
  height: 7.5vw;
}
.col-1-breakout-left {
  width: 12.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-1-breakout-right {
  width: 12.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-1-breakout-both {
  width: 17.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-1 {
  -webkit-column-count: 1;
  column-count: 1;
}
.col-2,
.col-2-breakout-none {
  width: 15vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-2-high {
  height: 15vw;
}
.col-2-breakout-left {
  width: 20vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-2-breakout-right {
  width: 20vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-2-breakout-both {
  width: 25vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-2 {
  -webkit-column-count: 2;
  column-count: 2;
}
.col-3,
.col-3-breakout-none {
  width: 22.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-3-high {
  height: 22.5vw;
}
.col-3-breakout-left {
  width: 27.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-3-breakout-right {
  width: 27.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-3-breakout-both {
  width: 32.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-3 {
  -webkit-column-count: 3;
  column-count: 3;
}
.col-4,
.col-4-breakout-none {
  width: 30vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-4-high {
  height: 30vw;
}
.col-4-breakout-left {
  width: 35vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-4-breakout-right {
  width: 35vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-4-breakout-both {
  width: 40vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-4 {
  -webkit-column-count: 4;
  column-count: 4;
}
.col-5,
.col-5-breakout-none {
  width: 37.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-5-high {
  height: 37.5vw;
}
.col-5-breakout-left {
  width: 42.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-5-breakout-right {
  width: 42.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-5-breakout-both {
  width: 47.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-5 {
  -webkit-column-count: 5;
  column-count: 5;
}
.col-6,
.col-6-breakout-none {
  width: 45vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-6-high {
  height: 45vw;
}
.col-6-breakout-left {
  width: 50vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-6-breakout-right {
  width: 50vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-6-breakout-both {
  width: 55vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-6 {
  -webkit-column-count: 6;
  column-count: 6;
}
.col-7,
.col-7-breakout-none {
  width: 52.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-7-high {
  height: 52.5vw;
}
.col-7-breakout-left {
  width: 57.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-7-breakout-right {
  width: 57.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-7-breakout-both {
  width: 62.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-7 {
  -webkit-column-count: 7;
  column-count: 7;
}
.col-8,
.col-8-breakout-none {
  width: 60vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-8-high {
  height: 60vw;
}
.col-8-breakout-left {
  width: 65vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-8-breakout-right {
  width: 65vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-8-breakout-both {
  width: 70vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-8 {
  -webkit-column-count: 8;
  column-count: 8;
}
.col-9,
.col-9-breakout-none {
  width: 67.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-9-high {
  height: 67.5vw;
}
.col-9-breakout-left {
  width: 72.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-9-breakout-right {
  width: 72.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-9-breakout-both {
  width: 77.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-9 {
  -webkit-column-count: 9;
  column-count: 9;
}
.col-10,
.col-10-breakout-none {
  width: 75vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-10-high {
  height: 75vw;
}
.col-10-breakout-left {
  width: 80vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-10-breakout-right {
  width: 80vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-10-breakout-both {
  width: 85vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-10 {
  -webkit-column-count: 10;
  column-count: 10;
}
.col-11,
.col-11-breakout-none {
  width: 82.5vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-11-high {
  height: 82.5vw;
}
.col-11-breakout-left {
  width: 87.5vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-11-breakout-right {
  width: 87.5vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-11-breakout-both {
  width: 92.5vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-11 {
  -webkit-column-count: 11;
  column-count: 11;
}
.col-12,
.col-12-breakout-none {
  width: 90vw;
  margin-left: 0vw;
  margin-right: 0px;
  box-sizing: border-box;
}
.col-12-high {
  height: 90vw;
}
.col-12-breakout-left {
  width: 95vw;
  margin-left: -5vw;
  box-sizing: border-box;
}
.col-12-breakout-right {
  width: 95vw;
  margin-right: -5vw;
  box-sizing: border-box;
}
.col-12-breakout-both {
  width: 100vw;
  margin-left: -5vw;
  margin-right: 0;
  box-sizing: border-box;
}
.text-col-12 {
  -webkit-column-count: 12;
  column-count: 12;
}
.col-push-0 {
  left: 0vw;
}
.col-push-1 {
  left: 7.5vw;
}
.col-push-2 {
  left: 15vw;
}
.col-push-3 {
  left: 22.5vw;
}
.col-push-4 {
  left: 30vw;
}
.col-push-5 {
  left: 37.5vw;
}
.col-push-6 {
  left: 45vw;
}
.col-push-7 {
  left: 52.5vw;
}
.col-push-8 {
  left: 60vw;
}
.col-push-9 {
  left: 67.5vw;
}
.col-push-10 {
  left: 75vw;
}
.col-push-11 {
  left: 82.5vw;
}
.col-push-12 {
  left: 90vw;
}
.col-pull-0 {
  left: 0vw;
}
.col-pull-1 {
  left: -7.5vw;
}
.col-pull-2 {
  left: -15vw;
}
.col-pull-3 {
  left: -22.5vw;
}
.col-pull-4 {
  left: -30vw;
}
.col-pull-5 {
  left: -37.5vw;
}
.col-pull-6 {
  left: -45vw;
}
.col-pull-7 {
  left: -52.5vw;
}
.col-pull-8 {
  left: -60vw;
}
.col-pull-9 {
  left: -67.5vw;
}
.col-pull-10 {
  left: -75vw;
}
.col-pull-11 {
  left: -82.5vw;
}
.col-pull-12 {
  left: -90vw;
}
@media screen and (min-width: 1060px) and (max-width: 1300px) {
  .hidden {
    display: none;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-break {
    clear: both;
  }
  .row.row-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-1,
  .col-1-breakout-none {
    width: 7.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-1-high {
    height: 7.5vw;
  }
  .col-1-breakout-left {
    width: 12.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-1-breakout-right {
    width: 12.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-1-breakout-both {
    width: 17.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-2,
  .col-2-breakout-none {
    width: 15vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-2-high {
    height: 15vw;
  }
  .col-2-breakout-left {
    width: 20vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-2-breakout-right {
    width: 20vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-2-breakout-both {
    width: 25vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-3,
  .col-3-breakout-none {
    width: 22.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-3-high {
    height: 22.5vw;
  }
  .col-3-breakout-left {
    width: 27.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-3-breakout-right {
    width: 27.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-3-breakout-both {
    width: 32.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-4,
  .col-4-breakout-none {
    width: 30vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-4-high {
    height: 30vw;
  }
  .col-4-breakout-left {
    width: 35vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-4-breakout-right {
    width: 35vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-4-breakout-both {
    width: 40vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-5,
  .col-5-breakout-none {
    width: 37.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-5-high {
    height: 37.5vw;
  }
  .col-5-breakout-left {
    width: 42.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-5-breakout-right {
    width: 42.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-5-breakout-both {
    width: 47.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-6,
  .col-6-breakout-none {
    width: 45vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-6-high {
    height: 45vw;
  }
  .col-6-breakout-left {
    width: 50vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-6-breakout-right {
    width: 50vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-6-breakout-both {
    width: 55vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-7,
  .col-7-breakout-none {
    width: 52.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-7-high {
    height: 52.5vw;
  }
  .col-7-breakout-left {
    width: 57.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-7-breakout-right {
    width: 57.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-7-breakout-both {
    width: 62.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-8,
  .col-8-breakout-none {
    width: 60vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-8-high {
    height: 60vw;
  }
  .col-8-breakout-left {
    width: 65vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-8-breakout-right {
    width: 65vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-8-breakout-both {
    width: 70vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-9,
  .col-9-breakout-none {
    width: 67.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-9-high {
    height: 67.5vw;
  }
  .col-9-breakout-left {
    width: 72.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-9-breakout-right {
    width: 72.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-9-breakout-both {
    width: 77.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-10,
  .col-10-breakout-none {
    width: 75vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-10-high {
    height: 75vw;
  }
  .col-10-breakout-left {
    width: 80vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-10-breakout-right {
    width: 80vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-10-breakout-both {
    width: 85vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-11,
  .col-11-breakout-none {
    width: 82.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-11-high {
    height: 82.5vw;
  }
  .col-11-breakout-left {
    width: 87.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-11-breakout-right {
    width: 87.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-11-breakout-both {
    width: 92.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-12,
  .col-12-breakout-none {
    width: 90vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-12-high {
    height: 90vw;
  }
  .col-12-breakout-left {
    width: 95vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-12-breakout-right {
    width: 95vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-12-breakout-both {
    width: 100vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-push-0 {
    left: 0vw;
  }
  .col-push-1 {
    left: 7.5vw;
  }
  .col-push-2 {
    left: 15vw;
  }
  .col-push-3 {
    left: 22.5vw;
  }
  .col-push-4 {
    left: 30vw;
  }
  .col-push-5 {
    left: 37.5vw;
  }
  .col-push-6 {
    left: 45vw;
  }
  .col-push-7 {
    left: 52.5vw;
  }
  .col-push-8 {
    left: 60vw;
  }
  .col-push-9 {
    left: 67.5vw;
  }
  .col-push-10 {
    left: 75vw;
  }
  .col-push-11 {
    left: 82.5vw;
  }
  .col-push-12 {
    left: 90vw;
  }
  .col-pull-0 {
    left: 0vw;
  }
  .col-pull-1 {
    left: -7.5vw;
  }
  .col-pull-2 {
    left: -15vw;
  }
  .col-pull-3 {
    left: -22.5vw;
  }
  .col-pull-4 {
    left: -30vw;
  }
  .col-pull-5 {
    left: -37.5vw;
  }
  .col-pull-6 {
    left: -45vw;
  }
  .col-pull-7 {
    left: -52.5vw;
  }
  .col-pull-8 {
    left: -60vw;
  }
  .col-pull-9 {
    left: -67.5vw;
  }
  .col-pull-10 {
    left: -75vw;
  }
  .col-pull-11 {
    left: -82.5vw;
  }
  .col-pull-12 {
    left: -90vw;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-medium-break {
    clear: both;
  }
  .row.row-medium-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-medium-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-medium-1,
  .col-medium-1-breakout-none {
    width: 7.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-1-high {
    height: 7.5vw;
  }
  .col-medium-1-breakout-left {
    width: 12.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-1-breakout-right {
    width: 12.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-1-breakout-both {
    width: 17.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-medium-2,
  .col-medium-2-breakout-none {
    width: 15vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-2-high {
    height: 15vw;
  }
  .col-medium-2-breakout-left {
    width: 20vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-2-breakout-right {
    width: 20vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-2-breakout-both {
    width: 25vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-medium-3,
  .col-medium-3-breakout-none {
    width: 22.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-3-high {
    height: 22.5vw;
  }
  .col-medium-3-breakout-left {
    width: 27.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-3-breakout-right {
    width: 27.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-3-breakout-both {
    width: 32.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-medium-4,
  .col-medium-4-breakout-none {
    width: 30vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-4-high {
    height: 30vw;
  }
  .col-medium-4-breakout-left {
    width: 35vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-4-breakout-right {
    width: 35vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-4-breakout-both {
    width: 40vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-medium-5,
  .col-medium-5-breakout-none {
    width: 37.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-5-high {
    height: 37.5vw;
  }
  .col-medium-5-breakout-left {
    width: 42.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-5-breakout-right {
    width: 42.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-5-breakout-both {
    width: 47.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-medium-6,
  .col-medium-6-breakout-none {
    width: 45vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-6-high {
    height: 45vw;
  }
  .col-medium-6-breakout-left {
    width: 50vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-6-breakout-right {
    width: 50vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-6-breakout-both {
    width: 55vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-medium-7,
  .col-medium-7-breakout-none {
    width: 52.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-7-high {
    height: 52.5vw;
  }
  .col-medium-7-breakout-left {
    width: 57.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-7-breakout-right {
    width: 57.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-7-breakout-both {
    width: 62.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-medium-8,
  .col-medium-8-breakout-none {
    width: 60vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-8-high {
    height: 60vw;
  }
  .col-medium-8-breakout-left {
    width: 65vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-8-breakout-right {
    width: 65vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-8-breakout-both {
    width: 70vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-medium-9,
  .col-medium-9-breakout-none {
    width: 67.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-9-high {
    height: 67.5vw;
  }
  .col-medium-9-breakout-left {
    width: 72.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-9-breakout-right {
    width: 72.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-9-breakout-both {
    width: 77.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-medium-10,
  .col-medium-10-breakout-none {
    width: 75vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-10-high {
    height: 75vw;
  }
  .col-medium-10-breakout-left {
    width: 80vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-10-breakout-right {
    width: 80vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-10-breakout-both {
    width: 85vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-medium-11,
  .col-medium-11-breakout-none {
    width: 82.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-11-high {
    height: 82.5vw;
  }
  .col-medium-11-breakout-left {
    width: 87.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-11-breakout-right {
    width: 87.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-11-breakout-both {
    width: 92.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-medium-12,
  .col-medium-12-breakout-none {
    width: 90vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-medium-12-high {
    height: 90vw;
  }
  .col-medium-12-breakout-left {
    width: 95vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-medium-12-breakout-right {
    width: 95vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-medium-12-breakout-both {
    width: 100vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-medium-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-medium-push-0 {
    left: 0vw;
  }
  .col-medium-push-1 {
    left: 7.5vw;
  }
  .col-medium-push-2 {
    left: 15vw;
  }
  .col-medium-push-3 {
    left: 22.5vw;
  }
  .col-medium-push-4 {
    left: 30vw;
  }
  .col-medium-push-5 {
    left: 37.5vw;
  }
  .col-medium-push-6 {
    left: 45vw;
  }
  .col-medium-push-7 {
    left: 52.5vw;
  }
  .col-medium-push-8 {
    left: 60vw;
  }
  .col-medium-push-9 {
    left: 67.5vw;
  }
  .col-medium-push-10 {
    left: 75vw;
  }
  .col-medium-push-11 {
    left: 82.5vw;
  }
  .col-medium-push-12 {
    left: 90vw;
  }
  .col-medium-pull-0 {
    left: 0vw;
  }
  .col-medium-pull-1 {
    left: -7.5vw;
  }
  .col-medium-pull-2 {
    left: -15vw;
  }
  .col-medium-pull-3 {
    left: -22.5vw;
  }
  .col-medium-pull-4 {
    left: -30vw;
  }
  .col-medium-pull-5 {
    left: -37.5vw;
  }
  .col-medium-pull-6 {
    left: -45vw;
  }
  .col-medium-pull-7 {
    left: -52.5vw;
  }
  .col-medium-pull-8 {
    left: -60vw;
  }
  .col-medium-pull-9 {
    left: -67.5vw;
  }
  .col-medium-pull-10 {
    left: -75vw;
  }
  .col-medium-pull-11 {
    left: -82.5vw;
  }
  .col-medium-pull-12 {
    left: -90vw;
  }
  .visible-medium {
    display: block;
  }
  .hidden-medium {
    display: none;
  }
}
@media screen and (min-width: 700px) and (max-width: 1060px) {
  .hidden {
    display: none;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 4vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 4vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 4vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 4vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-break {
    clear: both;
  }
  .row.row-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-1,
  .col-1-breakout-none {
    width: 7.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-1-high {
    height: 7.66666667vw;
  }
  .col-1-breakout-left {
    width: 11.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-1-breakout-right {
    width: 11.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-1-breakout-both {
    width: 15.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-2,
  .col-2-breakout-none {
    width: 15.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-2-high {
    height: 15.33333333vw;
  }
  .col-2-breakout-left {
    width: 19.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-2-breakout-right {
    width: 19.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-2-breakout-both {
    width: 23.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-3,
  .col-3-breakout-none {
    width: 23vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-3-high {
    height: 23vw;
  }
  .col-3-breakout-left {
    width: 27vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-3-breakout-right {
    width: 27vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-3-breakout-both {
    width: 31vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-4,
  .col-4-breakout-none {
    width: 30.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-4-high {
    height: 30.66666667vw;
  }
  .col-4-breakout-left {
    width: 34.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-4-breakout-right {
    width: 34.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-4-breakout-both {
    width: 38.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-5,
  .col-5-breakout-none {
    width: 38.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-5-high {
    height: 38.33333333vw;
  }
  .col-5-breakout-left {
    width: 42.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-5-breakout-right {
    width: 42.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-5-breakout-both {
    width: 46.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-6,
  .col-6-breakout-none {
    width: 46vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-6-high {
    height: 46vw;
  }
  .col-6-breakout-left {
    width: 50vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-6-breakout-right {
    width: 50vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-6-breakout-both {
    width: 54vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-7,
  .col-7-breakout-none {
    width: 53.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-7-high {
    height: 53.66666667vw;
  }
  .col-7-breakout-left {
    width: 57.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-7-breakout-right {
    width: 57.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-7-breakout-both {
    width: 61.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-8,
  .col-8-breakout-none {
    width: 61.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-8-high {
    height: 61.33333333vw;
  }
  .col-8-breakout-left {
    width: 65.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-8-breakout-right {
    width: 65.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-8-breakout-both {
    width: 69.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-9,
  .col-9-breakout-none {
    width: 69vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-9-high {
    height: 69vw;
  }
  .col-9-breakout-left {
    width: 73vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-9-breakout-right {
    width: 73vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-9-breakout-both {
    width: 77vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-10,
  .col-10-breakout-none {
    width: 76.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-10-high {
    height: 76.66666667vw;
  }
  .col-10-breakout-left {
    width: 80.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-10-breakout-right {
    width: 80.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-10-breakout-both {
    width: 84.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-11,
  .col-11-breakout-none {
    width: 84.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-11-high {
    height: 84.33333333vw;
  }
  .col-11-breakout-left {
    width: 88.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-11-breakout-right {
    width: 88.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-11-breakout-both {
    width: 92.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-12,
  .col-12-breakout-none {
    width: 92vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-12-high {
    height: 92vw;
  }
  .col-12-breakout-left {
    width: 96vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-12-breakout-right {
    width: 96vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-12-breakout-both {
    width: 100vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-push-0 {
    left: 0vw;
  }
  .col-push-1 {
    left: 7.66666667vw;
  }
  .col-push-2 {
    left: 15.33333333vw;
  }
  .col-push-3 {
    left: 23vw;
  }
  .col-push-4 {
    left: 30.66666667vw;
  }
  .col-push-5 {
    left: 38.33333333vw;
  }
  .col-push-6 {
    left: 46vw;
  }
  .col-push-7 {
    left: 53.66666667vw;
  }
  .col-push-8 {
    left: 61.33333333vw;
  }
  .col-push-9 {
    left: 69vw;
  }
  .col-push-10 {
    left: 76.66666667vw;
  }
  .col-push-11 {
    left: 84.33333333vw;
  }
  .col-push-12 {
    left: 92vw;
  }
  .col-pull-0 {
    left: 0vw;
  }
  .col-pull-1 {
    left: -7.66666667vw;
  }
  .col-pull-2 {
    left: -15.33333333vw;
  }
  .col-pull-3 {
    left: -23vw;
  }
  .col-pull-4 {
    left: -30.66666667vw;
  }
  .col-pull-5 {
    left: -38.33333333vw;
  }
  .col-pull-6 {
    left: -46vw;
  }
  .col-pull-7 {
    left: -53.66666667vw;
  }
  .col-pull-8 {
    left: -61.33333333vw;
  }
  .col-pull-9 {
    left: -69vw;
  }
  .col-pull-10 {
    left: -76.66666667vw;
  }
  .col-pull-11 {
    left: -84.33333333vw;
  }
  .col-pull-12 {
    left: -92vw;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 4vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 4vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 4vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 4vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-small-break {
    clear: both;
  }
  .row.row-small-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-small-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-small-1,
  .col-small-1-breakout-none {
    width: 7.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-1-high {
    height: 7.66666667vw;
  }
  .col-small-1-breakout-left {
    width: 11.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-1-breakout-right {
    width: 11.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-1-breakout-both {
    width: 15.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-small-2,
  .col-small-2-breakout-none {
    width: 15.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-2-high {
    height: 15.33333333vw;
  }
  .col-small-2-breakout-left {
    width: 19.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-2-breakout-right {
    width: 19.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-2-breakout-both {
    width: 23.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-small-3,
  .col-small-3-breakout-none {
    width: 23vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-3-high {
    height: 23vw;
  }
  .col-small-3-breakout-left {
    width: 27vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-3-breakout-right {
    width: 27vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-3-breakout-both {
    width: 31vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-small-4,
  .col-small-4-breakout-none {
    width: 30.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-4-high {
    height: 30.66666667vw;
  }
  .col-small-4-breakout-left {
    width: 34.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-4-breakout-right {
    width: 34.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-4-breakout-both {
    width: 38.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-small-5,
  .col-small-5-breakout-none {
    width: 38.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-5-high {
    height: 38.33333333vw;
  }
  .col-small-5-breakout-left {
    width: 42.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-5-breakout-right {
    width: 42.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-5-breakout-both {
    width: 46.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-small-6,
  .col-small-6-breakout-none {
    width: 46vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-6-high {
    height: 46vw;
  }
  .col-small-6-breakout-left {
    width: 50vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-6-breakout-right {
    width: 50vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-6-breakout-both {
    width: 54vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-small-7,
  .col-small-7-breakout-none {
    width: 53.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-7-high {
    height: 53.66666667vw;
  }
  .col-small-7-breakout-left {
    width: 57.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-7-breakout-right {
    width: 57.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-7-breakout-both {
    width: 61.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-small-8,
  .col-small-8-breakout-none {
    width: 61.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-8-high {
    height: 61.33333333vw;
  }
  .col-small-8-breakout-left {
    width: 65.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-8-breakout-right {
    width: 65.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-8-breakout-both {
    width: 69.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-small-9,
  .col-small-9-breakout-none {
    width: 69vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-9-high {
    height: 69vw;
  }
  .col-small-9-breakout-left {
    width: 73vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-9-breakout-right {
    width: 73vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-9-breakout-both {
    width: 77vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-small-10,
  .col-small-10-breakout-none {
    width: 76.66666667vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-10-high {
    height: 76.66666667vw;
  }
  .col-small-10-breakout-left {
    width: 80.66666667vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-10-breakout-right {
    width: 80.66666667vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-10-breakout-both {
    width: 84.66666667vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-small-11,
  .col-small-11-breakout-none {
    width: 84.33333333vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-11-high {
    height: 84.33333333vw;
  }
  .col-small-11-breakout-left {
    width: 88.33333333vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-11-breakout-right {
    width: 88.33333333vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-11-breakout-both {
    width: 92.33333333vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-small-12,
  .col-small-12-breakout-none {
    width: 92vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-small-12-high {
    height: 92vw;
  }
  .col-small-12-breakout-left {
    width: 96vw;
    margin-left: -4vw;
    box-sizing: border-box;
  }
  .col-small-12-breakout-right {
    width: 96vw;
    margin-right: -4vw;
    box-sizing: border-box;
  }
  .col-small-12-breakout-both {
    width: 100vw;
    margin-left: -4vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-small-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-small-push-0 {
    left: 0vw;
  }
  .col-small-push-1 {
    left: 7.66666667vw;
  }
  .col-small-push-2 {
    left: 15.33333333vw;
  }
  .col-small-push-3 {
    left: 23vw;
  }
  .col-small-push-4 {
    left: 30.66666667vw;
  }
  .col-small-push-5 {
    left: 38.33333333vw;
  }
  .col-small-push-6 {
    left: 46vw;
  }
  .col-small-push-7 {
    left: 53.66666667vw;
  }
  .col-small-push-8 {
    left: 61.33333333vw;
  }
  .col-small-push-9 {
    left: 69vw;
  }
  .col-small-push-10 {
    left: 76.66666667vw;
  }
  .col-small-push-11 {
    left: 84.33333333vw;
  }
  .col-small-push-12 {
    left: 92vw;
  }
  .col-small-pull-0 {
    left: 0vw;
  }
  .col-small-pull-1 {
    left: -7.66666667vw;
  }
  .col-small-pull-2 {
    left: -15.33333333vw;
  }
  .col-small-pull-3 {
    left: -23vw;
  }
  .col-small-pull-4 {
    left: -30.66666667vw;
  }
  .col-small-pull-5 {
    left: -38.33333333vw;
  }
  .col-small-pull-6 {
    left: -46vw;
  }
  .col-small-pull-7 {
    left: -53.66666667vw;
  }
  .col-small-pull-8 {
    left: -61.33333333vw;
  }
  .col-small-pull-9 {
    left: -69vw;
  }
  .col-small-pull-10 {
    left: -76.66666667vw;
  }
  .col-small-pull-11 {
    left: -84.33333333vw;
  }
  .col-small-pull-12 {
    left: -92vw;
  }
  .visible-small {
    display: block;
  }
  .hidden-small {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hidden {
    display: none;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-break {
    clear: both;
  }
  .row.row-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-1,
  .col-1-breakout-none {
    width: 7.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-1-high {
    height: 7.5vw;
  }
  .col-1-breakout-left {
    width: 12.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-1-breakout-right {
    width: 12.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-1-breakout-both {
    width: 17.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-2,
  .col-2-breakout-none {
    width: 15vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-2-high {
    height: 15vw;
  }
  .col-2-breakout-left {
    width: 20vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-2-breakout-right {
    width: 20vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-2-breakout-both {
    width: 25vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-3,
  .col-3-breakout-none {
    width: 22.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-3-high {
    height: 22.5vw;
  }
  .col-3-breakout-left {
    width: 27.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-3-breakout-right {
    width: 27.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-3-breakout-both {
    width: 32.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-4,
  .col-4-breakout-none {
    width: 30vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-4-high {
    height: 30vw;
  }
  .col-4-breakout-left {
    width: 35vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-4-breakout-right {
    width: 35vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-4-breakout-both {
    width: 40vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-5,
  .col-5-breakout-none {
    width: 37.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-5-high {
    height: 37.5vw;
  }
  .col-5-breakout-left {
    width: 42.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-5-breakout-right {
    width: 42.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-5-breakout-both {
    width: 47.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-6,
  .col-6-breakout-none {
    width: 45vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-6-high {
    height: 45vw;
  }
  .col-6-breakout-left {
    width: 50vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-6-breakout-right {
    width: 50vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-6-breakout-both {
    width: 55vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-7,
  .col-7-breakout-none {
    width: 52.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-7-high {
    height: 52.5vw;
  }
  .col-7-breakout-left {
    width: 57.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-7-breakout-right {
    width: 57.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-7-breakout-both {
    width: 62.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-8,
  .col-8-breakout-none {
    width: 60vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-8-high {
    height: 60vw;
  }
  .col-8-breakout-left {
    width: 65vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-8-breakout-right {
    width: 65vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-8-breakout-both {
    width: 70vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-9,
  .col-9-breakout-none {
    width: 67.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-9-high {
    height: 67.5vw;
  }
  .col-9-breakout-left {
    width: 72.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-9-breakout-right {
    width: 72.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-9-breakout-both {
    width: 77.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-10,
  .col-10-breakout-none {
    width: 75vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-10-high {
    height: 75vw;
  }
  .col-10-breakout-left {
    width: 80vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-10-breakout-right {
    width: 80vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-10-breakout-both {
    width: 85vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-11,
  .col-11-breakout-none {
    width: 82.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-11-high {
    height: 82.5vw;
  }
  .col-11-breakout-left {
    width: 87.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-11-breakout-right {
    width: 87.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-11-breakout-both {
    width: 92.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-12,
  .col-12-breakout-none {
    width: 90vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-12-high {
    height: 90vw;
  }
  .col-12-breakout-left {
    width: 95vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-12-breakout-right {
    width: 95vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-12-breakout-both {
    width: 100vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-push-0 {
    left: 0vw;
  }
  .col-push-1 {
    left: 7.5vw;
  }
  .col-push-2 {
    left: 15vw;
  }
  .col-push-3 {
    left: 22.5vw;
  }
  .col-push-4 {
    left: 30vw;
  }
  .col-push-5 {
    left: 37.5vw;
  }
  .col-push-6 {
    left: 45vw;
  }
  .col-push-7 {
    left: 52.5vw;
  }
  .col-push-8 {
    left: 60vw;
  }
  .col-push-9 {
    left: 67.5vw;
  }
  .col-push-10 {
    left: 75vw;
  }
  .col-push-11 {
    left: 82.5vw;
  }
  .col-push-12 {
    left: 90vw;
  }
  .col-pull-0 {
    left: 0vw;
  }
  .col-pull-1 {
    left: -7.5vw;
  }
  .col-pull-2 {
    left: -15vw;
  }
  .col-pull-3 {
    left: -22.5vw;
  }
  .col-pull-4 {
    left: -30vw;
  }
  .col-pull-5 {
    left: -37.5vw;
  }
  .col-pull-6 {
    left: -45vw;
  }
  .col-pull-7 {
    left: -52.5vw;
  }
  .col-pull-8 {
    left: -60vw;
  }
  .col-pull-9 {
    left: -67.5vw;
  }
  .col-pull-10 {
    left: -75vw;
  }
  .col-pull-11 {
    left: -82.5vw;
  }
  .col-pull-12 {
    left: -90vw;
  }
  .wrapper {
    width: 100vw;
    margin: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  .wrapper * {
    -webkit-column-gap: 0vw;
    column-gap: 0vw;
  }
  .grid-gutter-left {
    left: 0%;
  }
  .grid-gutter-right {
    riught: 0%;
  }
  .faux-row {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-inset {
    position: relative;
    width: 100vw;
    margin: auto;
  }
  .faux-row-positioned-left-inset {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right-inset {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .faux-row-positioned-left {
    position: absolute;
    left: 0px;
    margin-left: 5vw;
  }
  .faux-row-positioned-right {
    position: absolute;
    right: 0px;
    margin-right: 5vw;
  }
  .row {
    clear: both;
    box-sizing: border-box;
    margin-left: 0vw;
  }
  .row::after,
  .row::before {
    display: block;
    clear: both;
    content: " ";
  }
  .row:after,
  .row:before {
    display: block;
    clear: both;
    content: " ";
  }
  .row > .col-tiny-break {
    clear: both;
  }
  .row.row-tiny-no-wrap {
    white-space: nowrap;
    font-size: 1px;
  }
  .row.row-tiny-no-wrap > * {
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    float: none;
    font-size: 1rem;
  }
  .row > * {
    position: relative;
    float: left;
  }
  .col-tiny-1,
  .col-tiny-1-breakout-none {
    width: 7.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-1-high {
    height: 7.5vw;
  }
  .col-tiny-1-breakout-left {
    width: 12.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-1-breakout-right {
    width: 12.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-1-breakout-both {
    width: 17.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .col-tiny-2,
  .col-tiny-2-breakout-none {
    width: 15vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-2-high {
    height: 15vw;
  }
  .col-tiny-2-breakout-left {
    width: 20vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-2-breakout-right {
    width: 20vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-2-breakout-both {
    width: 25vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  .col-tiny-3,
  .col-tiny-3-breakout-none {
    width: 22.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-3-high {
    height: 22.5vw;
  }
  .col-tiny-3-breakout-left {
    width: 27.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-3-breakout-right {
    width: 27.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-3-breakout-both {
    width: 32.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
  .col-tiny-4,
  .col-tiny-4-breakout-none {
    width: 30vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-4-high {
    height: 30vw;
  }
  .col-tiny-4-breakout-left {
    width: 35vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-4-breakout-right {
    width: 35vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-4-breakout-both {
    width: 40vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
  .col-tiny-5,
  .col-tiny-5-breakout-none {
    width: 37.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-5-high {
    height: 37.5vw;
  }
  .col-tiny-5-breakout-left {
    width: 42.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-5-breakout-right {
    width: 42.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-5-breakout-both {
    width: 47.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-5 {
    -webkit-column-count: 5;
    column-count: 5;
  }
  .col-tiny-6,
  .col-tiny-6-breakout-none {
    width: 45vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-6-high {
    height: 45vw;
  }
  .col-tiny-6-breakout-left {
    width: 50vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-6-breakout-right {
    width: 50vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-6-breakout-both {
    width: 55vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-6 {
    -webkit-column-count: 6;
    column-count: 6;
  }
  .col-tiny-7,
  .col-tiny-7-breakout-none {
    width: 52.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-7-high {
    height: 52.5vw;
  }
  .col-tiny-7-breakout-left {
    width: 57.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-7-breakout-right {
    width: 57.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-7-breakout-both {
    width: 62.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-7 {
    -webkit-column-count: 7;
    column-count: 7;
  }
  .col-tiny-8,
  .col-tiny-8-breakout-none {
    width: 60vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-8-high {
    height: 60vw;
  }
  .col-tiny-8-breakout-left {
    width: 65vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-8-breakout-right {
    width: 65vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-8-breakout-both {
    width: 70vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-8 {
    -webkit-column-count: 8;
    column-count: 8;
  }
  .col-tiny-9,
  .col-tiny-9-breakout-none {
    width: 67.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-9-high {
    height: 67.5vw;
  }
  .col-tiny-9-breakout-left {
    width: 72.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-9-breakout-right {
    width: 72.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-9-breakout-both {
    width: 77.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-9 {
    -webkit-column-count: 9;
    column-count: 9;
  }
  .col-tiny-10,
  .col-tiny-10-breakout-none {
    width: 75vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-10-high {
    height: 75vw;
  }
  .col-tiny-10-breakout-left {
    width: 80vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-10-breakout-right {
    width: 80vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-10-breakout-both {
    width: 85vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-10 {
    -webkit-column-count: 10;
    column-count: 10;
  }
  .col-tiny-11,
  .col-tiny-11-breakout-none {
    width: 82.5vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-11-high {
    height: 82.5vw;
  }
  .col-tiny-11-breakout-left {
    width: 87.5vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-11-breakout-right {
    width: 87.5vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-11-breakout-both {
    width: 92.5vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-11 {
    -webkit-column-count: 11;
    column-count: 11;
  }
  .col-tiny-12,
  .col-tiny-12-breakout-none {
    width: 90vw;
    margin-left: 0vw;
    margin-right: 0px;
    box-sizing: border-box;
  }
  .col-tiny-12-high {
    height: 90vw;
  }
  .col-tiny-12-breakout-left {
    width: 95vw;
    margin-left: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-12-breakout-right {
    width: 95vw;
    margin-right: -5vw;
    box-sizing: border-box;
  }
  .col-tiny-12-breakout-both {
    width: 100vw;
    margin-left: -5vw;
    margin-right: 0;
    box-sizing: border-box;
  }
  .text-col-tiny-12 {
    -webkit-column-count: 12;
    column-count: 12;
  }
  .col-tiny-push-0 {
    left: 0vw;
  }
  .col-tiny-push-1 {
    left: 7.5vw;
  }
  .col-tiny-push-2 {
    left: 15vw;
  }
  .col-tiny-push-3 {
    left: 22.5vw;
  }
  .col-tiny-push-4 {
    left: 30vw;
  }
  .col-tiny-push-5 {
    left: 37.5vw;
  }
  .col-tiny-push-6 {
    left: 45vw;
  }
  .col-tiny-push-7 {
    left: 52.5vw;
  }
  .col-tiny-push-8 {
    left: 60vw;
  }
  .col-tiny-push-9 {
    left: 67.5vw;
  }
  .col-tiny-push-10 {
    left: 75vw;
  }
  .col-tiny-push-11 {
    left: 82.5vw;
  }
  .col-tiny-push-12 {
    left: 90vw;
  }
  .col-tiny-pull-0 {
    left: 0vw;
  }
  .col-tiny-pull-1 {
    left: -7.5vw;
  }
  .col-tiny-pull-2 {
    left: -15vw;
  }
  .col-tiny-pull-3 {
    left: -22.5vw;
  }
  .col-tiny-pull-4 {
    left: -30vw;
  }
  .col-tiny-pull-5 {
    left: -37.5vw;
  }
  .col-tiny-pull-6 {
    left: -45vw;
  }
  .col-tiny-pull-7 {
    left: -52.5vw;
  }
  .col-tiny-pull-8 {
    left: -60vw;
  }
  .col-tiny-pull-9 {
    left: -67.5vw;
  }
  .col-tiny-pull-10 {
    left: -75vw;
  }
  .col-tiny-pull-11 {
    left: -82.5vw;
  }
  .col-tiny-pull-12 {
    left: -90vw;
  }
  .visible-tiny {
    display: block;
  }
  .hidden-tiny {
    display: none;
  }
}
/* Settings */
/* Type */
body {
  background: #cbcccd;
  font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0px;
  color: #333333;
  font-size: 14px;
  line-height: 1.57142857;
}
body .site-content-wrap {
  float: left;
  width: 100%;
  padding-bottom: 8rem;
}
@media screen and (max-width: 700px) {
  body.page-template-template-contact .wrapper.homepage-content {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 700px) {
  body.page-template-template-contact .fracture-clinic {
    margin: 3rem 0;
  }
}
a {
  color: #2d3494;
}
h3 a {
  text-decoration: none;
}
.back-container {
  position: absolute;
  left: 1.75vw;
  top: 7vw;
}
@media screen and (min-width: 1060px) and (max-width: 1300px) {
  .back-container {
    top: 10vw;
    left: 2.75vw;
  }
}
@media screen and (min-width: 700px) and (max-width: 1060px) {
  .back-container {
    left: 3.25vw;
    top: 12vw;
  }
}
@media screen and (max-width: 700px) {
  .back-container {
    left: 5vw;
    top: 90px;
  }
}
.back-container.journal {
  top: 90px;
  left: 2vw;
}
@media screen and (min-width: 1060px) and (max-width: 1300px) {
  .back-container.journal {
    top: 95px;
    left: 2.75vw;
  }
}
@media screen and (min-width: 700px) and (max-width: 1060px) {
  .back-container.journal {
    top: 95px;
    left: 2.75vw;
  }
}
@media screen and (max-width: 700px) {
  .back-container.journal {
    top: 100px;
    left: 5vw;
  }
}
.arrow-link {
  display: block;
  color: #2d3494;
  font-family: "azo-sans-web";
  font-size: 16px;
  text-decoration: none;
  padding-right: 30px;
  position: relative;
}
.arrow-link:after {
  content: '\2192';
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
}
.arrow-link.back {
  padding-right: 0;
}
.arrow-link.back span {
  padding-left: 9px;
  display: inline-block;
}
.arrow-link.back:before {
  content: '\2190';
}
.arrow-link.back {
  text-transform: uppercase;
}
.arrow-link.back:after {
  display: none;
}
#header {
  top: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
  z-index: 30;
}
@media screen and (max-width: 700px) {
  #header {
    top: 5vw;
    left: 5vw;
    right: 5vw;
  }
}
#header .logo {
  position: absolute;
  top: 0px;
  left: 0px;
}
#header .logo span {
  display: block;
  position: absolute;
}
#header .logo .expanded {
  display: none;
}
#header .menu-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  line-height: 30px;
}
#header .menu-toggle > span {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: opacity 0.2s;
}
#header .menu-toggle .open:after {
  content: 'Menu';
  display: block;
  position: absolute;
  right: 50px;
  top: 3px;
  color: #2d3494;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 600;
}
#header .menu-toggle .close {
  opacity: 0;
}
.nav-active #header .menu-toggle .open {
  opacity: 0;
}
.nav-active #header .menu-toggle .close {
  opacity: 1;
}
#header svg {
  fill: #2d3494;
  transition: fill 0.2s;
}
.nav-active #header .open:after {
  color: white;
}
.nav-active #header svg {
  fill: white;
}
.white-ui #header .open:after {
  color: white;
}
.white-ui #header svg {
  fill: white;
}
.nav-active {
  overflow: hidden;
}
#main-menu {
  display: block;
  position: fixed;
  z-index: 20;
  top: -100%;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #2d3494;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  pointer-events: none;
  transition: top 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-active #main-menu {
  top: 0px;
  pointer-events: all;
}
#main-menu ul {
  display: block;
  padding: 0px;
  margin: 0px;
  text-align: center;
  list-style: none;
  font-family: "azo-sans-web";
  font-size: 30px;
  color: white;
  text-transform: uppercase;
}
@media screen and (max-width: 700px) {
  #main-menu ul {
    font-size: 20px;
    line-height: 1.2;
  }
}
#main-menu ul li {
  text-align: center;
  margin: 25px 0px;
}
@media screen and (max-width: 700px) {
  #main-menu ul li {
    margin: 24px 0px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-font-smoothing: antialiased;
    -webkit-font-smoothing: antialias !important;
    -moz-font-smoothing: antialias !important;
    font-smoothing: antialias !important;
  }
}
#main-menu ul li a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
#main-menu ul li.current_page_item {
  color: #ffb819;
}
.homepage-tile {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #555555 url('../../img/home-bg.jpg') no-repeat center center;
  background-size: cover;
  font-size: 1.2em;
}
@media screen and (max-width: 700px) {
  .homepage-tile {
    background-color: #555555;
    background-image: url('../../img/bg-mobile-home.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.homepage-tile .email {
  position: absolute;
  font-family: "azo-sans-web";
  bottom: 30px;
  left: 30px;
}
.homepage-tile .phone {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.homepage-tile .phone a,
.homepage-tile .email a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}
.homepage-content {
  padding-top: 100px;
}
@media screen and (max-width: 700px) {
  .homepage-content {
    padding-top: 30px;
  }
}
.homepage-content h2 {
  color: #2d3494;
  font-size: 26px;
  margin: 0px;
  font-family: "azo-sans-web";
}
.homepage-content h3 {
  color: #2d3494;
  font-size: 18px;
  font-weight: bold;
  font-family: "azo-sans-web";
  margin-top: 0px;
}
.homepage-content .first-row {
  padding-bottom: 70px;
}
@media screen and (max-width: 700px) {
  .homepage-content .first-row {
    padding-bottom: 50px;
  }
}
.homepage-content .urgent-appointments {
  color: #2d3494;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  font-family: "azo-sans-web";
}
@media screen and (max-width: 700px) {
  .homepage-content .urgent-appointments {
    margin-top: 30px;
  }
}
.homepage-content .key-team .team-item .title {
  font-size: 18px;
  font-weight: bold;
  font-family: "azo-sans-web";
  color: #2d3494;
}
.homepage-content .key-team .team-item .description {
  margin-bottom: 25px;
}
@-webkit-keyframes skewIn {
  from {
    -webkit-transform: skewY(-10deg) translateX(-5vw);
            transform: skewY(-10deg) translateX(-5vw);
    opacity: 0;
  }
  to {
    -webkit-transform: skewY(-10deg) translateX(0);
            transform: skewY(-10deg) translateX(0);
    opacity: 1;
  }
}
@keyframes skewIn {
  from {
    -webkit-transform: skewY(-10deg) translateX(-5vw);
            transform: skewY(-10deg) translateX(-5vw);
    opacity: 0;
  }
  to {
    -webkit-transform: skewY(-10deg) translateX(0);
            transform: skewY(-10deg) translateX(0);
    opacity: 1;
  }
}
.page-title {
  text-align: center;
  margin-top: 80px;
}
.page-title h1 {
  font-size: 100px;
  line-height: 1;
  color: #2d3494;
  font-family: "azo-sans-web";
  text-transform: uppercase;
  -webkit-transform: skewY(-10deg) translateX(0);
          transform: skewY(-10deg) translateX(0);
  -webkit-animation: skewIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: skewIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 700px) {
  .page-title h1 {
    font-size: 40px;
  }
}
.intro-block {
  margin-top: -170px;
}
@media screen and (max-width: 700px) {
  .intro-block {
    margin-top: 20px;
  }
}
.intro-block .intro-content {
  margin-top: 190px;
}
@media screen and (max-width: 700px) {
  .intro-block .intro-content {
    margin-top: 30px;
  }
}
.featured-image img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .rich-text img {
    max-width: 100%;
  }
}
.rich-text h2 {
  font-family: "azo-sans-web";
  font-size: 24px;
  color: #2d3494;
  text-transform: uppercase;
  margin-top: 20px;
}
.rich-text h3 {
  font-family: "azo-sans-web";
  font-size: 20px;
  color: #2d3494;
  margin-bottom: 0px;
  margin-top: 30px;
}
.rich-text p {
  margin: 10px 0px;
}
.large-image img {
  width: 100%;
}
.block-row {
  margin-top: 40px;
}
.block-row h2 {
  margin-top: 8px;
}
#site-footer {
  line-height: 20px;
  position: relative;
  font-family: "azo-sans-web";
  color: #2d3494;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  background: linear-gradient(to top, #cbcccd 32%, rgba(203, 204, 205, 0) 86%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cbcccd', endColorstr='#cbcccd', GradientType=0);
  position: fixed;
  margin: 0;
  padding: 0;
  width: 100vw;
  left: 0;
  height: 90px;
  bottom: -25vw;
  padding-top: 2rem;
}
#site-footer.active {
  bottom: 0;
}
@media screen and (max-width: 700px) {
  #site-footer {
    height: 60px;
  }
}
#site-footer > .inner {
  position: absolute;
  float: left;
  width: 100%;
  left: 0;
  bottom: 2vw;
}
@media screen and (max-width: 700px) {
  #site-footer > .inner {
    bottom: 4vw;
  }
}
#site-footer a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
#site-footer .left {
  position: absolute;
  text-align: left;
  top: 0px;
  left: 30px;
}
@media screen and (max-width: 700px) {
  #site-footer .left {
    left: 5vw;
  }
}
#site-footer .right {
  position: absolute;
  text-align: right;
  top: 0px;
  right: 30px;
}
@media screen and (max-width: 700px) {
  #site-footer .right {
    right: 5vw;
  }
}
#site-footer .middle {
  text-align: center;
}
#site-footer .middle ul,
#site-footer .middle li {
  display: inline;
  margin: 0px;
  list-style: none;
  padding: 0px;
}
#site-footer .middle ul a,
#site-footer .middle li a {
  margin: 0px 10px;
}
.fade-on-scroll {
  opacity: 0;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.fade-on-scroll.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.surgery-index {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
@media screen and (max-width: 700px) {
  .surgery-index {
    position: static;
  }
}
.surgery-index .section-title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 700px) {
  .surgery-index .section-title {
    position: relative;
    height: 1px;
    margin-top: 0px;
    top: -120px;
  }
}
.surgery-index .section-title .title {
  font-family: "azo-sans-web";
  font-weight: bold;
  font-size: 100px;
  line-height: 1;
  color: #2d3494;
  text-transform: uppercase;
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
  -webkit-animation: skewIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: skewIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 700px) {
  .surgery-index .section-title .title {
    font-size: 50px;
    color: white;
  }
}
.surgery-index .side {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .surgery-index .side {
    position: static;
    width: auto;
  }
}
.surgery-index .side.left {
  left: 0px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.left {
    position: relative;
    height: 142.85714286vw;
    max-height: 100vh;
  }
}
.surgery-index .side.left .dot {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: rgba(45, 52, 148, 0.5);
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  margin-left: -15px;
  margin-top: -15px;
  z-index: 10;
}
.surgery-index .side.left .dot:after {
  width: 20px;
  height: 20px;
  left: 5px;
  top: 5px;
  border-radius: 10px;
  display: block;
  content: ' ';
  position: relative;
  background: #2d3494;
}
.surgery-index .side.left img {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  position: absolute;
}
.surgery-index .side.left .back-button-wrapper {
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 5;
  color: #2d3494;
  font-family: "azo-sans-web";
  text-transform: uppercase;
  letter-spacing: 0.02;
}
.surgery-index .side.left .back-button-wrapper span {
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.surgery-index .side.left .back-button-wrapper span.visible {
  opacity: 1;
}
.surgery-index .side.left .back-button-wrapper span:before {
  content: '\2190';
  display: inline;
  padding-right: 10px;
}
.surgery-index .side.right {
  overflow: auto;
  overflow-x: hidden;
  right: 0px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.right {
    overflow: visible;
  }
}
.surgery-index .side.right .content-section {
  position: absolute;
  width: 100vw;
  top: 0px;
  right: 0px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.right .content-section {
    position: static;
  }
}
.surgery-index .side.right .content-section .page.main {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.right .content-section .page.main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.surgery-index .side.right .content-section .page.main p:first-of-type {
  font-size: 18px;
  font-weight: 400;
}
.surgery-index .side.right .content-section .page.category {
  padding-top: 200px;
  padding-bottom: 70px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.right .content-section .page.category {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.surgery-index .side.right .content-section .page.category.has-extra-line {
  padding-top: 300px;
}
.surgery-index .side.right .content-section .page .categories {
  margin-top: 60px;
}
@media screen and (max-width: 700px) {
  .surgery-index .side.right .content-section .page .categories {
    padding-top: 00px;
  }
}
.surgery-index .side.right .content-section .page .categories .item {
  margin-bottom: 10px;
}
.surgery-index .side.right .content-section .page .categories .item a {
  font-size: 20px;
}
.operation-page img {
  -webkit-filter: grayscale();
          filter: grayscale();
  transition: -webkit-filter;
  transition: filter;
  transition: filter, -webkit-filter;
}
.operation-page img:hover {
  -webkit-filter: none;
          filter: none;
}
.operation-page .operation-title {
  padding-top: 7vw;
  padding-bottom: 50px;
}
@media screen and (min-width: 1060px) and (max-width: 1300px) {
  .operation-page .operation-title {
    padding-top: 10vw;
  }
}
@media screen and (min-width: 700px) and (max-width: 1060px) {
  .operation-page .operation-title {
    padding-top: 12vw;
  }
}
@media screen and (max-width: 700px) {
  .operation-page .operation-title {
    padding-top: 150px;
  }
}
.operation-page .operation-title h1 {
  margin: 0px;
  color: #2d3494;
  text-transform: uppercase;
  font-family: "azo-sans-web";
  font-size: 30px;
  line-height: 1.2;
}
.operation-page h2 {
  font-size: 24px;
  line-height: 1.2;
  color: #2d3494;
  text-transform: uppercase;
}
.operation-page .nav-item {
  margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
  .operation-page .nav-item {
    margin-bottom: 50px;
  }
}
.operation-page .first-block p:first-of-type {
  font-size: 20px;
  line-height: 1.4;
  font-weight: lighter;
}
.operation-page .rich-text p {
  margin-top: 0px;
  margin-bottom: 20px;
}
.operation-page .rich-text h3 {
  font-size: 16px;
  margin-top: 0px;
}
.operation-page .rich-text ul li {
  margin: 5px;
}
.operation-page .complications .rich-text h3 {
  margin-top: 0px;
  margin-bottom: 10px;
}
.operation-page .complications .rich-text.first-block h3 {
  font-size: 20px;
  line-height: 1.25;
}
.operation-page .stacked-small-image img {
  width: 100%;
  display: block;
}
.operation-page .stacked-small-image .caption {
  margin-top: 10px;
  margin-bottom: 30px;
}
.side-nav {
  position: fixed;
  top: 230px;
  left: 0px;
  min-width: 200px;
}
.side-nav:hover {
  cursor: pointer;
}
.side-nav:hover .item span.inner-text {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .side-nav {
    display: none;
  }
}
.side-nav .item span.inner-text {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.side-nav .item span.outer {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  height: 20px;
  line-height: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
}
.side-nav .item span.outer:before {
  display: inline-block;
  background: currentColor;
  content: ' ';
  height: 2px;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
  transition: width 0.2s;
}
.side-nav .item span.outer:hover,
.side-nav .item span.outer.active {
  color: #2d3494;
}
.side-nav .item span.outer:hover:before,
.side-nav .item span.outer.active:before {
  width: 28px;
}
@media screen and (max-width: 700px) {
  .tiny-padded-top {
    padding-top: 40px;
  }
}
.team-item {
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 700px) {
  .team-item {
    margin-bottom: 30px;
  }
  .team-item:last-child {
    margin-bottom: 0px;
  }
}
.team-item img {
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .team-item img {
    max-width: 236px;
    margin-bottom: 1rem;
  }
}
.team-item h3 {
  margin-top: 0px;
}
@media screen and (max-width: 700px) {
  .team-item .description {
    margin-top: 30px;
  }
}
.journal-post-item {
  padding-top: 70px;
}
.journal-post-item h3 {
  color: #2d3494;
  font-size: 24px;
  margin-bottom: 5px;
  margin-top: -3px;
}
.share {
  float: left;
  width: 100%;
  margin: 5vw 0 0 0;
}
@media screen and (max-width: 700px) {
  .share {
    margin-bottom: 4vw;
  }
}
.share h6 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 0 0 1rem 0;
  color: #2d3494;
}
.share a {
  display: block;
  float: left;
  width: 100%;
  text-decoration: none;
  color: #333333;
}
.post-back {
  margin: 2rem 0 0 0;
}
.post-back a {
  text-decoration: none;
  font-weight: 600;
}
.journal-entry {
  padding-top: 80px;
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .journal-entry {
    padding-top: 160px;
  }
}
.journal-entry .rich-text p {
  margin: 1.5em 0px;
}
.journal-entry .meta {
  padding-right: 10px;
}
.journal-entry .meta h2 {
  color: #2d3494;
  margin-top: 10px;
}
.journal-entry .first-block p:first-of-type {
  font-size: 20px;
  line-height: 1.4;
  font-weight: lighter;
}
.journal-entry .image {
  margin: 30px 0px;
}
.journal-entry .image img {
  display: block;
  width: 100%;
}
.journal-entry .image .caption {
  font-style: italic;
  text-align: center;
  font-size: 0.8em;
  margin-top: 20px;
}
.double-images img {
  width: 98%;
}
.double-images .img-1 {
  text-align: left;
}
.double-images .img-2 {
  text-align: right;
}
.double-images .caption {
  color: #656565;
}
.clip-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
