​*,
html,
body {
    font-family: "Roboto" !important;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.z-index-1055 {
    z-index: 1055 !important;
}

.bg-fafa {
    background-color: #fafafa;
}

.bg-5b {
    background-color: #5b7d99;
}

.btn-dark, .btn-white, .btn-info {
    border-radius: 99px;
    background-color: var(--colors-primary-primary-500);
    box-shadow: var(--shadows-shadow-xs);
    border: 0px solid;
    border-color: var(--colors-primary-primary-500);
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    gap: 10px;
    color: #ffffff;

    &:hover,
    &:focus,
    &:active,
    &:focus-visible,
    &:focus-within {
        background-color: var(--colors-primary-primary-500);
        border-color: var(--colors-primary-primary-500);
        color: #ffffff;
        box-shadow: var(--shadows-shadow-xs);
        outline: none !important;
    }
}

.btn-dark {
    border: 1px solid #263540;
    box-shadow: 0px 1px 2px 0px #1018280d;
    background: #263540;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;

    &:hover,
    &:focus,
    &:active,
    &:focus-visible,
    &:focus-within {
        background-color: #000000;
        border-color: #000000;
        color: #ffffff;
        box-shadow: var(--shadows-shadow-xs);
        outline: none !important;
    }
}

.btn-white {
    background-color: #ffffff;
    color: var(--colors-primary-primary-500);
    border-color: #ffffff;

    &.btn-border {
        color: #344054;
        border: 1px solid #d0d5dd;
    }

    &:hover,
    &:focus,
    &:active,
    &:focus-visible,
    &:focus-within {
        background-color: #ffffff;
        color: var(--colors-primary-primary-500);
        border-color: #ffffff;
        box-shadow: var(--shadows-shadow-xs);
        outline: none !important;
    }
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-md {
    padding: 10px 52px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 22px;
    font-size: 18px;
}

.button {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.arrows {
    display: flex;
    gap: 32px;

    .arrows-item {
        width: 56px;
        height: 56px;
        background-color: #ffffff;
        border-radius: 99px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
        border: 1px solid #ffffff;

        &:hover {
            background-color: var(--colors-primary-primary-700);

            img {
                filter: invert(1);
            }
        }

        &.prev::after {
            transform: rotate(180deg);
        }
    }
}

.topbar {
    background-color: #000000;

    & .buttons-button {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
    }

    & .text-padding {
        margin-left: 6px;
    }

    & .line {
        margin-inline: 20px;

        @media (max-width: 768px) {
            margin-inline: 10px;
        }
    }
}

.header {
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;

    & .navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0;
    }

    & .logo {
        display: flex;
        align-items: center;
        z-index: 1;
        padding: 12px 0;

        & img {
            position: relative;
            width: 119.43px;
            height: 58.08px;
            aspect-ratio: 2.06;
            object-fit: cover;
        }
    }

    nav {
        @media (max-width: 768px) {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            height: 100%;
            max-width: 320px;
            width: 100%;
            transition: transform 0.2s ease;
            transform: translateX(-100%);
            background-color: #000000;

            &.open {
                transform: translateX(0);
                transition: transform 0.2s ease;

                .menu-backdrop {
                    position: absolute;
                    background-color: rgba(0, 0, 0, 0.5);
                    top: 0;
                    left: 100%;
                    width: 100vh;
                    height: 100%;
                    right: 0;
                    cursor: pointer;
                    z-index: 1000;
                }
            }
        }

        & .main-menu {
            display: flex;
            gap: 24px;
            justify-content: center;
            align-items: center;

            @media (max-width: 991px) {
                gap: 16px;
            }

            @media (max-width: 768px) {
                flex-direction: column;
                gap: 0;
                padding: 54px 0px;
                align-items: start;
            }

            & .menu-item {
                &.active > .menu-link {
                    font-weight: 600;
                }

                @media (max-width: 768px) {
                    width: 100%;
                }

                & .menu-link {
                    font-size: 15px;
                    font-weight: 400;
                    color: #373940;
                    border: none;
                    margin: 0;
                    padding: 32px 0;
                    background: none;

                    @media (max-width: 768px) {
                        color: #ffffff;
                        padding: 12px 16px;
                        display: block;
                        border-bottom: 1px solid #e0e0e0;
                        width: 100%;
                        text-align: left;
                        font-size: 14px;
                    }
                }

                & button.menu-link {
                    display: inline-flex;
                    align-items: center;

                    &::after {
                        content: url("/Content/images/anima/majesticons-chevron-up-2.svg");
                        margin-left: 6px;
                        margin-top: 2px;
                        transition: transform 0.2s ease;
                        transform: rotate(0deg);

                        @media (max-width: 768px) {
                            filter: invert(1);
                            margin-left: auto;
                        }
                    }

                    &.active {
                        &::after {
                            @media (max-width: 768px) {
                                transform: rotate(180deg);
                            }
                        }
                    }

                    &:hover::after,
                    &:focus::after {
                        transform: rotate(180deg);

                        @media (max-width: 768px) {
                            transform: rotate(0deg);
                        }
                    }
                }
            }
        }

        .menu-dropdown {
            position: relative;

            &:hover {
                & .main-menu {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0px);
                    transition: transform 0.2s ease;
                }
            }

            & .main-menu {
                opacity: 0;
                visibility: hidden;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 10;
                background-color: #ffffff;
                border: 1px solid #e0e0e0;
                border-top: 0px;
                display: flex;
                flex-direction: column;
                transition: transform 0.2s ease;
                transform: translateY(-10px);
                min-width: 360px;
                align-items: start;
                gap: 0;

                @media (max-width: 768px) {
                    position: static;
                    border: none;
                    background-color: transparent;
                    opacity: 1;
                    visibility: visible;
                    min-width: 100%;
                    padding: 0;
                    transform: translateY(0);
                    padding-left: 20px;
                    display: none;

                    &.show {
                        display: flex;
                    }
                }

                & li:not(.menu-item) {
                    text-transform: uppercase;
                    color: #9ca3af;
                    font-size: 12px;
                    padding: 12px 16px;

                    @media (max-width: 768px) {
                        color: #ffffff;
                        display: none;
                    }
                }

                & .menu-item {
                    width: 100%;

                    & .menu-link {
                        padding: 12px 16px;
                        display: block;
                        border-bottom: 1px solid #e0e0e0;
                        width: 100%;
                        text-align: left;
                        transition: background-color 0.12s ease;

                        &:hover,
                        &:focus {
                            background-color: #f8fafc;
                        }

                        &::after {
                            display: none;
                        }
                    }

                    &.active > .menu-link {
                        background-color: #f8fafc;

                        @media (max-width: 768px) {
                            background-color: #000000;
                        }
                    }

                    &:last-child {
                        & .menu-link {
                            border-bottom: none;

                            @media (max-width: 768px) {
                                border-bottom: 1px solid #e0e0e0;
                            }
                        }
                    }
                }
            }
        }
    }

    & .actions {
        padding: 12px 0;

        @media (max-width: 768px) {
            display: flex;
            align-items: center;
            column-gap: 15px;
        }

        .btn {
            @media (max-width: 768px) {
                display: none !important;
            }
        }

        .icon-button {
            display: none !important;
            padding: 0;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 99px;

            @media (max-width: 768px) {
                display: flex !important;
            }
        }
    }

    & .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        gap: 5px;

        & span {
            display: block;
            height: 2px;
            background-color: #373940;
            border-radius: 2px;
            transition: all 0.25s ease;
        }

        &.active {
            span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 8px);
            }

            span:nth-child(2) {
                opacity: 0;
            }

            span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }
        }

        @media (max-width: 768px) {
            display: flex;
        }
    }
}

.hero-banner {
    background-color: #f9f9f9;
    position: relative;
    padding: 40px 0;

    .row {
        @media (max-width: 1200px) {
            flex-direction: column-reverse;
        }
    }

    .illustration {
        width: 100%;
    }

    .text-box {
        .title {
            font-size: 54px;
            font-weight: 400;
            color: #373940;
            line-height: 100%;
            margin-bottom: 24px;
        }

        .text {
            font-size: 18px;
            color: #373940;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 48px;
        }
    }
}

.breadcrumb-section {
    position: relative;
    background-image: url("/Content/images/bg/breadcrumb.jpg");
    background-size: cover;
    background-position: center;

    .breadcrumb-box {
        max-width: 50%;
        margin: 0 auto;
        text-align: center;

        @media (max-width: 1200px) {
            max-width: 100%;
        }

        .heading {
            font-size: 54px;
            font-weight: 600;
            color: #ffffff;
            line-height: 100%;
            margin-bottom: 6px;
        }

        .text {
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
            line-height: 24px;
            margin-bottom: 8px;
        }
    }
}

.section-title {
    max-width: 75%;

    @media (max-width: 1200px) {
        max-width: 100%;
    }

    .icon {
        width: 70px;
        height: 70px;
        margin-bottom: 40px;
    }

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 20px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .text {
        font-size: 18px;
        color: #373940;
        font-weight: 400;
        line-height: 28px;
        /* max-width: 510px;
    margin: 0 auto; */
        span {
            font-weight: 600;
        }

        &.small {
            font-size: 16px;
            color: #535862;
        }
    }
}

.who-we-are-section {
    .who-we-are {
        position: relative;
        background: #53728b;
        border: 1px solid #ffffff;
        padding: 24px;
        border-radius: 16px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;

        @media (max-width: 768px) {
            height: calc(100% - 48px);
        }

        .eyebrow {
            font-size: 12px;
            line-height: 18px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .text {
            font-size: 16px;
            line-height: 24px;
            color: #ffffff;
            font-weight: 400;
        }

        .heading {
            font-size: 36px;
            line-height: 44px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -2%;
        }

        hr {
            margin-top: 32px;
            margin-bottom: 24px;
            border-color: #ffffff;
            opacity: 1;
            width: 100%;
        }

        .blockquote {
            font-size: 14px;
            line-height: 21px;
            color: #ffffff;
            font-weight: 400;
            margin-bottom: 0;
            font-style: italic;
            max-width: 450px;
        }
    }

    .card {
        background: #f8fafc;
        border: #d9dadf;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 24px;
        height: calc(100% - 24px);

        @media (max-width: 480px) {
            padding: 24px;
        }

        .card-body {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0;

            .icon {
                width: 48px;
                height: 48px;
            }

            .stat {
                font-size: 60px;
                line-height: 60px;
                font-weight: 700;
                color: #314158;
            }

            .text-box {
                width: calc(100% - 64px);
                max-width: 350px;
                width: 100%;

                .title {
                    font-size: 18px;
                    line-height: 28px;
                    color: #0f172b;
                    font-weight: 600;
                    margin-bottom: 6px;
                }

                .desc {
                    font-size: 14px;
                    line-height: 20px;
                    color: #45556c;
                    font-weight: 400;
                }
            }
        }

        ul {
            margin-top: 16px;
            /* margin-bottom: -17px; */
            .badge {
                margin-right: 8px;
                background: #f3f3f5;
                padding: 6px 12px;
                border-radius: 99px;
                font-size: 12px;
                line-height: 18px;
                color: #314158;
                font-weight: 500;
            }
        }
    }
}

.we-serve {
    .section-title {
        margin: 0 auto 80px;
        text-align: center;

        .heading {
            color: #263540;
            line-height: 54px;
            margin-bottom: 22px;
            font-size: 36px;
        }

        .text {
            color: #6a7282;
            font-size: 16px;
            line-height: 26px;
        }
    }
}

.industry-box {
    background: #f9fafb;
    border: 0.8px solid #f5f5f5;
    padding: 33px;
    border-radius: 16px;
    text-align: center;
    height: 100%;

    @media (max-width: 1200px) {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .icon {
        background: #eff2f5;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        margin: 0 auto;
        margin-bottom: 16px;
    }

    .title {
        font-size: 20px;
        font-weight: 600;
        color: #373940;
        margin-bottom: 16px;
        line-height: 30px;
    }

    .text {
        max-width: 250px;
        margin: 0 auto;
        font-size: 16px;
        color: #5d606d;
        font-weight: 400;
        line-height: 24px;
    }

    &.style-2 {
        border-color: #f3f4f6;
        border-radius: 14px;
        padding: 20px;
        margin-bottom: 0;
        height: 100%;

        .icon {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            margin-bottom: 12px;
        }

        .title {
            font-size: 14px;
            margin-bottom: 0px;
            line-height: 20px;
            font-weight: 500;
            color: #364153;
        }
    }
}

.cta-section {
    position: relative;
    background-image: url("/Content/images/bg/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 180px 0;

    .heading {
        font-size: 60px;
        margin-bottom: 16px;
        letter-spacing: -2%;
        line-height: 72px;
        font-weight: 600;
        color: #ffffff;
        max-width: 715px;
    }

    .subheading {
        color: #ffffff;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 32px;
        line-height: 28px;
        max-width: 715px;
    }
}

.certification-box {
    background-color: #f5f5f5;
    box-shadow: 0px 4px 6px -2px #10182808;
    border-radius: 16px;
    padding: 40px;
    text-align: center;

    .line-right {
        border-right: 1px solid #e0e0e0;

        @media (max-width: 768px) {
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 30px;
        }
    }

    .second-item {
        @media (max-width: 1200px) {
            border-right: none;
        }

        @media (max-width: 768px) {
            margin-top: 30px;
        }
    }

    .third-item {
        @media (max-width: 1200px) {
            margin-top: 30px;
        }
    }

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        margin-bottom: 54px;
        line-height: 60px;
    }

    .certification-item {
        max-width: 280px;
        margin: 0 auto;

        .icon {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
        }

        .title {
            font-size: 16px;
            font-weight: 600;
            color: #373940;
            margin-bottom: 6px;
            line-height: 24px;
        }

        .text {
            font-size: 14px;
            color: #373940;
            font-weight: 400;
            line-height: 20px;
        }
        /* @media (max-width: 1200px) {
      margin-bottom: 32px;
    } */
    }
}

.testimonials {
    background-color: #e6f2f2;

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 48px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .testimonial-item {
        position: relative;

        blockquote {
            background-color: #ffffff;
            position: relative;
            border-radius: 12px;
            padding-top: 8px;
            padding-inline: 12px;
            /* padding-bottom: 50px; */
            min-height: 200px;
            border-bottom-right-radius: 0px;

            span {
                font-size: 72px;
                line-height: 90px;
                letter-spacing: -2%;
                font-weight: 500;
                color: #b4c3d0;
            }

            p {
                font-size: 18px;
                line-height: 28px;
                color: #5d606d;
                font-weight: 400;
                margin-top: -30px;
            }
        }

        .author {
            background-color: #e6f2f2;
            padding: 12px;
            padding-right: 0;
            max-width: 100%;
            position: relative;
            display: flex;
            align-items: center;

            .avatar {
                width: 40px;
                height: 40px;
                border-radius: 99px;
                object-fit: cover;
                margin-right: 12px;
                background-color: #ffffff;
                object-position: center;
                overflow: hidden;
            }

            .text {
                width: calc(80% - 52px);
                position: relative;
                z-index: 5;
                display: flex;
                flex-direction: column;

                .name {
                    font-size: 14px;
                    color: #101828;
                    font-weight: 600;
                    line-height: 20px;
                }

                .info {
                    font-size: 14px;
                    color: #475467;
                    font-weight: 400;
                    line-height: 16px;
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                background-color: #ffffff;
                width: calc(20% + 20px);
                z-index: 1;
                display: block;
                height: 100%;
                border-bottom-right-radius: 12px;
            }

            &:before {
                content: "";
                background-color: #e6f2f2;
                display: block;
                width: 44px;
                height: 100%;
                border-top-right-radius: 12px;
                pointer-events: none;
                top: 0;
                position: absolute;
                right: calc(20%);
                z-index: 2;
            }
        }
    }
}

.why-choose-us {
    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 40px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .choose-box {
        background-color: #ffffff;
        border-radius: 16px;
        border: 1px solid #ccd7df;
        padding: 32px;
        margin-bottom: 30px;
        height: calc(100% - 30px);

        .icon {
            margin-bottom: 24px;
        }

        .title {
            font-size: 20px;
            font-weight: 600;
            color: #373940;
            margin-bottom: 12px;
            line-height: 30px;
        }

        .text {
            font-size: 16px;
            color: #5d606d;
            font-weight: 400;
            line-height: 24px;
        }
    }
}

    .why-choose-us.style-2 {
        background-color: #f5f5f5;

        .choose-box {
            padding: 20px;

            .icon {
                background-color: #eff2f5;
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 99px;
            }
        }
    }

.check-list {
    padding-left: 32px;

    @media (max-width: 1200px) {
        margin-bottom: 50px;
    }

    li {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #5d606d;
        position: relative;

        span {
            width: 20px;
            height: 20px;
            color: #5b7d99;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            position: absolute;
            left: -32px;

            svg {
                width: 100%;
                height: 100%;
                stroke: currentColor;
                stroke-width: 1.5;
                fill: none;
            }
        }
    }
}

.steps-section {
    background-color: #fafafa;

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 48px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .steps-wrapper {
        position: relative;
        padding: 80px 0;

        @media (max-width: 991px) {
            padding: 0;
        }

        .vector {
            width: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: scale-down;
            max-width: 100%;

            @media (max-width: 1400px) {
                max-width: 85%;
            }

            @media (max-width: 1200px) {
                max-width: 80%;
            }

            @media (max-width: 991px) {
                display: none;
            }
        }

        .icon {
            position: absolute;
            width: 42px;
            height: 42px;
            border-radius: 99px;
            background-color: #324554;
            display: flex;
            top: 50%;
            left: 0;
            transform: translateY(-50%);

            @media (max-width: 991px) {
                display: none;
            }
        }
    }

    .step {
        @media (max-width: 991px) {
            text-align: center;
        }

        .number {
            background: linear-gradient( 180deg, #5b7d99 0%, rgba(230, 242, 242, 0) 100% );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 195px;
            font-weight: 500;
            line-height: 247px;

            @media (max-width: 991px) {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .title {
            background: linear-gradient(180deg, #5b7d99 0%, #eff2f5 160.42%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 30px;
            font-weight: 500;
            line-height: 38px;
            margin-bottom: 8px;
        }

        .text {
            font-size: 16px;
            color: #5d606d;
            font-weight: 400;
            line-height: 24px;
        }
    }

    .first-step {
        position: absolute;
        top: 30%;

        @media (max-width: 991px) {
            position: static;
            top: 0;
            display: flex;
            flex-direction: column-reverse;
        }

        .text-box {
            position: relative;
            top: -30px;
        }

        .icon {
            top: 38%;
            left: 17%;

            @media (max-width: 1200px) {
                top: 32%;
            }
        }
    }

    .second-step {
        position: absolute;
        top: 25%;
        left: 25%;

        @media (max-width: 1200px) {
            left: 30%;
        }

        @media (max-width: 991px) {
            position: static;
            top: 0;
            left: 0;
        }

        .text-box {
            position: relative;
            top: -30px;
        }

        .icon {
            left: -13%;
            top: 24%;

            @media (max-width: 1200px) {
                left: -22%;
            }
        }
    }

    .third-step {
        @media (max-width: 991px) {
            display: flex;
            flex-direction: column-reverse;
        }

        .icon {
            right: 20%;
            left: auto;
            top: 32%;

            @media (max-width: 1200px) {
                right: 27%;
                top: 37%;
            }
        }

        .text-box {
            position: relative;
            top: -25px;
        }

        .number {
            display: flex;
            justify-content: end;
            position: relative;
            top: -60px;
            z-index: -1;

            @media (max-width: 1200px) {
                top: -50px;
            }

            @media (max-width: 991px) {
                top: 0px;
                justify-content: center;
            }
        }
    }
}

.service-section {
    background-color: #f5f5f5;
    border-radius: 48px;

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 48px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .description {
        font-size: 18px;
        color: #373940;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 48px;
    }

    .service-title {
        font-size: 30px;
        font-weight: 600;
        color: #344054;
        margin-bottom: 24px;
        line-height: 38px;
        text-align: center;
    }

    .service-box {
        background-color: #ffffff;
        border: 1px solid #ccd7df;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        height: calc(100% - 24px);

        .icon {
            margin-bottom: 24px;
        }

        .title {
            font-size: 20px;
            font-weight: 600;
            color: #373940;
            margin-bottom: 12px;
            line-height: 30px;
        }

        .text {
            font-size: 16px;
            color: #5d606d;
            font-weight: 400;
            line-height: 24px;
            margin-bottom: 24px;
        }

        .action {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            color: #263540;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            display: inline-flex;

            img {
                margin-left: 8px;
                transition: transform 0.2s ease;
            }

            &:hover {
                img {
                    transform: translateX(4px);
                }
            }

            &[role="presentation"] {
                pointer-events: none;
                cursor: default;

                &:hover img {
                    transform: none;
                }
            }
        }
    }
}

.how-works {
    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #373940;
        letter-spacing: -2%;
        line-height: 60px;

        span {
            color: var(--colors-primary-primary-600);
        }
    }

    .hw-box {
        position: relative;
        background-color: #ffffff;
        border-radius: 12px;
        border: 1px solid #ccd7df;
        padding: 40px;
        padding-top: 60px;
        text-align: center;
        margin-top: 70px;

        .icon {
            width: 60px;
            height: 60px;
            border-radius: 99px;
            background: #53728b33;
            border: 1px solid #ccd7df;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -30px;
            transform: translateX(-50%);
            left: 50%;

            .number {
                display: inline-block;
                width: 48px;
                height: 48px;
                background-color: #5b7d99;
                color: #ffffff;
                border-radius: 99px;
                font-size: 30px;
                font-weight: 500;
                line-height: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .title {
            font-size: 20px;
            font-weight: 600;
            color: #373940;
            margin-bottom: 4px;
            line-height: 30px;
        }

        .text {
            font-size: 16px;
            color: #5d606d;
            font-weight: 400;
            line-height: 24px;
        }
    }
}

.features {
    background-color: #5b7d99;

    .heading {
        font-size: 48px;
        font-weight: 500;
        color: #ffffff;
        letter-spacing: -2%;
        line-height: 60px;
        margin-bottom: 8px;
    }

    .text {
        font-size: 18px;
        color: #ffffff;
        font-weight: 400;
        line-height: 28px;
    }
}

.feature-box {
    border: 0.8px solid #ffffff26;
    background: #ffffff1a;
    border-radius: 16px;
    padding: 30px;

    @media (max-width: 1200px) {
        margin-bottom: 30px;
    }

    .icon {
        width: 44px;
        height: 44px;
        background-color: #eff2f5;
        border: 0.8px solid #ccd7df;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .title {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        line-height: 25px;
    }

    .text {
        font-size: 14px;
        color: #ffffff;
        font-weight: 400;
        line-height: 20px;
    }
}

.commitment-card {
    background-color: #fafafa;
    border: 1px solid #d9dadf;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;

    @media (max-width: 1200px) {
        margin-bottom: 30px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .text-box {
        width: calc(100% - 64px);

        .title {
            font-size: 24px;
            font-weight: 400;
            color: #5b7d99;
            margin-bottom: 10px;
            line-height: 32px;
        }

        .desc {
            font-size: 14px;
            color: #535862;
            font-weight: 400;
            line-height: 20px;
        }
    }
}

.feature-card {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;

    .icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .text-box {
        width: calc(100% - 64px);

        .title {
            font-size: 20px;
            font-weight: 600;
            color: #373940;
            margin-bottom: 8px;
            line-height: 30px;
        }

        .desc {
            font-size: 16px;
            color: #535862;
            font-weight: 400;
            line-height: 24px;
        }
    }
}

.footer-bg {
    padding-top: 65px;
    position: relative;
    background-color: var(--colors-primary-primary-900);

    .logo {
        position: relative;
        width: 119.43px;
        height: 58.08px;
        margin-bottom: 65px;
    }

    .footer-item {
        position: relative;
        margin-bottom: 65px;

        p {
            font-size: 20px;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 20px;
        }

        ul {
            li {

                p {
                    &.phone-num {
                        /*&:hover {*/
                        /* color: #E0A458;*/
                        /*text-decoration: none;
                        }*/
                        display: block;
                        font-size: 14px !important;
                        transition: color 0.2s ease;
                        position: relative;
                        top: 4px;
                    }

                    &.location-adr {
                        span {
                            display: block;
                            font-size: 14px !important;
                            transition: color 0.2s ease;

                            &.location-ta-name {
                                position: relative;
                                top: 5px;
                            }

                            &.location-adr-street {
                                position: relative;
                                top: 12px;
                            }
                        }
                        /*&:hover {*/
                        /* color: #E0A458;*/
                        /*text-decoration: none;
                        }*/
                    }
                }

                .icon {
                    display: inline-block;
                    margin-right: 4px;
                    width: 16px;
                    height: 16px;
                    position: relative;
                    top: 3px;
                }

                a:not(.btn) {
                    color: #ffffff;
                    font-size: 14px;
                    display: inline-block;
                    margin-bottom: 16px;
                    transition: color 0.2s ease;
                    line-height: 23px;

                    &:hover {
                        color: var(--colors-primary-primary-300);
                        text-decoration: underline;
                    }
                }

                &.footer-get-started {
                    margin-top: 8px;
                    list-style: none;
                }

                .arrow {
                    display: flex;
                    align-items: center;

                    &::after {
                        content: url("/Content/images/anima/cevron-2.svg");
                        margin-left: 6px;
                        transition: transform 0.2s ease;
                        display: inline-block;
                        vertical-align: middle;
                    }
                }
            }
        }
    }

    & .copyright {
        border-top-width: 1px;
        border-top-style: solid;
        box-shadow: 0px -1px 0px #ffffff0d;
        border-color: var(--colors-primary-primary-900);
        padding: 30px 0;

        & p {
            font-size: 14px;
            color: #ffffff;

            a {
                color: #ffffff;

                &:hover {
                    color: var(--colors-primary-primary-300);
                    text-decoration: underline;
                }
            }

            @media (max-width: 1200px) {
                padding-bottom: 30px;
            }
        }

        & ul {
            display: flex;
            gap: 12px;
            align-items: center;

            li {
                a {
                    color: #ffffff;
                    font-size: 14px;
                    display: inline-flex;
                    align-items: center;
                    background-color: var(--colors-primary-primary-500);
                    border-radius: 99px;
                    width: 32px;
                    height: 32px;
                    justify-content: center;
                    transition: background-color 0.2s ease;

                    &:hover {
                        background-color: var(--colors-primary-primary-700);
                    }
                }
            }
        }
    }
}

.contact-info-section {
    .contact-info-box {
        background-color: #ffffff;
        box-shadow: 0px 4px 6px -2px #10182808;
        box-shadow: 0px 12px 16px -4px #10182814;
        border-radius: 24px;
        padding: 24px;

        .back-btn {
            font-size: 16px;
            color: #373940;
            font-weight: 500;
            line-height: 24px;
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;

            .arrow {
                margin-right: 6px;
            }
        }

        .title {
            font-size: 36px;
            font-weight: 500;
            color: #373940;
            margin-bottom: 6px;
            line-height: 44px;
        }

        .desc {
            font-size: 16px;
            color: #5d606d;
            font-weight: 400;
            line-height: 24px;
            margin-bottom: 24px;
        }

        small {
            font-size: 14px;
            color: #373940;
            font-weight: 400;
            line-height: 20px;
            display: block;
            margin-bottom: 8px;
        }

        .contact-icon-box {
            border: 2px solid #d9dadf;
            background: #ffffff;
            border-radius: 12px;
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 170px;

            &:hover,
            &:focus,
            &:active,
            &:focus-visible,
            &:focus-within,
            &.active {
                border-color: #5b7d99;
            }

            .icon {
                margin: 0 0 24px;
            }

            .text {
                font-size: 16px;
                color: #373940;
                font-weight: 400;
                line-height: 24px;
            }
        }
    }

    .contact-info-data {
        .image {
            margin-bottom: 36px;
            border-radius: 16px;
        }

        .contact-info-list {
            li {
                margin-bottom: 16px;
                display: flex;
                align-items: center;
                width: 100%;

                .icon {
                    width: 40px;
                    height: 40px;
                    margin-right: 12px;
                    background: #5b7d99;
                    border-radius: 99px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                div {
                    width: calc(100% - 52px);
                    font-size: 16px;
                    color: #5d606d;
                    font-weight: 400;
                    line-height: 23px;

                    strong {
                        color: #373940;
                        font-weight: 500;
                        font-size: 20px;
                        line-height: 30px;
                        margin-bottom: 8px;
                    }

                    .link {
                        font-size: 16px;
                        color: #5d606d;
                        font-weight: 400;
                        line-height: 23px;

                        &:hover,
                        &:focus,
                        &:active,
                        &:focus-visible,
                        &:focus-within,
                        &.active {
                            color: #373940;
                            text-decoration: underline;
                        }
                    }
                }
            }
        }

        .title {
            font-size: 20px;
            font-weight: 500;
            color: #373940;
            margin-bottom: 12px;
            line-height: 30px;
        }

        .contact-social-list {
            li {
                display: inline-flex;
                margin-right: 10px;

                .icon {
                    width: 40px;
                    height: 40px;
                    background: #e8ecef;
                    border-radius: 99px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: background-color 0.2s ease;

                    &:hover,
                    &:focus,
                    &:active,
                    &:focus-visible,
                    &:focus-within {
                        background-color: #f3f3f5;
                    }
                }
            }
        }
    }
}

.partner-bg {
    position: relative;
    background-image: url("/Content/images/bg/partner-bg.jpg");
    background-size: cover;
    background-position: center;

    .partner-logo {
        background: #ffffff36;
        border-radius: 16px;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 280px;

        img {
            max-width: 100%;
            width: 100%;
            height: auto;
        }

        @media (max-width: 576px) {
            margin-bottom: 30px;
        }
    }

    &.overlap-section {
        padding-bottom: 150px;

        + section {
            padding-top: 0px;
        }
    }
}

.we-registered {
    margin-top: -50px;
    padding: 50px;
    position: relative;
    background-image: url("/Content/images/sec-registered.png");
    background-repeat: no-repeat;
    background-size: 105%;
    background-position: center;
    box-shadow: 0px 4px 6px -2px #10182808;
    box-shadow: 0px 12px 16px -4px #10182814;
    background-color: #ffffff;
    border-radius: 16px;
    text-align: center;

    @media (max-width: 1200px) {
        background-size: cover;
    }

    .logo {
        max-width: 275px;
        margin: 0 auto;
    }
}

.custom-form {
    .confirm-title {
        margin-bottom: 12px;
        color: #373940;
        font-size: 18px;
        font-weight: 600;
        line-height: 28px; /* 155.556% */
    }

    .confirm__divider {
        border-bottom: #eff2f5;
        margin-bottom: 16px;
    }

    .fs-6 {
        font-size: 14px !important;
        font-weight: 400;
        color: #373940;
    }

    .bullet-list {
        list-style-type: disc;
        padding: 5px 0 5px 15px;
    }

    .form-group {
        margin-bottom: 16px;

        .helper-text {
            color: #373940;
            font-size: 12px;
            font-weight: 400;
            line-height: 18px; /* 150% */
            margin-top: 8px;
        }

        .form-label {
            font-size: 14px;
            color: #373940;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 8px;
            display: inline-block;

            &.required::after {
                content: "*";
                color: #ff4d4f;
                margin-left: 4px;
            }
        }

        .form-value {
            color: #41596d;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

        select,
        .form-select,
        .form-control {
            width: 100%;
            padding: 10px 16px;
            border: 1px solid #d9dadf;
            border-radius: 54px;
            font-size: 14px;
            color: #41596d;
            font-weight: 400;
            line-height: 20px;
            transition: border-color 0.2s ease;

            &::placeholder {
                color: #41596d;
                opacity: 1;
            }

            &:hover,
            &:focus,
            &:active,
            &:focus-visible,
            &:focus-within,
            &.active {
                border-color: #41596d;
                outline: none;
                background-color: #ffffff;
            }
        }

        textarea.form-control {
            border-radius: 12px;
            min-height: 130px;
            resize: vertical;
        }

        .error-message {
            font-size: 14px;
            color: #ff4d4f;
            font-weight: 400;
            line-height: 20px;
            display: inline-block;
            margin-top: 8px;
        }

        .form-error, .contact-error, .stock-error,
        .billing-error, .documents-error {
            margin-top: 12px;
        }
    }

    .footnote {
        font-size: 14px;
        color: #5b7d99;
        font-weight: 400;
        line-height: 20px;
        margin-top: 20px;
        position: relative;
        padding-left: 24px;

        span {
            position: absolute;
            top: 0;
            left: 0;
        }
    }
    /* 8th July 1 PM */
    &.confirm-kv {
        .form-group {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 10px;

            .form-label {
                flex: 0 0 190px;
                margin-bottom: 0;
            }

            .form-value {
                flex: 1 1 auto;
                margin-bottom: 0;
            }
        }
    }
}

.contact-dropzone-wrap {
    .contact-dropzone {
        width: 100%;
        min-height: 126px;
        opacity: 1;
        gap: 4;
        border-radius: 12px;
        border: 1px solid #eaecf0;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        .dropzone_icon {
            width: 40px;
            height: 40px;
            margin-bottom: 12px;
        }

        .dropzone_title {
            font-size: 14px;
            color: #475467;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 4px;

            strong {
                font-weight: 600;
                color: #41596d;
            }
        }

        .dropzone_subtext {
            font-size: 12px;
            color: #475467;
            font-weight: 400;
            line-height: 18px;
        }
    }

    .attachment-list {
        .attachment-item {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;

            .attachment-row {
                position: relative;
                text-align: center;
                margin-top: 16px;
                padding: 10px 16px;
                border: 1px solid #d9dadf;
                border-radius: 12px;
                font-size: 14px;
                color: #41596d;
                font-weight: 400;
                line-height: 20px;

                .attachment-icon {
                    font-size: 30px;
                    margin-bottom: 8px;
                }

                .attachment-remove {
                    position: absolute;
                    top: -14px;
                    right: -14px;
                    background: var(--colors-primary-primary-500);
                    padding: 2px;
                    border-radius: 99px;
                }
            }
        }
    }
}

.how-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;

    .icon {
        background: #263540;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 99px;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
    }

    .title {
        font-size: 20px;
        font-weight: 600;
        color: #373940;
        margin-bottom: 8px;
        line-height: 30px;
    }

    .text {
        font-size: 16px;
        color: #5d606d;
        font-weight: 400;
        line-height: 24px;
        max-width: 210px;
        margin: 0 auto;
    }
}

.use-case-box {
    background: #f9fafb;
    border: 0.8px solid #f3f4f6;
    display: flex;
    gap: 20px;
    border-radius: 16px;
    padding: 24px;

    .icon {
        background: #eff2f5;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        padding: 10px;
    }

    .content {
        width: calc(100% - 60px);
    }

    .title {
        font-size: 20px;
        font-weight: 600;
        color: #373940;
        margin-bottom: 4px;
        line-height: 30px;
    }

    .text {
        font-size: 16px;
        color: #5d606d;
        font-weight: 400;
        line-height: 24px;
    }
}

.form-box {
    margin-bottom: 12px;
    background: #ffffff;
    border: 0.8px solid #f3f4f6;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;

    .code {
        background: #eff2f5;
        border-radius: 10px;
        padding: 8px 12px;
        font-size: 12px;
        color: #324554;
        font-weight: 700;
        line-height: 18px;
        white-space: nowrap;
    }

    .meta {
        color: #4a5565;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
}

.form-box-text {
    color: #99a1af;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;

    a {
        color: #373940;
        text-decoration: underline;

        &:hover {
            color: #373940;
        }
    }
}

.certificate-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    /*box-shadow: 0px 4px 6px -2px #10182808;
    box-shadow: 0px 12px 16px -4px #10182814*/
    box-shadow: 0 10px 30px rgba(38, 53, 64, .06);
    padding: 28px 32px;

    #certForm, #proxyForm {
        .form-group {
            .field-error {
                display: block;
                margin-top: 12px;
            }
        }
    }
}

/* ===== Certificate status result cards ===== */
.btn:disabled, .btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
}

.cert-result {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(38, 53, 64, .06);
    padding: 28px 32px;

    & .cert-result-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 18px;
        border-bottom: 1px solid #eef0f3;

        & .cert-eyebrow {
            margin: 0 0 2px;
            font-size: .8rem;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: #5b7d99;
        }

        & .cert-issuer {
            margin: 0;
            font-size: 1.4rem;
            line-height: 1.2;
            color: #263540;
        }
    }

    & .cert-details {
        margin: 6px 0 0;
        padding: 0;

        & .cert-row {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 13px 0;
            border-bottom: 1px solid #f1f3f5;

            &:last-child {
                border-bottom: none;
            }

            & dt {
                margin: 0;
                flex: 0 0 45%;
                font-weight: 600;
                color: #5b7d99;
            }

            & dd {
                margin: 0;
                flex: 1 1 auto;
                text-align: right;
                color: #263540;
            }
        }
    }

    & .cert-status-note {
        margin-top: 18px;
        padding: 12px 16px;
        border-radius: 12px;
        font-weight: 600;
        text-align: center;

        &.is-active {
            background: #e6f4ec;
            color: #2e7d4f;
        }

        &.is-inactive {
            background: #f3eeee;
            color: #b04242;
        }
    }

    @media (max-width: 575px) {
        & .cert-result-head {
            flex-direction: column;
        }

        & .cert-details .cert-row {
            flex-direction: column;
            gap: 2px;

            & dd {
                text-align: left;
            }
        }
    }
}

.cert-disclaimer {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    background: #f9fafb;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 24px;

    & .cert-disclaimer-icon {
        flex: 0 0 auto;
        line-height: 0;
        margin-top: 3px;
    }

    & .cert-disclaimer-body {
        flex: 1 1 auto;
    }

    & .text {
        font-size: 14px;
        color: #5b7d99;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 12px;

        a {
            color: #41596d;
            text-decoration: underline;

            &:hover {
                color: #41596d;
            }
        }

        &:last-of-type {
            margin-bottom: 0;
        }
    }
}
/* ===== End certificate status result cards ===== */

/* ===== Proxy voting page ===== */
.proxy-section-title {
    text-align: center;
    color: #263540;
    font-weight: 600;
    margin: 28px 0 16px;
}

.proxy-legal {
    font-size: 14px;
    line-height: 1.6;
    color: #41596d;
    margin-bottom: 14px;
}

.proxy-subhead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #263540;
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef0f3;
}

.proxy-info {
    margin: 0 0 8px;
    padding: 0;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    overflow: hidden;

    & .cert-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 16px;
        margin: 0;
        padding: 12px 18px;
        border-bottom: 1px solid #f1f3f5;

        &:nth-child(odd) {
            background: #fafbfc;
        }

        &:last-child {
            border-bottom: none;
        }

        & dt {
            flex: 0 0 42%;
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: #5b7d99;

            & label {
                margin: 0;
                color: inherit;
                font-weight: inherit;
            }
        }

        & dd {
            flex: 1 1 auto;
            margin: 0;
            text-align: right;
            font-size: 14px;
            font-weight: 500;
            color: #263540;
        }
    }

    @media (max-width: 575px) {
        & .cert-row {
            flex-direction: column;
            gap: 2px;

            & dd {
                text-align: left;
            }
        }
    }
}

.accredited-questionnaire {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 8px;

    & td {
        padding: 12px 8px;
        border-bottom: 1px solid #f1f3f5;
        vertical-align: top;
    }

    & tr:last-child td {
        border-bottom: none;
    }

    & .checkbox-line {
        width: 40px;
        text-align: center;
    }

    & .label-value {
        & label {
            font-size: 14px;
            line-height: 1.55;
            color: #41596d;
        }
    }
}

.proxy-material-note {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: #155dfc;
    line-height: 1.5;

    & a {
        color: #155dfc;
        text-decoration: underline;
        word-break: break-all;
    }
}

.proxy-material-link {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 17px;
    color: #155dfc;
    font-weight: 600;
    text-decoration: underline;
    word-break: break-all;
}

.proposal-card {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(38, 53, 64, .06);
    padding: 24px 28px;
    margin-bottom: 20px;

    & .proposal-card-head {
        font-weight: 700;
        font-size: 1.1rem;
        color: #263540;
        margin-bottom: 4px;
    }

    & .proposal-desc {
        color: #41596d;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    & .proposal-table {
        width: 100%;
        border-collapse: collapse;

        & td {
            padding: 12px 10px;
            border-bottom: 1px solid #f1f3f5;
            color: #263540;
            font-size: 14px;
            vertical-align: middle;
        }

        & tr:first-child td {
            padding-bottom: 10px;
            border-bottom: 2px solid #eef0f3;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: #5b7d99;
        }

        & tr:last-child td {
            border-bottom: none;
        }

        & tr:nth-of-type(even) td {
            background: #fafbfc;
        }

        & .vote-col {
            width: 78px;
            text-align: center;
            white-space: nowrap;
        }

        & .vote-validation {
            color: #ff4d4f;
            font-size: 14px;
            font-weight: 500;
            background: none;
        }

        & input[type="radio"] {
            width: 16px;
            height: 16px;
            accent-color: #5b7d99;
            cursor: pointer;
        }
    }

    @media (max-width: 575px) {
        padding: 20px 16px;

        & .proposal-table .vote-col {
            width: 56px;
        }
    }
}

.proxy-submit {
    margin-top: 20px;
}
/* ===== End proxy voting page ===== */

.requirement-section {
.box {
    background: #ffffff1a;
    border: 0.8px solid #ffffff26;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 12px;

    svg {
        background: #eff2f5;
        border: 0.8px solid #ccd7df;
        border-radius: 14px;
        width: 44px;
        height: 44px;
        padding: 10px;
        margin-right: 12px;
    }

    span {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
    }
}

.content {
    .title {
        font-size: 17px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 14px;
        line-height: 26px;
    }

    .text {
        font-size: 14px;
        color: #ffffff;
        font-weight: 400;
        line-height: 20px;
        max-width: 280px;
    }
}
}

.costing-box {
border: 0.8px solid #e2e8f0;
background: #ffffff;
border-radius: 16px;
padding: 32px;
position: relative;
overflow: hidden;
box-shadow: 0px 1px 2px -1px #0000001a;
box-shadow: 0px 1px 3px 0px #0000001a;

.icon {
    background: #eff6ff;
    border: 0.8px solid #dbeafe;
    border-radius: 14px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.label {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.02px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #62748e;
}

.amt {
    font-weight: 800;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: 0px;
    color: #0f172b;
    margin-bottom: 15px;

    sub {
        font-size: 20px;
        line-height: 20px;
        bottom: 0;
        font-weight: 500;
        color: #62748e;
    }
}

.note {
    color: #62748e;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    max-width: 90%;
}

.shape {
    background: #eff2f5;
    width: 160px;
    height: 160px;
    opacity: 1;
    top: -80px;
    right: -80px;
    border-radius: 99px;
    position: absolute;
    z-index: 1;
}

&.dark {
    background: #263540;
    box-shadow: 0px 8px 10px -6px #26354033;
    box-shadow: 0px 20px 25px -5px #2635401f;

    .icon {
        background: #ffffff33;
        border-color: #FFFFFF4D;
    }

    .label {
        color: #ffffff;
    }

    .amt {
        color: #ffffff;

        sub {
            color: #ffffff;
        }
    }

    .note {
        color: #dbeafe;
    }

    .shape {
        background: #41596d;
    }
}
}

.processing-banner {
background: #eff6ff;
border-width: 0.8px, 0px, 0.8px, 0px;
border-style: solid;
border-color: #dbeafe;
border-radius: 24px;
padding: 40px 24px;
display: flex;
align-items: center;
gap: 64px;

@media (max-width: 991px) {
    gap: 40px;
}

@media (max-width: 768px) {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 24px;
}

.icon {
    background: #dbeafe;
    border: 0.8px solid #bedbff;
    border-radius: 16px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body {
        width: calc(100% - 144px);

        @media (max-width: 991px) {
            width: calc(100% - 120px);
            }

        @media (max-width: 768px) {
            width: 100%;
            }

        .eyebrow {
            color: #155dfc;
            font-weight: 700;
            font-size: 12px;
            line-height: 18px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .title {
            color: #0f172b;
            font-family: Inter;
            font-weight: 700;
            font-size: 28px;
            line-height: 42px;
            letter-spacing: 0px;
            margin-bottom: 10px;
            }

        .text {
            color: #45556c;
            font-weight: 400;
            font-size: 18px;
            line-height: 30px;
        }

        .highlight {
            color: #155dfc;
            font-weight: 700;
        }
    }
}

.login-page {
    position: relative;
    background-image: url("/Content/images/bg/login-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    .login-box {
        background: #ffffff33;
        border-radius: 12px;
        padding: 24px;

        .logo {
            max-width: 140px;
            display: block;
            margin: 0 auto 32px;
        }

        .content {
            margin-bottom: 32px;

            .title {
                margin-bottom: 12px;
                font-weight: 600;
                font-size: 30px;
                line-height: 38px;
                color: #ffffff;
            }

            .intro {
                color: #ffffff;
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
            }
        }

        .auth-helper {
            color: #eff2f5;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 20px;

            .link {
                color: #eff2f5;
                font-size: 14px;
                font-weight: 600;
                line-height: 20px;
            }
        }
    }
}

.auth-form {
    .form-group {
        margin-bottom: 20px;

        .link {
            color: #eff2f5;
            font-size: 14px;
            font-weight: 600;
            line-height: 20px;
        }

        .form-label {
            margin-bottom: 6px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;

            .checkbox-label {
                margin-left: 8px;
            }
        }

        .form-control {
            background: #ffffff33;
            border: 1px solid #9c9fad;
            box-shadow: 0px 1px 2px 0px #1018280d;
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
            line-height: 24px;

            &::placeholder {
                color: #ffffff;
                opacity: 1;
            }
        }
    }

    .auth-submit {
        margin-bottom: 60px;
    }

    .auth-helper {
        color: #eff2f5;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
}

.custom-checkbox {
    input {
        width: 16px;
        height: 16px;
        accent-color: #000000;
        position: relative;
        top: 3px;
    }
}

.validation-summary-errors {
    margin-bottom: 16px;
    padding: 12px 16px;
    border: 1px solid #dc3545;
    border-radius: 6px;
    background-color: #f8d7da;
    color: #842029;
    font-size: 14px;
    line-height: 1.5;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 20px;
}

.validation-summary-errors li {
    margin: 4px 0;
}

.validation-summary-valid {
    display: none;
}


@media (max-width: 575.98px) {
    .isu-ui-table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;

        table {
            width: max-content;
            min-width: 650px;
            margin-bottom: 0;
            white-space: nowrap;
        }
    }
}