
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf")  format('truetype');
}
@font-face {
    font-family: "Montserrat Medium";
    src: url("../fonts/Montserrat-Medium.ttf")  format('truetype');
}
@font-face {
    font-family: "Montserrat SemiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf")  format('truetype');
}
@font-face {
    font-family: "Montserrat Bold";
    src: url("../fonts/Montserrat-Bold.ttf")  format('truetype');
}
body {
    font-family: "Montserrat Medium";
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}
body.startQuiz, body.thankyouPage, body.formQuiz{
    background-color: #00659D;
}
body.startQuiz main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px);
    position: relative;
}
body.formQuiz main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px);
    position: relative;
    min-height: 1150px;
}
body.formQuiz.thankyouPage main{
    min-height: 800px;
}
body.thankyouPage{
    height: calc(100vh - 508px);
    min-height: 800px;
}
header {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background-color: white;
}
.options{
    text-align: left;
    margin-left: 30px;
    margin-bottom: 60px;
}
.hidden {
    display: none;
  }

.logo {
    height: 50px;
}

.container {
    display: flex;
    max-width: 1200px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container > div.image-section{
    width: 50%;
}
.container > div.text-section{
    width: 54%;
    margin-left:-4%;
    border-radius: 16px 0px 0px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.image-section img {
    width: 100%;
    height: 100%;
}
.imgElementBack{
    width: 140px;
    height: 140px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.text-section {
    padding: 20px;
    text-align: center;
    background-color: #00659D;
    color: white;
    flex: 1;
}

.text-section h1 {
    font-size: 32px;
    font-family: "Montserrat Bold";
}

.text-section p {
    font-size: 16px;
    font-family: "Montserrat Medium";
}

button#start-btn {
    background-color: white;
    color: #00659D;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 27px;
    width: 320px;
    margin-top: 40px;
    height: 54px;
    font-family: "Montserrat SemiBold";
}

button#start-btn:hover {
    opacity: 0.8;
}
.center-text{
    display: block;
    text-align: center;
    padding: 20px;
}
.dividerQuiz{
    border: 1px solid #F6F6F6;
    width: calc(100% + 78px);
    display: block;
    margin-left: -40px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.quiz-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.progress-bar {
    width: 100%;
    height: 5px;
    background: #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
}
.progress {
    width: 10%;
    height: 100%;
    background: #0057b8;
    border-radius: 3px;
}
.progress.p20{
    width: 20%;
}
.progress.p30{
    width: 30%;
}
.progress.p40{
    width: 40%;
}
.progress.p50{
    width: 50%;
}
.progress.p60{
    width: 60%;
}
.progress.p70{
    width: 70%;
}
.progress.p80{
    width: 80%;
}
.progress.p90{
    width: 90%;
}
.progress.p100{
    width: 100%;
}
.question-counter {
    font-size: 14px;
    color: #707070;
    text-align: left;
    font-family: "Montserrat Medium";
}
.question {
    font-size: 16px;
    margin: 15px 0 30px 0;
    font-family: "Montserrat SemiBold";
    text-align: left;
}
button {
    background-color: #A6A6A8;
    color: #757679;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    cursor: not-allowed;
    margin-top: 60px;
    width: 100%;
    border-radius: 27px;
}
button.enabled {
    background-color: #00659D;
    cursor: pointer;
    color: #FFFFFF;
}

.options {
    text-align: left;
    margin: 10px 0;
}
.options label {
    display: flex;
    align-items: center;
    font-family: "Montserrat Medium";
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    padding: 16px 0;
}
.options label.selected{
    background: #F6F6F6 0% 0% no-repeat padding-box;
    border-radius: 5px;
}
.options input[type="radio"] {
    width: 30px;
    height: 20px;
    accent-color: #00659D;
    margin-right: 10px;
}
.options label:last-child input[type="radio"]{
    width: 30px;
}
#feedback{
    width: 800px;
    max-width: 100%;
}
#feedback p{
    font-family: "Montserrat SemiBold";
    font-size: 40px;
    color: white;
    text-align: center;
}
#feedback button#next-btn-quiz{
    width: 320px;
    display: block;
    margin: 0 auto;
    background-color: #FFF;
    color: #00659D;
    font-size: 16px;
    font-family: "Montserrat SemiBold";
    cursor: pointer;
}
#feedback button#next-btn-quiz:hover{
    opacity: 0.8;
}
#feedback button#next-btn-quiz .arrow-btn{
    vertical-align: bottom;
}

.result-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.result-container h2 {
    color: #00659D;
    font-size: 32px;
    text-align: left;
    margin: 0 0 40px 0;
    font-family: "Montserrat Bold";
}
.result-container p strong{
    font-family: "Montserrat Bold";
}
.result-container p {
    font-size: 14px;
    color: #333;
    text-align: left;
    font-family: "Montserrat Medium";
    margin: 1.5em 0;
}

.thankyouPage-container{
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    color:#fff;
    text-align: center;
}
.thankyouPage-container > img{
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 50px;
}
.info {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info::before {
    content: "\2139";
    font-size: 12px;
    background-color: #5E6A71;
    color:white;
    border-radius: 11px;
    width: 16px;
    height: 16px;
    text-align: center;
}

.form-group {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.form-group label{
    width: 100%;
    display: inline-block;
    font-size: 12px;
    color: #707070;
    margin-bottom: 10px;
}
.form-group .col-form{
    /* width: 100%; */
    /* padding: 0px 30px 0px 0px; */
    padding: 0;
    /* border: 1px solid #707070; */
    border-radius: 8px;
    font-size: 14px;
    /* background: #fff; */
    color: #999;
    width: 100%;
}
.form-group input,
.form-group select {
    padding: 16px 10px;
    border: 1px solid #707070;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
    width: 90%;
}

.form-group select{
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAARdJREFUWEft1jFKA0EUBuAvIogWNp7AwsbS3lN4AHtRsLC08BY2nsMbWOUaglilFCyCPElgWLLZmUkmaXar3WL4v3kz+2Ym9vxM9pxvBIwViAoc4Ag/O9yQkXmMeQAucIUPfO4AcYhzXGMWgFfc4h2PjRERfoln3GAagBfc46Qxohv+hbcAnOGhMWJleEx++Ru2RPSGx35L+0ALxNrwLiC+t4kYDF8F2BYiK7wPsCkiO3wdoBZRFD4EKEUUh+cAchFV4bmAIUR1eAmgD/GE06S3/7fXRXvPOtdKLyTdPjHF9+JgKQ4vrcByRiki3ueoCq8FpMtxh9/SsqdrU7oE6diYfdwjYg/EkV71bAKoCuwOGgFjBcYK/AE8bF3DwSsJowAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    width: 97%;
}
.form-group input.error,
.form-group select.error {
    border-color: #C91A0F;
}
.form-group input:disabled,
.form-group select:disabled{
    background: #A6A6A8;    
}
.leftFirst{
    height: 280px;
    right: 0;
    left: auto;
    top: 20%;
}
.leftSecond{
    height: 280px;
    right: 0;
    left: auto;
    top: 55%;
}
body.thankyouPage .leftFirst{
    top:10%;
    display: none;
}
body.thankyouPage .leftSecond{
    top: 40%;
    display: none;
}
.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 15px;
    gap: 10px;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
}

.checkbox-group a {
    color: #0057b8;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}
#send-btn{
    width: 320px;
    display: block;
    margin: 50px auto 20px auto;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    border-radius: 27px;
    background-color: #A6A6A8;
    color: #757679;
} 
#send-btn.enabled{
    background-color: #00659D;
    cursor: pointer;
    color: #FFFFFF;
}
.error-msg{
    color:#C91A0F;
    font-size: 12px;
}
.btn-blog img, .btn-site img{
    width:16px;
    vertical-align:middle;
}
.btn-blog{
    color: #fff;
    text-decoration:none;
    width: 320px;
    height: 54px;
    border-radius: 27px;
    text-align: center;
    vertical-align: middle;
    font-size:16px;
    font-family: "Montserrat SemiBold";
    display: block;
    margin: 0 auto;
}
.btn-site:hover, .btn-blog:hover{
    opacity: 0.8;
}
.btn-site{    
    background-color:transparent;
    color:#fff;
    text-decoration:none;
    width: 320px;
    height: 54px;
    border-radius: 27px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size:16px;
    font-family: "Montserrat SemiBold";
    border: 2px solid #ffffff;
}
footer{
    background-color:#fff;
    width:100%;
    text-align:center;
}
footer .divider{
    width:100%;
    height: 2px;
    background-color: #F6F6F6;
    margin: 50px 0;
}
footer h2{
    color:#00659D;
    font-size:28px;
    font-family: "Montserrat Bold";
    padding:20px 0;
}
footer .icons img{
    padding: 0 10px;
}
footer .icons a{
    text-decoration: none;
}
footer nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #00659D;
    margin-bottom: 40px;
}
footer nav a {
    /*text-decoration: none;*/
    color: #005b96;
}
.desktop{
    display:block;
}
.mobile{
    display: none;
}
.whatsapp{
    position: relative;
    width: 290px;
    display: block;
    margin: 50px auto 20px auto;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    border-radius: 27px;
    background-color: #26d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.whatsapp img{
    width: 41px;
    position: absolute;
    top: 4px;
    margin-left: 10px;
}
#thankyouPage .whatsapp{
    width: auto;
    margin: 0px auto 50px auto;
    padding: 20px 20px;
}
#thankyouPage .whatsapp img{
    top: 8px;
}
@media (max-width: 600px) {
    .desktop{
        display:none !important;
    }
    .mobile{
        display: block !important;
    }
    body.formQuiz main{
        display:block;
        height: auto;
        min-height: auto;
        margin-bottom: 50px;
    }
    body.formQuiz.thankyouPage main{
        min-height: 750px;
    }
    .form-group {
        flex-direction: column;
    }
    .container > div.text-section{
        width: 90%;
        display: block;
        border: none;
        margin: 0 0 0 0;
        border-radius: 0;
        order: 0;
        padding: 15% 5%;
    }
    .container > div.image-section{
        width:100%;
        display: block;
        order: 1;
    }
    .container{
        border:0;
        display: block;
        border-radius: 0;
    }
    .imgElementBack{
        display:none;
    }
    .imgElementBack.imgMobile{
        position:fixed;
        z-index: -1;
        display:block !important;
    }
    .leftFirst.imgMobile{
        position:fixed;
        z-index: -1;
        top: 70px;
        display:block !important;
    }
    .center-text{
        padding:0;
    }
    .text-section h1{
        font-size:22px;
        text-align: left;
    }
    .text-section p{
        text-align:left;
    }
    button#start-btn{
        margin: 40px auto 0 auto;
    }
    .image-section img{
        padding: 0;
        margin: 0;
        display: block;
    }
    .quiz-container{
        width: 70%;
        margin:0 auto;
        padding: 10%;
    }
    .dividerQuiz{
        width: 111%;
        margin-left: -6%;
    }
    .progress-bar{
        height: 6px;
        margin-top: 0;
    }
    #feedback{
        width:90%;
        font-size:22px;
    }
    #feedback p{
        font-size:22px;
    }
    .result-container{
        width: 80%;
        max-width: 76%;
        margin: 5%;
        display: block;
    }
    .result-container h2{
        font-size:18px;
        text-align: center;
    }
    .thankyouPage-container{
        padding: 0;
        text-align: left;
    }
    .thankyouPage-container > img{
        border-radius:0;
    }
    .thankyouPage-container h2
    ,.thankyouPage-container p{
        margin:10px 30px;
    }
    .btn-blog{
        margin: 0 auto;
        line-height: 3;
        display: block;
    }
    .btn-site{
        margin: 0 auto;
        line-height: 3;
        display: block;
    }
    .thankyouPage-container .col-form{
        margin-bottom:20px;
    }
    footer .social-media{
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    footer nav{
        display: block;
        margin-top: 30px;
    }
    footer nav span{
        display: none;
    }
    body.startQuiz main{
        display: block;
        height: auto;
        margin: 15px 0;
    }
    #send-btn{
        max-width:100%;
        margin: 30px auto 20px auto;
    }
    .whatsapp{
        max-width: 100%;
        width: 258px;
        margin: 30px auto 20px auto;
    }
    #thankyouPage .whatsapp{
        width: 300px;
        margin: 0px auto 10px auto;
    }
}