.NavBarContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
    z-index: 1000;
    position: fixed;
    background: #fff;
    height: 75px;
}

.NavBarparentDiv {
    min-width: 1024px;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.NavBarparentSubDiv {
    width: 100%;
    min-height: 75px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavbarLinksMainDiv {
    width: 80%;
    height: 75px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.NavBarPageTextDiv {
    height: 75px;
}

.navBarimageContainer {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.NavbarLinks {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    position: relative;
}

.NavbarLinks::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #0078E4;
    color: #0078E4;
    transition: width 0.3s ease-in-out;
}

.NavbarLinks:hover::after {
    width: 100%;
}

.NavbarLinks:hover {
    color: #0078E4;
}

.SupportLogLink {
    padding: 0px 10px;
}

.activeNavSection {
    color: #0078E4;
}

.navbar-toggle,
.navbar-close {
    display: none;
}

.MenuBarStyle {
    font-size: 25px;
}

.MenuBarCloseStyle {
    font-size: 25px;
}

#ArrowUp {
    visibility: hidden;
}

.SolutionNavDiv {
    display: flex;
    align-items: center;
}

.SolutionDropDownContent {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    margin-top: 24px;
}

.SolutionDropDownContent1 {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    margin-top: 100px;
}

.SolutionDropDown:hover .SolutionDropDownContent {
    display: block;
}

.dropbtn {
    padding: 30px 0px;
}

.arrowUpSty {
    padding-top: 3px;
}

.SupportLogLogo {
    font-size: 16px;
    padding-right: 8px;
}

.supportLogBtnMainDiv {
    width: 170px;
    height: 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgb(240, 240, 240);
    transition: color 0.3s;
    text-decoration: none !important;
    margin-left: 10px;
}

.supportLogBtnMainDiv::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background-color: #3973BC;
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.supportLogBtnMainDiv:hover::before {
    width: 300%;
    height: 300%;
}

.supportLogBtnMainDiv:hover {
    color: #fff;
}

.supportLogBtnMainDiv .SupportUserLogo,
.supportLogBtnMainDiv .SupportText {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.SupportUserLogo {
    font-size: 16px;
    fill: #2c3e50;
}

.SupportText {
    font-size: 1rem;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.supportLogBtnMainDiv:hover .SupportUserLogo,
.supportLogBtnMainDiv:hover .SupportText {
    color: #fff;
}

.RequestDemoBtn {
    margin-top: 3px;
    position: relative;
    display: inline-block;
    width: 190px;
    height: 55px;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.045em;
}

.RequestDemoBtn svg {
    position: absolute;
    top: 0;
    left: 0;
}

.RequestDemoBtn svg rect {
    stroke-width: 2;
    stroke-dasharray: 353, 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.RequestDemoBtn span {
    background: linear-gradient(202deg, #41B152, #3973BC 63%, #41B152);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.RequestDemoBtn:hover svg rect {
    stroke-width: 2;
    stroke-dasharray: 106, 543;
    stroke-dashoffset: 437;
}

/* ************************* Media Query Section *************************** */

@media only screen and (max-width: 767px) {

    .RequestDemoBtn svg {
        position: absolute;
        top: auto;
        left: auto;
    }

    .supportLogBtnMainDiv {
        width: 200px !important;
        height: 50px !important;
        margin-left: 0px;
        margin-top: 20px;
    }

    .NavBarContainer {
        height: 70px;
    }

    .NavBarparentSubDiv {
        width: 100%;
        min-height: 70px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .NavbarLinksMainDiv {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        padding: 10px;
        box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
        z-index: 1000;
        padding: 0;
        gap: 0;
    }

    .NavbarLinksMainDiv.activeNavSection {
        display: flex;
    }

    .NavbarLinksMainDiv a {
        width: 100%;
        height: 60px;
        min-height: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        font-size: 0.95rem;
        cursor: pointer;
    }

    .NavBarPageTextDiv {
        height: 60px;
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
    }

    .navbar-close {
        display: none;
        cursor: pointer;
    }

    .NavBarparentDiv {
        width: 100%;
        min-height: 65px;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-width: auto;
        max-width: auto;
    }

    .MenuBarStyle {
        font-size: 20px;
    }

    .MenuBarCloseStyle {
        font-size: 20px;
    }

    .NavbarLogoImage {
        width: 200px;
        height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .NavbarLinksMainDiv {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 10px;
        box-shadow: 0 2px 3px rgba(96, 96, 96, .1);
        z-index: 1000;
        padding: 0;
        gap: 0;
    }

    .NavbarLinksMainDiv.activeNavSection {
        display: flex;
    }

    .NavbarLinksMainDiv a {
        width: 100%;
        height: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        font-size: 1rem;
        cursor: pointer;
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
    }

    .navbar-close {
        display: none;
        cursor: pointer;
    }

    .NavBarparentDiv {
        min-width: auto;
        max-width: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .NavBarparentDiv {
        width: 100%;
        min-height: 75px;
        max-width: 1199px;
        padding-left: 25px;
        padding-right: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media only screen and (min-width: 1200px) {
    .NavBarparentDiv {
        width: 100%;
        min-height: 75px;
        min-width: 1200px;
        max-width: 1400px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}