@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

html,
body {
    max-width: 100%;
    overflow-y: scroll;
    font-size: 14px;
    height: 100%;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

button {
    border: none;
    outline: none;
}

button:focus {
    outline: none !important;
    border: none !important;
}

.btn-buttons {
    background-color: rgb(50 39 131);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: #322783 0px 5px 5px 0px;
    transition: all .75s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
}

.btn-buttons a {
    color: #322783;
    display: block;
    background-color: #fff;
}

.btn-buttons:hover a {
    color: #fff;
    text-decoration: none;
}

.btn-buttons:hover {
    background-color: #322783;
    color: #fff;
    box-shadow: none;
}

ul li {
    list-style: none;
}


/* ------------Main style -------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

main {
    height: 100%;
}

html,
body {
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-image: url('../images/bg.jpg');
    background-attachment: fixed;
}

main {
    display: flex;
    align-items: center;
}

.form-control {
    padding: 10px;
    transition: all .4s;
    border: 2px solid #eee;
    border-radius: 25px;
    padding: 10px 15px;
    background: transparent;
    color: #fff;
}

::placeholder {
    color: #fff!important;
}

.custom-select {
    height: auto !important;
}

.logo_img {
    width: 100px;
}

.logo_img1 {
    width: 180px;
}

.otp_form {
    border-radius: 0px;
    padding: 10px;
}

.otp_form input {
    border: 3px solid #ebebeb;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    margin: 2px;
    text-align: center;
    font-size: 16px;
    padding: 10px;
}

.otp_form input:focus {
    outline: none !important;
    border: 3px solid #322783;
    transition: 0.12s ease-in;
}

.quiz__heading {
    display: none;
}

.result {
    font-size: 2rem;
    color: #322783;
}

.heading__text {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
}

.quiz__heading-text {
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

.quiz-form__question {
    margin-bottom: 0.8rem;
    font-size: 18px;
    font-weight: 600;
}

.quiz-form__quiz {
    background-color: rgb(50 39 131 / 20%);
    border-radius: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    display: none;
}

.quiz-form__quiz:not(:last-child) {
    margin-bottom: 1.5rem;
}

.quiz-form__ans {
    border-radius: 0.8rem;
    /* border: 2px solid #322783; */
    padding: 7px;
    color: #282828;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;
}

.quiz-form__ans:not(:last-child) {
    margin-bottom: 0.5rem;
}

input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 15px;
    z-index: -1;
}

.design {
    width: 1rem;
    height: 1rem;
    border: 1px solid #322783;
    border-radius: 100%;
    margin-right: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design::before,
.design::after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    transform: scale(0);
    transform-origin: center center;
}

.design:before {
    background: #322783;
    opacity: 0;
    transition: 0.3s;
}

.design::after {
    background: #322783;
    opacity: 0.4;
    transition: 0.6s;
}

.text {
    backface-visibility: hidden;
    transition: transform 200ms ease-in;
    text-align: left;
}

input[type="radio"]:hover~.text {
    transform: translateX(0.4rem);
}

input[type="radio"]:hover .quiz-form__ans {
    color: #322783;
}

input[type="radio"]:checked+.design::before {
    opacity: 1;
    transform: scale(0.6);
}

input[type="radio"]:hover+.design,
input[type="radio"]:focus+.design {
    border: 1px solid #322783;
}

input[type="radio"]:hover+.design:before,
input[type="radio"]:focus+.design:before {
    background: #322783;
}

input[type="radio"]:focus+.design::after,
input[type="radio"]:active+.design::after {
    opacity: 0.1;
    transform: scale(2);
}

.input_number {
    outline: none;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    background-color: transparent;
    text-align: center;
}

.quiz-form {
    padding: 20px 10px;
}

.wrapper-1 {
    width: 100%;
}

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

.thankyou_screen .content h1 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 30px;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.wrapper-2 p {
    margin: 0;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}

.go-home {
    color: #fff;
    background: #322783;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

.thankyou_screen .content {
    background-color: rgb(50 39 131 / 60%);
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    backdrop-filter: blur(6px);
}

.thankyou_screen h4 {
    font-weight: 600;
    font-size: 16px;
}

.thankyou_screen h6 {
    font-weight: 500;
    font-size: 14px;
}

.text-primary {
    color: #322783 !important;
}

.form-control:focus {
    color: #322783;
    background-color: #fff;
    border-color: #322783;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(243 147 35 /30%);
}

.registration_form form {
    background-color: rgb(50 39 131 / 60%)!important;
    backdrop-filter: blur(6px);
    border-radius: 20px;
}

.back_btn1 {
    font-size: 16px;
    display: block;
}

.landing_page h1 {
    font-size: 40px;
    font-weight: 600;
}

.landing_page h3 {
    font-weight: 600;
    color: #282828;
    font-size: 20px;
}

.landing_page h3 span {
    font-weight: 600;
    color: #322783;
    font-size: 28px;
}

.form-control:focus {
    color: #282828;
    background-color: #fff;
    border-color: #322783;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(51 39 131 / 20%);
}

.question {
    background-color: rgb(50 39 131 / 80%);
    color: #fff;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.options2 p {
    font-size: 12px !important;
    margin-top: 10px;
}

.options2 i {
    font-size: 65px;
    color: rgb(255 255 255 / 50%);
}

.options2 input[type="radio"][id^="cb"] {
    display: none;
}

.options2 label {
    /* border: 1px solid #fff; */
    padding: 15px 10px;
    display: block;
    position: relative;
    /* margin: 10px; */
    cursor: pointer;
    border-radius: 10px;
    background: rgb(50 39 131 / 40%);
    transition: all .74s;
    height:100%;
}

.options2 label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.options2 label img {
    height: 80px;
    width: 80px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    margin: auto;
    display: block;
}

.options2 :checked+label {
    border-color: #ddd;
}

.options2 :checked+label:before {
    content: "✓";
    background-color: #322783;
    transform: scale(1);
}

.options2 :checked+label {
    transform: scale(0.9);
    box-shadow: 0 0 5px #322783;
    z-index: -1;
}

.question h3 {
    font-size: 18px;
    font-weight: 600;
}

.swal-button {
    background-color: #322783;
}

.swal-button:hover {
    background-color: #322783;
}

.swal-button--cancel {
    color: #555;
    background-color: #efefef !important;
}

label {
    display: contents;
}

.swal-button:not([disabled]):hover {
    background-color: #322783;
}

.img_box img {
    width: 20%;
    position: absolute;
    right: 15px;
    bottom: 0px;
}

.img_box::before {
    content: '';
    background-color: rgb(81 71 149 / 10%);
    display: block;
    width: 185px;
    height: 185px;
    position: absolute;
    bottom: 20px;
    right: 0;
    border-radius: 50%;
}