/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600&family=Lilita+One&family=Rubik+Wet+Paint&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Wet+Paint&display=swap');
/* Root */
:root {
    --text: 'Alkatra', cursive;
    /*--heading: 'Lilita One', cursive;*/
    /*--heading: 'Rubik Wet Paint', cursive;;*/
    --heading: "Arial Black";
    --logo: 'Rubik Wet Paint', cursive;
    --button-back: rgb(139, 197, 63);
    --button-gradient: linear-gradient(90deg, rgba(139, 197, 63, 1) 5%, rgba(103, 187, 65, 1) 29%, rgba(11, 141, 206, 1) 75%);
    --button-gradient-hover: linear-gradient(90deg, rgba(11, 141, 206, 1) 5%, rgba(103, 187, 65, 1) 29%, rgba(139, 197, 63, 1) 75%);
    --transition: all 0.3s ease-in-out;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Common */
.hide {
    display: none !important;
}

.sc-1au8ryl-0 {
    display: none !important;
}

/* Home page */
.bg_image_container {
    background-image: url("../img/banner-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply_form {
    /*display: none;*/
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 10px 8px 42px -2px rgba(0, 0, 0, 0.65);
    -webkit-box-shadow: 10px 8px 42px -2px rgba(0, 0, 0, 0.65);
    -moz-box-shadow: 10px 8px 42px -2px rgba(0, 0, 0, 0.65);
    border-radius: 15px;
    overflow: hidden;
    /*position: absolute;*/
    /*left: 50%;*/
    /*bottom: 0%;*/
    /*transform: translate(-50%,0%);*/
}

.apply_form .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1.5px solid #333;
    justify-content: center;
    background-color: #fff;
}

.apply_form .logo img {
    width: 100px;
    height: auto;
}

.apply_form .logo h1 {
    font-family: var(--heading);
    font-weight: bolder;
    font-size: 40px;
}

.apply_form .apply_form_content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2px 40px;

}

.apply_form_button_group {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.btn_grandient {
    width: 100%;
    background-color: var(--button-back);
    background-image: var(--button-gradient);
    text-decoration: none;
    border: none;
    outline: none;
    text-align: center;
    color: #fff;
    margin: 5px 0;
    padding: 14px 0;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 700;
    font-family: var(--text);
    cursor: pointer;
    font-size: 15px;
}

/* .apply_form .apply_form_content button:hover,
.apply_form .apply_form_content .btn_grandient:hover
{
    background-color: var(--button-back);
    background-image: var(--button-gradient-hover);
} */
.modal-background {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.apply-modal {
    width: 500px;
    min-height: auto;
    max-height: 90%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    position: fixed;
    padding: 20px 0;
    z-index: 999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.apply-modal .apply-modal-content {
    width: 100%;
    height: 100%;
    padding: 0px 40px;
    overflow: auto;
}

.apply-modal .apply-modal-content::-webkit-scrollbar {
    display: none;
}

.apply_form .login-modal,
.whatsapp-modal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.form_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 3px 0;
    position: relative;
}

.form_group label {
    margin-bottom: 4px;
    font-family: var(--text);
    font-weight: 500;
}

.form_group input {
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--text);
    border: 1px solid #444;
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    /*border: 1px solid #444;*/
}

.form_group select {
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--text);
    border: 1px solid #444;
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    /*border: 1px solid #444;*/
}

.form_group input:focus,
.form_group select:focus {
    background-color: rgba(255, 255, 255, 1);
}

.btn_back {
    width: 50px;
    height: 50px;
    background-color: rgba(11, 141, 206, 1);
    color: #fff;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -10%);
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn_cancel {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    position: absolute;
    right: -20px;
    top: -20px;
    border-radius: 50%;
    border: 1px solid #444;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.error {
    font-size: 14px;
    color: #ff290c;
    display: none;
}


/* User Dashboard */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 80px;
    background-color: #444;
    box-shadow: 10px 8px 42px -2px rgba(0, 0, 0, 0.65);
}

.navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.navigation ul li {
    position: relative;
}

.navigation .logo {
    font-family: var(--heading);
    font-size: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.navigation .logo img {
    width: 90px;
    height: auto;
}

.navigation .btn-logout {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.bottom-menu {
    position: absolute;
    width: 150px;
    height: 40px;
    background-color: #fff;
    left: -50px;
    bottom: -57px;
    z-index: 999;
    display: none;
}

.bottom-menu.show {
    display: block;
}

.bottom-menu button {
    background-color: transparent;
    padding: 8px 10px;
    border: none;
    outline: none;
    cursor: pointer;
}

.main-content {
    width: 100%;
    min-height: 90vh;
    /*max-height: 100%;*/
    background-color: whitesmoke;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.main-content .center {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #444;
    /* overflow: hidden; */
    padding: 8px;
    position: relative;

}

.profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.profile .btn-edit-image {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.user-detail {
    width: 100%;
}

.user-detail .detail-itme {
    margin: 4px 0;
    display: flex;
    justify-content: space-between;
}

.user-detail .detail-itme span {
    color: #070A52;
    font-weight: 600;
    font-family: var(--text);
    /* width: 50%; */
}

.user_dashboard_button_group {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.question-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #444;
    padding: 15px;
    position: relative;
    margin-bottom: 15px;
    font-size: 12px;
}

.question-container .question-detail {
    margin: 2px 0;
    display: flex;
    justify-content: space-between;
}

.question-container .question-detail span {
    color: #070A52;
    font-weight: 600;
    font-family: var(--text);
    font-size: 12px !important;
}

.btn-enter {
    background-color: #444;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    right: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #444;
    outline: none;
}

.btn-back {
    background-color: #444;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    /*position: absolute;*/
    /*top: -80px;*/
    /*left: 0;*/
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #444;
    outline: none;
    text-decoration: none;
    margin-bottom: 40px;
}

.btn-enter:hover {
    background-color: #fff;
    border: 1px solid #444;
    color: #444;
}

/*Payment Modal*/
.payment-modal {
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 10px 8px 42px -2px rgba(0, 0, 0, 0.65);
    position: fixed;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: var(--transition);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.payment-modal .btn-close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.payment-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.payment-modal .payment-detail span {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--text);
}

.payment-modal .form-group {
    position: relative;
    margin: 3px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.payment-modal .form-group input {
    width: 100%;
    font-size: 15px;
    margin: 4px 0;
}

.divider {
    width: 100%;
    margin: 5px 0;
    height: 1px;
    background-color: #444;
}

/* Fee Details */
.fee-container {
    width: 100%;
    height: 350px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
}

.fee-container .fee-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
    font-family: var(--text);
}

.fee-container .fee-detail span {
    font-family: var(--text);
    font-size: 18px;
}

.fee-container .fee-detail img {
    width: 100%;
    height: 250px;
}

/*Question Card*/
.question-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.question-title {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.question-options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 15px;
    /*justify-content: space-between;*/
}

.question-options button {
    width: 100% !important;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 6px;
    text-align: left;
    padding: 2px 20px;
    background-color: transparent;
    border-color: transparent;
    border-width: 2px;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.question-options button div {
    background: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.question-options button.active div {
    border: 2px solid #1c7430;
    border-radius: 50%;
}

/*Result Card*/
.result-card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;

}

.result-card .result-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
}

.result-card .result-detail span {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/*btn_download*/
.btn_download {
    position: absolute;
    background-color: #444;
    padding: 4px 6px;
    font-size: 10px;
    left: 0;
    top: 0;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
}

/*Loadiing*/
.loading {
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
}

.loading i {
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-eye {
    position: absolute;
    right: 5%;
    top: 70%;
    transform: translateY(-40%);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.timer {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 4px;
    position: fixed;
    right: 30px;
    top: 20%;
    transform: translateY(-20%);
}

.timer-container {
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 3px;
}

.container {
    width: 100%;
    padding: 50px 150px;
}

.row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.card {
    width: 90%;
    height: auto;
    margin: 40px 0;
}

.card-header {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin: 15px 0;
}

.card-1 {
    margin-top: 100px;
}

.slider-header {
    width: 90%;
    font-size: 30px;
    font-weight: 800;
}

.card-image {
    width: 100%;
    height: 650px;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.footer {
    width: 100vw;
    padding: 70px;
    background-color: #eee;
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 50%;
}

.footer-header {
    display: flex;
    align-items: center;
}

.footer-header h2 {
    font-size: 30px;
    font-weight: 900;
}

.footer-col img {
    width: 100px;
    height: auto;
}

.footer-col p {
    width: 100%;
    padding: 0 0 0 30px;
    margin: 8px 0;
    text-align: justify;
    font-weight: 600;
}

.footer-col ul.social {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.footer-col ul.social li {
    margin: 0 8px;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col ul.social a {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 30px;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.video {
    width: 100%;
    padding: 0 50px;
    margin: 8px 0;
}

.video iframe {
    width: 100%;
    height: 460px;
}
