html {
    height: 100%;
    font-size: 0.8333333333333333vw;
}
body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    color:#303030;
    min-height: 100vh;
}
a {
    color: #F2314F;
}
a:hover {
    color:#F2314F;
    text-decoration: none;
}
.bg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-fixed {
    background-attachment: fixed;
}
.section-pb-quiz {
    flex: 1 0 0;
    padding: 2rem;
}
/* HEADER */
.header,
.footer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 5rem;
    padding: 0 3rem;
    overflow: hidden;
}
.logo,
.phone {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color:#303030;
}
/* QUIZ */
.pb-quiz {
    margin: auto;
    height: 42rem;
    width: 84rem;
    min-height: 35rem;
    max-width:100%;
    max-height:100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.pb-quiz .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    z-index: 1;
}
.pb-quiz .bg,
.pb-quiz .bg .img {
    transition: -webkit-transform 1.3s cubic-bezier(.8,0,0,1);
    transition: transform 1.3s cubic-bezier(.8,0,0,1);
    transition: transform 1.3s cubic-bezier(.8,0,0,1),-webkit-transform 1.3s cubic-bezier(.8,0,0,1);
}
.pb-quiz .bg .img {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
}
.pb-quiz .bg.active,
.pb-quiz .bg.active .img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.pb-quiz .form-title {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.pb-quiz .form-description p {
    font-size: 1.2rem;
}
.pb-quiz .form-check-input:checked {
    background-color: #FE6D0A;
    border-color: #FE6D0A;
    outline:none;
    box-shadow:none;
}
.pb-quiz .form-check-label {
    cursor:pointer;
}

/* BTN */
.btn {
    background:#F2314F;
    background-image: linear-gradient(to right, #f31843 0%, #f13b54 100%);
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
    cursor:pointer;
    box-shadow: 0 10px 35px rgba(231,66,112,.7);
    padding: 1rem 3rem;
    color:#fff;
}
.btn:hover,
.btn:focus {
    box-shadow: none;
    outline:none;
    border: none;
    color:#fff;
}
.btn-prev {
    background: #FF6A35;
    background-image: linear-gradient(to right, #ff7032 0%, #ff833f 100%);
}
/* btn disabled */
.btn.disabled {
    background:#bbbbbb !important;
    text-decoration: none !important;
    box-shadow:none !important;
    cursor:default;
}
.btn.disabled img {
    display: none !important;
}
.btn.disabled:hover span {
    -webkit-transform: none;
    transform: none;
}
.pb-quiz .progress {
    height: 1.25rem;
}
.pb-quiz .progress-bar {
    background-color: #F2314F;
    font-size: .75rem;
    line-height: 1.25rem;
    background-size:2.5rem 2.5rem;
}

@media (max-width:768px) {
    html {
        font-size: 10px;
    }
    .header, .footer {
        padding: 0;
    }
    .section-pb-quiz {
        width: auto;
        height: auto;
        padding: 0;
        flex: 1 0 auto;
    }
    .pb-quiz .quiz-form {
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .pb-quiz {
        width: 100%;
        height: 100%;
        box-shadow:none;
        top: 0;
        -webkit-transform: none;
        transform: none;
        margin:0 auto;
    }
    .pb-quiz .bg.active,
    .pb-quiz .bg.active .img {
        position: relative;
        height: auto !important;
        -webkit-transform: none;
        transform: none;
        padding-top: 50%;
    }
    .pb-quiz .bg.active {
        padding: 0;
    }
    .pb-quiz .bg.active + .bg {
        position: absolute;
    }
}