/*
CSS Document
*/
:root {
  --green: #458987;
  --light-green: #176b69;
  --dark-green: #154c49;
  --blue: #0b1c33;
  --light-blue: #18b7d2;
  --white: #ffffff;
  --black: #222; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--light-green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 300; }

* {
  box-sizing: border-box; }

/* RESET */
h1, h2, h3, h4, h5, p, ul, ol, li {
  margin: 0;
  padding: 0; }

h1 {
  font-weight: 600; }

h2 {
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light-blue); }
  @media (min-width: 992px) {
    h2 {
      font-size: 2.3rem; } }

h3 {
  padding-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white); }

p {
  padding-bottom: 2rem;
  font-size: 1.2rem; }

a {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

img {
  max-width: 100%; }

.br {
  display: block; }

@keyframes ripples {
  0% {
    margin-left: 0;
    margin-top: 0;
    width: 0;
    height: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3; }
  /*50% {
  	margin-left: -100px; margin-top: -100px; width: 200px; height: 200px; @include opacity(.5);
  }*/
  100% {
    margin-left: -200px;
    margin-top: -200px;
    width: 400px;
    height: 400px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; } }
.btn {
  background: var(--light-blue);
  color: var(--white);
  display: block;
  padding: 10px 30px;
  border-radius: 0;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  font-size: 1rem;
  position: relative; }
  .btn:hover {
    color: var(--white);
    background: var(--blue);
    text-decoration: none; }
    .btn:hover:before {
      position: absolute;
      display: block;
      left: 50%;
      top: 50%;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--light-green);
      content: '';
      z-index: 1;
      margin-left: -50px;
      margin-top: -50px;
      animation-duration: 1.5s;
      animation-name: ripples;
      animation-iteration-count: infinite;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
      z-index: 1;
      pointer-events: none; }
    .btn:hover:after {
      position: absolute;
      display: block;
      left: 50%;
      top: 50%;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--light-green);
      content: '';
      z-index: 1;
      margin-left: -50px;
      margin-top: -50px;
      animation-duration: 1.5s;
      animation-name: ripples;
      animation-iteration-count: infinite;
      animation-delay: 0.5s;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
      z-index: 1;
      pointer-events: none; }

.flex {
  display: -webkit-flex;
  display: flex;
  width: 100%; }
  .flex.flex-center {
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
  .flex.flex-space-between {
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .flex.flex-cols {
    flex-direction: column; }
  .flex.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
  .flex .col {
    padding: 0 15px; }

header.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  padding-top: 20px; }
  @media (min-width: 992px) {
    header.header {
      padding-top: 50px; } }
  header.header h1 {
    position: relative;
    z-index: 4; }
    header.header h1 a {
      display: block;
      width: 150px;
      height: 70px;
      background-image: url(/site/img/amps-logo-02.svg);
      background-repeat: no-repeat;
      background-size: contain; }
      @media (min-width: 992px) {
        header.header h1 a {
          width: 300px;
          height: 100px; } }
      header.header h1 a span {
        position: absolute;
        left: 9999px;
        width: 0;
        height: 0;
        overflow: hidden; }
  header.header .nav-opener {
    position: fixed;
    right: 30px;
    top: 30px;
    font-size: 2rem;
    z-index: 10;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }

.nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0; }
  .nav .nav-inner {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    background: #444;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .nav .nav-inner ul {
      list-style-type: none;
      margin: 0;
      padding: 0; }
      .nav .nav-inner ul li {
        margin: 0;
        padding: 0;
        text-align: center; }
        .nav .nav-inner ul li a {
          color: var(--white);
          font-size: 2rem;
          font-weight: 200; }
          @media (min-width: 992px) {
            .nav .nav-inner ul li a {
              font-size: 3rem; } }
          .nav .nav-inner ul li a:hover {
            text-decoration: none;
            color: var(--green); }

.mobile-visible .nav {
  pointer-events: auto;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1; }
.mobile-visible .fa-bars {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }
  .mobile-visible .fa-bars:before {
    content: '\f00d'; }

.vimeo-holder {
  padding: 56.25% 0 0 0;
  position: relative;
  display: none; }
  @media (min-width: 992px) {
    .vimeo-holder {
      display: block; } }

.hero {
  position: relative;
  position: 100vw; }
  .hero .hero-video-holder {
    position: relative;
    z-index: 1;
    background-image: url("/site/img/header.bg.jpg");
    background-size: cover;
    height: 70vh; }
    @media (min-width: 992px) {
      .hero .hero-video-holder {
        height: inherit; } }
    .hero .hero-video-holder:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjcwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0NTg5ODciLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.4)), color-stop(70%, rgba(0, 0, 0, 0.4)), color-stop(100%, #458987));
      background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 70%, #458987 100%);
      background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 70%, #458987 100%);
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 70%, #458987 100%);
      z-index: 1; }
  .hero .hero-caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 2; }
    .hero .hero-caption img {
      max-width: 50%; }
      @media (min-width: 992px) {
        .hero .hero-caption img {
          width: 400px;
          max-width: 90%; } }

.section-01 {
  padding: 150px 0 0 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ1ODk4NyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzE1NGM0OSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #458987), color-stop(100%, #154c49));
  background-image: -moz-linear-gradient(#458987, #154c49);
  background-image: -webkit-linear-gradient(#458987, #154c49);
  background-image: linear-gradient(#458987, #154c49); }

.section-02 {
  padding: 150px 0 150px 0; }

.waves {
  display: block;
  margin: 0 auto 10px auto;
  width: 200px;
  height: 80px;
  background-image: url("/site/img/waves.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom; }

span.waves {
  display: inline-block;
  width: 100px;
  height: 50px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  margin-bottom: 0; }

.details-blocks {
  background: #efefef;
  color: var(--green); }
  .details-blocks .detail-block .detail-content {
    padding: 0 30px; }
    .details-blocks .detail-block .detail-content:hover .ripples {
      position: relative; }
      .details-blocks .detail-block .detail-content:hover .ripples:after {
        position: absolute;
        display: block;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--light-green);
        content: '';
        z-index: 1;
        margin-left: -50px;
        margin-top: -50px;
        animation-duration: 1.5s;
        animation-name: ripples;
        animation-iteration-count: infinite;
        pointer-events: none; }
      .details-blocks .detail-block .detail-content:hover .ripples .ripple {
        position: absolute;
        display: block;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--light-green);
        content: '';
        z-index: 1;
        margin-left: -50px;
        margin-top: -50px;
        animation-duration: 1.5s;
        animation-name: ripples;
        animation-iteration-count: infinite;
        animation-delay: 0.5s;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        z-index: 1;
        pointer-events: none; }
      .details-blocks .detail-block .detail-content:hover .ripples .ripple2 {
        position: absolute;
        display: block;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--light-green);
        content: '';
        z-index: 1;
        margin-left: -50px;
        margin-top: -50px;
        animation-duration: 1.5s;
        animation-name: ripples;
        animation-iteration-count: infinite;
        animation-delay: 1s;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        z-index: 1;
        pointer-events: none; }
  @media (min-width: 992px) {
    .details-blocks .detail-block {
      display: -webkit-flex;
      display: flex; }
      .details-blocks .detail-block .detail-img, .details-blocks .detail-block .detail-content {
        width: 50%; }
      .details-blocks .detail-block .detail-img img {
        object-fit: cover;
        position: relative;
        width: 100%;
        height: 100%; }
      .details-blocks .detail-block .detail-content {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        .details-blocks .detail-block .detail-content .ripple-container {
          width: 600px;
          max-width: 80%; }
      .details-blocks .detail-block:nth-child(even) .detail-img {
        order: 2; } }
  .details-blocks .detail-block .ripples {
    position: relative; }
    .details-blocks .detail-block .ripples > div {
      z-index: 2;
      position: relative; }

.ripples {
  position: relative; }
  .ripples:hover:after {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-green);
    content: '';
    z-index: 1;
    margin-left: -50px;
    margin-top: -50px;
    animation-duration: 1.5s;
    animation-name: ripples;
    animation-iteration-count: infinite;
    pointer-events: none; }
  .ripples:hover .ripple {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-green);
    content: '';
    z-index: 1;
    margin-left: -50px;
    margin-top: -50px;
    animation-duration: 1.5s;
    animation-name: ripples;
    animation-iteration-count: infinite;
    animation-delay: 0.5s;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    z-index: 1;
    pointer-events: none; }
  .ripples:hover .ripple2 {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-green);
    content: '';
    z-index: 1;
    margin-left: -50px;
    margin-top: -50px;
    animation-duration: 1.5s;
    animation-name: ripples;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    z-index: 1;
    pointer-events: none; }
  .ripples > div {
    z-index: 2;
    position: relative; }

.divider {
  background-image: url("/site/img/section-03.jpg");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  min-height: 700px; }

.cta-block {
  padding-bottom: 75px;
  width: 600px;
  margin: 0 auto;
  max-width: 100%; }

/*
.parallax {
  perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.parallax__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.parallax__layer--base {
  transform: translateZ(0);
}
.parallax__layer--back {
  transform: translateZ(-1px);
}*/
.keep-up-to-date {
  background: var(--green);
  padding: 80px 0; }
  .keep-up-to-date h2 {
    color: var(--white);
    font-weight: 200;
    font-size: 2rem; }

footer.footer {
  background: var(--blue);
  padding: 80px 0; }
  footer.footer h2 {
    color: var(--white);
    font-weight: 200;
    font-size: 2rem; }
  footer.footer ul {
    list-style-type: none;
    margin: 0 0 2rem 0; }
    footer.footer ul li a {
      color: var(--white); }
      footer.footer ul li a:hover {
        text-decoration: none; }

input {
  border: solid 1px var(--white);
  background: none;
  padding: 10px;
  color: var(--white); }
  input::placeholder {
    color: #ccc; }

.button {
  background: var(--light-blue);
  color: var(--white);
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  margin-bottom: 30px; }
  .button:hover {
    background: var(--blue); }

.mailchimp-form .mc-field-group input, .mailchimp-form .mc-field-group .clear, .mailchimp-form .optionalParent input, .mailchimp-form .optionalParent .clear {
  width: 100%; }
.mailchimp-form .mc-field-group {
  margin-bottom: 20px; }
.mailchimp-form .indicates-required {
  text-align: right;
  margin: 0 0 20px 0;
  font-style: italic; }
  @media (min-width: 992px) {
    .mailchimp-form .indicates-required {
      text-align: inherit;
      margin: inherit;
      font-style: italic; } }
@media (min-width: 992px) {
  .mailchimp-form .indicates-required {
    display: none; }
  .mailchimp-form #mc_embed_signup_scroll {
    display: -webkit-flex;
    display: flex; }
  .mailchimp-form .mc-field-group, .mailchimp-form .optionalParent {
    flex: 1; }
  .mailchimp-form .mc-field-group {
    padding-right: 20px; }
  .mailchimp-form label {
    display: none; } }

.form-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #22222290;
  z-index: 20;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .form-popup .form-popup-inner {
    width: 700px;
    max-width: 90%;
    background: var(--white);
    padding: 30px;
    position: relative; }
    .form-popup .form-popup-inner .form-popup-close {
      color: var(--black);
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 2rem;
      cursor: pointer;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .form-popup .form-popup-inner .form-popup-close:before {
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .form-popup .form-popup-inner .form-popup-close:hover {
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg); }
        .form-popup .form-popup-inner .form-popup-close:hover:before {
          color: var(--light-blue); }
  .form-popup.form-popup-visible {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    pointer-events: auto; }

.form-response {
  color: var(--black); }
