/*reset*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*main*/
a {
  text-decoration: none;
  cursor: pointer !important;
}
ul li {
  list-style: none;
}
html {
  font-size: 55%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}
body {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.8rem;
  min-width: 320px;
  line-height: 1.1;
  color: #fff;
  background: #000;
  height: 100%;
  padding: 3rem 0;
}
:focus {
  outline: 0;
}
.slider-block{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.slider-item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.7s linear;
}
.slider-item.active{
  opacity: 1;
}
.slider-item.item1{
  background-image: url(../img/bg1.jpg);
}
.slider-item.item2{
  background-image: url(../img/bg2.jpg);
}
.slider-item.item3{
  background-image: url(../img/bg3.jpg);
}
.header{
  font-size: 3.9rem;
  position: relative;
}
.container{
  margin: 0 auto;
  max-width: 900px;
  width: 90%;
  z-index: 10;
}
/* STEPS */
.step{
  display: none;
  position: relative;
  vertical-align: middle;
}
.step.visible{
  display: block;
}
.step p{
  font-family: Arial serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pagination{
  margin: 4rem 0;
  text-align: center;
  max-width: 400px;
}
.pagination-item{
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 3rem;
  background-color: #962C24 ;
  font-size: 2.6rem;
  color: #fff;
  line-height: 5rem;
  font-weight: 700;
  border-radius: 100%;
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  transition: all 0.2s linear;
  position: relative;
}
.pagination-item.active{
  background-color: #00a2ff;
}
.step-title{
  font-size: 4rem;
  margin: 5rem 0;
}
.btn-block{
  margin: 4rem auto 2rem;
  text-align: center;
}
.btn{
  display: inline-block;
  width: 26%;
  max-width: 300px;
  margin: 1rem;
  text-decoration: none;
  font-family: Arial;
  font-size: 2rem;
  color: #fff;
}
.btn img{
  border-radius: 50%;
  display: block;
  margin-bottom: 1rem;
}
.btn:hover img{
  border: 5px solid #bf382e;
}
.btn-start{
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 10px;
  background: #00a2ff;
  color: #fff;
  padding: 3rem 5.5rem;
  display: inline-block;
  transition: all .2s linear;
}
.btn-start:hover{
  background-color: #bf382e;
}
@media (max-width:960px) {
  html {
    font-size: 45%;
  }
  .header{
    font-size: 3rem;
  }
}
@media (max-width:600px) {
  html {
    font-size: 40%;
  }
  .step-title{
    font-size: 3rem;
  }
}
