*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #1F2B3D;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}

img {
    max-width: 100%;
}

p {
    font-size: 15px;
    margin: 0;
    font-weight: normal;
}

a {
    text-decoration: none;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}


.play-button {
    background-color: #008445;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 0;
    font-size: 24px;
    line-height: 50px;
    color: white;
    transition: box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    border-radius: 2rem;
}

.play-button:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.9); /* Enhanced shadow on hover */
}

.play-button i {
    font-size: 2rem;
}
.audioLoader {
    height: 5px;
    position: absolute;
    top: 100%;
    background: #fdc730;
    z-index: 1;
    top: 0;
    border-radius: 4px
 }
 .js-detail-slider .slick-disabled {
    visibility: hidden;
 }
 .start_section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgb(0 0 0 / 0%);
    backdrop-filter: blur(6px);
}
@media (max-width: 576px) {
    .play-button {
        width: 40px; /* Adjust button width for smaller screens */
        height: 40px; /* Adjust button height for smaller screens */
        font-size: 20px; /* Adjust icon size for smaller screens */
        line-height: 40px; /* Center icon vertically for smaller screens */
    }

    .play-button i {
        font-size: 2rem; /* Adjust icon size */
    }


}



@media (min-width: 768px) {
    .container-fluid {
        max-width: 90%;
    }

    .container {
        padding: 0 45px !important;
    }
}

@media (min-width: 1440px) {

    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.object-fit {
    width: 100%;
    max-width: unset;
    height: 100%;
    object-fit: cover;
}


.flex-prop {
    display: flex;
}

.section-padding {
    padding: 130px 0 0;
}

/*button style*/

.btn {
    cursor: pointer;
    padding: 7px 46px 7px 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    transition: all .4s ease-in-out;
    overflow: hidden;
}

.btn-primary {
    background: #EAF6FF;
    color: #1D2225;
    border-radius: 50px;
}

.btn-primary:after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    background: #12a55f;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    right: 0;
    top: 0;
    transition: all .4s ease-in-out;
}

.btn-primary:hover:after {
    background: #78ffbf;
    color: #155838;
}

.btn-primary:hover {
    background: #12a55f;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background: #12a55f;
    color: #eaf6ff;
    border-radius: 50px;
}

.btn-secondary:after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    background: #eaf6ff;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12a55f;
    height: 105%;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    right: -4px;
    top: -1px;
    transition: all .4s ease-in-out;
}

.btn-secondary.showLess:after {
    content: "\f053";
}

.btn-secondary:hover:after {
    background: #12a55f;
    color: #fff;
}

.btn-secondary:hover {
    background: #eaf6ff;
    color: #12a55f;
    text-decoration: none;
}


@media (min-width: 1200px) {
    .btn {
        font-size: 18px;
        padding: 12px 70px 11px 24px;
    }

    .btn-primary:after {
        background-size: unset;
        width: 57px;
        height: 50px;
    }

    .btn-secondary:after {
        width: 57px;
        height: 105%;
    }
}


/*page header*/
header {
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    transition: all ease 0.3s;
    z-index: 999;
}

.header-main {
    display: block;
    background: #008445;
    z-index: 99999;
    width: 100%;
    position: relative;
    transition: all ease 0.3s;
    top: 0;
    box-shadow: 0 4px 44px rgb(0 0 0 / 10%);
}

.header-logo:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 61px;
    left: -22px;
    top: -11px;
    z-index: -1;
    background: #12a55f;
}

.header-top {
    background-color: #F5F5F5;
    padding: 8px 0;
    text-align: center;
    transition: all ease 0.3s;
}

.header-top p {
    font-size: 12px;
    font-weight: 500;
    color: #2C2B2B;
    line-height: 14px;
    padding: 0 10px;
}

.header-top p a {
    color: #242424;
    text-decoration: underline;
}

.header-main.header-fixed {
    top: 0;
    position: fixed;
    width: 100%;
    transition: all .3s ease;
}

.container-menu {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    transition: all ease 0.3s;
    align-items: center;
}

.header-logo {
    width: 102px;
    position: relative;
}


.header-main-right {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 102px);
    align-items: center;
    padding-left: 12px;
}

.header-main h1 {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.body-main {
    margin-top: 60px;
}

/* hover end */

@media (max-width:992px) {

    .container-menu {
        height: 60px;
        justify-content: flex-start;
        padding: 0 0;
    }


    .header-logo {
        position: relative;
        left: 0;
        width: 102px;
    }

    .header-logo img {
        transition: all ease 1s;
    }
}

@media (min-width: 768px) {
    .header-logo:after {
        width: 161px;
        left: -52px;
    }

    .header-main h1 {
        font-size: 24px;
    }
}

@media (min-width:993px) {
    .header-main {
        height: 100px;
        display: flex;
        align-items: center;
    }

    .header-top {
        padding: 13px 0;
    }

    .header-logo:after {
        width: 161px;
        left: -52px;
        height: 101px;
        top: -31px;
    }

    .body-main {
        margin-top: 100px;
    }

}

@media (min-width:1200px) {
    .header-logo {
        width: 193px;
        position: relative;
    }

    .header-logo:after {
        width: 2000px;
        left: -1780px;
        height: 105px;
        top: -18px;
    }

    .header-main-right {
        width: calc(100% - 220px);
        padding-left: 32px;
    }

    .body-main {
        min-height: calc(100vh - 120px);
        padding-bottom: 55px;
    }

    .page-footer {
        position: sticky;
        bottom: 0;
    }
}

/*page header*/


.item-card {
    position: relative;
    padding: 30px 0;
}

.item-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: -1;
    background: #d8efe5;
}

.item-card-slider .slick-slide {
    width: 150px;
    margin: 0 7px;
}

.item-card-slider-content h3 {
    font-size: 15px;
    color: #1E1E1E;
    font-weight: 600;
    display: block;
    padding-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-card-slider-content p {
    font-size: 10px;
    color: #5E5E5E;
    letter-spacing: 0.4px;
    font-weight: 400;
    display: block;
    padding-bottom: 0;
}

.item-card-slider-image {
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 2 / 1.115;
    margin-bottom: 6px;
}

.item-card-slider-info {
    display: flex;
    flex-wrap: wrap;
}

.item-card-slider-info>* {
    width: 50%;
    font-size: 12px;
    color: #606060;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 6px;
}

.filter-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.filter-dropdown p {
    font-size: 13px;
    margin-right: 10px;
    color: #000;
}

.filter-dropdown-btn {
    border: none;
    font-size: 13px;
    color: #000;
    width: 100px;
    background-color: transparent;
    padding: 0 5px 3px 5px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    position: relative;
}

.event-card-left-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
    padding: 6px 0;
}

.event-card-left-heading:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100%;
    top: 0;
    background-color: #fff;
    z-index: -1;
}

.filter-dropdown-btn:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    right: 4px;
    font-size: 11px;
    top: 0;
}

.filter-dropdown .dropdown-item {
    font-size: 11px;
}

.item-card-slider-info>* i {
    margin: 0 4px;
}

.item-section-number {
    font-size: 12px;
    font-weight: 600;
    color: #008445;
    margin: 0 4px;
}

.event-card-right {
    display: none;
}

.event-card-wrapper {
    position: relative;
    padding: 0 15px;
}

.event-card-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 50px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

.event-card-left .item-card-slider-item {
    margin: 0 0 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1);
}

.event-card-left .item-card-slider-content {
    padding: 10px 20px 10px 10px;
}

.event-card-left .item-card-slider-content:after {
    top: 8px;
    right: 8px;
}

.addvertise-box {
    margin-bottom: 30px;
    display: block;
}

.addvertise-box img {
    width: 100%;
    max-width: unset;
}

.addvertise-box:last-child {
    margin-bottom: 0;
}

.event-card-list .item-card-slider-image {
    border-radius: 6px 6px 0 0;
}


.heading {
    padding-top: 20px;
}

.heading h2 {
    font-size: 20px;
    color: #20313C;
    font-weight: 600;
    padding-bottom: 25px;
}

.heading h2 span {
    position: relative;
}

.heading h2 span:after {
    content: "";
    position: absolute;
    width: 100%;
    /*background: url(../img/heading-bottom-line.png) 0 0 no-repeat;*/
    width: 64px;
    height: 10px;
    left: 0;
    bottom: -12px;
    animation-name: lefttoright;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes lefttoright {
    from {
        width: 0;
    }

    to {
        width: 64px;
    }
}

.event-card-left .heading {
    padding-top: 0;
    text-align: center;
    margin: 0 auto 15px;
}

.event-card {
    padding: 40px 0;
}

.item-card-slider-box {
    position: relative;
    overflow: hidden;
}

.item-card-slider-content:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 13px;
    top: -1px;
    right: 0;
}

.complete-course-item .color-counting {
    color: #fff !important;
}

.complete-course-item {
    background-color: #008445 !important;
}

.complete-course-item .item-card-slider-content h3 {
    color: #fff !important;
}
.complete-course-item .item-card-slider-content h3 a {
    color: #fff !important;
}
.complete-course-item .item-card-slider-info>* {
    color: #fff !important;
}

.complete-course-item .item-section-number {
    color: #5affb0 !important;
}

.complete-course-item .point-number-counting {
    background-color: #5affb0;
    color: #008445 !important;
}

.complete-course-item .point-number-counting .item-section-number {
    color: #008445 !important;
}

.item-card-slider-content {
    padding-right: 20px;
    position: relative;
    padding-bottom: 10px;
}

.showMore,
.showMore-1 {
    margin: 15px auto 0;
    display: table;
}

.showMore:focus,
.showMore-1:focus {
    box-shadow: none;
}

.event-card-list .item-card-slider-box:hover .item-card-slider-info>* {
    color: #fff;
}

.event-card-list .item-card-slider-box:hover .item-section-number {
    color: #fff;
}

.point-number-counting {
    position: absolute;
    right: 0;
    bottom: 6px;
    padding: 1px 10px;
    width: auto;
    color: #fff;
    background: #008445;
    border-radius: 50px 0 0 50px;
}

.point-number-counting {
    position: absolute;
    right: 0;
    bottom: 5px;
    padding: 1px 5px;
    width: auto;
    color: #fff;
    background: #008445;
    border-radius: 50px 0 0 50px;
}

.point-number-counting .item-section-number {
    color: #fff;
}

.event-card-list .point-number-counting {
    bottom: 16px;
    margin: 0;
}

a.generate_btn {
    background: #008445;
    color: #fff;
    padding: 9px 19px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 30px;
}
@media(min-width: 320px) {
    .event-card-left-heading {
        flex-flow: wrap;
    }
    .heading h2 {
        padding-bottom: 12px;
    }
    .right {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        width: 100%;
    }    
    a.generate_btn {
        order: 2;
        margin-right: 0;
        margin-left: 30px;
        padding: 5px 12px;
    }
    .filter-dropdown {
        order: 1;
    }
    .filter-dropdown-btn {
        width: 70px;
    }
}
@media(min-width: 768px) {
    .item-card-slider .slick-slide {
        width: 220px;
    }
    .heading h2 {
        font-size: 30px;
        padding-bottom: 12px;
    }
    .filter-dropdown {
        top: 13px;
    }
    .event-card-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
        padding-bottom: 40px;
        width: calc(100% + 20px);
        align-items: center;
        justify-content: flex-end;
    }

    .event-card-left .item-card-slider-item {
        margin: 0 10px 20px;
        width: calc(33.33% - 20px);
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1);
    }

    .showMore,
    .showMore-1 {
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .event-card-left .heading {
        margin: 0;
    }
}

@media(min-width: 992px) {
    .event-card-left-heading {
        top: 45px;
    }
}

@media(min-width: 1200px) {
    
    .event-card-left-heading {
        top: 100px;
        padding: 15px 0;
    }

    .event-card {
        padding: 40px 0 80px;
    }

    .heading {
        padding-top: 50px;
    }
    .heading h2 {
        font-size: 30px;
        padding-bottom: 13px;
        margin-bottom: 0;
    }

    .filter-dropdown p {
        font-size: 15px;
    }

    .filter-dropdown-btn {
        font-size: 15px;
    }

    .filter-dropdown .dropdown-item {
        font-size: 14px;
    }

    .showMore,
    .showMore-1 {
        margin: 35px auto 0;
    }


    .item-card-slider .slick-slide {
        width: 452px;
        margin: 20px 10px 0;
    }

    .item-card-slider-image {
        border-radius: 12px;
        margin-bottom: 10px;
        transition: all ease 0.3s;
    }

    .item-card-slider-image:hover {
        box-shadow: 0 5px 24px rgba(166, 219, 255, 1);
    }

    .item-card-slider-content h3 {
        font-size: 18px;
    }

    .item-card-slider-content p {
        font-size: 12px;
    }

    .item-card {
        padding: 55px 0 60px;
    }

    .item-card-slider-info>* {
        font-size: 14px;
    }

    .item-section-number {
        font-size: 16px;
    }

    .item-card:after {
        height: 161px;
    }

    .item-card-slider .slick-prev,
    .item-card-slider .slick-next {
        opacity: 0;
        top: 20px;
        height: calc(100% - 20px);
    }

    .item-card-slider:hover .slick-prev,
    .item-card-slider:hover .slick-next {
        opacity: 1;
    }

    .event-card-wrapper {
        display: flex;
        padding: 0 70px 0 70px;
        align-items: flex-start;
        margin: 0 auto;
        max-width: 1400px;
    }

    .event-card-left {
        width: 100%;
    }

    /*.event-card-right {
        width: 22%;
        display: block;
        max-width: 437px;
    }*/

    .event-card-list {
        padding-bottom: 70px;
    }

    .event-card-left .item-card-slider-item {
        border-radius: 12px;
    }

    .event-card-left .item-card-slider-content {
        padding: 10px 45px 10px 18px;
    }

    .event-card-list .item-card-slider-image {
        border-radius: 12px 12px 0 0;
        aspect-ratio: 2 / 1.2;
    }

    .item-card-slider-content:after {
        content: "\f054";
        width: 13px;
        height: 24px;
        font-family: "Font Awesome 6 Free";
        opacity: 0;
        color: #12a55f;
        font-weight: 700;
        top: -1px;
        transition: all ease 0.3s;
    }

    .item-card-slider-box:hover .item-card-slider-content:after {
        opacity: 1;
        color: #008445;
    }


    .event-card .item-card-slider-box:hover {
        background: #12a55f;
        position: relative;
        z-index: 1;
        display: block;
        border-radius: 12px;
    }

    .event-card .item-card-slider-box:hover .item-card-slider-content:after {
        color: #fff;
    }

    .event-card .item-card-slider-box:hover .item-card-slider-content h3,
    .event-card .item-card-slider-box:hover .item-card-slider-content p {
        color: #fff;
    }

    .event-card-list .item-card-slider-image:hover {
        box-shadow: none;
    }

    .event-card-left-heading {
        flex-flow: row;
    }
    .event-card-left .item-card-slider-item {
        width: calc(33.33% - 20px);
    }
    a.generate_btn {
        order: 1;
        margin-left: 0;
        margin-right: 30px;
        padding: 9px 19px;
    }
    .filter-dropdown {
        order: 2;
    }

    .right {
        width: auto;
        margin: 0;
    }

    .event-card-left-heading .heading h2 {
        padding-bottom: 0;
    }
}


.login-block {
    background-color: #E4EFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 22px;
}

.toggle-password {
    font-weight: 400;
    position: absolute;
    right: 15px;
    color: #949CA9;
    font-size: 19px;
    cursor: pointer;
    top: 50%;
    transform: translate(0, -50%);
}

.form-input {
    position: relative;
}

input[type=date], input[type=text], input[type=password] {
    border: 1px solid #E8E9EA;
    background: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 0 15px;
    color: #2A2A2A;
    width: 100%;
    border-radius: 50px;
    background-color: #fff;
    height: 52px;
}

.login-block:after {
    content: "";
    width: 50%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #066c3be8;
}

.login-heading h3 {
    font-size: 24px;
    color: #282828;
    font-weight: 700;
    text-align: center;
    padding-bottom: 5px;
}

.login-heading p {
    font-size: 14px;
    color: #5A5A5A;
    text-align: center;
}

.login-form {
    margin-top: 30px;
}

.login-logo {
    position: absolute;
    top: -71px;
    left: 0;
    width: 120px;
    z-index: 1;
    opacity: 0.5;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-logo span {
    margin-top: 2px;
    display: block;
}

.login-block-wrapper {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    max-width: 540px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.login-block-bg {
    position: fixed;
    right: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow: hidden;
}

.login-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forget-redirect {
    display: block;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    color: #009EF7;
    margin-top: 15px;
}

.forget-redirect:hover {
    color: #77305D;
}

.form-col {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.form-col label {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 21px;
    padding: 0 0 5px;
}

.form-col-btn {
    display: table;
    margin: 0 auto;
}

.form-col-btn .btn {
    font-size: 15px;
    padding: 9px 67px 9px 24px;
}

.form-col-btn .btn-primary:after {
    width: 47px;
    height: 42px;
}

@media(min-width: 768px) {
    .login-block-wrapper {
        padding: 40px 40px 45px;
    }
}

@media(min-width: 1200px) {
.login-logo {
    top: 50%;
    left: -290px;
    transform: translate(0, -50%);
    width: 270px;
}

.login-logo span {
    position: absolute;
    left: 107px;
    bottom: 0;
}
}



.page-footer {
    padding: 30px 0 0;
    background-color: #ebebeb;
    overflow: hidden;
}

.page-footer-flex {
    display: flex;
    flex-direction: column;
}

.page-footer-flex p {
    font-size: 14px;
    color: #111212;
    text-align: center;
    display: block;
}

.page-footer-flex p a {
    color: #0a9753;
    transition: all ease 0.3s;
    text-decoration: underline;
    letter-spacing: 1px;
    margin-left: 5px;
    font-weight: 600;
    display: inline-block;
}

.footer-quick-link ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-quick-link ul li {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

.footer-quick-link ul li a {
    font-size: 13px;
    transition: all ease 0.3s;
    color: #111212;
    font-weight: 400;
    display: flex;
}

.footer-quick-link ul li a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: #b7b7b7;
    height: 100%;
    width: 2px;
    border-radius: 20px;
}

.footer-quick-link ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.footer-quick-link ul li:last-child a:after {
    display: none;
}

.footer-quick-link {
    padding: 10px 0;
    font-size: 14px;
}

.page-footer-flex p span {
    display: block;
    padding-top: 5px;
    /*border-top: 1px solid #49a779;*/
}

.certificate-footer {
    position: sticky;
    bottom: 0;
}

.certificate-area {
    margin: 0 auto;
    margin-top: 120px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: url(../img/certificate/logo.png) center center no-repeat #fff;
}

.timer-with-qnumber {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.clock-stopwatch {
    display: flex;
    font-size: 14px;
    color: #008445;
    font-weight: 700;
    align-items: center;
    width: auto;
    padding: 4px 15px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #8cc3a9;
}

.clock-stopwatch img {
    margin-right: 8px;
    max-width: 25px;
}

.detail-slider-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0 4px 44px rgba(0,0,0,0.15);
    padding: 10px;
    position: relative;
}

.detail-slider{
    padding: 40px 0;
}

.detail-slider-item {
    position: relative;
}
@media(min-width: 768px) {
    .page-footer-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .page-footer {
        padding: 6px 0;
    }

    .page-footer-flex p a:hover {
        color: #27f392;
    }

    .footer-quick-link ul li a:hover {
        color: #008445;
    }

    .page-footer-flex p {
        text-align: left;
        position: relative;
        display: flex;
        padding-right: 0;
        width: 58%;
    }

    .page-footer-flex p span {
        padding:0 0 0 15px;
        border-top: none;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .timer-with-qnumber {
        position: relative;
        max-width: 220px;
        margin-bottom: 20px;
        align-items: center;
    }

    .timer-with-qnumber h2.fs-title {
        margin-bottom: 0;
    }

    .clock-stopwatch {
        position: relative;
    }

    .detail-slider-wrapper {
        padding: 20px;
    }
}

@media(min-width: 1200px) {
    .footer-quick-link ul li a {
        font-size: 15px;
    }

    .page-footer-flex p {
        font-size: 15px;
    }

    .certificate-area {
        min-height: calc(100vh - 200px);
    }

    .page-footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 11;
    }    
}









.question-form-block {
    padding: 40px 0;
}
#msform fieldset {
    background: white;
    border: 0 none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}


#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #311B92
}



#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 20px;
    color: #363636;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
    font-weight: 600;
}

.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 17px;
    color: #8f8f8f;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.steps span {
    font-weight: 600;
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}


#progressbar .active {
    color: #673AB7
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 20%;
    float: left;
    position: relative;
    z-index: 1;
    font-weight: 400
}

#progressbar li:before {
    content: "";
    width: 22px;
    height: 22px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #12a55f;
}

.from-thankyou-text {
    color: #008445;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.from-thankyou-para {
    color: #414141;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.question-form {
    width: 85%;
    max-width: 720px;
    margin: 0 auto;
    padding: 15px 25px 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 44px rgba(0,0,0,0.15);
    display: none;
}

.question-section-section {
    display: none;
}

.question-section-section.active-ques {
    display: block;
}

.question-section-section.active-screen .detail-slider {
    display: none;
}

.question-section-section.active-screen .question-form {
    display: block;
}

.answer-option-list {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 15px;
    border-bottom: 1px solid lightgrey;
    padding-bottom: 15px;
}

.answer-option-list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.answer-option {
    display: block;
    position: relative;
    padding: 10px 16px;
    margin: 6px 0;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
}

.answer-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #eee;
    border-radius: 50px;
    width: 100%;
    z-index: -1;
}

.answer-option:hover input ~ .checkmark {
  background-color: #d1e9dd;
}

.answer-option:hover {
  color: #008445;
}


.answer-option .checkmark:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 50px;
    background: #d1e9dd;
    transition: all ease 0.3s;
}

.answer-option input:checked ~ .checkmark:after {
  width: 100%;
}

.answer-option input:checked ~ .checkmark:after {
  width: 100%;
}

.answer-option input:checked ~ .answer-option-content {
    color: #008445;
    transition: all ease 0.3s;
}

.form-card p {
    font-weight: 700;
    font-size: 15px;
    color: #3e3e3e;
    padding-top: 8px;
}


#msform .btn {
    margin: 0 auto;
    display: table;
}

#msform .btn.btn-secondary {
    padding: 7px 12px 7px 46px;
}

#msform .btn.btn-secondary:after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
    right: unset;
    top: -1px;
    left: -4px;
}

.answer-option-list-btn .btn {
    margin: 0 6px !important;
    width: 98px;
}

@media(min-width: 768px) {
.answer-option {
    width: calc(50% - 20px);
    margin: 8px 10px;
}

.answer-option-list {
    width: calc(100% + 20px);
    margin: 20px -10px 20px;
}
}

@media(min-width: 1200px) {
.question-form {
    padding: 25px 35px 40px;
    border-radius: 20px;
}

.answer-option {
    padding: 11px 20px;
    font-size: 16px;
}

#msform .btn {
    font-size: 16px;
    padding: 10px 70px 10px 24px;
}

#msform .btn.btn-secondary {
    padding: 10px 24px 10px 70px;
}

#progressbar {
    margin-bottom: 40px;
}

.form-card p {
    font-size: 18px;
}

.answer-option-list-btn .btn {
    margin: 0 10px !important;
    width: 147px;
}
}


