* {
    -webkit-font-smoothing: antialiased;
}
html,
body {
    height: 100%;
}
body {
    font-family: "Roboto", sans-serif;
}
.font-weight-black {
    font-weight: 800;
}
.btn {
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 15px;
    min-width: 180px;
    font-size: 18px;
}
.btn-secondary {
    background-image: -webkit-gradient(linear, left top, right top, from(#35c9bf), to(#18988b));
    background-image: linear-gradient(90deg, #35c9bf 0%, #18988b 100%);
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    border: none;
}
.btn-gray {
    color: #fff;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    border: none;
}
.btn-lg {
    min-width: 350px;
    border-radius: 30px;
    padding: 15px;
}
#featured {
    background-image: -webkit-gradient(linear, left top, right top, from(#00b9a7), to(#031997));
    background-image: linear-gradient(90deg, #00b9a7 0%, #031997 100%);
    color: #ffffff;
    height: 70%;
}
#featured h1 {
    font-size: 5vw;
}

.result-section {
    font-size: 2vw;
}

#quiz-heading {
    background-image: -webkit-gradient(linear, left top, right top, from(#00b9a7), to(#031997));
    background-image: linear-gradient(90deg, #00b9a7 0%, #031997 100%);
    color: #ffffff;
}
.progress {
    border-radius: 1rem;
    background: #d9dfe4;
}
.quiz {
    max-width: 900px;
}
.quiz .status {
    font-size: 3vw;
}
.quiz .options {
    list-style: none;
    padding: 0;
}
.quiz .options a {
    display: block;
    padding: 15px 10px 15px 40px;
    border: 1px solid #d9dfe4;
    border-radius: 0.5rem;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}
.quiz .options a:hover {
    border: 1px solid #d9dfe4;
    background: rgba(255, 255, 255, 0.5);
}
.quiz .options a::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: 1px solid #d9dfe4;
    border-radius: 50%;
    left: 10px;
    top: 50%;
    margin-top: -8px;
}
.quiz .options a.selected {
    background: rgba(255, 255, 255, 0.5);
}
.quiz .options a.selected::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: url(../images/check.svg) no-repeat center,
        -webkit-gradient(linear, right top, left top, from(#35c9bf), to(#18988b));
    background: url(../images/check.svg) no-repeat center,
        linear-gradient(-90deg, #35c9bf 0%, #18988b 100%);
    border: 1px solid #d9dfe4;
    border-radius: 50%;
    left: 10px;
    top: 50%;
    margin-top: -8px;
}

/* Forms */
select.form-control {
    height: 56px;
    padding: 15px 20px 15px 20px;
    border: 1px solid #d9dfe4;
    background: rgba(255, 255, 255, 0.5) url(../images/arrow-down.svg) no-repeat
        right 10px center;
}
.custom-checkbox,
.custom-radio {
    padding: 15px 20px 15px 40px !important;
    border: 1px solid #d9dfe4;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    border-radius: 0.5rem;
}
.custom-text {
    padding: 15px 20px 15px 20px !important;
    border: 1px solid #d9dfe4;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    border-radius: 0.5rem;
    height: auto;
}
.custom-control-label {
    width: 100%;
    color: #0a2955;
    font-weight: 700;
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: transparent;
    background: -webkit-gradient(linear, right top, left top, from(#35c9bf), to(#18988b));
    background: linear-gradient(-90deg, #35c9bf 0%, #18988b 100%);
}
.custom-control-input:focus,
.custom-checkbox .custom-control-label::before {
    border-color: #d9dfe4 !important;
}
.custom-control-input:focus ~ .custom-control-label::before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

footer p {
    color: #ffffff;
}
footer a {
    color: #ffffff;
}
footer .copyright {
    font-size: 0.8em;
    margin-top: 2em;
}
@media (min-width: 1281px) {
    #featured h1 {
        font-size: 70px;
    }
}
@media (max-width: 991px) {
    #featured h1 {
        font-size: 2.3rem;
    }
}
