html {
    scroll-behavior: smooth;
}
*:focus-visible {
outline: none !important;
}
a {
    transition: all .3s ease-in-out;
}

.page-template-template-quiz {
    overflow: hidden;
    margin: 0;
}


#loader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center
}

#loader .loading img {
    width: 100% !important;
    max-width: 300px !important
}
#loader .loading::before{content: none;}
#loader .loading {
    width: 200px;
    height: 100px;
    background-image: url(../images/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    animation: fadeanimation linear 2s;
    -webkit-animation: fadeanimation linear 2s;
    -moz-animation: fadeanimation linear 2s;
    -o-animation: fadeanimation linear 2s;
    -ms-animation: fadeanimation linear 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite
}

@keyframes fadeanimation {
    0% {
        opacity: 1;
    }

    51% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeanimation {
    0% {
        opacity: 1;
    }

    51% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeanimation {
    0% {
        opacity: 1;
    }

    51% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeanimation {
    0% {
        opacity: 1;
    }

    51% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeanimation {
    0% {
        opacity: 1;
    }

    51% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.2, 1.2);
    }

    100% {
        -webkit-transform: scale(1, 1);
    }
}

@keyframes run {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes run {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.nav-dots {
    position: fixed;
    top: 80px;
    right: 10%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1024;
    transition: all 0.3s;
}
.first-section .nav-dots {
    top: 200px;
    transition: all 0.3s;
}

.white-dot .nav-dot {
    background: #fff;
    border-color: black;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    list-style: none;
    background: #000;
    transition: all 0.3s;
    opacity: .12;
}

.nav-dot:not(:last-of-type) {
    margin-bottom: 10px;
}

.nav-dot:hover,
.nav-dot.is-active {
    opacity: 1;
    background: #FECE2F;
}
.disable-nav{pointer-events: none;}
.banner {
    height: 100vh;
}

.section-bg {
    font-weight: bold;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position-x: 50%;
    background-position-y: 0px;
    overflow: hidden;
    padding: 5% 0;
    display: flex;
    align-items: center;
    position: relative;
}

.color-white * {
    color: #fff;
}

.color-black * {
    color: #000;
}

.align-end {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}

.align-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.imgs {
    text-align: center;
}

#main .content .imgs img {
    max-width: 120px;
}

.imgs p {
    font-size: 21px;
    line-height: 1.2;
    margin: 20px 0 0;
}

.max-730 {
    max-width: 730px;
    margin: auto;
}

#main .banner-content {
    text-align: center;
}

#main .banner-content h1 {
    font-size: 54px;
    line-height: 1.16 !important;
    margin-bottom: 5px;
    font-weight: bold;
}

#main .banner-content p {
    font-weight: normal;
    font-size: 25px;
    line-height: 1.5;
    margin: 0 0 40px;
}

.btn-yellow {
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 24px;
    color: #191919;
    padding: 15px 98px 15px 40px;
    border-radius: 25px;
    background: #ffce00;
    position: relative;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: auto;
    font-weight: 700;
    border: 0;
    transition: all .3s ease-in-out;
    font-family: 'roboto';
    cursor: pointer;
}

.btn-yellow:after {
    content: "";
    background: url(../images/arrow.svg);
    height: 16px;
    width: 16px;
    position: absolute;
    background-size: 100% 100%;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.btn-yellow:hover:after {
    right: 30px;
}

.btn-yellow:hover {
    background: #E6242F;
    color: #191919;
}

#main .banner-content {
    margin-top: 60px;
}

.text-center {
    text-align: center;
}

#main .content h2 {
    font-size: 34px;
    line-height: 1.29 !important;
    font-weight: bold;
    margin-top: 1.2%;
}

#main .content h3 {
    position: relative;
    font-family: 'roboto';
    font-size: 20px;
}

.scroll-next {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: auto;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}
.banner .scroll-next {
    position: relative;
    left: unset;
    bottom: unset;
    transform: translateX(0%);
}

.stroke-black svg path {
    stroke: #000;
}

.stroke-white svg path {
    stroke: #fff;
}

.question-box {
    max-width: 1060px;
    padding: 20px 50px 20px 100px;
    padding: 4% 5% 4% 5%;
    margin-bottom: 6%;
    border-radius: 28px;
    margin-top: -1px;
}
.question-box .gfield_radio{margin-bottom: -20px;}
.red-box:before {
    content: "";
    position: absolute;
}

.red-box .question-box {
    background: #C40505;
}

.grey-box .question-box {
    background: #d9d9d9;

}

.bg-shadow:before {
    position: absolute;
    content: "";
    background: url(../images/red-box.svg);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.black-box .bg-shadow:before {
    background: url(../images/black-box.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.grey-box .bg-shadow:before {
    background: url(../images/grey-box.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-shadow {
    position: relative;
    padding-bottom: 2%;
    max-height: 30vh;
}

.bg-shadow.shadow-white:before {
    background: url(../images/black-box.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-shadow img {
    max-height: 25vh;
    position: relative;
}

.black-box .question-box {
    background: #000;

}


.w-58 {
    width: 58px;
}

.result-sec {
    padding: 140px 0 180px;
    font-weight: 400;
}

.result-sec .section-content {
    max-width: 1360px;
    width: 100%;
}

.result-img {
    background: #fff;
    border-radius: 24px;
    padding: 55px 25px 75px;
    margin-right: 40px;
}

.result-img img {
    max-width: 380px;
    width: 100%;
}

.result-content {
    text-align: left;
    margin-left: 40px;
}

.result-content .btn-yellow {
    margin: 35px 0px 0;
}

#main .content .result-content p {
    margin-top: 0;
}

#main .content .result-content h2 {
    line-height: 1.24 !important;
    margin-bottom: 0;
	max-width: 100%;
}

.home {
    --deg: 0deg
}

.round-circal {
    position: relative;
    margin: 0 auto;
    width: 50px;
    height: 58px;
    transform: rotate(var(--deg));
}

.round-circal::before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 6px;
    height: 6px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
}

.color-black .round-circal::before {
    background-color: #000;
}
.color-black .design {
    filter: invert(0%) sepia(25%) saturate(7500%) hue-rotate(82deg) brightness(0%) contrast(105%);
}

.design {
    margin: 0 auto;
    height: 35px;
    width: 58px;
    background: url(../images/curve.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    border-radius: 150px 150px 0 0;
}

.quiz-form .gfield_radio {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    justify-content: space-between;
}

.quiz-form .gfield_radio .gchoice {
    width: calc(50% - 15px);
    position: relative;
    margin-bottom: 25px;
}

.quiz-form .gfield-choice-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
    appearance: none;
}

.quiz-form .gchoice label {
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    display: block;
    padding-top: 5px;
    cursor: pointer;
}

.quiz-form .gchoice label:before {
    content: '';
    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: #fff;
    transform: scale(1.1);
    transition: .3s;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 0;
}

.gchoice .gfield-choice-input:checked+label::before {
    transform: scale(0);
}

.quiz-form .gchoice label:after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FECE2F;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: .3s;
    transform: scale(0);
    top: 0;
}

.gchoice .gfield-choice-input:checked+label::after {
    transform: scale(1.1);
}

.page-template-template-quiz header {
    position: absolute;
    width: 100%;
}

.page-template-template-quiz.fusion-top-header .fusion-header {
    background: transparent;
}
.page-template-template-quiz.fusion-top-header .fusion-header .fusion-main-menu>ul>li:hover > a:not(.awb-icon-sliding-bar){
    background-color: transparent !important;
    color: #fff!important;
}
.page-template-template-quiz.fusion-top-header .fusion-logo-link { display: none;}
.page-template-template-quiz.fusion-top-header .fusion-standard-logo { width: 200px;}
footer.fusion-footer-widget-area{display: block !important;}
.curved{top: -30px;}
.loading {position: relative; pointer-events: none;}
.loading:before {
    content: '';
    position: absolute;
    border: 4px solid #000000;
    border-top: 4px solid #fece01;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    right: -50px;
    top: 10px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  @media (max-width: 1366.98px) {
      .nav-dots {
          right: 30px;
        }
    }
    body.touchAction .section-bg {
        background-attachment: unset !important;
        background-position-x: 0 !important;
        background-position-y: 0px !important;
    }    
@media (max-width: 1199.98px) {
    #main .content h2 { max-width: calc(100% - 90px); margin-left: auto; margin-right: auto; }
    .section-content {
        max-width: 970px;
    }

    #main .banner-content h1 {
        font-size: 52px !important;
        line-height: 1.2 !important;
    }

    #main .content h2 {
        font-size: 35px;
    }

    #main .banner-content p {
        font-size: 24px;
        line-height: 1.25;
        margin: 0 0 20px;
    }

    .imgs p {
        font-size: 19px;
        line-height: 1.3;
        margin: 10px 0 0;
    }


    .question-box {
        padding: 4%;
        margin-bottom: 5%;
    }

    .result-img {
        padding: 35px 55px 35px;
        margin-right: 00px;
    }

    .result-content {
        margin-left: 0;
    }

    .result-sec {
        padding: 80px 0;
    }
    .page-template-template-quiz.fusion-top-header .fusion-header{background-color: transparent !important;}
    .page-template-template-quiz.fusion-top-header .fusion-header .fusion-mobile-menu-icons a::before,
    .page-template-template-quiz.fusion-top-header .fusion-header .fusion-mobile-menu-icons a{color: #fff !important;}
}

@media (max-width: 1024.98px) {
    /* body .section-bg {
        background-attachment: unset !important;
        background-position-x: 0 !important;
        background-position-y: 0px !important;
    }     */
}
@media (max-width: 991.98px) {
    #main .banner-content h1 {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }

    #main .content h2 {
        font-size: 28px;
        margin-top: 2%;
        margin-bottom: 0;
    }

    #main .banner-content p {
        font-size: 22px;
        line-height: 1.25;
        margin: 0 0 20px;
    }

    .imgs p {
        font-size: 22px;
        line-height: 1.3;
        margin: 10px 0 0;
    }


    .imgs {
        margin-bottom: 20px;
    }

    .result-sec {
        padding: 60px 0;
    }

    .result-img {
        margin-bottom: 30px;
    }

    #main .content h3 {
        padding-bottom: 5px;
        font-size: 18px !important;
        min-height: 30px;
    }
    .curved{top: 0;}
    .design {
        height: 25px;
    }

    .round-circal {
        height: 40px;
    }

    .result-content {
        padding: 0 25px;
    }
    .quiz-form .gchoice label {
        padding-top: 0px;
    }
    .quiz-form .gfield_radio .gchoice {
        margin-bottom: 20px;
    }
    .quiz-form .gchoice label:before{
        top: 50%;
        transform: translateY(-50%);
    }
    .quiz-form .gchoice label:after{top: 50%;  transform: translateY(-50%) scale(0);}
    .gchoice .gfield-choice-input:checked+label::before {
        transform:translateY(-50%) scale(0);
    }
    .gchoice .gfield-choice-input:checked+label::after {
        transform:translateY(-50%) scale(1.1);
    }
    .scroll-next {
        position: unset;
        transform: translateX(0%);
        margin-top: 20px;
    }
    .section-bg{
        flex-direction: column;
    }
    .bg-shadow img { max-height: 22vh;}
    .page-template-template-quiz.fusion-top-header .fusion-standard-logo {
        width: 150px;
    }
    .banner {
        padding-top: 150px;
    }
    .first-section .nav-dots {
        top: 150px;
    }
    
}

@media (max-width: 767.98px) {
    html,body{overflow: scroll !important;}
    .section-bg {
        padding: 50px 0;
    }
    #main .banner-content h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    #main .content .result-content h2 {
        font-size: 26px !important;
    }

    #main .content h2 {
        font-size: 17px !important;
        margin-left: auto;
        margin-right: auto;
    }
    #question-11 .content h2 {max-width: 100%;}
    #main .banner-content p {
        font-size: 19px;
        line-height: 1.25;
        margin: 0 0 20px;
    }

    .imgs p {
        font-size: 17px;
        line-height: 1.3;
        margin: 10px 0 0;
    }

    #main .banner-content {
        margin-top: 20px;
    }

    .btn-yellow {
        padding: 11px 63px 11px 36px;
    }

    .btn-yellow:after {
        height: 13px;
        width: 13px;
        right: 35px;
    }

    .btn-yellow:hover:after {
        right: 25px;
    }

    .banner{padding-top: 100px !important;}
    .first-section .nav-dots {
        top: 120px;
    }
    .section-bg,
    .banner {
        height: auto;
    }

    .question-box {
        margin-bottom: 3%;
    }

    .nav-dots {
        top: 40px;
        right: 30px;
    }

    /* .nav-dot {
        width: 10px;
        height: 10px;
    } */

    .nav-dot:not(:last-of-type) {
        margin-bottom: 6px;
    }

    .result-content .btn-yellow {
        margin: 30px 0px 0;
    }

    .scroll-next svg {
        width: 25px;
    }
    .page-template-template-quiz.fusion-top-header .fusion-standard-logo {
        width: 100px;
    }
    .nav-dot {
        opacity: .12;
        border: 1px solid #fff;
    }
    .nav-dot:hover, .nav-dot.is-active {
        opacity: 1;
        border-color: #FECE2F;
    }
    .result-content p {
        font-size: 12px;
        line-height: 1.6;
    }
	  #main .banner-content {
        max-width: calc(100% - 50px);
        margin: 20px auto 0;
    }
}
@media screen and (max-width: 767px), 
screen and (max-height: 768px) {
 #main .banner-content h1 {
     font-size: 42px!important;
 }
 #main .banner-content {
    margin-top: 0px;
}
#main .banner-content p {
    font-size: 17px;
    margin: 0 0 10px;
}
#main .content .imgs img {
    max-width: 80px;
}
.imgs p {
    font-size: 18px;
}
#main .content h2 {
    font-size: 25px;
    margin-top: 1%;
}
.btn-yellow {
    font-size: 16px;
    padding: 10px 98px 10px 40px;
    margin-top: 15px;
}
.banner {
    padding-top: 120px;
}
.imgs {
    margin-bottom: 20px;
}
}
@media (max-width: 575.98px) {
    #main .content .imgs img {
        max-width: 95px;
    }

    .max-730 {
        max-width: 300px;
    }

    #main .content .result-content h2 {
        font-size: 24px !important;
    }

   

    .bg-shadow {
        min-height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        margin: auto;
    }

    .design {
        height: 25px;
    }

    .round-circal {
        height: 40px;
    }

    .question-box {
        padding: 5%;
    }
    .quiz-form .gchoice label {
        font-size: 12px;
        line-height: 1.3;
    }
    .quiz-form .gfield_radio .gchoice {
        width: 100%;
        margin-bottom: 25px;
    }
}