:root {
    --page-bg: #fff;
    --body-font-family: 'Poppins', sans-serif;
    --body-font-color: #5D6C7C;
    --link-color: #cc0000;
    --link-hover-color: #482ff7;
    --nav-background-color: #ffffff;
    --border-color: #D4D4D4;
    --orange: #F36F21;
    --orange2: #A93F00;
    --full-border-radius: 50px;
    --heading-color: #5B1629;
    --input-color: #202020;
}

input {
    outline: none;
    border: 1px solid;
}

img {
    border: none;
}

* {
    box-sizing: border-box;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
body,
p,
div {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    box-sizing: border-box;
}

ul,
li,
dl,
dd {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* end normalize*/
html {
    font-size: 16px;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font-family);
    font-weight: 400;
    font-size: 1rem;
    color: var(--body-font-color);
    height: 100%;
    background-image: radial-gradient(white 0%, #FCF6FA 73%, #F5BCCF 100%);
    background-attachment: fixed;
}

body {
    main {
        display: flex;
        flex-direction: column;
        height: 100%;

        /* transition: padding-top 0.5s ease-in-out; */
        &>footer {
            margin-top: auto;
            background: url(../images/footer-bg.jpg) no-repeat bottom center;
            color: #ffffff;

            &>section {
                overflow: hidden;
            }
        }
    }
}

body>main .main-header {
    top: -200px;
    left: 0;
    right: 0;
    position: static;
    z-index: 9999;
    transition: top 0.5s ease-in-out;
    background-color: white;
}

body>main .main-header.active {
    top: 0px;
    position: fixed;
    box-shadow: 0 0 5px #F5BCCF;
}

body>main:has(.main-header.active) {
    padding-top: 148px;
}

.btn-capsule {
    border-radius: var(--full-border-radius);
    background-color: var(--orange);
    padding: 16px 30px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    cursor: pointer;

    &:hover {
        color: #fff;
    }
}

.btn-capsule:disabled {
    cursor: auto;
    opacity: 0.5;
}

#btn_contact,
#btn_dealer {
    min-width: 150px;
}

.btn-icon {
    border-radius: var(--full-border-radius);
    border: 2px solid var(--heading-color);
    padding: 15px 30px;
    text-decoration: none;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    margin-right: 30px;

    &:hover {
        color: var(--heading-color);
    }

    .download-icon::before {
        content: "";
        display: inline-block;
        vertical-align: top;
        width: 20px;
        height: 16px;
        margin-top: 4px;
        background: url(../images/icon-download.png) no-repeat center center;
        background-size: contain;
    }
}


section>div {
    max-width: 1640px;
    width: 100%;
    padding: 36px 0;
    margin: 0 auto;
}

.header-nav-bar {
    background-color: #fff;
}

.header-nav-bar>div {
    padding: 10px 0;
}

footer>section>div {
    padding-top: 0;
    padding-bottom: 0;
}

p {
    margin: 0 0 1.5rem 0;
}

figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 80px;
    font-weight: 500;
    color: var(--heading-color);
}

h2 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 600;
    /* margin-bottom: 16px; */
    color: var(--heading-color);
}

h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--heading-color);
}

.h2-sub-heading {
    font-size: 20px;
    font-weight: 500;
    color: #202020;
    margin-bottom: 20px;
}

.align-center {
    text-align: center;
}

.top-header-bar {
    background-color: #f8f8f8;

    &>div {

        display: flex;
        padding: 8px 0;
        justify-content: space-between;

    }

    .top-header-links {
        color: var(--input-color);
        font-size: 14px;
        display: flex;

        a {
            display: flex;
            align-items: center;
            margin-right: 20px;

            i {
                width: 14px;
                height: 14px;
                margin-right: 5px;
            }
        }

        a.email i {
            background: url(../images/icon-mail-orange.png) center center no-repeat;
            background-size: 100% auto;
        }

        a.phone i {
            background: url(../images/icon-phone-orange.png) center center no-repeat;
            background-size: 100% auto;
        }
    }

    .header-social-media {
        height: 24px;
        text-align: right;
        display: flex;
        align-items: center;
        gap: 16px;

        a {
            height: 80%;

            img {
                height: 100%;
                width: auto;
            }
        }
    }

    .header-menu-buttons-wrapper {
        text-align: right;
    }
}

.seperator {
    position: relative;
    height: 20px;
    background: url(../images/sep.png) no-repeat center center;
    margin-bottom: 50px;

    &::before,
    &::after {
        content: "";
        position: absolute;
        width: calc(50% - 80px);
        height: 2px;
        background-color: var(--heading-color);
        top: 50%;
    }

    &::before {
        left: 0;
    }

    &::after {
        right: 0;
    }
}

.img-text-wrapper {
    display: flex;

    &>figure {
        flex: 0 0 40%;
        align-self: stretch;

        img {
            display: block;
        }
    }

    &>div {
        flex: 0 0 60%;
        padding-left: 20px;
        display: flex;
        flex-direction: column;

        .btn-capsule {
            align-self: flex-start;
            margin-top: auto;
        }
    }
}

.products-horizontal-list {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 50px; */

    &>li {
        flex: 0 0 19%;
        padding: 10px;
        background-color: #ffffff;
        border: 1px solid var(--border-color);
        position: relative;
        cursor: pointer;

        figure {
            height: 300px;
            margin-bottom: 10px;
            background: url(../images/product-bg-hover.webp) no-repeat center center;
            background-size: cover;
            position: relative;
            overflow: hidden;

            .product-bg {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: url(../images/product-bg.webp) no-repeat center center;
                background-size: cover;
                z-index: 1;
                transition: all 0.5s ease-in-out;
            }

            img {
                position: relative;
                z-index: 2;
                object-fit: contain;
                transition: all 0.5s ease-in-out;
            }
        }

        figcaption {
            display: flex;
            flex-direction: column;

            a {
                position: absolute;
                width: 20px;
                height: 20px;
                border-radius: var(--full-border-radius);
                background-color: var(--orange);
                color: #ffffff;
                right: 10px;
                overflow: hidden;
                transform: translateY(4px);
                display: flex;
                align-items: center;
                justify-content: center;
            }

        }

        h3 label {
            text-decoration: none;
            background-image: linear-gradient(var(--orange), var(--orange));
            background-position: 0% 100%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            transition: all 1s;
        }

        &:hover {
            .product-bg {
                opacity: 0;
            }

            figure>img {
                transform: scale(1.2);
            }

            figcaption h3 label {
                color: var(--orange);
                background-size: 100% 2px;
            }
        }
    }
    &>li:nth-child(3) figure >img {
        object-fit: cover;
    }
}

.our-structural-steel {
    & .application-wrapper {
        background: url(../images/bg1.jpg) no-repeat center center;
        background-size: cover;
        padding: 50px;
        display: flex;
        justify-content: space-between;

        &>li {
            flex: 0 0 24%;
            background-color: white;
            border: 1px solid var(--border-color);

            figure {
                height: 300px;
            }

            figcaption {
                padding: 0 1.5rem;
                height: 70px;
                display: flex;
                align-items: center;
            }
        }
    }
}

.tvc-wrapper {
    background: url(../images/bg2.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px;
    overflow: hidden;

    &>div {
        border: 30px solid #fff;
        position: relative;
        outline: 1px solid var(--border-color);

        video {
            width: 100%;
            display: block;
        }
    }

    #tvc-madhuri {
        position: absolute;
        bottom: -80px;
        left: -30px;
        background: url(../images/steel-for-grill.png) no-repeat left bottom;
        background-size: contain;
        width: 50%;
        height: 500px;
    }
}

.benefits-list {
    &>li {
        display: flex;
        margin-bottom: 5px;
        border: 1px solid var(--border-color);
        color: #202020;
        font-weight: 500;

        &>dt {
            flex: 0 0 450px;
            padding: 10px 20px;
            align-self: center;
        }

        &>dd {
            flex: 1 1 auto;
            padding: 10px 20px;
            margin: 0;
        }
    }

    &>li:nth-child(odd) {
        background-color: rgba(91, 22, 41, 0.05);
    }

    &>li:nth-child(even) {
        background-color: #fff;
    }

    &>li:nth-child(1) {
        background-color: #F36F21;
        color: #fff;
        font-weight: 600;
        border: none;
    }

}

.quality-control-wrapper {
    padding: 50px;
    background: url(../images/bg2.jpg) center center no-repeat;
    background-size: cover;
    display: flex;

    .left-pic {
        flex: 0 0 25%;
        transform: translateY(50px);
        margin: -100px 50px 0 -50px;
    }
}

.quality-control-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    &>li {
        flex: 0 0 30%;
        background: #fff;
        padding: 20px;

        h3 {
            font-size: 30px;
            font-weight: 500;
            min-height: 100px;
            margin: 20px 0;
        }

        figure {
            margin: 0;
            width: 70px;
            height: 60px;

            img {
                width: auto;
                object-fit: contain;
            }
        }
    }
}

.projects-slider-outer-wrapper {
    ul {

        height: 300px;
        display: flex;
        align-items: stretch;
        /* overflow: hidden; */
        gap: 16px;

        li {
            position: relative;
            display: flex;
            height: 300px;

            figure {
                height: 100%;

                img {
                    height: 100%;
                    object-fit: cover;
                }
            }

            .overlay {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: 1;
                background: linear-gradient(180deg, #ffffff00 0%, #000000 84%, #000000 100%);
            }
        }

        .label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            z-index: 2;
        }

        h3 {
            color: #fff;
            font-size: 28px;
            font-weight: 500;
        }

        span {
            color: #fff;
        }

    }
}

.consultation-form-wrapper>div {
    margin-top: 36px;
    margin-bottom: 36px;
    padding-left: 50px;
    padding-right: 50px;
    background: url(../images/form-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.form-wrapper {
    width: 70%;
    display: grid;
    gap: 10px;
    grid-template: 'fh  fh fh'
        'f1 f2 f3'
        'f4 f4 f4'
        'f5 f5 f5'
        'f6 f6 f6'
    ;
}

.fh {
    grid-area: fh;
}

.f1 {
    grid-area: f1;
}

.f2 {
    grid-area: f2;
}

.f3 {
    grid-area: f3;
}

.f4 {
    grid-area: f4;
}

.f5 {
    grid-area: f5;
}

.f6 {
    grid-area: f6;
}

.form-row {
    display: flex;
    flex-direction: column;
    position: relative;

    &>label {
        color: var(--input-color);
        font-weight: 600;
        font-size: 18px;
    }
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
    border-radius: var(--full-border-radius);
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #D7DEDD;
    color: var(--input-color);
    outline: none;
    font-size: 16px;
}

textarea {
    border-radius: 15px;
    height: 150px;
    overflow: auto;
    resize: none;
}

.error-field {
    background: #ffe7e7 !important;
    border-color: #ffb2b2 !important;
}

.footer-form .error-field {
    border-color: #5e0000 !important;
    background-color: #f3c2c2 !important;
}

.captcha-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;

    .captcha-image-container {
        background-color: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--full-border-radius);
        height: 40px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .form-row {
        margin-bottom: 0 !important;
    }
}

.btn-refresh {
    width: 30px;
    height: 30px;
    background: url(../images/icon-refresh.png) no-repeat center center;
    background-size: contain;
}

.frm-error-message {
    position: absolute;
    left: 0;
    color: #cc0000;
    font-size: 13px;
    top: 100%;
    display: none;
}

#dealer_frm .frm-error-message {
    position: static;
    color: #fff;
}

.frm-message {}

.consultation-form-wrapper h2 span {
    color: var(--orange);
}

#madhuri-form-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    background: url(../images/madhuri-dixit-form-bg.png) bottom right no-repeat;
    background-size: contain;
    width: 30%;
    top: 0;
}

.design-book-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;

    .btn-capsule {
        align-self: center;
    }

    &>div {
        margin: 1.5rem 1.5rem 0;
    }
}

.testimonials-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    &>section {
        flex: 0 0 50%;

        h3 {
            font-size: 32px;
            font-weight: 500;
            color: var(--input-color);
        }

        .testimonial-carousel-outer {
            ul>li {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 10px;
            }

            .youtube-wrapper {
                background-color: black;

                a {
                    width: 100%;
                    height: 100%;
                    position: relative;
                    display: block;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                    }
                }

                .youtube-btn {
                    position: absolute;
                    width: 64px;
                    height: 40px;
                    background: red;
                    border-radius: 10px;
                    background-size: 100% auto;
                    left: 0;
                    top: 0;
                    bottom: 0;
                    right: 0;
                    margin: auto;
                    z-index: 11;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-style: normal;
                    font-size: 1.6rem;
                    color: white;
                }
            }

            .youtube-wrapper:nth-child(1) {
                flex: 0 1 49%;
            }

            .youtube-wrapper:nth-child(2) {
                flex: 0 1 49%;

            }

            .youtube-wrapper:nth-child(3) {
                flex: 1 1 100%;
                height: 300px;
            }
        }
    }
}

.traction-wrapper {
    display: flex;

    &>li {
        flex: 0 0 25%;
        position: relative;
        cursor: pointer;
        figure {
            width: 70px;
            height: 70px;
            position: relative;

            &::after {
                position: absolute;
                content: "";
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background-color: #5B16291A;
                top: 60px;
                left: 0;
                z-index: -1;
            }

            img {
                width: auto;
                object-fit: contain;
                transition: transform 0.3s ease-in-out;
            }
        }

        h3 {
            font-size: 54px;
            margin: 30px 0;
            font-weight: 700;
            transition: transform 0.5s ease-in-out;
        }
        label {
            transition: all 0.5s ease-in-out;
        }
        &:hover {
            img {
                transform: scale(1.2);
            }
            h3 {
                transform: scale(1.2);
            }
            label {
                letter-spacing: 1px;
            }
        }
    }

    &>li:first-child {
        display: flex;
        justify-content: flex-start;
    }

    &>li:not(:first-child) {
        display: flex;
        justify-content: center;
    }

    &>li:nth-child(even) h3 {
        color: var(--orange);
    }

    &>li:nth-child(even) figure::after {
        background-color: #F36F211A;
    }

    & li+li::before {
        content: "";
        position: absolute;
        width: 1px;
        top: 20px;
        bottom: 20px;
        left: 0;
        background: rgba(0, 0, 0, 0.3);
    }
}

.footer-top {
    display: flex;

    .footer-nav {
        flex: 0 0 20%;
        margin-top: 50px;
    }

    .footer-form {
        h3::after {
            background-color: var(--heading-color);
        }
    }

    .footer-form {
        padding: 50px 40px 0;
        flex: 0 0 30%;
        background: var(--orange);
        position: relative;
        z-index: 1;

        &::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 100px;
            background: var(--orange);
        }

        form {
            margin-top: 30px;
        }

        .form-row,
        .btn-row,
        .captcha-row {
            margin-bottom: 10px;
        }

        input[type=button] {
            background-color: var(--heading-color);
            border: none;
        }
    }

    h3 {
        color: #ffffff;
        font-size: 26px;
        position: relative;

        &::after {
            position: absolute;
            bottom: -10px;
            left: 0;
            content: "";
            width: 36px;
            height: 3px;
            background: var(--orange);
            /* margin-bottom: -25px; */
        }
    }

    .footer-nav {
        ul {
            margin-top: 30px;

            li {
                margin-bottom: 10px;

            }
        }

        a {
            transition: transform 0.3s ease-in-out;
            display: inline-block;

            &:hover {
                transform: translateX(10px);
            }
        }
    }

    .footer-nav dl {
        margin-top: 30px;
        position: relative;
        padding-left: 30px;

        &.location {
            background: url(../images/icon-location.png) no-repeat 5px 5px;
        }

        &.support {
            background: url(../images/icon-mail.png) no-repeat 5px 5px;
        }

        &.call-us {
            background: url(../images/icon-phone.png) no-repeat 5px 5px;
        }
    }

    .footer-nav dd {
        font-weight: 500;
    }
}

section>div.copyright-text {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;

    &::after,
    &::before {
        content: "";
        position: absolute;
        width: 25%;
        top: -1px;
        bottom: 0;
        /* background-color: red; */
        border-top: 1px solid rgba(255, 255, 255, 0.15);

    }

    &::before {
        left: -25%;
        width: 25%;
    }

    &::after {
        right: -25%;
        width: 25%;
    }
}

.footer-download-our-app {
    margin-top: 70px;
    margin-bottom: 20px;

    span {
        font-size: 18px;
        font-weight: 500;
    }

    a {
        display: block;
        width: 50%;

        figure {
            max-width: 100%;

            img {
                object-fit: contain;
            }
        }
    }
}

/*header banner carousel */
.header-banner-carousel-wrapper {
    position: relative;

    li figure+div {
        position: absolute;
        width: 1640px;
        left: 0;
        right: 0;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    li p {
        width: 50%;
        font-size: 20px;
        margin-top: 1rem;
        margin-bottom: 4rem;
    }

    h1 {
        line-height: 100px;
    }

    h1 span {
        text-transform: uppercase;
        color: var(--orange2);

    }

    h1+label {
        font-size: 36px;
        color: var(--heading-color);
        margin-bottom: 1rem;

        span {
            font-size: 50px;
            color: var(--orange2);
        }
    }

    .btn-capsule {
        background-color: var(--orange2);
    }

    .owl-dots {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 12px;

        .owl-dot {
            width: 10px;
            height: 10px;
            background-color: transparent;
            border: 1px solid var(--heading-color);
            border-radius: 50%;

            &.active {
                background-color: var(--orange);
                border-color: var(--orange);
                outline: 1px solid var(--orange);
                outline-offset: 5px;
            }
        }
    }

    .owl-nav>* {
        position: absolute;
        height: 60px;
        width: 32px;
        background: url(../images/icon-left-carousel-arrow.png) no-repeat left center !important;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);

        span {
            display: none;
        }
    }

    .owl-next {
        transform: translateY(-50%) scaleX(-1);
        left: auto;
        right: 30px;
    }
}

#projects-slider {
    position: relative;



    .owl-nav>* {
        position: absolute;
        height: 60px;
        width: 32px;
        background: url(../images/icon-left-carousel-arrow.png) no-repeat left center !important;
        left: -50px;
        top: 50%;
        transform: translateY(-50%);

        span {
            display: none;
        }
    }

    .owl-next {
        transform: translateY(-50%) scaleX(-1);
        left: auto;
        right: -50px;
    }
}

/*chatbot*/
/* #chatbot-launcher {
    position: fixed;
    width: 64px;
    height: 64px;
    right: 10px;
    bottom: 4rem;
    background: url(../images/srmb-mitra-launcher.png) no-repeat center center;
    background-size: 100% auto;
    z-index: 999;
    opacity: 0.85;
    transition: opacity 0.3s ease-in-out;

    &:hover {
        opacity: 1;
    }
} */


/*scroll to top */
#scroll-to-top {
    position: fixed;
    right: 2rem;
    bottom: 1.2rem;
    transition: 0.2s;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    background: var(--orange);
    padding: 0;

    &:hover {
        opacity: 1;
    }
}

#scroll-to-top a {
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    background: url(../images/up-arrow.png) no-repeat center center;
    background-size: auto 16px;
}

#youtube-iframe {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    display: block;
}

.inner-banner {
    height: 250px;
    position: relative;

    figure {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
    }

    &>div {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    h1 {
        text-align: center;
        font-size: 54px;
        margin-bottom: 1.5rem;
    }

    .breadcrumb {
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        display: inline-flex;
        gap: 10px;
        color: var(--input-color);

        a:hover {
            text-decoration: underline;
        }

        span {
            color: var(--orange);
        }
    }
}

.our-products-data-warpper li>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    figure {
        flex: 0 0 30%;
        max-width: 400px;
        border: 10px solid white;
        outline: 1px solid var(--border-color);
        background: url(../images/product-bg-hover.webp) no-repeat center center;
        background-size: cover;
        position: relative;
        overflow: hidden;

        .product-bg {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: url(../images/product-bg.webp) no-repeat center center;
            background-size: cover;
            z-index: 1;
            transition: all 0.5s ease-in-out;
        }

        img {
            position: relative;
            z-index: 2;
            object-fit: contain;
            transition: all 0.5s ease-in-out;
        }

        &:hover {
            .product-bg {
                opacity: 0;
            }

            img {
                transform: scale(1.2);
            }
        }

    }

    article {
        flex: 0 0 70%;

        .table-wrapper {
            width: 100%;
            overflow: auto;

            table {
                max-width: 2000px;
                min-width: 100%;
                table-layout: fixed;

                thead tr:nth-child(1) {
                    background-color: var(--orange);
                }

                thead tr:nth-child(2) {
                    background-color: var(--heading-color);
                }

                th {
                    color: white;
                    font-weight: 500;
                }

                td,
                th {
                    padding: 10px;
                    text-align: center;
                }

                tbody tr:nth-child(even) {
                    border-bottom: 5px solid transparent;

                    td {
                        background-color: rgba(91, 22, 41, 0.05);
                        border-bottom: 1px solid var(--border-color);

                    }
                }

                tbody tr:nth-child(odd) {
                    td {
                        background-color: white;
                        border-bottom: 1px solid var(--border-color);

                    }
                }
            }

        }

        h3 {
            font-size: 36px;
            line-height: 40px;
            margin-bottom: 1rem;
        }
    }
}

.our-products-data-warpper li {
    margin-bottom: 50px;
}

.our-products-data-warpper li:nth-child(even)>div {
    flex-direction: row-reverse;

    figure {
        margin-right: 0;
    }
}

/*added*/
.features-section div.features-section-bg {
    background: url(../images/features-bg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 200px;
    padding: 35px 32px;
}

.realedge-bars {
    width: 350px;
    height: 400px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: flex-end;

    img {
        object-fit: contain;
        height: auto;
    }
}

.features-section ul {
    min-height: 290px;
}

.features-section ul.right {
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: 20px;

    &::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 0px;
        bottom: 0px;
        width: 2px;
        background-color: var(--orange);
    }

    li {
        display: inline-block;
        max-width: 350px;
        background: white;
        border: 1px solid var(--border-color);
        padding: 10px 16px;
        position: relative;

        &::before {
            content: "";
            width: 90px;
            position: absolute;
            top: 50%;
            height: 2px;
            left: -90px;
            background-color: var(--orange);
        }

        &::after {
            content: "";
            width: 10px;
            height: 10px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: -6px;
            background-color: var(--orange);
            border-radius: 50%;
        }
    }
}

.features-section ul.left {
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        right: 10px;
        top: 0px;
        bottom: 0px;
        width: 2px;
        background-color: var(--orange);
    }

    li {
        text-align: left;
        display: inline-block;
        max-width: 350px;
        background: white;
        border: 1px solid var(--border-color);
        padding: 10px 16px;
        position: relative;

        &::before {
            content: "";
            width: 90px;
            position: absolute;
            top: 50%;
            height: 2px;
            right: -90px;
            background-color: var(--orange);
        }

        &::after {
            content: "";
            width: 10px;
            height: 10px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -6px;
            background-color: var(--orange);
            border-radius: 50%;
        }

    }
}

.features-section ul li {
    transition: all 0.3s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: #fddeeb7a;
        box-shadow: 3px 3px 4px rgb(155, 155, 155);
        color: #373737;
    }
}

/* contact us --------------------------------------------------------------------*/
.contact-info div ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.contact-info div ul>li {
    display: flex;
    flex-basis: 32%;
    padding: 20px;
    height:200px;
}

.contact-info div ul>li:nth-child(odd) {
    border: 3px solid var(--heading-color);
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    transition: all 0.5s;
}

.contact-info div ul>li:nth-child(odd):hover {
    background: color-mix(in srgb, var(--heading-color), transparent 85%);
}

.contact-info div ul>li:nth-child(even) {
    border: 3px solid var(--orange);
    background: color-mix(in srgb, var(--orange), transparent 95%);
    transition: all 0.5s;
}

.contact-info div ul>li:nth-child(even):hover {
    background: color-mix(in srgb, var(--orange), transparent 85%);
}

.contact-info div ul>li div {
    margin-right: 10px;
}

.contact-info div ul>li div h5 {
    color: var(--input-color);
    font-size: 22px;
    font-weight: 600;
}

.contact-info div ul>li div h4 {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 600;
}

.contact-info div ul>li img {
    width: 30px;
    height: auto;
}

.contact-number {
    color: var(--orange) !important;
    font-size: 40px !important;
    font-weight: 600 !important;
}

.mail-icon {
    position: relative;
    top: 5px;
}

.contact-info div {
    padding-top: 0;
}

#map_canvas {
    height: 800px;
    width: 1300px;
    margin: 0 auto 4rem;
}

#tvc-human {
    position: absolute;
    bottom: -80px;
    right: -114px;
    background: url(../images/about-us-human.png) no-repeat left bottom;
    background-size: contain;
    width: 40%;
    height: 500px;
}

.why-choose-us .img-text-wrapper {
    flex-direction: row-reverse;
}

.why-choose-us .img-text-wrapper {
    &>div {
        padding-right: 20px;
        padding-left: 0;
    }
}

.our-vision-wrapper {
    background: url(../images/bg2.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px;
    overflow: hidden;
}

.our-vision-mission-wrapper {
    display: flex;
    width: 330px;
    background: #ffffff;
    height: 300px;
    flex-direction: column;
    padding: 30px;
}

.icon-wrapper img {
    width: 70px;
    height: auto;
}

.our-vision-mission-wrapper h4 {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 600;
}

.our-vision-mission-wrapper p {
    color: var(--body-font-color);
    font-size: 16px;
    font-weight: 500;
}

.our-vision-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-vision-middle-img-wrapper {
    display: flex;
    width: auto;
    height: 300px;
    object-fit: contain;
}

.manufacturing-unit-wrapper {
    background: url(../images/bg2.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px;
    overflow: hidden;
    display: flex;
    flex: 1;
}

.manufacturing-unit-text-wrapper {
    background: #fff;
    padding: 20px;
    display: flex;
}

.manufacturing-unit-text-wrapper p {
    color: var(--body-font-color);
    font-size: 16px;
    font-weight: 500;
}

.manufacturing-unit-wrapper>div {
    display: flex;
    flex: 0 0 50%;
    flex-direction: column;
}

.manufacturing-unit-wrapper>div:first-child {
    margin-right: 20px;
}

.manufacturing-unit-image-wrapper {
    position: relative;
}

.manufacturing-unit-first-image,
.manufacturing-unit-second-image {
    width: 90%;
    height: 60%;
    border: 7px solid #fff;
}

.manufacturing-unit-second-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.benchmark-card-wrapper {
    background: #fff;
    height: 425px;
    width: 470px;
    border: 1px solid var(--border-color);
    padding: 30px;
}

.benchmark-wrapper {
    position: relative;
}

.benchmark-image-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: -1;
}

.benchmark-image-wrapper>figure {
    display: flex;
    justify-content: center;
}

.benchmark-image-wrapper img {
    width: 75%;
    height: 50%;
}

.benchmark-wrapper ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.benchmark-card-wrapper h4 {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0;
}

.benchmark-card-wrapper p {
    color: var(--body-font-color);
    font-size: 16px;
    font-weight: 500;
}

#map {
    height: 400px;
    width: 100%;
}

.history-list-wrapper {
    position: relative;
}

.history-list-wrapper ul {
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.history-list-wrapper ul li:nth-child(odd) {
    flex-direction: row;
    /* left: 18%; */
    transform: translateX(44%)
}

.history-list-wrapper ul li:nth-child(even) {
    flex-direction: row-reverse;
    /* right: 18%; */
    transform: translateX(-43%)
}

.history-list-wrapper ul li:nth-child(even) label {
    margin-left: 20px;
    background: var(--orange);
}

.history-list-wrapper ul li:nth-child(odd) label {
    margin-right: 20px;
    background: var(--heading-color);
}

.history-list-wrapper ul li:nth-child(odd) div {
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
}

.history-list-wrapper ul li:nth-child(even) div {
    background: color-mix(in srgb, var(--orange), transparent 90%);
}

.history-list-wrapper ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.history-list-year-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.history-list-year-wrapper h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.history-list-card-details {
    width: 500px;
    top: 0;
    left: 0;
    display: flex;
    padding: 20px;
    flex-direction: column;
    position: relative;
    left: 40px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.history-list-card-wrapper:nth-child(even) .history-list-card-details {
    left: -40px;
}

.history-list-card-wrapper.show .history-list-card-details {
    opacity: 1;
    left: 0;
}

.history-list-card-wrapper.show .history-list-year-wrapper {
    opacity: 1;
}

.history-list-card-details h4 {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.history-list-card-details p {
    color: var(--body-font-color);
    font-size: 16px;
    font-weight: 500;
}

.history-list-middle-border {
    width: 3px;
    background: #000;
    position: absolute;
    top: 100px;
    left: 50%;
    bottom: 100px;
}

.realedge-advantage-product {
    min-height: 200px;
    position: relative;
    display: flex;
    gap: 50px;
    justify-content: center;

    figure {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;

        img {
            text-align: center;
            object-fit: contain;
        }
    }

    dl {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    dl:nth-child(2) {
        align-items: flex-end;
    }

    dd {
        margin-bottom: 1rem;
        max-width: 350px;
        background-color: white;
        border: 1px solid var(--border-color);
        padding: 10px 16px;
        position: relative;
        cursor: pointer;
        left: 0;
        transition: all 0.3s ease-in-out;

        &:hover {
            background-color: #fddeeb7a;
            box-shadow: 3px 3px 4px rgb(155, 155, 155);
            color: #373737;
            left: 10px;
        }

        &::before {
            content: "";
            width: 90px;
            position: absolute;
            top: 50%;
            height: 2px;
            right: -90px;
            background-color: var(--orange);
        }

        &::after {
            content: "";
            width: 10px;
            height: 10px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -6px;
            background-color: var(--orange);
            border-radius: 50%;
        }
    }

    dl.right-items dd {
        &:hover {
            left: -10px;
        }

        &::before {
            left: -90px;
            right: auto;
        }

        &::after {
            left: -6px;
            right: auto;
        }
    }

    dl.left-items dd:nth-child(1) {
        transform: translateX(-305px);
    }

    dl.left-items dd:nth-child(2) {
        transform: translateX(-272px);
    }

    dl.left-items dd:nth-child(3) {
        transform: translateX(-230px);
    }

    dl.left-items dd:nth-child(4) {
        transform: translateX(-166px);
    }

    dl.left-items dd:nth-child(5) {
        transform: translateX(-80px);
    }

    dl.right-items dd:nth-child(1) {
        transform: translateX(-105px);
    }

    dl.right-items dd:nth-child(2) {
        transform: translateX(-16px);
    }

    dl.right-items dd:nth-child(3) {
        transform: translateX(45px);
    }

    dl.right-items dd:nth-child(4) {
        transform: translateX(108px);
    }

    dl.right-items dd:nth-child(5) {
        transform: translateX(130px);
    }

}

#btnMuteUnmute {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/volume.png) no-repeat center center;
    background-size: 30px auto;
    right: 5px;
    top: 5px;
}

#btnMuteUnmute.mute {
    background-image: url(../images/mute.png);
}