@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}

header {
    position: fixed;
    top: 60px;
    left: 80px;
    z-index: 1;
}

.login-page {
    display: flex;
    flex-flow: row wrap;
    background-color: #f6f6f6;
}

.page-logo {
    display: flex;
    margin-bottom: 10px;
}

.login-page.password {
    align-items: center;
}

    .login-page.password .form-section {
        margin-bottom: 17px;
    }

.otp-page section#form-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 195px;
    align-items: center;
    padding-left: 0;
}

.login-page.login .form-button-wrapper {
    margin-top: 17px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.login-page.login .login-pagee {
    margin-bottom: 25px;
}

.forgotpass section#form-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 175px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none !important;
}

a[onclick] {
    cursor: pointer;
}

#hero__img {
    width: 45%;
    background-image: linear-gradient(var(--color),var(--color));
    padding: 50px;
    padding-top: 0;
    position: relative;
}

.hero__img__banner {
    position: relative;
    z-index: 9;
}

    .hero__img__banner img {
        width: 100%;
        height: 100%;
        max-height: 470px;
    }

.mobile-menu {
    display: none;
}

#form-section {
    width: 55%;
}

.form-content-header {
    margin-bottom: 35px;
}

.page-title {
    font-family: "Poppins",sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 51px;
    margin-bottom: 6px;
    color: #000;
}

.title-tagline {
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}

.from-title {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.form-count {
    background-color: #caeaff;
    margin-right: 4px;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    padding: 4px 12px;
    color: #000;
}

.form-section-title {
    color: #000;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    padding: 4px 12px;
    background: linear-gradient(90deg,#caeaff 0%,rgba(255,255,255,0) 100%);
}

.from-row {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.form-field {
    width: calc(50% - 10px);
}

    .form-field.single-field {
        width: 100%;
    }

.textfield-outlined {
    position: relative;
    margin-bottom: 18px;
    padding-top: 6px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .4px;
}

    .textfield-outlined > input {
        font-family: "Poppins",sans-serif;
        box-sizing: border-box;
        width: 100%;
        padding: 9px 13px 9px;
        font-size: 14px;
        line-height: inherit;
        color: #000;
        border-style: solid;
        border-width: 1px;
        border-color: transparent #bcbcbc #bcbcbc;
        border-radius: 4px;
        -webkit-text-fill-color: currentColor;
        background-color: transparent;
        caret-color: var(--color);
        transition: border .2s,box-shadow .2s;
    }

        .textfield-outlined > input:not(:focus):placeholder-shown {
            border-top-color: #bcbcbc;
        }

            .textfield-outlined > input:not(:focus):placeholder-shown + label {
                font-size: 14px;
                line-height: 54px;
            }

        .textfield-outlined > input + label {
            display: flex;
            width: 100%;
            max-height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            font-size: 12px;
            line-height: 15px;
            color: #4c4c4c;
            cursor: text;
            transition: color .2s,font-size .2s,line-height .2s;
            font-family: "Poppins",sans-serif;
        }

            .textfield-outlined > input + label::before {
                content: "";
                display: block;
                box-sizing: border-box;
                height: 8px;
                min-width: 10px;
                margin-top: 6px;
                border-top: solid 1px #bcbcbc;
                pointer-events: none;
                box-shadow: inset 0 1px transparent;
                transition: border .2s,box-shadow .2s;
                margin-right: 4px;
                border-left: solid 1px transparent;
                border-radius: 4px 0;
            }

            .textfield-outlined > input + label::after {
                content: "";
                display: block;
                box-sizing: border-box;
                height: 8px;
                min-width: 10px;
                margin-top: 6px;
                border-top: solid 1px #bcbcbc;
                pointer-events: none;
                box-shadow: inset 0 1px transparent;
                transition: border .2s,box-shadow .2s;
                flex-grow: 1;
                margin-left: 4px;
                border-right: solid 1px transparent;
                border-radius: 0 4px;
            }

        .textfield-outlined > input:focus {
            border-color: transparent var(--color) var(--color);
            outline: 0;
        }

            .textfield-outlined > input:focus + label {
                color: #4c4c4c;
            }

                .textfield-outlined > input:focus + label::before {
                    border-top-color: var(--color) !important;
                }

                .textfield-outlined > input:focus + label::after {
                    border-top-color: var(--color) !important;
                }

    .textfield-outlined ~ label:hover > input {
        border-color: transparent;
    }

    .textfield-outlined label:hover > input + label::before {
        border-top-color: var(--color);
    }

    .textfield-outlined label:hover > input + label::after {
        border-top-color: var(--color);
    }

    .textfield-outlined label:hover > input:not(:focus):placeholder-shown {
        border-color: var(--color);
    }

    .textfield-outlined > input.input-validation-error {
        border-color: transparent #e94025 #e94025;
    }

        .textfield-outlined > input.input-validation-error:focus {
            border-color: transparent #e94025 #e94025;
            outline: 0;
        }

            .textfield-outlined > input.input-validation-error:focus + label::before {
                border-top-color: #e94025 !important;
            }

            .textfield-outlined > input.input-validation-error:focus + label::after {
                border-top-color: #e94025 !important;
            }

        .textfield-outlined > input.input-validation-error + label::before {
            border-color: #e94025;
        }

        .textfield-outlined > input.input-validation-error + label::after {
            border-color: #e94025;
        }

        .textfield-outlined > input.input-validation-error:not(:focus):placeholder-shown {
            border-color: #e94025;
        }

.password-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    padding-top: 6px;
    display: flex;
    align-items: center;
}

    .password-icon span {
        height: 12px;
        width: 15px;
    }

        .password-icon span.eye {
            display: none;
            background: url("/assets/MUSB2B/img/eye-on.svg") no-repeat;
        }

        .password-icon span.eye-off {
            background: url("/assets/MUSB2B/img/eye-off.svg") no-repeat;
            height: 12px;
        }

select.form-select {
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    padding: 9px 13px 9px;
    width: 100%;
    border-radius: 4px;
    border-color: #bcbcbc;
    color: #4c4c4c;
    appearance: none;
    background: url("/assets/MUSB2B/img/down-arrow.svg") 8px 4px no-repeat;
    background-position-x: calc(100% - 18px);
    background-position-y: 50%;
    line-height: 21px;
    transition: .5s all;
}

    select.form-select:focus-visible {
        border-color: var(--color);
        outline-color: var(--color);
    }

    select.form-select option {
        border-radius: 0;
        padding: 4px 10px;
    }

.error-massage {
    display: none;
    margin-top: 5px;
    padding-left: 15px;
    color: #f00;
    font-family: "Poppins",sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
}

.input-validation-error ~ .error-massage {
    display: block;
}

.validation-error .error-massage {
    display: block;
    padding-left: 0;
}

.checker-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.term-condition-checkbox > label {
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;
    color: black;
}

        .term-condition-checkbox > label a {
            color: var(--color);
            text-decoration: none;
        }

input[type=checkbox] {
    position: relative;
    border: 2px solid #bcbcbc;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 8px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    appearance: none;
    -webkit-appearance: none;
}

 input[type=checkbox] {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    position: relative;
}

input[type=checkbox]:checked {
    background-color: var(--color);
    border: 1px solid #fff;
}
input[type=checkbox]:checked::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-button-wrapper {
    padding-bottom: 35px;
    border-bottom: 1px dashed rgba(0,0,0,.22);
    margin-bottom: 35px;
}

    .form-button-wrapper .form-button {
        width: 200px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        line-height: 18px;
        font-family: "Poppins",sans-serif;
        padding: 11px 0;
        text-align: center;
        border-radius: 20px;
        background-color: var(--color2);
        border: 0;
    }

.login-page-link {
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}

    .login-page-link a {
        color: var(--color);
        text-decoration: none;
    }

    .login-page-link button {
        color: var(--color);
        text-decoration: none;
        font-size: 16px;
        border: 0;
        background-color: transparent;
        cursor: pointer;
    }

.forgot-password {
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color);
    border: 0;
    background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
}

.remember-me-checkbox label {
    font-family: "Poppins",sans-serif;
    color: #797979;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.verification-code--inputs {
    margin-bottom: 16px;
}

    .verification-code--inputs input[type=text] {
        height: 40px;
        width: 38px;
        padding: 8px;
        border: 1px solid #bcbcbc;
        border-radius: 4px;
        margin-right: 18px;
        text-align: center;
        font-family: "Poppins",sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        color: #000;
    }

        .verification-code--inputs input[type=text]:valid {
            background-color: #c5e4ff;
            border-color: #c5e4ff;
        }

        .verification-code--inputs input[type=text]:last-child {
            margin-right: 0;
        }

        .verification-code--inputs input[type=text]:focus-visible {
            border-color: var(--color);
            outline: 0;
        }

.otp-content {
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #797979;
}

    .otp-content span {
        color: var(--color);
    }

.password-validation-msg {
    font-family: "Poppins",sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #797979;
    padding-left: 15px;
}

.otp-page .form-section {
    margin-bottom: 35px;
}

.ut-modal-show {
    position: relative;
    transition: background-color .5s;
}

    .ut-modal-show::after {
        content: "";
        background: rgba(0,0,0,.8);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99;
    }

.ut-term-popup {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .ut-term-popup.show {
        display: flex;
    }

    .ut-term-popup .modal-dialog {
        width: 70%;
        height: calc(100vh - 80px);
        display: block;
        background: #fff;
        box-shadow: 0 2px 10px 0 rgba(0,0,0,.16);
        border-radius: 10px;
    }

    .ut-term-popup .modal-content {
        height: 100%;
        overflow-y: auto;
        padding: 0 !important;
    }

    .ut-term-popup .modal-header {
        display: flex;
        align-items: center;
        position: relative;
        padding: 20px 24px;
        gap: 15px;
        background-color: #e6f5ff;
        border-radius: 10px 10px 0 0;
        position: sticky;
        top: 0;
        z-index: 99;
        justify-content: left;
    }

    .ut-term-popup .modal-body {
        padding: 32px;
    }

    .ut-term-popup .modal-title {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
        color: #000;
    }

.close-popup {
    position: absolute;
    right: 16px;
    top: 0;
    width: 24px;
    height: 24px;
    bottom: 0;
    margin: auto;
    opacity: .3;
}

    .close-popup:hover {
        opacity: 1;
    }

    .close-popup::before {
        transform: rotate(45deg);
    }

    .close-popup::after {
        transform: rotate(-45deg);
    }

    .close-popup::before, .close-popup::after {
        position: absolute;
        left: 15px;
        content: " ";
        height: 24px;
        width: 2px;
        background-color: #333;
    }

#ut-termCondition {
    padding: 40px 0 50px;
}

.ut-page-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.ut-term-content {
    margin-bottom: 50px;
}

    .ut-term-content p, .ut-service-title-note {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #4b4b4b;
        margin-bottom: 16px;
    }

.ut-ourTermCondition > ol, .ut-ourTermCondition > ul {
    list-style-type: none;
    counter-reset: css-counter 0;
}

.ut-term-card {
    margin-bottom: 30px;
}

    .ut-term-card.active .ut-card-head::after {
        transform: rotate(136deg);
        bottom: 0;
        top: 8px;
    }

    .ut-term-card.active .ut-card-content {
        display: block;
    }

.ut-card-head {
    background-color: #e6f5ff;
    padding: 10px 16px;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

    .ut-card-head::before {
        counter-increment: css-counter 1;
        content: counter(css-counter) ". ";
    }

    .ut-card-head::after {
        content: "";
        position: absolute;
        right: 16px;
        bottom: 3px;
        top: 0;
        border-left: 1px solid var(--color);
        border-bottom: 1px solid var(--color);
        width: 10px;
        height: 10px;
        margin: auto;
        transform: rotate(-45deg);
    }

.ut-card-content {
    padding: 16px 0 30px;
    border-bottom: 1px dashed #bcbcbc;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #4b4b4b;
    display: none;
}

    .ut-card-content p {
        padding-bottom: 10px;
    }

    .ut-card-content ol, .ut-card-content ul {
        padding: 5px 0 5px 24px;
        list-style: lower-roman;
    }

        .ut-card-content ol li, .ut-card-content ul li {
            padding-left: 5px;
        }

.ut-service-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #000;
    margin-bottom: 12px;
}

.ut-our-services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.ut-service-box {
    width: calc(33.33% - 15px);
    position: relative;
    padding-left: 16px;
}

    .ut-service-box::after {
        content: "";
        width: 5px;
        height: 5px;
        background-color: #000;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 8px;
    }

.ut-service-box-title, .ut-service-address {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.ut-service-box-title {
    color: #000;
    font-weight: 600;
}

.ut-service-address {
    color: #4b4b4b;
}

@media(min-width:992px) and (max-width:1220px) {
    #form-section {
        width: 55%;
        display: flex;
        align-items: center;
    }

    .hero__img__banner {
        height: 100vh;
        position: relative;
        width: 100%;
    }

        .hero__img__banner img {
            width: 100%;
            height: 100%;
        }

    .verification-code--inputs input[type=text] {
        margin-right: 5px;
    }
}

@media(min-width:768px) and (max-width:991px) {
    header {
        position: absolute;
        top: 60px;
        left: 80px;
    }

    .hero__img__banner {
        height: auto;
        position: relative;
        width: 100%;
    }

        .hero__img__banner img {
            height: 430px;
        }

    #hero__img {
        width: 100%;
    }

    #form-section {
        width: 100%;
    }

    .ut-term-popup .modal-dialog {
        width: 85%;
    }
}

@media screen and (max-width:767px) {
    #hero__img {
        width: 100%;
    }

    .hero__img__banner {
        height: auto;
        width: 100%;
        position: initial;
    }

        .hero__img__banner img {
            height: 430px;
        }

    #form-section {
        width: 100%;
    }

    header {
        position: absolute;
        top: 60px;
        left: 60px;
    }

    .verification-code--inputs input[type=text] {
        margin-right: 5px;
    }

    .ut-term-popup .modal-body {
        padding: 24px;
    }

    .ut-term-popup .modal-dialog {
        width: 90%;
    }

    .ut-term-popup .modal-title {
        font-size: 18px;
    }

    .close-popup::before, .close-popup::after {
        height: 20px;
    }

    .ut-service-box {
        width: calc(50% - 15px);
    }

    .ut-card-head, .ut-service-title {
        font-size: 16px;
    }

    .ut-service-box-title, .ut-service-address, .ut-term-content p, .ut-service-title-note, .ut-card-content {
        font-size: 14px;
    }

    .ut-term-card {
        margin-bottom: 20px;
    }

    .ut-term-popup .modal-header {
        padding: 12px 24px;
    }
}

@media(max-width:575px) {
    .hero__img__banner img {
        height: 230px;
    }

    .logo {
        width: 148px;
    }

        .logo img {
            width: 100%;
        }

    header {
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 24px 18px;
    }

        header:is(.mobile-menu) a {
            font-size: 14px;
            font-weight: 400;
            line-height: 18px;
            font-family: "Poppins",sans-serif;
            color: #fff;
            text-decoration: none;
        }

    .mobile-menu {
        display: block;
    }

    .page-title {
        font-size: 24px;
        line-height: 36px;
    }

    .title-tagline {
        font-size: 14px;
    }

    .form-field {
        width: 100%;
    }

    .form-section-title {
        font-size: 12px;
        line-height: 18px;
    }

    .form-count {
        font-size: 12px;
        line-height: 18px;
    }

    .textfield-outlined > input + label {
        font-size: 10px;
    }

    .form-button-wrapper {
        border: 0;
        padding: 0;
        margin: 0;
        position: initial;
        left: 0;
        bottom: 10px;
        width: calc(100% - 36px);
        margin: 0 18px;
    }

        .form-button-wrapper .form-button {
            width: 100%;
        }

    .login-page-link {
        display: none;
    }

    .login-page.register {
        padding-bottom: 30px;
    }

    .ut-term-popup .modal-dialog {
        width: 100%;
        margin: 0 15px;
    }

    .ut-term-popup .modal-body {
        padding: 20px;
    }

    .ut-term-popup .modal-header {
        padding: 10px 20px;
    }

    .ut-term-popup .modal-title {
        font-size: 16px;
    }

    .close-popup::before, .close-popup::after {
        height: 18px;
    }

    .ut-service-box {
        width: 100%;
    }

    .ut-card-head, .ut-service-title {
        font-size: 14px;
    }

    .ut-card-head {
        padding-right: 32px;
    }

    .ut-service-box-title, .ut-service-address, .ut-term-content p, .ut-service-title-note, .ut-card-content {
        font-size: 12px;
    }

    .ut-term-card {
        margin-bottom: 20px;
    }
}

.ut-container-fluid {
    width: 100%;
    padding: 0 50px;
}

.section-title {
    font-family: "Poppins",sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 51px;
    color: #000;
    margin-bottom: 6px;
    text-align: center;
}

.section-tagline {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #797979;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.our-features-row, .our-numbers-row {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 30px;
    margin-top: 40px;
}

.number-item {
    width: calc(25% - 23px);
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 22px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    background: #e6f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    color: #797979;
    line-height: 24px;
    margin-bottom: 24px;
}

.feature-link {
    font-size: 14px;
    line-height: 16px;
    color: var(--color);
    font-weight: 400;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.number-value {
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
    color: var(--color);
}

.number-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #797979;
    margin-top: 8px;
}

footer {
    background-color: var(--color);
    padding: 12px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-info p {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }

        .contact-info p.contact-title {
            display: flex;
            align-items: center;
            gap: 4px;
        }

            .contact-info p.contact-title .support-icon {
                width: 20px;
                height: 20px;
                display: flex;
            }

            .contact-info p.contact-title a {
                border-right: 1px solid #fff;
                padding-right: 12px;
            }

        .contact-info p a {
            color: #fff;
            text-decoration: none;
        }

.our-feature-wrapper .owl-dots {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .our-feature-wrapper .owl-dots .owl-dot {
        background-color: rgba(0,0,0,.14);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color .3s;
    }

        .our-feature-wrapper .owl-dots .owl-dot.active {
            background-color: var(--color);
        }

#hero__img .owl-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

    #hero__img .owl-dots .owl-dot {
        background-color: rgba(255,255,255,.14);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color .3s;
    }

        #hero__img .owl-dots .owl-dot.active {
            background-color: #fff;
        }

.copyright {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        display: block;
    }

        .footer-socials a span {
            display: flex;
        }

.show {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    background-color: rgba(0,0,0,.66);
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-dialog {
    width: 80%;
    height: 100%;
    max-height: 600px;
    display: block;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.16);
    text-align: start;
    border-radius: 20px;
}

.modal-content {
    height: 100%;
    overflow: auto;
    padding: 20px;
}

.modal-header {
    display: flex;
    width: 100%;
    justify-content: end;
    position: sticky;
    top: 0;
    z-index: 99;
}

.ut-close-popup {
    cursor: pointer;
}

.login-page.login .modal-forgot-dialog {
    width: 700px;
    display: block;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.16);
    text-align: start;
    border-radius: 20px;
}

    .login-page.login .modal-forgot-dialog .form-content-header {
        margin-bottom: 25px;
    }

    .login-page.login .modal-forgot-dialog .form-button-wrapper {
        margin-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

.login-page.login .forgot-line {
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--color);
}

#slider-wrapper {
    width: 100%;
    height: 470px;
    margin: 50px auto;
    position: relative;
    margin-bottom: 0;
}

#s1 {
    padding: 5px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 25px;
    margin-left: -36px;
    border-radius: 20px;
    opacity: .3;
    cursor: pointer;
    z-index: 999;
}

#s2 {
    padding: 5px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 25px;
    margin-left: -12px;
    border-radius: 20px;
    opacity: .3;
    cursor: pointer;
    z-index: 999;
}

#s3 {
    padding: 5px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 25px;
    margin-left: 12px;
    border-radius: 20px;
    opacity: .3;
    cursor: pointer;
    z-index: 999;
}

#s4 {
    padding: 5px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 25px;
    margin-left: 36px;
    border-radius: 20px;
    opacity: .3;
    cursor: pointer;
    z-index: 999;
}

    #s1:hover, #s2:hover, #s3:hover, #s4:hover {
        opacity: .5;
    }

.inner-wrapper {
    width: 100%;
    height: 470px;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
}

.control {
    display: none;
}

#Slide1:checked ~ .overflow-wrapper {
    margin-left: 0%;
}

#Slide2:checked ~ .overflow-wrapper {
    margin-left: -100%;
}

#Slide3:checked ~ .overflow-wrapper {
    margin-left: -200%;
}

#Slide4:checked ~ .overflow-wrapper {
    margin-left: -300%;
}

#Slide1:checked + #s1 {
    opacity: 1;
}

#Slide2:checked + #s2 {
    opacity: 1;
}

#Slide3:checked + #s3 {
    opacity: 1;
}

#Slide4:checked + #s4 {
    opacity: 1;
}

.overflow-wrapper {
    width: 400%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: hidden;
    z-index: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .overflow-wrapper .slide img {
        width: 25%;
        float: left;
    }

.our-feature-wrapper .swiper {
    width: 100%;
    height: 332px;
}

.our-feature-wrapper .swiper-pagination-lock {
    display: block;
    bottom: -5px;
    z-index: 9;
}

.our-feature-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
