*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  font-family: "Montserrat", sans-serif;
  background-color: white;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  padding-top: 5rem; }

html {
  min-height: 100%;
  position: relative; }

body[data-activepage='404'] footer {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%; }

.nav-logo {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  width: 50px;
  height: 50px;
  display: block;
  float: left;
  margin: 10px 0; }
  .nav-logo img {
    width: 100%; }

.logospacer {
  display: none; }
  @media (min-width: 992px) {
    .logospacer {
      height: 90px;
      display: block; } }

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;
  width: 100%;
  border-bottom: 1px solid transparent;
  text-align: right;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease; }
  .main-nav h2 {
    text-align: left; }
  .main-nav .bars {
    width: 30px;
    height: 30px;
    margin: 1em;
    display: inline-block;
    position: relative;
    z-index: 300;
    text-align: left;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
    .main-nav .bars .bar {
      display: block;
      background: #565656;
      height: 2px;
      width: 30px;
      position: absolute;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      top: 30%; }
      @media (min-width: 992px) {
        .main-nav .bars .bar {
          background: black; } }
      .main-nav .bars .bar + .bar {
        top: 62%; }
    .main-nav .bars ~ .bg-block {
      content: '';
      display: block;
      width: 0;
      height: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: -1;
      position: fixed;
      top: 0;
      right: 0;
      opacity: 0;
      -webkit-transition: opacity 0.7s ease;
      transition: opacity 0.7s ease; }
    .main-nav .bars:after {
      content: "Menu";
      color: #565656;
      position: relative;
      top: 1.75em;
      display: inline-block;
      text-align: center;
      left: -0.25em;
      font-size: 12px;
      font-weight: bold; }
      @media (min-width: 992px) {
        .main-nav .bars:after {
          color: black; } }
    .main-nav .bars.open ~ .bg-block {
      width: 100vw;
      height: 100vh;
      opacity: 1; }
    .main-nav .bars.open .bar {
      top: 50%;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg);
      background: black; }
      .main-nav .bars.open .bar + .bar {
        -webkit-transform: rotate(-135deg);
                transform: rotate(-135deg);
        top: 50%; }
    .main-nav .bars.open:after {
      content: "Close";
      color: #000;
      margin-top: .75em; }
    .main-nav .bars.open + .menu-wrap {
      right: 0;
      display: block; }
  .main-nav.solid {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
  .main-nav.up {
    background: rgba(255, 255, 255, 0);
    top: -60px; }
  .main-nav.solid .bars .bar, .main-nav.up .bars .bar {
    background: black; }
  .main-nav .menu-wrap {
    display: none;
    position: absolute;
    height: 100vh;
    overflow-x: hidden;
    padding: 60px 0px 35px;
    background: white;
    border-left: 1px solid #f3f2f1;
    right: -100%;
    top: 0;
    width: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    text-align: left; }
    @media (min-width: 30em) {
      .main-nav .menu-wrap {
        width: 350px; } }
    .main-nav .menu-wrap .menu {
      display: block;
      background: white;
      height: 100%;
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      -webkit-transition: all 1s ease;
      transition: all 1s ease;
      padding-top: 60px;
      padding-left: 0px;
      margin: 0; }
      .main-nav .menu-wrap .menu li {
        display: block; }
        .main-nav .menu-wrap .menu li h2 {
          -webkit-transition: background .5s ease;
          transition: background .5s ease;
          -webkit-transition-delay: 2s;
                  transition-delay: 2s;
          background: white; }
      .main-nav .menu-wrap .menu.disabled {
        z-index: 100; }
        .main-nav .menu-wrap .menu.disabled li {
          display: none; }
      .main-nav .menu-wrap .menu.visible {
        left: 0;
        z-index: 120; }
        .main-nav .menu-wrap .menu.visible li h2 {
          background: #ebebeb; }
      .main-nav .menu-wrap .menu.pending {
        left: 100%;
        z-index: 100; }
      .main-nav .menu-wrap .menu.main-menu {
        left: 0;
        z-index: 80; }
    .main-nav .menu-wrap li {
      margin: 0;
      list-style-type: none;
      position: relative; }
      .main-nav .menu-wrap li:after {
        content: "";
        display: table;
        clear: both; }
      .main-nav .menu-wrap li a, .main-nav .menu-wrap li p.toplevel, .main-nav .menu-wrap li h2 {
        font-size: 0.96em;
        line-height: 1.4em;
        color: #444;
        margin: 0;
        padding: 0.6em 3.2em;
        font-weight: 400;
        display: block; }
      .main-nav .menu-wrap li a:hover {
        color: #000; }
      .main-nav .menu-wrap li a:active {
        text-decoration: line-through; }
      .main-nav .menu-wrap li i.fa {
        line-height: 1.4em;
        position: absolute;
        right: 3.2em; }
      .main-nav .menu-wrap li.mill25 {
        background: #efefef;
        margin: 2em 3em;
        border-radius: 20px;
        background: linear-gradient(135deg, #f7f7f7 0%, #dedede 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#dedede',GradientType=1 ); }
        .main-nav .menu-wrap li.mill25 a {
          padding: 1em 1.5em; }
          .main-nav .menu-wrap li.mill25 a:hover {
            text-decoration: none; }
        .main-nav .menu-wrap li.mill25 span {
          display: block;
          margin: 2em auto 1em auto;
          text-align: center;
          background-color: white;
          padding: .5em 1em;
          border-radius: 25px;
          font-size: .9em;
          max-width: 170px;
          -webkit-transition: -webkit-transform .5s ease;
          transition: -webkit-transform .5s ease;
          transition: transform .5s ease;
          transition: transform .5s ease, -webkit-transform .5s ease; }
          .main-nav .menu-wrap li.mill25 span:hover {
            -webkit-transform: scale(1.05);
                    transform: scale(1.05); }
    .main-nav .menu-wrap .submenu li:first-child {
      margin-bottom: 1em; }
      .main-nav .menu-wrap .submenu li:first-child i {
        right: auto;
        left: 2.2em; }
    .main-nav .menu-wrap .submenu li:nth-child(n+3) {
      padding-left: 1em; }

.bullet-nav {
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 5px;
  z-index: 200;
  display: none; }
  @media (min-width: 992px) {
    .bullet-nav.active {
      display: block; } }
  .bullet-nav span.bullet {
    border: 1px solid #333333;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    display: block;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
  .bullet-nav a.bullet {
    border-radius: 50%;
    padding: 12px;
    display: block;
    -webkit-transition: all .25s ease;
    transition: all .25s ease; }
    .bullet-nav a.bullet:hover span.bullet {
      background: #333333; }
    .bullet-nav a.bullet.active span.bullet {
      background: #333333; }
    .bullet-nav a.bullet.active {
      background-color: rgba(0, 0, 0, 0.1); }

h1 {
  text-align: center;
  margin-bottom: 1rem; }
  h1 span.eyebrow {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: .4em; }

h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem; }
  h2.rules {
    position: relative;
    padding: 10px 0; }
    h2.rules:before {
      display: block;
      content: "";
      width: calc(50% - 130px);
      height: 1px;
      border-bottom: 1px solid black;
      position: absolute;
      top: 49%;
      left: 10px; }
      @media (min-width: 576px) {
        h2.rules:before {
          width: calc(50% - 120px);
          left: 0px; } }
    h2.rules:after {
      display: block;
      content: "";
      width: calc(50% - 130px);
      height: 1px;
      border-bottom: 1px solid black;
      position: absolute;
      top: 49%;
      right: 10px; }
      @media (min-width: 576px) {
        h2.rules:after {
          width: calc(50% - 120px);
          right: 0px; } }

p {
  text-align: center;
  font-weight: 300; }
  p.no-bottom {
    margin-bottom: 0; }
  p.eyebrow {
    margin-top: 2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px; }
  p.lead {
    margin-bottom: 2em; }
  p strong {
    font-weight: 600; }

a {
  color: #098483; }
  a:visited, a:active {
    color: #098483; }
  a:hover {
    color: #0b6b6b; }
  a.headerlink {
    color: #565656;
    -webkit-transition: color .3s;
    transition: color .3s; }
    a.headerlink:hover {
      color: #098483;
      text-decoration: none;
      -webkit-transition: color .3s;
      transition: color .3s; }
    a.headerlink.img {
      display: block;
      margin: 0 auto 2em auto;
      width: 150px;
      opacity: 1;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
      a.headerlink.img:hover {
        opacity: .7;
        -webkit-transition: opacity .3s;
        transition: opacity .3s; }
  a.arrow::after {
    content: '\203A';
    font-size: 1.5em;
    position: relative;
    bottom: -.06em; }
  a.arrow:hover::after {
    text-decoration: none; }
  a.btn-button {
    display: block;
    color: white !important;
    background-color: #197f76;
    margin: 15px auto;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2em;
    border: none;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    padding: .75em 2.5em; }
    a.btn-button.back {
      margin-top: 3em; }
    a.btn-button.back-to {
      max-width: 250px; }
    a.btn-button:hover {
      background-color: #0f4c47;
      -webkit-transition: background-color .5s ease;
      transition: background-color .5s ease; }
  a.btn-button-subscribe {
    display: inline-block;
    color: #565656 !important;
    background-color: #FFF;
    margin: 15px auto 15px 15px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2em;
    border: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    padding: .75em 2.5em;
    max-width: 200px; }
    a.btn-button-subscribe.back {
      margin-top: 3em; }
    a.btn-button-subscribe:hover {
      color: #0f4c47 !important;
      -webkit-transition: color .5s ease;
      transition: color .5s ease; }

div p a.modal-link {
  color: #565656;
  transition: color .3s;
  text-align: center;
   }
  div p a.modal-link:visited, div p a.modal-link:active {
    color: #098483; }
  div p a.modal-link:hover {
    color: #0b6b6b;
    text-decoration: none;
    transition: color .3s; }

.left p {
  text-align: center; }
  @media (min-width: 768px) {
    .left p {
      text-align: left; } }

hr {
  border-top: 1px solid black;
  margin: 2rem 0; }
  hr.nospace {
    margin: 0; }

span.ga {
  display: none; }

p.back-link a i {
  max-height: .9em; }

p.back-link a .fa-chevron-left {
  max-height: .9em;
  margin-bottom: 2px; }

.btn-right {
  float: right; }

.royston-mini-bio img.headshot {
  margin: 1em auto; }

.mx-auto img{
  width:100%;
}  

img {
  max-width: 100%; }
  img.svg {
    max-width: 100%; }
  img.round {
    border-radius: 50%;
    display: block;
    margin: 0 auto 2rem auto; }
    @media (min-width: 768px) {
      img.round {
        margin: 0 auto; } }
  img.headshot {
    width: 200px;
    height: 200px;
    background-color: #f5f4f2; }
    @media (min-width: 768px) {
      img.headshot {
        width: 180px;
        height: 180px;
        float: left;
        margin: 1em 2em 1em 0;
        border-radius: 50%;
        shape-outside: circle(); } }

.mill25-logo {
  display: block;
  margin: 0 auto 3rem auto;
  width: 100%;
  max-width: 375px; }

.icon {
  position: absolute;
  display: block;
  bottom: 13px;
  left: calc(50% - 12px);
  text-align: center;
  width: 26px;
  height: 26px;
  background-color: #197f76;
  border-radius: 12px;
  padding: 3.5px;
  color: white;
  font-size: 14px; }
  .icon.smallico {
    padding: 2.5px;
    font-size: 16px; }
  .icon.black {
    background-color: #000; }
  @media (min-width: 576px) {
    .icon {
      bottom: 23px;
      left: calc(50% - 21px);
      width: 42px;
      height: 42px;
      border-radius: 21px;
      padding: 6px;
      font-size: 22px; }
      .icon.smallico {
        padding: 5px;
        font-size: 24px; } }

.sep {
  width: calc(50% - 35px);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  margin: 0 15px;
  bottom: 25px; }
  @media (min-width: 576px) {
    .sep {
      width: calc(50% - 60px);
      bottom: 42px; } }
  .sep.black {
    background-color: #000; }
  .sep.left {
    left: 0; }
  .sep.right {
    right: 0; }

.gray {
  background-color: #f3f2f1; }

main.container {
  padding-top: 0rem; }

.container {
  padding: 2rem 30px; }
  .container.last {
    padding-bottom: 3rem; }
  .container.nospace {
    padding: 0 30px; }
  @media (min-width: 576px) {
    .container {
      padding: 3rem 0; }
      .container.last {
        padding-bottom: 5rem; }
      .container.nospace {
        padding: 0; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 35px;
  padding-right: 35px; }

.lightboxgallery {
  margin-top: 2em; }
  .lightboxgallery a .grow-container {
    overflow: hidden;
    margin: 0 auto 2em auto;
    max-width: 432px;
    max-height: 432px;
    -webkit-transition: opacity .75s ease-in-out .25s;
    transition: opacity .75s ease-in-out .25s; }
    .lightboxgallery a .grow-container.loaded {
      opacity: 1; }
  .lightboxgallery a img {
    opacity: 1;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s; }
    .lightboxgallery a img:hover {
      -webkit-transform: scale(1.03);
              transform: scale(1.03);
      opacity: 0.85;
      -webkit-transition: opacity .3s, -webkit-transform .3s;
      transition: opacity .3s, -webkit-transform .3s;
      transition: transform .3s, opacity .3s;
      transition: transform .3s, opacity .3s, -webkit-transform .3s; }

.embed-responsive {
  margin-bottom: 2em; }

.filters .filter-list {
  /*width: calc(3.6rem + 140px);*/
  width: calc(4.8rem + 175px);
  margin: 0 auto 2em auto; }
  @media (min-width: 576px) {
    .filters .filter-list {
      /*width: calc(6rem + 200px);*/
      width: calc(8rem + 250px); } }
  @media (min-width: 768px) {
    .filters .filter-list {
      margin: 0 auto 3em auto;
      /*width: calc(9rem + 240px);*/
      width: calc(12rem + 300px); } }

.filters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none; }

.filters li {
  margin: 0 .6rem;
  background: #197f76;
  height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 50%; }
  .filters li:first-child {
    margin-left: 0; }
  .filters li:last-child {
    margin-right: 0; }
  @media (min-width: 576px) {
    .filters li {
      margin: 0 1rem;
      height: 50px;
      width: 50px; } }
  @media (min-width: 768px) {
    .filters li {
      margin: 0 1.5rem;
      width: 60px;
      height: 60px; } }
  .filters li:hover {
    background: #11544e; }

.filters a {
  display: block;
  padding-top: 6px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  height: 36px;
  width: 36px;
  border-radius: 50%; }
  .filters a.smallico {
    padding-top: 3px;
    font-size: 20px; }
  @media (min-width: 576px) {
    .filters a {
      padding-top: 8px;
      font-size: 24px;
      height: 50px;
      width: 50px; }
      .filters a.smallico {
        padding-top: 5px;
        font-size: 28px; } }
  @media (min-width: 768px) {
    .filters a {
      padding-top: 10px;
      font-size: 28px;
      width: 60px;
      height: 60px; }
      .filters a.smallico {
        padding-top: 8px;
        font-size: 32px; } }
  .filters a:hover {
    color: white; }
  .filters a.checked {
    background: #082a27;
    color: white; }
  .filters a svg {
    opacity: 0;
    -webkit-transition: opacity .75s ease-in-out;
    transition: opacity .75s ease-in-out; }
  .filters a .fas {
    display: none; }
  .filters a.loaded svg {
    opacity: 1; }

.grid {
  margin: 0 auto;
  max-width: 435px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity .75s ease-in-out .25s;
  transition: opacity .75s ease-in-out .25s; }
  @media (min-width: 576px) {
    .grid {
      max-width: 100%; } }
  .grid.loaded {
    opacity: 1; }

.grid-sizer {
  width: 100%; }
  @media (min-width: 576px) {
    .grid-sizer {
      width: 50%; } }
  @media (min-width: 992px) {
    .grid-sizer {
      width: calc(100% / 3); } }

.filter-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem; }
  @media (min-width: 576px) {
    .filter-item {
      width: 50%;
      margin-bottom: 0; } }
  @media (min-width: 992px) {
    .filter-item {
      width: calc(100% / 3); } }
  .filter-item a {
    display: block;
    color: black;
    text-decoration: none; }
    .filter-item a:hover h2, .filter-item a:focus h2 {
      text-decoration: underline; }
    @media (min-width: 576px) {
      .filter-item a:hover .caption {
        display: block;
        background-color: rgba(0, 0, 0, 0.75);
        top: 0;
        opacity: 1;
        -webkit-transition: opacity 1s, top 1s;
        transition: opacity 1s, top 1s; } }
    @media (min-width: 576px) {
      .filter-item a:before {
        content: '';
        background: rgba(0, 0, 0, 0.2) url(../images/new-tab.svg);
        background-repeat: no-repeat;
        background-position: 4px 4px;
        background-size: 12px 12px;
        border-radius: 50%;
        position: absolute;
        top: 15px;
        right: 15px;
        height: 20px;
        width: 20px;
        display: block;
        z-index: 1;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
                box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); } }
    .filter-item a .media-area {
      position: relative; }
    .filter-item a .caption {
      padding: 1rem 1rem .1rem 1rem;
      background-color: #f3f2f1; }
      @media (min-width: 576px) {
        .filter-item a .caption {
          position: absolute;
          top: 100%;
          width: 100%;
          height: 100%;
          padding: 2rem;
          background-color: transparent;
          opacity: 0;
          z-index: 3;
          -webkit-transition: opacity .5s, top .75s;
          transition: opacity .5s, top .75s; }
          .filter-item a .caption p {
            text-align: left !important; } }
    @media (min-width: 576px) and (min-width: 576px) {
      .filter-item a .caption p {
        font-weight: 400;
        color: white;
        text-align: center; } }
    .filter-item a .link:hover {
      border-bottom: 1px solid;
      padding-bottom: 1px; }
  .filter-item img {
    display: block;
    width: 100%;
    max-width: 435px;
    max-height: 435px; }
    .filter-item img.mob {
      display: block; }
      @media (min-width: 576px) {
        .filter-item img.mob {
          display: none; } }
    .filter-item img.desk {
      display: none; }
      @media (min-width: 576px) {
        .filter-item img.desk {
          display: block; } }
  .filter-item.double {
    width: 100%; }
    @media (min-width: 576px) {
      .filter-item.double {
        width: 100%; } }
    @media (min-width: 992px) {
      .filter-item.double {
        width: calc((100% / 3) * 2); } }
    .filter-item.double img {
      max-width: 870px;
      max-height: 435px; }
  .filter-item.quote.gold .wrapper {
    background: #ffcd1a; }
  .filter-item.quote.gold .icon {
    background-color: white;
    color: #ffcd1a; }
  .filter-item.quote.teal {
    color: white; }
    .filter-item.quote.teal .wrapper {
      background: #197f76; }
    .filter-item.quote.teal .icon {
      background-color: white;
      color: #197f76; }
  .filter-item.quote.green .wrapper {
    background: #24C28B; }
  .filter-item.quote.green .icon {
    background-color: white;
    color: #24C28B; }
  .filter-item.quote.blue {
    color: white; }
    .filter-item.quote.blue .wrapper {
      background: #0B75B8; }
    .filter-item.quote.blue .icon {
      background-color: white;
      color: #0B75B8; }
  .filter-item.quote.grey {
    color: white; }
    .filter-item.quote.grey .wrapper {
      background: #807369; }
    .filter-item.quote.grey .icon {
      background-color: white;
      color: #807369; }
    .filter-item.quote.grey a {
      color: white; }
  .filter-item.quote .wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #f3f2f1; }
    .filter-item.quote .wrapper > p {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      font-size: 1.1rem;
      text-align: left; }
      .filter-item.quote .wrapper > p.short {
        font-size: 1.5rem; }
      .filter-item.quote .wrapper > p span {
        display: block;
        font-size: .65em;
        font-weight: 500;
        padding: .15em;
        margin: 0 0 .25em 0; }
      @media (min-width: 23.5em) {
        .filter-item.quote .wrapper > p {
          font-size: 1.3rem; }
          .filter-item.quote .wrapper > p.short {
            font-size: 1.9rem; } }
      @media (min-width: 576px) {
        .filter-item.quote .wrapper > p {
          font-size: 1rem; }
          .filter-item.quote .wrapper > p.short {
            font-size: 1.4rem; } }
      @media (min-width: 768px) {
        .filter-item.quote .wrapper > p {
          font-size: 1.5rem; }
          .filter-item.quote .wrapper > p.short {
            font-size: 2rem; } }
      @media (min-width: 992px) {
        .filter-item.quote .wrapper > p {
          font-size: 1.3rem; }
          .filter-item.quote .wrapper > p.short {
            font-size: 1.9rem; } }
      @media (min-width: 1200px) {
        .filter-item.quote .wrapper > p {
          font-size: 1.5rem; }
          .filter-item.quote .wrapper > p.short {
            font-size: 2rem; } }

.prefooter {
  background: #f5f4f2; }
  .prefooter .btn-button {
    max-width: 140px;
    display: block;
    margin: 1em auto; }
    @media (min-width: 992px) {
      .prefooter .btn-button {
        display: inline;
        margin: 1.5em 0 1.5em 1.5em; } }
  .prefooter p.lead {
    margin-bottom: 0; }

footer {
  display: block;
  background-color: transparent;
  /*position: relative;*/
  text-align: center;
  font-size: 80%;
  width: 100%;
  position: absolute;
  bottom: 0; }
  footer .container {
    margin: 0 auto; }
  footer a, footer a:visited {
    color: #565656; }
  footer a:hover {
    color: #0b6b6b; }
  footer .grey-bg {
    background: #e8e6e3;
    /*padding: 90px 0;*/ }
  footer .btn-default {
    background: #fff;
    margin: 15px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2em;
    border: none;
    -webkit-transition: color .5s ease;
    transition: color .5s ease;
    padding: .75em 2.5em;
    color: #565656; }
    footer .btn-default:hover {
      color: #098483;
      text-decoration: none;
      -webkit-transition: color .3s;
      transition: color .3s; }
  footer .row.work {
    margin-bottom: 2rem;
    display: none; }
    @media (min-width: 992px) {
      footer .row.work {
        display: block; } }
  footer .row .social {
    border: none; }
    @media (min-width: 768px) {
      footer .row .social {
        border: 2px solid #666;
        border-top: none;
        border-bottom: none; } }
    footer .row .social a, footer .row .social a:visited, footer .row .social a:active {
      display: inline-block;
      height: 32px;
      width: 32px;
      line-height: 20px;
      font-size: 18px;
      text-align: center;
      border: 2px solid #666;
      border-radius: 50%;
      margin: 12px 3px 6px 3px;
      text-decoration: none;
      -webkit-transition: background-color .35s ease-in-out, color .35s ease-in-out;
      transition: background-color .35s ease-in-out, color .35s ease-in-out;
      padding: 4px;
      color: #666 !important; }
      footer .row .social a:hover, footer .row .social a:focus, footer .row .social a:visited:hover, footer .row .social a:visited:focus, footer .row .social a:active:hover, footer .row .social a:active:focus {
        background-color: #666;
        color: #ffffff !important; }
      footer .row .social a i, footer .row .social a:visited i, footer .row .social a:active i {
        font-style: normal !important; }
    footer .row .social i {
      font-style: normal !important; }
    footer .row .social p {
      margin-bottom: 0;
      position: relative;
      width: 250px;
      margin: 0 auto; }
      @media (min-width: 768px) {
        footer .row .social p {
          width: auto; } }
      footer .row .social p:before, footer .row .social p:after {
        background-color: #666;
        content: "";
        display: inline-block;
        height: 2px;
        position: absolute;
        vertical-align: middle;
        width: 75px; }
        @media (min-width: 768px) {
          footer .row .social p:before, footer .row .social p:after {
            display: none; } }
      footer .row .social p:before {
        left: 0;
        top: 40%; }
      footer .row .social p:after {
        right: 0;
        top: 40%; }
    footer .row .social hr {
      width: 250px;
      display: inline-block;
      margin: 0;
      border-top: 2px solid #565656; }
      @media (min-width: 768px) {
        footer .row .social hr {
          display: none; } }
  footer .row .legal-links p {
    margin: 1em 5px 0 !important; }
  footer .row .legal-links a {
    display: inline-block;
    margin: 0 5px 0 !important; }

.modal {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh; }
  @media (min-width: 992px) {
    .modal {
      height: auto;
      top: 0px; } }
  .modal.services-modal {
    padding-top: 6em; }
    @media (min-width: 768px) {
      .modal.services-modal {
        padding-top: 0em; } }
    .modal.services-modal a {
      color: white; }
    .modal.services-modal .modal-header {
      position: absolute;
      z-index: 500;
      right: 0;
      text-align: right;
      border: none;
      padding: 1em 1.5em 0em 1.5em; }
      @media (min-width: 768px) {
        .modal.services-modal .modal-header {
          padding: 2em; } }
      .modal.services-modal .modal-header .close {
        opacity: 1;
        color: white;
        position: relative;
        display: inline-block;
        width: 40px;
        height: 40px;
        overflow: hidden;
        -webkit-transition: -webkit-transform .5s ease;
        transition: -webkit-transform .5s ease;
        transition: transform .5s ease;
        transition: transform .5s ease, -webkit-transform .5s ease; }
        .modal.services-modal .modal-header .close:hover {
          -webkit-transform: scale(1.2);
                  transform: scale(1.2); }
          .modal.services-modal .modal-header .close:hover::before, .modal.services-modal .modal-header .close:hover::after {
            background: white; }
        .modal.services-modal .modal-header .close::before, .modal.services-modal .modal-header .close::after {
          content: '';
          position: absolute;
          height: 1px;
          width: 100%;
          top: 50%;
          left: 0;
          margin-top: -1px;
          background: #FFF; }
        .modal.services-modal .modal-header .close::before {
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg); }
        .modal.services-modal .modal-header .close::after {
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
    @media (min-width: 768px) {
      .modal.services-modal .modal-dialog {
        margin-top: -.5em;
        top: 40%;
        width: 60%;
        max-width: 1024px;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        margin: 50px auto;
        position: absolute;
        left: 50%;
        overflow: hidden !important; } }
    .modal.services-modal .modal-dialog .modal-content {
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none;
      border-radius: 0;
      background-color: #000;
      position: relative;
      padding-top: 1em;
      /* @include breakpoint($md){
                    padding-top: 0;
                }*/ }
      .modal.services-modal .modal-dialog .modal-content.social-media {
        background: none !important;
        max-width: 450px;
        margin: 0 auto; }
        .modal.services-modal .modal-dialog .modal-content.social-media .modal-header {
          padding: 0 !important; }
      .modal.services-modal .modal-dialog .modal-content .modal-body {
        padding: 0 1em 2em;
        position: relative;
        z-index: 300;
        color: white;
        overflow: hidden; }
        @media (min-width: 768px) {
          .modal.services-modal .modal-dialog .modal-content .modal-body {
            padding: 0 2em 2em;
            margin: 3em; } }
        .modal.services-modal .modal-dialog .modal-content .modal-body p {
          font-weight: 400;
          padding-bottom: 1em;
          padding: 0 1.25em; }
        .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg {
          width: 300px !important;
          height: 300px !important;
          border-radius: 50%;
          padding: 0 3%;
          margin: 0 auto; }
          .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg p {
            font-size: 1em;
            line-height: 1.2;
            position: relative;
            top: 50%;
            -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%);
            width: 100%;
            text-align: center;
            padding: 0 1.2em !important; }
          .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg.red {
            background-color: #E02A35 !important; }
          .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg.green {
            background-color: #4B8514; }
          .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg.light-blue {
            background-color: #257FA3; }
          .modal.services-modal .modal-dialog .modal-content .modal-body .circle-bg.dark-blue {
            background-color: #173f6b; }
      .modal.services-modal .modal-dialog .modal-content .blue-bg {
        position: absolute;
        top: 0;
        bottom: 0;
        background-color: #148484;
        width: 100%;
        height: 100%;
        z-index: 200; }
        @media (min-width: 768px) {
          .modal.services-modal .modal-dialog .modal-content .blue-bg {
            -webkit-transform: rotate(-3deg);
                    transform: rotate(-3deg); } }
      .modal.services-modal .modal-dialog .modal-content .black-bg {
        position: absolute;
        top: 0;
        bottom: 0;
        background-color: #000;
        width: 100%;
        height: 100%;
        z-index: 200; }
        @media (min-width: 768px) {
          .modal.services-modal .modal-dialog .modal-content .black-bg {
            -webkit-transform: rotate(-3deg);
                    transform: rotate(-3deg); } }
  .modal.teaser-modal {
    padding-top: 0;
    z-index: 3500; }
    .modal.teaser-modal img {
      width: auto; }
      .modal.teaser-modal img.mill-25-logo {
        max-width: 150px;
        margin: 10px auto;
        display: block;
        width: 100%;
        height: 100%; }
        @media (min-width: 992px) and (min-height: 960px) {
          .modal.teaser-modal img.mill-25-logo {
            max-width: 200px; } }
        @media (min-width: 1280px) and (min-height: 1024px) {
          .modal.teaser-modal img.mill-25-logo {
            max-width: 372px; } }
    .modal.teaser-modal .modal-dialog {
      overflow: hidden !important;
      /*position: absolute;*/
      max-width: none;
      z-index: 200;
      background-color: #000; }
      @media (min-width: 768px) {
        .modal.teaser-modal .modal-dialog {
          background-color: transparent; } }
      .modal.teaser-modal .modal-dialog .modal-content .modal-body {
        padding: 0 0em 0em;
        margin: 0;
        max-width: 100%; }
      .modal.teaser-modal .modal-dialog iframe {
        overflow: hidden; }
      .modal.teaser-modal .modal-dialog .g-recaptcha {
        overflow: hidden;
        /*transform: translateZ(0);*/ }
        .modal.teaser-modal .modal-dialog .g-recaptcha .grecaptcha-badge {
          /*width: 270px !important;*/
          will-change: transform; }
    .modal.teaser-modal h2 {
      text-align: center; }
      @media (min-width: 992px) and (min-height: 960px) {
        .modal.teaser-modal h2 {
          font-size: 30px; } }
    .modal.teaser-modal iframe {
      max-width: 600px;
      height: 380px;
      width: 100%;
      margin: 0 auto;
      display: block; }
      @media (min-width: 576px) {
        .modal.teaser-modal iframe {
          height: 350px; } }

.teaser-form {
  background-color: transparent;
  color: white; }
  .teaser-form #ic_signupform .elcontainer .form-header h3 {
    text-align: center;
    margin-bottom: 2em; }
    @media (min-width: 992px) and (min-height: 960px) {
      .teaser-form #ic_signupform .elcontainer .form-header h3 {
        font-size: 18px; } }
  .teaser-form .sortables {
    max-width: 500px;
    margin: 0 auto; }
  .teaser-form .submit-container {
    text-align: center;
    margin-bottom: 50px; }
    .teaser-form .submit-container .btn-outline {
      background-color: transparent;
      color: #fff;
      text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
      border: 1px #fff solid;
      font-weight: 700 !important; }
  .teaser-form #ic_signupform .elcontainer .formEl input[type="text"] {
    color: #333; }
  .teaser-form input {
    border: none;
    color: #000; }
    .teaser-form input.btn-submit {
      background-color: #f0e75e;
      font-weight: 700;
      display: inline-block; }
  .teaser-form > div {
    max-width: 100%;
    overflow: hidden; }
  .teaser-form.thank-you {
    background-color: #000;
    text-align: center; }
    .teaser-form.thank-you .btn {
      margin: 1em 5px 5px; }
    .teaser-form.thank-you p {
      text-align: center; }
  .teaser-form.error {
    text-align: center; }
    .teaser-form.error a {
      color: #f0e75e; }
    .teaser-form.error p {
      text-align: center; }

.modal-backdrop.in {
  opacity: .7; }

.desktop-br {
  display: none; }
  @media (min-width: 768px) {
    .desktop-br {
      display: block; } }

.mobile-br {
  display: block; }
  @media (min-width: 768px) {
    .mobile-br {
      display: none; } }
.jumbotron{
  background: rgb(33,174,165);
  background: linear-gradient(180deg, rgba(33,174,165,1) 0%, rgba(41,132,117,1) 35%, rgba(55,100,80,1) 100%);
}

