* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.BgImg {
    background-size: contain;
    width: 100%;
    height: 91.2vh;
  
}

.BgImg1 {
    background-image: url('../images/img1.png');
    
}

.BgImg2 {
    background-image: url('../images/img2.png');
    
}
.navbar {
    position: relative !important;
    min-height: 50px !important;
    margin-bottom: 0px !important;
    border: 1px solid transparent !important;
}
.navbar a {
    text-decoration: none;
}
.quiz-box {
    background-color: #fff;
    height: 100%;
    width: 100%;
}

.quiz-box .form-check .form-check-input {
    border-radius: 50%;
    border: 1px solid #000;
}

.quiz-box .quiz-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.quiz-box .progress-container {
    margin-bottom: 20px;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.quiz-box .progress-bar {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.quiz-box .progress-segment {
    flex: 1;
    background-color: #ececec;
    transition: background-color 0.3s ease;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
}

.quiz-box .progress-segment.completed {
    background-color: #212529;
}

.quiz-box .question-container {
    margin-bottom: 20px;
    text-align: left;
}

.quiz-box .answers-container {
    margin-bottom: 20px;
    text-align: left;
}

.quiz-box .answers-container label {
    display: block;
    margin: 5px 0;
    font-size: 16px;
    cursor: pointer;
}

.quiz-box .navigation-buttons {
    display: flex;
    justify-content: end;
}

.quiz-box .nav-btn {
    background-color: #212529;
    border: none;
    color: #fff;
    padding: 10px 50px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.quiz-box .nav-btn:hover {
    background-color: #424649;
}

.quiz-box .thank-you-message {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.quiz-box #quiz-content {
    display: block;
}

.quiz-box #thank-you-message {
    display: none;
}

@media only screen and (max-width: 767px) {

    .mobhide {
        display: none;

    }

    .BgImg {

        height: auto;
    }
    .quiz-box .nav-btn {
      
        padding: 10px 30px;
        
    }
}