@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*
{
    padding:0;
    margin:0;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
}
.quiz
{
    width:700px;
    max-width:90%;
    margin: 0 auto;
    position: relative;
    min-height:300px;
}
@media screen and (max-width: 767px)
{
    .quiz
    {
        width:90%;
    }
}
.quiz fieldset
{
    position:absolute;
    left:0;
    top:0;
    right:0;
    border:none;
    background:#e5e5e5;
    padding:30px;
    padding-top:60px;
    opacity:0;
    transition:all .3s;
    z-index:1;
    border-radius:5px;
    overflow:hidden;
}
.quiz fieldset.active
{
    opacity:1;
    z-index:10;
}
.quiz fieldset legend
{
    float: left;
    width:100%;
    padding-bottom:30px;
    font-size:18px;
}
.quiz fieldset input
{
    width:1px;
    height:1px;
    opacity:0;
}
.quiz fieldset hr
{
    height: 30px;
    z-index: -1;
    visibility: hidden;
    width:0!important;
}
.quiz .answers
{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    clear:both;
}
.quiz .answers label
{
    display:grid;
    width:70px;
    margin:0 auto;
    align-items:center;
    height:40px;
    text-align:center;
    cursor:pointer;
    transition:all .3s;
    color:#fff;
    font-size:20px;
    border-radius:3px;
    background:#e6417d;
}
.quiz .answers label:hover
{
    opacity:.7;
}
.quiz::before
{
    content:attr(data-progress);
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:20;
    text-align:center;
    height:25px;
    line-height:25px;
    font-size:14px;
    transition:all .3s;
    border-bottom:1px solid #a4b82b;
}
.quiz::after
{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:var(--line);
    z-index:18;
    background-color:#a4b82b;
    height:25px;
    transition:all .3s;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}
#chartId
{
    width:700px;
    max-width:90%;
    height:auto !important;
    margin:10vh auto 0 auto;
}
.hide
{
    display:none !important;
}
.section
{
    width:100%;
}
.section.black
{
    background-color:#000;
}
.section.gray
{
    background-color:#efefef;
}
.section .hero
{
    height:calc( 100vh - 200px );
    padding:100px 0;
    display:grid;
    align-items:center;
}
.hero *
{
    cursor:default;
}
.hero h1
{
    color: rgb(230, 66, 124);
    font-size: 82px;
    font-weight:500;
    text-align:center;
}
@media screen and (max-width: 767px)
{
    .hero h1
    {
        font-size:60px;
        line-height:1.05;
    }
}
.hero h1 small
{
    font-size:28px;
    color:#fff;
    display:block;
    font-weight:100;
}
@media screen and (max-width: 767px)
{
    .hero h1 small
    {
        font-size:23px;
    }
}
.hero h2
{
    text-align:center;
    font-weight:100;
    color:#fff;
    font-size:28px;
    margin-top:20px;
}
@media screen and (max-width: 767px)
{
    .hero h2
    {
        font-size:23px;
    }
}
.hero svg
{
    width:40px;
    height:40px;
    display:block;
    margin:100px auto 0 auto;
}
.bounce-top{-webkit-animation:bounce-top 1.5s infinite both;animation:bounce-top 1.5s infinite both}
@-webkit-keyframes bounce-top{0%{-webkit-transform:translateY(-45px);transform:translateY(-45px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:1}24%{opacity:1}40%{-webkit-transform:translateY(-24px);transform:translateY(-24px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}65%{-webkit-transform:translateY(-12px);transform:translateY(-12px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}82%{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}93%{-webkit-transform:translateY(-4px);transform:translateY(-4px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}25%,55%,75%,87%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1}}@keyframes bounce-top{0%{-webkit-transform:translateY(-45px);transform:translateY(-45px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:1}24%{opacity:1}40%{-webkit-transform:translateY(-24px);transform:translateY(-24px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}65%{-webkit-transform:translateY(-12px);transform:translateY(-12px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}82%{-webkit-transform:translateY(-6px);transform:translateY(-6px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}93%{-webkit-transform:translateY(-4px);transform:translateY(-4px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}25%,55%,75%,87%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1}}
.section .text-content
{
    width:900px;
    max-width:90%;
    margin:0 auto;
    padding:100px 0;
}
.section .text-content p
{
    color:#000;
    font-size:17px;
    line-height:22px;
    margin-bottom:33px;
}
.section .text-content p b,
.section .text-content p strong
{
    font-weight:700;
}
.section .text-content img
{
    display:block;
    margin:0 auto;
    max-width:100%;
    height:auto;
    margin-bottom:30px;
}
.section .button
{
    margin-top:40px;
    margin-bottom:100px;
    text-align:center;
}
.section .text-content .button h2,
.section .hero .button h2
{
    text-align:center;
    font-weight:300;
    color:#000;
    font-size:28px;
    margin-bottom:30px;  
    cursor:default;
}
.section .hero .button h2
{
    color:#fff;
}
@media screen and (max-width: 767px)
{
    .section .text-content .button h2
    {
        font-size:23px;
    }
}
.section .hero .button
{
    margin-top:0;
    margin-bottom:0;
}
.section .button a,
.get-results
{
    display:inline-block;
    padding:10px 20px;
    color:#fff;
    font-size:20px;
    border-radius:3px;
    background:#e6417d;
    text-decoration:none;
    transition:all .3s;
}
.section .button a:hover,
.get-results:hover
{
    opacity:.7;
}
.section.copyright
{
    background:#000;
    padding-top:100px;
    padding-bottom:20px;
}
.section.copyright .footer
{
    width:900px;
    max-width:90%;
    display:grid;
    grid-template-columns:1fr 1fr;
    margin:0 auto;
}
@media screen and (max-width: 767px)
{
    .section.copyright .footer
    {
        display:block;
    }
}
.section.copyright .footer h3,
.section.copyright .footer h4
{
    color:#fff;
    font-size:24px;
    margin-bottom:24px;
    font-weight:300;
    cursor:default;
}
@media screen and (max-width: 767px)
{
    .section.copyright .footer > div
    {
        margin-bottom:30px;       
    }    
}
.section.copyright .footer h4
{
    opacity:.6;
}
.section.copyright .footer ul
{
    list-style:none;
    padding:0;
}
.section.copyright .footer ul li,
.section.copyright .footer p
{
    font-size:18px;
    display:block;
    margin-bottom:15px;
}
.section.copyright .footer p
{
    font-size:14px;
    color:#fff;
    opacity:.6;
}

.section.copyright .footer ul li a
{
    text-decoration:none;
    color:#fff;
    font-weight:100;
}
.section.copyright .footer ul li a:hover
{
    opacity:.7;
}
.section.black-quiz
{
    height:100vh;
    display:grid;
    align-items:center;
}
.result-list ul
{
    list-style:none;
    padding-left:50px;
    margin-bottom:40px;
}
.result-list ul li
{
    display:block;
    margin-bottom:10px;
}
.result-list ul li::before
{
    content:'';
    display:inline-block;
    width:10px;
    height:10px;
    margin-right:10px;
    border-radius:50%;
    background:#e6417d;
}
.result-list ul li b
{
    font-weight:700;
}