* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    overflow-x: hidden;
}

:root {
    --Calibre-Thin: CalibreThin;
    --Calibre-Light: CalibreLight;
    --Calibre-Regular: CalibreRegular;
    --Calibre-Medium: CalibreMedium;
    --Calibre-Semibold: CalibreSemibold;
    --Calibre-Black: CalibreBlack;
    --dark-color: #333333;
    --orange-color: #f9812a;
    --green-color: #13d3a5;
    --red-color: #d50e0e;
    --green-blue: #387bf7;
    --hover-orange: #cf691f;
    --hover-blue: #1056d9;
    --hover-green: #0c9977;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: CalibreThin;
    src: url("../font/CalibreThin.otf");
}

@font-face {
    font-family: CalibreLight;
    src: url("../font/CalibreLight.otf");
}

@font-face {
    font-family: CalibreRegular;
    src: url("../font/CalibreRegular.otf");
}

@font-face {
    font-family: CalibreMedium;
    src: url("../font/CalibreMedium.otf");
}

@font-face {
    font-family: CalibreSemibold;
    src: url("../font/CalibreSemibold.otf");
}

@font-face {
    font-family: CalibreBold;
    src: url("../font/CalibreBold.otf");
}

@font-face {
    font-family: CalibreBlack;
    src: url("../font/CalibreBlack.otf");
}

.main-container {
    max-width: 1728px;
    margin: auto;
}

.container {
    max-width: 1565px;
    padding: 0px 20px;
    margin: auto;
}

.btn-orange,
.btn-green,
.btn-blue {
    transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    background-color: var(--orange-color);
    color: white;
    padding: 11px 20px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.btn-green {
    background-color: var(--green-color);
}

.btn-blue {
    background-color: var(--green-color);
}

.btn-hover-orange:hover {
    background-color: var(--hover-orange) !important;
}

.btn-hover-green:hover {
    background-color: var(--hover-green);
}

.btn-hover-blue:hover {
    background-color: var(--hover-blue);
}

/* _________________Header start________________ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 58px 0px 35px;
}

    header .header-left-part {
        width: 50%;
        display: flex;
        align-items: center;
    }

    header .header-right-part {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    header .header-left-part ul {
        margin-left: 121px;
    }

        header .header-left-part ul li {
            display: inline-block;
            position: relative;
        }

            header .header-left-part ul li a {
                display: flex;
                align-items: center;
                text-decoration: none;
            }

                header .header-left-part ul li a span {
                    color: #858585;
                    font-size: 18px;
                    font-family: CalibreRegular;
                    padding-top: 7px;
                    margin-left: 20px;
                    transition: all 0.3s;
                    -webkit-transition: all 0.3s;
                    -ms-transition: all 0.3s;
                    -o-transition: all 0.3s;
                }

    header ul li a:hover svg rect,
    header ul li a:hover svg path {
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

    header .header-left-part ul li.resources {
        margin-left: 83px;
    }

    header ul li a:hover svg rect,
    header ul li a:hover svg path {
        fill: #f9812a;
    }

    header ul li a:hover span {
        color: var(--orange-color);
    }

.profile-dropdown {
    display: flex;
    align-items: center;
    margin-left: 61px;
}

    .profile-dropdown .nice-select {
        border: 0;
        padding: 0px 32px 0px 13px;
    }

        .profile-dropdown .nice-select span.current {
            font-size: 18px;
            font-family: CalibreRegular;
            position: relative;
            top: 3px;
        }

.profile-wrapper .nice-select:after {
    border-color: #000;
    width: 8px;
    height: 8px;
    right: 9px;
    top: 48%;
}

.search-bar {
    display: flex;
    align-items: center;
    max-width: 503px;
    width: 100%;
    padding: 0px 32px;
    border-left: 1px solid #eaeaea;
    height: 89px;
    border-right: 1px solid #eaeaea;
}

    .search-bar input[type="text"] {
        border: 0;
        font-size: 18px;
        font-family: CalibreRegular;
        width: 100%;
        padding-top: 4px;
    }

        .search-bar input[type="text"]:focus {
            outline: none;
        }

        .search-bar input[type="text"]::placeholder {
            color: #858585;
        }

    .search-bar img {
        margin-right: 20px;
    }

header .header-left-part ul li::before {
    content: "";
    width: 0;
    display: block;
    position: absolute;
    bottom: -31px;
    height: 3px;
    background: var(--orange-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

header .header-left-part ul li:hover::before {
    width: 100%;
}

.close-btn,
.mobile-menu {
    display: none !important;
}
/* ______________________header end_______________________ */

/* ____________________courses start___________________ */
.courses {
    background: #ededed;
}

.title {
    color: #333;
    font-family: Rubik;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.courses-title {
    padding: 58px 0px 40px 20px;
    max-width: 1565px;
    margin: auto;
}

.courses-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 77px;
}

    .courses-wrapper .courses-box {
        display: inline-block;
        width: 32%;
        background: #fff;
        box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.02);
        padding: 25px 22px 21px;
    }

.courses-box.orange .courses-banner {
    background: #ffd9be;
}

.courses-box .courses-banner {
    padding: 17px 21px 29px;
}

    .courses-box .courses-banner button.courses-btn, .courses-box .courses-banner a.courses-btn {
        border-radius: 36px;
        border: 0;
        font-size: 18px;
        color: #fff;
        font-family: CalibreRegular;
        padding: 9px 19px 5px;
    }

.courses-box.orange .courses-banner button.courses-btn, .courses-box.orange .courses-banner a.courses-btn {
    background: var(--orange-color);
    transition: 0.4s all ease-in-out;
    -webkit-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
}

.courses-box .courses-banner p {
    font-family: Rubik;
    font-size: 53.49px;
    font-style: normal;
    font-weight: 400;
    line-height: 56.811px;
    text-transform: uppercase;
    padding: 106px 0px;
}

.courses-box.orange .courses-banner p {
    color: var(--orange-color);
}

.courses-wrapper .courses-box ul li {
    display: flex;
    padding: 20px 21px;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

    .courses-wrapper .courses-box ul li span {
        font-size: 18px;
        font-family: CalibreLight;
        color: #050505;
        margin-left: 25px;
        padding-top: 3px;
    }

        .courses-wrapper .courses-box ul li span b {
            font-family: var(--Calibre-Medium);
        }

.courses-wrapper .courses-box .course-progress {
    padding: 27px 21px 0px 21px;
}

    .courses-wrapper .courses-box .course-progress .course-progress-slide {
        display: block;
        width: 100%;
        border-radius: 26px;
        background: #f0f0f0;
        height: 6px;
        position: relative;
        margin-bottom: 13px;
    }

        .courses-wrapper .courses-box .course-progress .course-progress-slide span {
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 26px;
            height: 6px;
        }

.courses-box.orange .course-progress span {
    background: var(--orange-color);
    width: 0;
    max-width: 100%;
}

.courses-box.green .course-progress .course-progress-slide span {
    width: 0;
    max-width: 100%;
    background: var(--green-color);
}

.courses-box .course-progress .course-progress-text p {
    font-size: 18px;
    font-family: CalibreLight;
    color: #050505;
    text-align: left;
}

    .courses-box .course-progress .course-progress-text p:nth-child(2) {
        text-align: right;
    }

.courses-wrapper .courses-box .course-progress .course-progress-text {
    display: flex;
    justify-content: space-between;
}

.courses-box.blue .courses-banner {
    background: #cfdfff;
}

    .courses-box.blue .courses-banner button.courses-btn, .courses-box.blue .courses-banner a.courses-btn {
        background: var(--green-blue);
        transition: 0.4s all ease-in-out;
        -webkit-transition: 0.4s all ease-in-out;
        -ms-transition: 0.4s all ease-in-out;
        -o-transition: 0.4s all ease-in-out;
    }

.courses-box .courses-banner button.courses-btn, .courses-box .courses-banner a.courses-btn {
    cursor: pointer;
}

.courses-box.blue .courses-banner p {
    color: var(--green-blue);
}

.courses-box.green .courses-banner {
    background: #c1f4e8;
}

    .courses-box.green .courses-banner button.courses-btn, .courses-box.green .courses-banner a.courses-btn {
        background: var(--green-color);
        transition: 0.4s all ease-in-out;
        -webkit-transition: 0.4s all ease-in-out;
        -ms-transition: 0.4s all ease-in-out;
        -o-transition: 0.4s all ease-in-out;
    }

    .courses-box.green .courses-banner p {
        color: var(--green-color);
    }

.courses-box.green .ourse-Progress .ourse-Progress-slide span {
    background: var(--green-color);
    width: 100%;
}

.courses-box.green .courses-banner button.courses-btn:hover {
    background-color: #0c9977;
}

.courses-box.blue .courses-banner button.courses-btn:hover {
    background-color: #1056d9;
}

.courses-box.orange .courses-banner button.courses-btn:hover {
    background-color: #cf691f;
}
/* _________________________courses end_________________ */

/* __________________counter start_____________________ */
.counter .counter-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 51px 0px;
}

    .counter .counter-wrapper .counter-box {
        width: 32%;
        border: 1px solid #dadada;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px 21px;
    }

        .counter .counter-wrapper .counter-box .counter-box-detail {
            width: 230px;
            position: relative;
            height: 192px;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: space-between;
        }

            .counter .counter-wrapper .counter-box .counter-box-detail img {
                position: absolute;
                z-index: -1;
            }

            .counter .counter-wrapper .counter-box .counter-box-detail h6 {
                color: #292929;
                text-align: center;
                font-family: Rubik;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 26px; /* 162.5% */
                text-transform: uppercase;
            }

            .counter .counter-wrapper .counter-box .counter-box-detail h4 {
                text-align: center;
                font-family: Rubik;
                font-size: 79px;
                font-style: normal;
                font-weight: 400;
                line-height: 56.811px; /* 71.912% */
                text-transform: uppercase;
            }

            .counter .counter-wrapper .counter-box .counter-box-detail p {
                font-size: 18px;
                font-family: CalibreLight;
                color: #050505;
            }

.counter-box.counter-green .counter-box-detail h4 {
    color: var(--green-color);
}

.counter-blue .counter-box-detail h4 {
    color: var(--green-blue);
}

.counter-orange .counter-box-detail h4 {
    color: var(--orange-color);
}
/* _______________________counter end_________________________ */

/* _________________Modal start_______________________ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

    .modal .modal-dialog {
        transform: none;
        transition: transform 0.3s ease-out;
        -webkit-transition: transform 0.3s ease-out;
        -ms-transition: transform 0.3s ease-out;
        -o-transition: transform 0.3s ease-out;
        min-height: calc(100% - 3.5rem);
        max-width: 536px;
        margin: 1.75rem auto;
        display: flex;
        align-items: center;
        position: relative;
        width: auto;
        pointer-events: none;
    }

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    background: #fff;
    box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.02);
    outline: 0;
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.32);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-icon {
    text-align: right;
    padding: 14px 16px 0px 0px;
}

.start-cours {
    padding: 0px 67px 53px;
}

    .start-cours button, .start-cours a {
        background: var(--green-blue);
        color: #fff;
        text-align: center;
        font-family: Rubik;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 171.429% */
        letter-spacing: 0.9px;
        text-transform: uppercase;
        border: 0;
        width: 100%;
        padding: 11px 0px;
        cursor: pointer;
        display: inline-block;
    }

    .start-cours h2 {
        color: #333;
        text-align: center;
        font-family: Rubik;
        font-size: 79px;
        font-style: normal;
        font-weight: 400;
        line-height: 56.811px; /* 71.912% */
        padding: 25px 0px 36px;
    }

    .start-cours p {
        font-family: CalibreLight;
        max-width: 280px;
        margin: auto;
        text-align: center;
        line-height: 28px;
    }

.close-icon img {
    cursor: pointer;
}

body.scrollstop {
    overflow: hidden;
}
/* __________________________modal end________________________ */

/*============================ login panel css start ========================== */
.login-logo {
    background-color: var(--dark-color);
    padding: 30px 20px;
}

.login-hero-sec img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.login-hero-sec-contant {
    background-image: url(../assets/image/login-hero-sec-img.png);
    padding: 202px 20px;
    background-size: cover;
    display: flex;
    flex-flow: column;
}

    .login-hero-sec-contant h2 span {
        position: relative;
        top: -17px;
        left: -6px;
    }

    .login-hero-sec-contant span {
        font-size: 30px;
        margin-top: 10px;
        line-height: 1.1;
    }

    .login-hero-sec-contant h2,
    .login-hero-sec-contant h3 {
        background-color: var(--dark-color);
        color: white;
        text-transform: uppercase;
        font-weight: 300;
        padding: 11px 20px;
        text-align: center;
        font-size: 53px;
        margin: 0 auto;
        vertical-align: sub;
        display: inline-block;
        position: relative;
    }

    .login-hero-sec-contant h3 {
        margin-top: -20px;
        color: var(--orange-color);
    }

    .login-hero-sec-contant p {
        color: white;
        font-size: 21px;
        margin: 29px 0 25px 0;
        text-align: center;
        font-family: var(--Calibre-Thin);
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-style: normal;
        font-weight: 300;
        line-height: 1.2;
        letter-spacing: 0.4px;
    }

    .login-hero-sec-contant a {
        margin: 0 auto;
        max-width: 208px;
        width: 100%;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

.cpd-background {
    background-image: url(../assets/image/cpd-background.png);
    width: auto;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
}

.cpd-aside-sec {
    max-width: 1278px;
    width: 100%;
    margin: 0 auto;
    padding: 113px 20px 89px 20px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.cpd-left-sec {
    max-width: 492px;
    width: 100%;
}

    .cpd-left-sec h2 {
        color: #292929;
        font-size: 40px;
        font-weight: 300;
        margin-bottom: 33px;
        padding: 16px 0;
        text-transform: uppercase;
    }

.cpd-left-info {
    border-left: 1px solid var(--orange-color);
    padding-left: 47px;
    padding-right: 32px;
}

    .cpd-left-info p {
        color: #050505;
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
        font-family: var(--Calibre-Thin);
        font-weight: 300;
        letter-spacing: 0.2px;
        max-width: 428px;
        width: 100%;
    }

.login-input-filed {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding-right: 10px;
}

    .login-input-filed input {
        padding: 12px 24px;
        border-radius: 47px;
        font-size: 18px;
        border: 0.5px solid #4b4b4b;
    }

        .login-input-filed input::placeholder {
            font-size: 18px;
            color: #050505;
            font-family: var(--Calibre-Thin);
        }

.invisible-button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.nice-select .option a {
    color: #000;
}

.cpd-left-info button {
    width: calc(100% - 15px);
    border: 1px solid transparent;
    cursor: pointer;
    box-sizing: border-box;
    background-color: var(--orange-color);
    color: white;
    padding: 11px 20px;
    display: block;
    text-align: center;
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.9px;
    margin-right: 10px;
}

.cpd-left-info a {
    background-color: var(--orange-color);
    color: white;
    padding: 11px 20px;
    display: block;
    text-align: center;
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.9px;
    margin-right: 10px;
}

.login-form-main-sec img {
    max-width: 634px;
    width: 100%;
}

.refuel-sec-logo-img {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

    .refuel-sec-logo-img a {
        font-size: 18px;
        color: #050505;
        font-weight: 500;
        font-family: var(--Calibre-Semibold);
        width: 107px;
        height: 24px;
    }

.hall-sec img {
    width: 100%;
    display: block;
}
/*============================ login panel css end ========================== */

/*============================ learning-outcomes css start ========================== */
.learning-top-border {
    border-top: 1px solid #eaeaea;
}

div#smartwizard .progress,
div#choices .progress {
    display: none;
}

    div#choices .progress.visible {
        transform: translateY(-7px);
        display: inline-block;
    }

.sw > .progress > .progress-bar {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.learning-staps .top-heading-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--dark-color);
    padding: 40px 0 34px 0;
    background-color: white;
}

.learning-staps .sw-theme-basic {
    border: none;
}

    .learning-staps .sw-theme-basic > .nav {
        box-shadow: none !important;
        position: relative;
        max-width: 1568px;
        width: 100%;
        margin: 0 auto;
    }

.learning-staps .nav-link {
    display: flex !important;
    align-items: center;
}

.learning-staps .learning-steps-btn {
    width: 100%;
    background-color: var(--green-color);
    max-height: 6px;
    position: relative;
    height: 38px !important;
}

    .learning-staps .learning-steps-btn .learning-steps-round {
        position: absolute;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        z-index: 50;
        border-radius: 50%;
        background-color: var(--green-color);
        padding: 10px;
        display: flex;
    }
/* .learning-staps .learning-steps-btn .learning-steps-round img {
  position: absolute;
  top: 10px;
  left: 10px;
} */
.learning-staps .learning-steps-round {
    width: 38px;
    height: 38px;
}

.learning-staps .nav-link.active .learning-steps-btn {
    background-color: var(--orange-color);
}

.learning-staps .nav-link.active .learning-steps-round {
    background-color: var(--orange-color);
}

.nav-link.default .learning-steps-btn,
.nav-link.default .learning-steps-round {
    background-color: #c7c7c7;
}

.nav-link.default.done .learning-steps-btn,
.nav-link.default.done .learning-steps-round {
    background-color: var(--green-color);
}

.learning-staps .sw-theme-basic > .nav .nav-link.active::after {
    background: transparent;
    height: 0px;
}

.learning-staps .sw-theme-basic > .nav .nav-link::after {
    height: 0px;
}

.learning-top-border .sw-theme-basic > .nav .nav-link {
    margin-right: 0;
}

.learning-staps .main-tab-contant {
    background-color: #ededed;
    margin-top: -62px;
}

.learning-top-border .heading-title {
    color: var(--dark-color);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

.tab-content .tab-contant-main-box {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 37px;
}

    .tab-content .tab-contant-main-box .tab-contant-info {
        height: 247px;
        padding: 37px 32px;
        background-color: white;
        flex-grow: 1;
    }

        .tab-content .tab-contant-main-box .tab-contant-info h2 {
            color: #a9a9a9;
            font-size: 64px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .tab-content .tab-contant-main-box .tab-contant-info p {
            color: #050505;
            font-size: 22px;
            font-style: normal;
            font-weight: 300;
            line-height: 1.3;
            margin-top: 23px;
            font-family: var(--Calibre-Light);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.refuel-round {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.heading-title .toolbar-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1565px;
    padding: 0px 20px;
    margin: auto;
    margin-top: 78px;
}

.sw-theme-basic .toolbar > .sw-btn {
    background-color: var(--orange-color);
    border: none;
    padding: 11px 20px;
    max-width: 194px;
    width: 100%;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.sw-theme-basic .toolbar > .sw-btn-prev {
    background-color: transparent;
    border: 1px solid #c8c8c8;
    color: black;
    margin: 0;
}
/*============================ learning-outcomes css end ========================== */
/*============================ Static Bulletpoints css start ========================== */
.learning-staps .tab-content .static-bulletpoints h3 {
    text-align: center;
    padding: 74px 0 40px;
    margin-top: 50px;
}

.earthquake-design-box {
    padding: 49px 54px 29px 65px;
    background: #fff;
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.earthquake-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.earthquake-img video {
    display: block;
}

.earthquake-img {
    flex-grow: 1;
    max-width: 764px;
    width: 100%;
    margin: auto;
    position: relative;
}

    .earthquake-img img.play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 82px;
        width: 82px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 1;
    }

.seismic-design ul li {
    margin-left: 20px;
    line-height: 1.4;
    font-family: var(--Calibre-Light);
}

.seismic-design p {
    padding-bottom: 14px;
    font-size: 22px;
    font-family: var(--Calibre-Regular);
}

.seismic-design {
    margin-bottom: 37px;
}

    .seismic-design:last-child {
        margin-bottom: 0;
    }

.earthquake-content {
    max-width: 565px;
    width: 100%;
    flex-grow: 1;
}

.building-content {
    max-width: 438px;
}

.main-tab-contant .sw-toolbar-elm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 78px 20px 57px 20px;
}

.earthquake-img p {
    font-family: var(--Calibre-Light);
    display: block;
    text-align: right;
    font-size: 14px;
    padding: 6px 0px 0px 0px;
}
/*============================ Static Bulletpoints css end ========================== */
/*============================ Static content css start ========================== */
.learning-staps .tab-content .earthquake-design-box .seismic-design h4 {
    color: #050505;
    font-family: var(--Calibre-Regular);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.learning-staps
.tab-content
.earthquake-design-box
.static-content-info-text
p {
    margin-top: 26px;
    color: #050505;
    font-family: var(--Calibre-Light);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    padding: 0;
}

.learning-staps .tab-content .earthquake-design-box .static-content-info-text {
    max-width: 438px;
    width: 100%;
}

.learning-staps .tab-content .static-content-info-text p:nth-child(2),
.learning-staps .tab-content .static-content-info-text p:nth-child(3) {
    padding: 0;
    margin-bottom: 29px;
}

.learning-staps .earthquake-design-box .building-earthquake-img img {
    width: 100%;
    display: block;
}

/*============================ Static content css end ========================== */

/*============================ Static 3- col css start ========================== */
.learning-staps .static-column {
    text-align: center;
    padding: 74px 0 31px;
    margin: 50px auto 0 auto;
}

span.percentage {
    font-size: 10px;
    position: relative;
    top: -8px;
}

.learning-staps .static-column .col-text {
    font-family: var(--Calibre-Light);
    color: #050505;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    letter-spacing: 0.4px;
    font-weight: 300;
    line-height: 1.3;
    max-width: 764px;
    width: 100%;
    margin: 20px auto 52px auto;
}

.learning-staps .static-column .static-column-main {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    gap: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

    .learning-staps .static-column .static-column-main .static-column-info {
        background-color: white;
        padding: 64px 61px 30px 64px;
        max-width: 404px;
        width: 100%;
    }

        .learning-staps .static-column .static-column-main .static-column-info p {
            margin-top: 74px;
            line-height: 1.4;
            color: #050505;
            text-align: center;
            font-family: var(--Calibre-Medium);
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            text-transform: uppercase;
        }

        .learning-staps .static-column .static-column-main .static-column-info img {
            display: block;
            max-width: 100%;
            margin: 0 auto;
        }

/*============================ Static 3- col css end ========================== */

/*============================ earthquake video css start ========================== */
.earthquake-video-box {
    padding: 49px 133px 60px;
}
/*============================ earthquake video css end ========================== */
/*============================ complate-steps css start ========================== */
.complate-steps {
    display: flex;
    align-items: start;
    gap: 60px;
}

.learning-staps .tab-content .complate-steps {
    padding: 74px 0 0;
    margin-top: 50px;
}

    .learning-staps .tab-content .complate-steps h3 {
        line-height: 1.4;
        margin-bottom: 36px;
    }

    .learning-staps .tab-content .complate-steps p {
        font-family: var(--Calibre-Light);
        font-size: 22px;
        line-height: 1.4;
    }

.certificate-achievement {
    max-width: 416px;
}

.certificate-achievement,
.certificate-img,
.download-cerificate {
    width: 100%;
    flex-grow: 1;
}

.certificate-img {
    max-width: 471px;
}

    .certificate-img img {
        width: 100%;
    }

.download-cerificate {
    max-width: 496px;
}

    .download-cerificate a {
        background: #fff;
        padding: 44px 73px 36px 72px;
        display: block;
        font-size: 22px;
        color: #050505;
        font-family: var(--Calibre-Regular);
        margin-bottom: 31px;
        text-align: center;
        display: block;
        text-transform: uppercase;
    }

        .download-cerificate a:last-child {
            margin-bottom: 0;
        }
/*============================ complate-steps css end ========================== */

/*================------- multipal-choice page css start------------============= */
#choices .main-tab-contant .multipal-choice-sec {
    margin: 0 auto;
    padding: 84px 0 0px 0;
    text-align: center;
    margin-top: 50px;
}

    #choices .main-tab-contant .multipal-choice-sec h3 {
        margin-bottom: 28px;
    }

    #choices .main-tab-contant .multipal-choice-sec .foraml-info-text {
        color: #050505;
        text-align: center;
        font-family: var(--Calibre-Light);
        font-size: 22px;
        font-style: normal;
        font-weight: 300;
        line-height: 1.4;
        max-width: 565px;
        width: 100%;
        margin: 0 auto;
    }

#choices .main-tab-contant .sw-toolbar-elm {
    padding: 57px 20px 57px 20px;
}

/*Checkboxes styles*/
.select-boxes {
    gap: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 300px;
}

    .select-boxes input[type="checkbox"], .select-boxes input[type="radio"] {
        display: none;
    }

        .select-boxes input[type="checkbox"] + label, .select-boxes input[type="radio"] + label {
            display: block;
            position: relative;
            /* margin-bottom: 20px; */
            cursor: pointer;
            padding: 55px 40px;
            background-color: white;
            color: var(--dark-color);
            font-size: 24px;
            text-transform: uppercase;
        }

        .select-boxes
        input[type="checkbox"] + label {
            font-size: 18px;
        }

        .select-boxes input[type="checkbox"].correct + label:before, .select-boxes input[type="radio"].correct + label:before {
            content: "";
            display: block;
            position: absolute;
            left: 35px;
            top: 50%;
            transform: translateY(-50%);
            background-image: url(../assets/image/green-icon.svg);
            width: 36px;
            height: 36px;
            transition: all 0.12s;
            -webkit-transition: all 0.12s;
            -ms-transition: all 0.12s;
            -o-transition: all 0.12s;
            object-fit: cover;
            opacity: 0;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .select-boxes input[type="checkbox"].correct:checked + label, .select-boxes input[type="radio"].correct:checked + label {
            background-color: var(--green-color);
            color: white;
        }

        .select-boxes input[type="checkbox"].incorrect + label:before, .select-boxes input[type="radio"].incorrect + label:before {
            content: "";
            display: block;
            position: absolute;
            left: 35px;
            top: 50%;
            transform: translateY(-50%);
            background-image: url(../assets/image/red-icon.svg);
            width: 36px;
            height: 36px;
            transition: all 0.12s;
            -webkit-transition: all 0.12s;
            -ms-transition: all 0.12s;
            -o-transition: all 0.12s;
            object-fit: cover;
            opacity: 0;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .select-boxes input[type="checkbox"].incorrect:checked + label, .select-boxes input[type="radio"].incorrect:checked + label {
            background-color: var(--red-color);
            color: white;
        }

        .select-boxes input[type="checkbox"] + label:before, .select-boxes input[type="radio"] + label:before {
            content: "";
            display: block;
            position: absolute;
            left: 35px;
            top: 50%;
            transform: translateY(-50%);
            background-image: url(../assets/image/blue-icon.svg);
            width: 36px;
            height: 36px;
            transition: all 0.12s;
            -webkit-transition: all 0.12s;
            -ms-transition: all 0.12s;
            -o-transition: all 0.12s;
            object-fit: cover;
            opacity: 0;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .select-boxes input[type="checkbox"]:checked + label, .select-boxes input[type="radio"]:checked + label {
            background-color: var(--green-blue);
            color: white;
        }

            .select-boxes input[type="checkbox"]:checked + label:before, .select-boxes input[type="radio"]:checked + label:before {
                opacity: 1;
            }
/*Checkboxes styles  end*/
#choices .main-tab-contant .multipal-choice-sec .select-ans {
    padding: 76px 0 24px 0;
    color: #adadad;
    text-align: center;
    font-family: var(--Calibre-Regular);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

#choices
.main-tab-contant
.multipal-choice-sec
.select-boxes
.main-checkbox {
    max-width: 496px;
    width: 100%;
    margin: 0 auto;
    min-height: 139px;
    height: 100%;
}
/* step-2 css  */
#choices .main-tab-contant .multipal-step-two {
    max-width: 1034px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#choices
.main-tab-contant
#step-4
.select-boxes
input[type="checkbox"] + label {
    line-height: 1.4;
    padding: 20px 88px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: lowercase;
}

/*================------- multipal-choice page css end------------============= */

.base-timer__circle {
    fill: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: #ededed;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    -webkit-transition: 1s linear all;
    -ms-transition: 1s linear all;
    -o-transition: 1s linear all;
    fill-rule: nonzero;
    stroke: var(--green-color);
}

.step-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.base-timer {
    position: relative;
}

.base-timer__label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Rubik;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
    color: #333;
}

.timer-set {
    display: flex;
    align-items: center;
}

    .timer-set p {
        font-size: 18px;
        color: #050505;
        padding-left: 23px;
        --Calibre-Regular: CalibreRegular;
    }
/* ------------------------------------------------------------- */
#box-success .multipal-choice-sec .main-checkbox .box-green {
    background-color: var(--green-color);
    color: white;
}

#box-success .select-boxes input[type="checkbox"] + .box-green:before {
    background-image: url(../assets/image/green-icon.svg);
    opacity: 1;
    display: block;
}

#box-success .multipal-choice-sec .main-checkbox .box-red {
    background-color: var(--red-color);
    color: white;
}

#box-success .select-boxes input[type="checkbox"] + .box-red:before {
    background-image: url(../assets/image/red-icon.svg);
    opacity: 1;
    display: block;
}

#box-success .multipal-choice-sec .main-checkbox .box-blue {
    background-color: var(--green-blue);
    color: white;
}

#box-success .select-boxes input[type="checkbox"] + .box-blue:before {
    background-image: url(../assets/image/blue-icon.svg);
    opacity: 1;
    display: block;
}

.tab-content {
    min-height: 500px;
}

.main-tab-contant .sw-toolbar-elm .btn-hover-orange {
    border: 1px solid var(--orange-color);
}
