@import "bootstrap.css";
@import "mixins";
@import "responsive-utilities";

@orange: #fbb914;
@blue: #1F2743;
@mid_blue: #296EB4;
@yellow: #F0C254;
@puke_yellow: #FDE200;
@red: #C00000;

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background: #fff;
  box-sizing: border-box;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

img {
  width: 100%;
}


a {
  color: @mid_blue;
}

h2 {
  margin: 26px 0;
  color: #222222;
  font-family: 'open sans condensed', Sans-Serif;
  font-size: 42px;
  line-height: 1.1;
  max-width: 1120px;
  text-align: center;
  text-shadow: 1px 1px 0 #fff;
  text-transform: uppercase;
}

h3 {
  margin: 26px 0;
  color: #222222;
  font-family: 'open sans condensed', Sans-Serif;
  font-size: 24px;
  text-align: center;
}

strong {
  font-weight: 700;
}

hr {
  border: 0;
  height: 4px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
}

.expiry-bar {
  background: @yellow;
  margin: 0;
  padding: 10px;
  top: 0;
  width: 100%;
  z-index: 10;

  .animate-flicker {
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
  }

  @keyframes flickerAnimation {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-o-keyframes flickerAnimation {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes flickerAnimation {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-webkit-keyframes flickerAnimation {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  p {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
  }

  .button {
    margin: 0;
  }
}

.countdown-clock {
  background: @puke_yellow;
  font-family: sans-serif;
  color: #000;
  display: block;
  font-weight: 100;
  margin: 0 auto;
  padding: 2px 0 20px;
  text-align: center;
  font-size: 30px;

  >p {
    font-family: "open sans", sans-serif;
    font-weight: bold;
  }

  >div {
    padding: 0 2px;
    border-radius: 3px;
    display: inline-block;
  }

  div>span {
    background: #f2f2f2;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0, rgba(234, 234, 234, 1) 50%, rgba(242, 242, 242, 1) 51%, rgba(250, 250, 250, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0, rgba(234, 234, 234, 1) 50%, rgba(242, 242, 242, 1) 51%, rgba(250, 250, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .5), inset 0 0 0 1px rgba(0, 0, 0, .25), inset 0 -3px 0 0 rgba(204, 204, 204, 1), inset 0 -4px 0 0 rgba(179, 179, 179, 1), inset 0 -5px 0 0 rgba(255, 255, 255, 1), inset 0 2px 0 0 rgba(234, 234, 234, 1), inset 0 3px 0 0 rgba(179, 179, 179, 1), inset 0 4px 0 0 rgba(255, 255, 255, 1);
    padding: 15px;
    border-radius: 3px;
    display: inline-block;
    position: relative;

    &:after {
      content: "";
      height: 1px;
      width: 100%;
      background: rgba(255, 255, 255, .75);
      position: absolute;
      top: 50%;
      left: 0;
    }
  }

  .smalltext {
    padding-top: 5px;
    font-size: 16px;
  }
}

.countdown-clock-alt {
  font-family: 'open sans', sans-serif;
  color: #fff;
  display: block;
  font-weight: 100;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: 26px;

  >div {
    padding: 0 2px;
    border-radius: 3px;
    display: inline-block;
  }

  .days {
    color: #fff;
    display: inline-block;
    position: relative;
    min-width: 30px;
    font-size: 28px;
  }

  .smalltext {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
  }
}

.landing-section {
  background: rgb(30, 40, 66);
  background: linear-gradient(180deg, rgba(30, 40, 66, 1) 20%, rgba(56, 60, 89, 1) 90%);
  color: white;
  text-align: center;
  padding-bottom: 30px;

  .landing-inner {
    background: rgb(30, 40, 66);
    background: linear-gradient(180deg, rgba(30, 40, 66, 1) 20%, rgba(56, 60, 89, 1) 90%);
    margin: 0 auto;
    max-width: 1024px;
  }

  img {
    margin: 0 auto;
    max-width: 1024px;
  }

  h3 {
    color: white;
  }
}

.video {
  max-width: 800px;
  margin: 0 auto;
}

.video-caption {
  font-size: 17px;
  margin: 20px auto;
  max-width: 780px;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;

  iframe,
  object,
  embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.button {
  margin: 30px 0;
  text-align: center;

  a {
    background: @yellow;
    border-radius: 6px;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
    color: #222;
    display: inline-block;
    font-family: 'open sans', Sans-Serif;
    font-size: 28px;
    line-height: 34px;
    margin: 0;
    max-width: 640px;
    overflow: hidden;
    padding: 12px 15px 15px;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 1px 2px #fff;

    transform: scale(1);
    animation: pulse 2s infinite;

    &:hover {
      opacity: 0.9;
    }
  }

  p {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
    text-align: center;
  }
}


.content {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 20px;
}

p {
  font-size: 20px;
}

.guests {
  text-align: center;

  img {
    margin: 10px 0;
    width: 33%;
    border-radius: 50%;
    border: 4px solid @orange;
  }
}

.six-breakthroughs {
  h3 {
    text-align: left;
  }
}

.pricing {
  margin-top: 30px;
}


ul.fa-ul {
  list-style: none;
  margin: 30px 0 30px 40px;

  i {
    margin-right: 4px;
    font-size: 26px;
    position: relative;
    top: 3px;
  }

  p {
    padding-left: 6px;
  }
}


.full-width-heading {
  margin: 5px auto;
  background: @blue;
  padding: 20px;
  text-align: center;

  h2 {
    max-width: 960px;
    margin: 0 auto;
    color: #fff;
    font-family: 'open sans condensed', Sans-Serif;
    line-height: 1.1;
    text-shadow: 3px 3px 3px #000;
  }

  h3 {
    margin: 0 auto;
    color: #fff;
    font-family: 'open sans condensed', Sans-Serif;
    line-height: 1.1;
    text-shadow: 3px 3px 3px #000;
  }

  .expiry-bar {
    background: @blue;
    margin: 0;
    padding: 10px;
    top: 0;
    width: 100%;
    z-index: 10;

    p {
      color: #fff;
      font-family: 'Open Sans', sans-serif;
      font-weight: 800;
      font-size: 14px;
      margin: 0;
      text-align: center;
      text-transform: uppercase;
    }

    .button {
      margin: 0;
    }
  }
}

.faqs {
  background: @blue;
  border: 5px solid;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 20px;

  h2 {
    margin: 26px 0;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
  }

  p {
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    padding: 10px;

    &:nth-child(odd) {
      margin-bottom: 10px;
      padding-top: 0;
    }

    .q-a {
      color: @yellow;
      font-family: "open sans", Sans-Serif;
      font-size: 22px;
      font-weight: normal;

    }
  }
}

.profit-gurantee {
  img {
    width: 33%;
    display: block;
    margin: auto;
  }
}

.signature {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-family: 'copydoodles_beckyregular', cursive !important;
}

.big-event-thanks {
  .top-bar {
    background: @blue;
  }

  .red-highlight {
    color: @red;
  }

  .info {
    text-align: center;
  }
}

.footer-legals {

  .footer-inner {
    margin: 0 auto;
    max-width: 960px;
    overflow: auto;
    padding: 0 20px 5px;
  }

  p {
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
  }

  .links {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin: 26px 0;
    padding: 0;

    li {
      margin-bottom: 10px;
    }

    a {
      color: #444;
    }
  }
}

@media only screen and (min-width: 768px) {
  .expiry-bar {
    text-align: center;


    p {
      display: inline-block;
      font-size: 22px;
    }

    .countdown-clock {
      display: inline-block;

      >div>span {
        font-size: 22px;
        min-width: 60px;
      }
    }

    .countdown-clock-alt {
      display: inline-block;

      >div>span {
        font-size: 28px;
        min-width: 60px;
      }
    }
  }

  h2 {
    margin: 26px 0;
    font-size: 48px;
    max-width: 1120px;
    text-align: center;
  }

  ul.fa-ul {
    margin: 30px 0 30px 60px;
  }

  .button {

    a {
      padding: 12px 30px 15px;
    }

  }

  .footer-legals {

    p {
      text-align: center;
    }
  }
}

@media only screen and (min-width: 1024px) {

  .intro {

    h1 {
      font-size: 54px;
    }
  }

  .expiry-bar {
    p {
      position: relative;
      top: -10px;
    }
  }
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animate-flicker {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
  animation: flickerAnimation 1s infinite;
}

// pulse effect
@keyframes pulse {
  0% {
    //transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }

  70% {
    //transform: scale(1);
    box-shadow: 0 0 0 10px rgba(55, 215, 0, 0);
  }

  100% {
    //transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(55, 215, 0, 0);
  }
}