* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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%
}

iframe {
    position: absolute !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important
}

body {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    min-width: 320px;
    line-height: 1.1;
    color: #ffe9dc;
    height: 100%;
    padding: 3rem 0
}

:focus {
    outline: 0
}

.slider-block {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1
}

.slider-block:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3)
}

.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(../images/bg-1.jpg)
}

.slider-item.item2 {
    background-image: url(../images/bg-2.jpg)
}

.slider-item.item3 {
    background-image: url(../images/bg-3.jpg)
}

.header {
    font-size: 3.9rem;
    position: relative
}

.center {
    margin: 0 auto;
    max-width: 900px;
    width: 90%;
    z-index: 10
}

.step {
    display: none;
    flex-direction: column;
    position: relative;
    vertical-align: middle
}

.step.visible {
    display: flex;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    width: 100%
}

.step p {
    font-family: Arial serif;
    font-size: 2.4rem;
    margin-bottom: 1rem
}

.pagination {
    margin: 4rem 0;
    max-width: 400px
}

.pagination-item {
    width: 5.2rem;
    height: 5.2rem;
    margin: 0 3rem;
    background-color: #2f2f2f;
    font-size: 2.6rem;
    color: #fff;
    line-height: 5rem;
    font-weight: 400;
    border-radius: 100%;
    display: inline-block;
    box-sizing: content-box;
    transition: all 0.2s linear;
    position: relative;
    text-align: center
}

.pagination-item.active {
    background-color: #ff9840;
}

.step-title {
    font-size: 4rem;
    margin: 5rem 0
}

.btn-block {
	margin: 1em;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.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: 20px;
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #000;
}

.btn:hover img {
    border: 2px solid #ffdeb4;
}

.btn:hover span {
    color: #4540ff;
}

.btn-start {
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 10%;
    background: #ff9840;
    color: #fcfcfc;
    padding: 3rem 5.5rem;
    display: inline-block;
    transition: all .2s linear
}

.btn-start:hover {
    background-color: #ffcca0
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width:960px) {
    html {
        font-size: 45%
    }

    .header {
        font-size: 3rem
    }
}

@media (max-width:600px) {
    html {
        font-size: 40%
    }

    body {
        display: flex;
        flex-direction: column
    }

    .step-title {
        font-size: 3rem
    }

    .step p {
        font-size: 2.8rem
    }

    .container {
        display: flex;
        flex-grow: 1
    }

    .step-inner {
        flex-grow: 1
    }
}

@media (max-width:540px) {
    .btn {
    width: 41%;
    margin: auto;
    }
}