@import "reset.css";
@import url(https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;1,500&display=swap);
/*
font-family: 'Ubuntu', sans-serif;
*/
/* general */
html {
  min-height: 100%;
  height: 100%;
  position: relative;
}
body {
  position: relative;
  min-height: 100%;
  height: 100%;
  color: #fff;
  /* background: #0e0e0e url(bg.png) repeat center; */
  background-color: #1a1a1a;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
}
/* BTN */
.btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn {
  border: none;
  font-family: "Ubuntu", sans-serif;
  display: block;
  text-align: center;
  max-width: 329px;
  width: 100%;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  font-style: italic;
  text-transform: uppercase;
  background: none;
  color: #fff;
  margin: 18px auto 0;
  padding: 31px 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:after {
  content: "";
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
      160deg, #00ffff, #ff0050);
  position: absolute;
  transform: skew(-15deg);
  z-index: 0;
  transition: all 0.3s ease;
  opacity: 0;
}
.btn__decor {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  z-index: 0;
}
.btn__decor:nth-child(1) {
  background-color: #00ffff;
  top: -5px;
  left: -5px;
}
.btn__decor:nth-child(2) {
  background-color: #ff0050;
  top: 5px;
  left: 5px;
}
.btn__decor:nth-child(3) {
  background-color: #000;
  top: 0;
  left: 0;
}
.btn span:last-child {
  position: relative;
  z-index: 1;
}
.btn-wrap .btn {
  max-width: 45%;
}
.btn:hover,
.btn:active,
.btn:focus {
  color: #000;
}
.btn:hover:after,
.btn:active:after,
.btn:focus:after {
  opacity: 1;
}
@media (max-width: 750px) {
  .btn {
    max-width: 220px;
    font-size: 16px;
    margin-top: 15px;
    padding: 18px 10px;
  }
  .btn__decor:nth-child(1) {
    top: -3px;
    left: -3px;
  }
  .btn__decor:nth-child(2) {
    top: 3px;
    left: 3px;
  }
}
/* CONTENT */
.content {
  min-height: 100%;
  max-width: 606px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.title {
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 30px;
}
.text {
  font-size: 21px;
  font-weight: 500;
  padding-bottom: 20px;
  letter-spacing: 1px;
}
@media (max-width: 750px) {
  .content {
    max-width: 100%;
  }
  .title {
    font-size: 21px;
    padding-bottom: 21px;
    letter-spacing: 2.5px;
  }
  .text {
    font-size: 15px;
    padding-bottom: 11px;
    letter-spacing: 0.4px;
    line-height: 1.2;
  }
}
/* step */
.stepbox {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 50px 20px 34px;
  margin: auto 0 13vh;
}
.step {
  display: none;
  width: 100%;
  max-width: 465px;
  margin: 0 auto;
}
.step.active {
  display: block;
}
@media (max-width: 750px) {
  .steps {
    padding: 32px 20px 21px;
  }
  .step {
    max-width: 282px;
  }
}
/* header */
.header {
  position: relative;
  width: 100%;
  padding: 27px 0 10px;
}
.header__logo {
  max-width: 255px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .header {
    padding-top: 16px;
  }
  .header__logo {
    max-width: 157px;
  }
}
/* sideber */
.sideber {
  position: absolute;
  right: 24px;
  top: 0;
}
.sideber__item {
  padding-top: 28px;
}
.sideber img {
  max-width: 58px;
  height: auto;
}
@media (max-width: 750px) {
  .sideber {
    right: 14px;
  }
  .sideber__item {
    padding-top: 18px;
  }
  .sideber img {
    max-width: 36px;
  }
}
/* footer */
.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  background-color: #000;
  position: relative;
}
.footer::after {
  content: "@chattebouillante75";
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: -40px;
  left: 20px;
}
.footer img {
  max-width: 44px;
  height: auto;
}
@media (max-width: 750px) {
  .footer {
    padding: 12px 0;
  }
  .footer::after {
    font-size: 13px;
    top: -24px;
    left: 13px;
  }
  .footer img {
    max-width: 28px;
  }
}
/* vegas */
.video-slide {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.input[type=text] {
	text-align: center;
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 90%;
    height: 50px;
    outline: 0;
    border: 3px solid #f74f86;
    font-size: 2em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 2px;
}
.sideber__item, .footer__item {
	cursor: pointer;
}