@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
body {
  min-width: 320px;
  overflow-x: hidden;
}
.container {
  font-family: 'Open Sans', sans-serif;
  background-color: black;
  color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  min-width: 320px;
  min-height: calc(100vh - 60px);
  min-width: 100vw;
}
.logo-wrapper {
  padding-top: 15px;
  text-align: center;
}
.info-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: calc(100vh - 150px);
}
@media all and (max-width: 1280px) {
  .info-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }
}
.info {
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .info {
    margin-top: 100px;
  }
}
@media all and (max-width: 768px) {
  .info {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 768px) and screen and (-ms-high-contrast: active), all and (max-width: 768px) and (-ms-high-contrast: none) {
  .info {
    margin-top: 15px;
  }
}
.footer-wrapper {
  bottom: 0;
  position: relative;
  width: 100vw;
  background: linear-gradient(to bottom, #020708, #222224);
  min-height: 60px;
  display: table;
  text-align: center;
  box-sizing: border-box;
  flex-flow: row wrap;
}
.footer-wrapper img {
  max-width: 100%;
}
.footer-wrapper .footer-img {
  display: table-cell;
  vertical-align: middle;
  height: 60px;
}
.footer-line {
  position: absolute;
  top: -2px;
  height: 2px;
  left: 0;
  right: 0;
  background: #00CFFF;
}
.info__title-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.info__title {
  color: #00CFFF;
  font-size: 140px;
}
@media all and (max-width: 768px) {
  .info__title {
    font-size: 100px;
  }
}
.info__title2 {
  font-size: 60px;
  padding-top: 25px;
  padding-left: 30px;
  line-height: 60px;
}
@media all and (max-width: 768px) {
  .info__title2 {
    font-size: 40px;
    line-height: 40px;
    padding-top: 20px;
    padding-left: 15px;
  }
}
.info__subtitle {
  font-size: 33px;
}
.info__subtitle span {
  font-weight: 600;
}
@media all and (max-width: 768px) {
  .info__subtitle {
    font-size: 22px;
  }
}
.info__divider-wrapper {
  padding: 15px;
}
.info__divider {
  height: 2px;
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
  background: #00CFFF;
}
@media all and (max-width: 768px) {
  .info__divider {
    max-width: 200px;
  }
}
.info__bonus-code {
  color: #00CFFF;
}
/* Pipaluk */
.button--pipaluk {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  margin-top: 25px;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 32px;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #fff;
  border-radius: 25px;
}
.button--pipaluk::before,
.button--pipaluk::after {
  content: '';
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.3s, background-color 0.3s;
  transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}
.button--pipaluk::before {
  border: 2px solid #2CBAF5;
}
.button--pipaluk.button--inverted::before {
  border-color: #fff;
}
.button--pipaluk::after {
  background: #089DDB;
  box-shadow: 1px 1px 30px 10px #0648a0 inset;
  border: 2px solid #089DDB;
}
.button--pipaluk.button--inverted::after {
  background: #fff;
}
.button--pipaluk:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.button--pipaluk::before,
.button--pipaluk:hover::after {
  -webkit-transform: scale3d(0.7, 0.7, 1);
  transform: scale3d(0.7, 0.7, 1);
}
.button--pipaluk:hover::after {
  background-color: #2CBAF5;
}
.button--pipaluk.button--inverted:hover::after {
  background-color: #fff;
}
/*end pipaluk*/
.step {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  margin-top: 15px;
  border: 2px solid #00CFFF;
  text-align: center;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.step:hover {
  box-shadow: 1px 1px 10px 10px rgba(255, 255, 255, 0.2);
}
.step:after {
  content: '';
  position: absolute;
  width: 65px;
  height: 1px;
  background: rgba(0, 207, 255, 0.25);
  top: 50%;
  left: 165px;
}
@media all and (max-width: 768px) {
  .step:after {
    display: none;
  }
}
.step:before {
  content: '';
  position: absolute;
  width: 175px;
  height: 175px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  top: -22px;
  left: -27px;
  background-image: url('../images/step2.png');
  animation: rotating 40s linear infinite;
}
.step:last-of-type {
  margin-bottom: 60px;
}
.step:last-of-type:after {
  display: none;
}
.step:last-of-type:before {
  background-image: url('../images/step3.png');
}
.step:first-of-type:before {
  background-image: url('../images/step1.png');
}
@media all and (max-width: 768px) {
  .step {
    margin: 0 auto;
    margin-top: 15px;
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  flex-flow: row wrap;
}
.step__num {
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.step__divider {
  height: 2px;
  background: linear-gradient(to right, black, #00CFFF 50%, black 100%);
  width: 50%;
  margin: 0 auto;
  margin-bottom: 5px;
}
.step__title {
  font-size: 14px;
  margin-bottom: 30px;
  cursor: default;
  padding-right: 15px;
  padding-left: 15px;
}
