/*
* CTA Overlay
*/
#bounce-container-outer {
    display: none;
    background: rgba(45, 135, 93, 0.95);
    position: absolute;
    padding: 0 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
    animation: fadein 0.5s;
    -moz-animation: fadein 0.5s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 0.5s; /* Opera */
    animation-fill-mode: both;
}

.ie9 .bounce-container {
  margin-top: 30px;
}

.bounce-container {
    width: 100%;
    height: 100%;
    /*background: red;*/
    /*transform: translateY(50%);*/
    margin: 0 auto;
    /*opacity: 0;*/
    -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    animation-name: bounce;
    animation-duration: 1.2s;
    /*animation-timing-function: cubic-bezier(.04,.81,.23,.95);*/
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-delay: 0.2s;
    text-align: center;
}

.bounce-bottom-logo {
    position: absolute;
    color: #fff;
    bottom: 20px;
    text-align: center;
    width: 100%;
    left: 0;
}

.bounce-bottom-logo span {
    font-size: 14px;
    font-weight: 500;
}

.bounce-bottom-logo img {
  width: 105px;
}

.bounce-container-inner {
    animation-name: bounce-inner;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    animation-delay: 0.2s;
    text-align: center;
    /*visibility: hidden;*/
    /*transform: translateY(70%);*/
}

.bounce-container .bounce-cta-icon {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: white;
    /*opacity: 0;*/
    margin: 0 auto 40px;
    animation-name: bounce-ball;
    animation-duration: 1.2s;
    /*animation-timing-function: cubic-bezier(.04,.81,.23,.95);*/
    animation-timing-function: ease;
    animation-fill-mode: both;
    animation-delay: 0.2s;
    position: relative;
}

.bounce-container .bounce-cta-icon span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.bounce-container h1 {
    font-size: 68px;
    color: white;
    font-weight: 200;
    margin: 0;
}

.bounce-container h2 {
    font-size: 28px;
    font-weight: 300;
    color: white;
    opacity: 0.6;
    margin-bottom: 70px;
    letter-spacing: 0.3px;
}

.bounce-container .bounce-cta-button {
    display: inline-block;
    background: white;
    color: #4acd94;
    padding: 16px 25px 19px;
    border-radius: 4px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
}

@-webkit-keyframes bounce {
  0% {
      transform:translateY(100%);
  }

  5.31% {
      transform:translateY(53.3%);
  }

  10.51% {
      transform:translateY(26.3%);
  }

  15.82% {
      transform:translateY(14.9%);
  }

  21.02% {
      transform:translateY(13.6%);
  }

  35.34% {
      transform:translateY(16.1%);
  }

  49.55% {
      transform:translateY(17.1%);
  }

  78.18% {
      transform:translateY(16.9%);
  }

  100% {
      transform:translateY(17%);
  }
}

@keyframes bounce {
     0% {
         transform:translateY(100%);
     }

     5.31% {
         transform:translateY(53.3%);
     }

     10.51% {
         transform:translateY(26.3%);
     }

     15.82% {
         transform:translateY(14.9%);
     }

     21.02% {
         transform:translateY(13.6%);
     }

     35.34% {
         transform:translateY(16.1%);
     }

     49.55% {
         transform:translateY(17.1%);
     }

     78.18% {
         transform:translateY(16.9%);
     }

     100% {
         transform:translateY(17%);
     }
}

@-webkit-keyframes bounce-ball {
  0% {
      transform:translateY(100%);
      opacity: 0;
  }

  5.31% {
      transform:translateY(53.3%);
  }

  10.51% {
      transform:translateY(26.3%);

  }

  15.82% {
      transform:translateY(14.9%);
  }

  21.02% {
      transform:translateY(12.6%);
      opacity: 0.4;

  }

  35.34% {
      transform:translateY(22.1%);
  }

  49.55% {
      transform:translateY(13.1%);
      
  }

  78.18% {
      transform:translateY(17.9%);
  }

  100% {
      transform:translateY(17%);
      opacity: 1;
  }
}

@keyframes bounce-ball {
  0% {
      transform:translateY(100%);
      opacity: 0;
  }

  5.31% {
      transform:translateY(53.3%);
  }

  10.51% {
      transform:translateY(26.3%);

  }

  15.82% {
      transform:translateY(14.9%);
  }

  21.02% {
      transform:translateY(12.6%);
      opacity: 0.4;
  }

  35.34% {
      transform:translateY(22.1%);
  }

  49.55% {
      transform:translateY(13.1%);
      
  }

  78.18% {
      transform:translateY(17.9%);
  }

  100% {
      transform:translateY(17%);
      opacity: 1;
  }
}

@-webkit-keyframes bounce-inner {
  from {
     opacity: 0;
     transform: scale(0.90);
  }


  to {
     transform: scale(1);
     opacity: 1;
  }
}

@keyframes bounce-inner {
     from {
        opacity: 0;
        transform: scale(0.90);
     }


     to {
        transform: scale(1);
        opacity: 1;
     }
}

@keyframes fadein {
    from {
        background: rgba(45, 135, 93, 0);
    }
    to {
        background: rgba(45, 135, 93, 0.95);
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        background: rgba(45, 135, 93, 0);
    }
    to {
        background: rgba(45, 135, 93, 0.95);
    }
}

@media (max-width: 768px) {

    .bounce-container .bounce-cta-icon {
        height: 60px;
        width: 60px;
        margin: 0 auto 20px;
    }

    .bounce-container h1 {
        font-size: 40px;
        font-weight: 300;
    }

    .bounce-container h2 {
        font-size: 20px;
        margin-bottom: 35px;
        letter-spacing: 0.2px;
    }

    .bounce-container .bounce-cta-button {
        padding: 9px 16px 12px;
        font-size: 16px;
    }

    .bounce-container .bounce-cta-icon span {
        width:35px;
        height:24px;
        background-position:-129px -143px;
    }

}

/*#ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

#ouibounce-modal .button {
  color: #FFFFFF;
  font-size: 19px;
  background-color: #6CBF65;
  font-weight: 500;
  border: 0px;
  border-radius: 4px;
  padding: 17px 0;
  font-weight: 600;
  }

#ouibounce-modal .modal {
  background-color: #f0f1f2;
  z-index: 1;
  position: absolute;
  margin: auto;
  max-width:700px;
  display: inline-block;
  top: 70px;
  right: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  width: 80%;
}

#ouibounce-modal .modal-title {
  border-radius: 4px 4px 0 0;
  background-image: url("/images/oui.jpg");
  background-size: cover;
  background-position: center;
  height: 200px;
}

#ouibounce-modal .modal-body-titletext {
  color: #6CBF65;
  font-size: 40px;
  font-weight: 300;
  margin: 20px 0px;
}

#ouibounce-modal .modal-body-subtext {
  color: #999999;
  font-size: 19px;
  margin-bottom: 20px;
}

#ouibounce-modal .modal-body {
  padding: 20px 35px;
  font-size: 0.9em;
  text-align: center;
  max-width: 590px;
  margin: 0 auto;
}

#ouibounce-modal p {
  color: #344a5f;
  line-height: 1.3em;
}

#ouibounce-modal form {
  text-align: center;
  margin-top: 35px;
}

#ouibounce-modal form input[type=text] {
  padding: 12px;
  font-size: 1.2em;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
}

#ouibounce-modal form input[type=submit] {
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #4ab471;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}

#ouibounce-modal form p {
  text-align: left;
  margin-left: 35px;
  opacity: 0.8;
  margin-top: 1px;
  padding-top: 1px;
  font-size: 0.9em;
}

#ouibounce-modal .modal-footer {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

#ouibounce-modal .modal-footer p {
  text-transform: capitalize;
  cursor: pointer;
  display: inline;
  color: #999999;
  border-bottom: 1px solid #999999;
}

#ouibounce-modal #modal_resp_logotype {
  width: 60%;
  margin:0 auto;
}

#ouibounce-modal #modal_resp_logotype img {
  margin: 0px!important;
}

@media (max-width:700px) {

  #ouibounce-modal .modal {
    width: 90%!important;
    top: 50px;
  }

  #ouibounce-modal .modal-title {
    height: 120px!important;
  }

  #ouibounce-modal .modal-body {
    padding: 15px 30px!important;
  }

  #ouibounce-modal .modal-body-titletext {
    font-size: 26px!important;
    margin: 15px 0px!important;
  }

  #ouibounce-modal .modal-body-subtext {
    font-size: 14px!important;
    margin-bottom: 15px!important;
  }

  #ouibounce-modal .button {
    font-size: 15px!important;
    padding: 10px 0px!important;
  }

  #ouibounce-modal .modal-footer p {
    font-size: 14px!important;
  }

  #ouibounce-modal #modal_resp_logotype {
    width: 80%!important;
  }
}

@media (max-width:370px) {

  #ouibounce-modal .modal {
    top: 30px;
  }

  #ouibounce-modal .modal-title {
    height: 70px!important;
  }

  #ouibounce-modal .modal-body-titletext {
    font-size: 22px!important;
    margin: 10px 0px!important;
  }

  #ouibounce-modal .modal-body-subtext {
    font-size: 14px!important;
    margin-bottom: 10px!important;
  }

  #ouibounce-modal .button {
    font-size: 14px!important;
  }

  #ouibounce-modal .modal-footer p {
    font-size: 14px!important;
  }
}


@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

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

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}*/