/* Let's Get Started Div design start*/
.LetsGetStartedDiv {
    display: flex;
    gap: 5%;
    margin-top: 5%;
    width: 100%;
}

.LetsGetStartedDiv .TextDiv {
    width: 70%;
    font-size: 2.8em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 10%;
}

.LetsGetStartedDiv .TextDiv p {
    width: 80%;
}

.LetsGetStartedBtn {
    width: 25%;
    height: 6vh;
    background: linear-gradient(90deg, #243B55, #141E30);
    color: white;
    border: none;

    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.LetsGetStartedBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.LetsGetStartedDiv .ImageDiv img {
    width: 100vw;
}






.POSWithHandPart .TextDiv .descone {
    width: 60%;
    font-size: 32px;
}
.POSWithHandPart .TextDiv .desctwo{
    font-size: 24px;
    margin-top: 0;
}

.POSWithHandPart {
    display: flex;
    
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 105px;
    opacity: 0; /* Initially hidden */
    transform: translateY(100px); /* Initial position */
    transition: all 1s ease-out; /* Smooth animation */
    width: 97%;
    font-size: 2.8em;

}

.POSWithHandPart.animate {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide to its original position */
}

.POSWithHandPart .TextDiv, .POSWithHandPart .ImageDiv {
    flex: 1;
    opacity: 0;
    transform: translateX(-100%); /* TextDiv starts from left */
    transition: all 1s ease-out;
}

.POSWithHandPart .ImageDiv {
    transform: translateX(90%); /* ImageDiv starts from right */
}

.POSWithHandPart.animate .TextDiv,
.POSWithHandPart.animate .ImageDiv {
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide to the center */
}

.POSWithHandPart .TextDiv {
  align-items: center;
  margin:5% 9%;
}

.POSWithHandPart .TextDiv .BookDemoBtn {
    width: 25%;
    height: 6vh;
    background: linear-gradient(90deg, #243B55, #141E30);
    color: white;
    border: none;

    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.POSWithHandPart .TextDiv .BookDemoBtn:hover {
    background-color: #0056b3;
}

.POSWithHandPart .ImageDiv img {
    max-width: 100%;
    height: auto;
}
.BookDemoBtn {
    width: 15%;
    height: 6vh;
    background: linear-gradient(90deg, #243B55, #141E30);
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.BookDemoBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}





.inventory-management {
    margin: 3% 0;
    overflow: hidden; /* Contain the sliding animation */
}

.inventory-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
}

.inventory-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    margin-left: 10%;
    z-index: 2; /* Keep text above the image */
}

.inventory-title{
    font-size: 24px;
}

.inventory-image {
    position: relative;
    overflow: hidden;
}

.inventory-image img {
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-left: 20%;
    transition: all 0.5s ease-in-out;
}

@keyframes slideInFromRight {
    0% {
        width: 100%;
        margin-left: 20%;
        border-radius: 10px;
    }
    100% {
        width: 100%;
        margin-left: 0%;
        border-radius: 10px 0 0 10px;
    }
}

@keyframes slideOutToRight {
    0% {
        width: 100%;
        margin-left: 0;
        border-radius: 10px 0 0 10px;
    }
    100% {
        width: 100%;
        margin-left: 20%;
        border-radius: 10px;
    }
}

.inventory-management:hover .inventory-image img {
    animation: slideInFromRight 0.5s ease-in-out forwards;
}

.inventory-management:not(:hover) .inventory-image img {
    animation: slideOutToRight 0.5s ease-in-out forwards;
}
/* ====================== */








.order-image img {
    width: 60%; /* initial width */
    height: auto;
    border-radius: 10px;
    margin-right: 20%;
    position: relative;
    left: -20%;
    transition: all 0.5s ease-in-out;
    will-change: width, margin-right, border-radius;
}

.ordertaking-management {
    margin: 3% 0;
    overflow: hidden; /* Contain the sliding animation */
}

.order-title{
    font-size: 24px;
}

.order-image {
    position: relative;
    overflow: hidden;
}

.order-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
}

.order-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    margin-left: 10%;
    z-index: 2; /* Keep text above the image */
}

@keyframes slideInFromLeft {
    0% {
        width: 100%;
        margin-left: 0%;
        border-radius: 10px;
    }
    100% {
        width: 100%;
        margin-left: 20%;
        border-radius: 10px 0 0 10px;
    }
}

@keyframes slideOutToLeft {
    0% {
        width: 100%;
        margin-left: 20%;
        border-radius: 10px 0 0 10px;
    }
    100% {
        width: 100%;
        margin-left: 0%;
        border-radius: 10px;
    }
}

.ordertaking-management:hover .order-image img {
    animation: slideInFromLeft 0.5s ease-in-out forwards;
}

.ordertaking-management:not(:hover) .order-image img {
    animation: slideOutToLeft 0.5s ease-in-out forwards;
}


    /* ================= */











.POSWithHandPart.MachineImg {
    max-width: 20vw;
}

/* scrollingpart designs */
/* horizontally scrolling part */
.scrolling-part {
    margin: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 0%;
    margin-bottom: 0;
    background-color: #f0f0f0;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: transparent;
    /* Space between scrolling sections */
}

.scrolling-items {
    display: flex;
    flex-wrap: nowrap;
    /* Ensure no wrapping occurs */
}

.scrolling-items p {
    line-height: 0;
    margin-top: 3%;
    font-size: 18px;
}

.scrolling-items img {
    max-width: 50%;
}

.scrolling-item {
    flex: 0 0 10%;
    height: 20vh;
    margin-top: 2%;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}

.scrolling-part .headings {
    text-align: center;
    font-size: 2rem;

    color: #0A2A59;
    margin: 8% 0 5% 0;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.right-to-left .scrolling-items {
    animation: scrollRightToLeft 12s linear infinite;
}

.left-to-right .scrolling-items {
    animation: scrollLeftToRight 12s linear infinite;
}


/*POS hand slide anumation */



/* video container */
.video-here img{
    height: 100%;
    width: 100%;
}
.proxima-video{
    background-color: #1A1A1A;
    color: #fff;
    padding:5% 20px;
}
.vid-content{
    text-align: center;
}
 .vid-video .container{
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .video-container{
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 70%; */
    width: 100%;
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 5px solid #333333;
    border-right: 5px solid #333333;
    border-bottom: 0 solid #333333;
    border-left: 5px solid #333333;
    border-radius: 20px 20px 0 0;
    padding: 25px 25px 5px 25px;
 }
 .video-here{
    /* background-image: url(/Images/ProximapageImg/VIDEO.png); */
    background-color: #fff;
height: 100%;
width: 100%;
 }
 .vid-content span{
font-size: 16px;
 }
 .vid-content h2{
    font-size: 3rem;
    font-weight: 700;
 }
 .vid-content p{
font-size: 1.3rem;
color: #C1C1C1;
padding: 5px 10%;
 }

/*  */





/* media quary */
@media only screen  and (min-width:2304px){
    .LetsGetStartedDiv {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 5%;
        margin-top: 5%;
        width: 100%;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 95%;
    }

    .inventory-text h3, .order-text h3  {
        font-size: 4rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1.8rem;
        padding-right: 10%;
    }

    .inventory-title {
        font-size: 2rem;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }

    .LetsGetStartedBtn {
        width: 27%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 80%;
        font-size: 3.4em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }


    .POSWithHandPart {
        display: grid;
        grid-template-columns: 55% 45%;
        overflow: hidden;
        background-color: #f7f7f7;
        padding: 20px;
        margin-top: 105px;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.8em;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 90%;
        height: auto;
    }

    .LetsGetStartedDiv .ImageDiv img {
        max-width: 100%;
    }

    .TextDiv{
        padding: 5% 0%;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 77%;
        font-size: 1.1em;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 74%;
        font-size: 1.2em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 30px;
        margin-top: 0;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.7rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 24px;
    }

    .vid-content h2 {
        font-size: 3.1rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1.5rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 2.4rem;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }
    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 1.1em;
    }

    .inventory-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* padding: 20px; */
        margin-left: 10%;
        z-index: 2;
    }

}




@media only screen  and (max-width:2303px){
    .LetsGetStartedDiv {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 5%;
        margin-top: 5%;
        width: 100%;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 100%;
    }



    .LetsGetStartedBtn {
        width: 27%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 80%;
        font-size: 3.4em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
        padding: 5% 0%;
    }


    .POSWithHandPart {
        display: grid;
        grid-template-columns: 55% 45%;
        overflow: hidden;
        background-color: #f7f7f7;
        padding: 20px;
        margin-top: 105px;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.8em;
        gap: 5%;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 90%;
        height: auto;
    }

    .LetsGetStartedDiv .ImageDiv img {
        max-width: 90%;
        height: auto;
    }

    .TextDiv{
        padding: 5% 0%;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 77%;
        font-size: 1.1em;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 74%;
        font-size: 1.2em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 30px;
        margin-top: 0;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.7rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 24px;
    }

    .vid-content h2 {
        font-size: 3.1rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1.5rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 2.4rem;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }
    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 1.1em;
    }

    .inventory-text h3, .order-text h3{
        font-size: 3rem;
    }

    .inventory-title{
        font-size: 2rem;
    }



    .inventory-text p, .order-text p{
        font-size: 1.8rem;
        padding-right: 10%;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 70px;
        margin-right: 10%;
        z-index: 2;

}
}

@media only screen  and (max-width:2000px){
    .LetsGetStartedDiv {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 5%;
        margin-top: 50px;
        width: 100%;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 95%;
    }


    .LetsGetStartedBtn {
        width: 27%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.5rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 80%;
        font-size: 2.8em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
        padding: 7% 0%;
    }


    .POSWithHandPart {
        display: grid;
        grid-template-columns: 55% 45%;
        overflow: hidden;
        background-color: #f7f7f7;
        padding: 20px;
        margin-top: 105px;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.8em;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 85%;
        height: auto;
    }

    .TextDiv{
        padding: 5% 0%;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 77%;
        font-size: 1.0em;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 74%;
        font-size: 1em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 26px;
        margin-top: 0;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.5rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 24px;
    }

    .vid-content h2 {
        font-size: 3.1rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1.5rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 2.4rem;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }
    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 1.1em;
    }

    .inventory-text p, .order-text p {
        font-size: 1.6rem;
        padding-right: 3%;
    }

    .inventory-title {
        font-size: 1.7rem;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }

}

@media only screen and (max-width:1800){
    .inventory-title {
        font-size: 1.5rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 2.6rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1.5rem;
        padding-right: 3%;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 83%;
        font-size: 2.6em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
        padding: 7% 0%;
    }
}

@media only screen and (max-width:1700px){
    .LetsGetStartedDiv .TextDiv {
        width: 78%;
        font-size: 2.5em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .LetsGetStartedBtn {
        width: 29%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.3rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .ImageDiv {
        display: flex;
        justify-items: center;
        align-items: center;
    }
    

    .POSWithHandPart .ImageDiv img {
        max-width: 85%;
        display: flex;
        justify-items: center;
        align-items: center;
        height: auto;
    }

    .POSWithHandPart {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 5%;
        overflow: hidden;
        background-color: #f7f7f7;
        padding: 20px;
        margin-top: 105px;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.8em;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 100%;
        font-size: 0.9em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 25px;
        margin-top: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 30%;
        height: 7.4vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.2rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 20px;
    }

    .vid-content h2 {
        font-size: 2.9rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1.3rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 2em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 0.9em;
    }

    .inventory-title {
        font-size: 1.4rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 2.4rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1.4rem;
        padding-right: 3%;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }
}

@media only screen and (max-width:1600px){
    .inventory-title {
        font-size: 1.3rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 2.3rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1.4rem;
        padding-right: 2%;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 78%;
        font-size: 2.4em;
        flex-direction: column;
        margin-left: 10%;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }
}

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

    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 2.3em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .LetsGetStartedBtn {
        width: 29%;
        height: 7.3vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.1rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 100%;
        font-size: 0.8em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 24px;
        margin-top: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 29%;
        height: 7.3vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1.1rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv {
        align-items: center;
        margin: 0% 5%;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 100%;
        height: auto;
        display: flex;
        justify-items: center;
        align-items: center;
    }

    .POSWithHandPart {
        display: flex;
        overflow: hidden;
        background-color: #f7f7f7;
        padding: 20px 0px;
        margin-top: 105px;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.6em;
    }

    .vid-content span {
        font-size: 18px;
    }

    .vid-content h2 {
        font-size: 2.8rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1.2rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 1.7em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 0.8em;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 70px;
        margin-right: 10%;
        z-index: 2;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 100%;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 78%;
        font-size: 2.2em;
        flex-direction: column;
        margin-left: 10%;
    }
}

@media only screen and (max-width:1363px){
    .LetsGetStartedDiv .TextDiv {
        width: 73%;
        font-size: 1.9em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .LetsGetStartedBtn {
        width: 31%;
        height: 7.7vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 100%;
        font-size: 0.7em;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7.4vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 19px;
        margin-top: 0px;
    }

    .vid-content span {
        font-size: 16px;
    }

    .vid-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 1rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 1.4em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 0.6em;
    }

    .inventory-title {
        font-size: 1.2rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 2.1rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1.2rem;
        padding-right: 2%;
    }

    .inventory-title {
        font-size: 1.1rem;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 70px;
        margin-right: 10%;
        z-index: 2;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 100%;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 73%;
        font-size: 1.8em;
        flex-direction: column;
        margin-left: 10%;
    }


}

@media only screen and (max-width:1200px){
    .LetsGetStartedDiv .TextDiv {
        width: 73%;
        font-size: 1.6em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .LetsGetStartedBtn {
        width: 27%;
        height: 7.4vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv p {
        width: 100%;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 100%;
        font-size: 0.6em;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 17px;
        margin-top: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7.4vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 14px;
    }

    .vid-content h2 {
        font-size: 2.2rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 0.9rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 1.3em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 0.6em;
    }

    .inventory-title {
        font-size: 1rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 1.9rem;
    }

    .inventory-text p, .order-text p {
        font-size: 1rem;
        padding-right: 2%;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 70px;
        margin-right: 10%;
        z-index: 2;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }



}

@media only screen and (max-width:1079px){
    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1.4em;
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .LetsGetStartedBtn {
        width: 29%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 13px;
    }

    .vid-content h2 {
        font-size: 1.9rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 0.8rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 1.1em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 3%;
        font-size: 0.5em;
    }

    .ImageDiv{
        margin: 8% 0%;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 26%;
        height: 7vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }
}

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

    .LetsGetStartedBtn {
        width: 33%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 73%;
        font-size: 1.3em;
        flex-direction: column;
        margin-left: 10%;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 31%;
        height: 7.3vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content p {
        font-size: 0.7rem;
        color: #C1C1C1;
        padding: 5px 10%;
    }

    .inventory-title {
        font-size: 0.9rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 1.6rem;
    }

    .inventory-text p, .order-text p {
        font-size: 0.9rem;
        /* padding-right: 0%; */
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }

    .inventory-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* padding: 20px; */
        margin-left: 10%;
        z-index: 2;
    }

}

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

    .LetsGetStartedDiv .TextDiv p {
        width: 105%;
    }
    .LetsGetStartedBtn {
        width: 41%;
        height: 7.5vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1.2em;
        flex-direction: column;
        margin-left: 10%;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 100%;
        font-size: 0.5em;
        font-weight: 500;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 14px;
        margin-top: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 30%;
        height: 7.3vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .vid-content span {
        font-size: 12px;
    }

    .vid-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .vid-content p {
        font-size: 0.8rem;
        color: #C1C1C1;
        padding: 5px 4%;
    }

    .inventory-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* padding: 20px; */
        margin-left: 10%;
        z-index: 2;
    }

    .inventory-text p, .order-text p {
        font-size: 0.8rem;
        /* padding-right: 0%; */
    }

    .inventory-text h3, .order-text h3 {
        font-size: 1.5rem;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 25px;
        margin-right: 10%;
        z-index: 2;
    }

    .ordertaking-management {
        margin: 15% 0;
        overflow: hidden;
    }

    

}

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


    .LetsGetStartedDiv .TextDiv p {
        width: 105%;
    }

    .LetsGetStartedDiv {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        width: 100%;
        gap: 0px;
    }

    .LetsGetStartedDiv .MachineImg {
        max-width: 35vw;
    }

    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1.3em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 13%;
        padding: 5%;
    }

    .LetsGetStartedBtn {
        width: 30%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        overflow: hidden;
        background-color: #f7f7f7;
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s ease-out;
        width: 100%;
        font-size: 2.6em;
        gap: 3%;
        margin-top: 50px;
        padding: 0px;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 105%;
        font-size: 0.5em;
        font-weight: 500;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 14px;
        margin: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 45%;
        height: 7.4vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .MachineImg {
        max-width: 35vw;
        align-items: center;
    }

    .vid-content p {
        font-size: 0.7rem;
        color: #C1C1C1;
        padding: 5px 4%;
    }

    .vid-content h2 {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .POSWithHandPart .TextDiv {
        align-items: center;
        margin: 3% 0% 15% 0%;
        padding: 0% 32%;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 10%;
        font-size: 0.5em;
    }
    .TextDiv{
        order: 2;
        justify-content: center;
        text-align: center;
        padding: 0px;
    }

    .ImageDiv{
        order: 1;
        display: flex;
        justify-content: center;
        margin:0%;
    }


    .POSWithHandPart .ImageDiv img {
        max-width: 35%;
        height: auto;
    }

    .video-container {
        display: flex ;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 70vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .inventory-title {
        font-size: 0.8rem;
    }

    .inventory-text h3, .order-text h3 {
        font-size: 1.3rem;
    }

    .inventory-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* padding: 20px; */
        margin-left: 5%;
        z-index: 2;
    }

    .order-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 33px;
        margin-right: 5%;
        z-index: 2;
    }

    .inventory-image img {
        height: auto;
        max-width:100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

}

@media only screen and (max-width:650px){
    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1.2em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 13%;
        padding: 5%;
    }

    .LetsGetStartedBtn {
        width: 35%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    

    .POSWithHandPart .TextDiv .descone {
        width: 105%;
        font-size: 0.5em;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 2%;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 52%;
        height: 7.2vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.8rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 45%;
        height: auto;
        margin: 10% 0%;
    }

    .inventory-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        margin-left: 20%;
        transition: all 0.5s ease-in-out;
    }

    .order-image img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }
}

@media only screen and (max-width:500px){
    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1.2em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 15%;
        margin-right: 15%;
        padding: 5%;
    }

    .LetsGetStartedBtn {
        width: 37%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.7rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv {
        align-items: center;
        margin: 3% 0% 15% 0%;
        padding: 0% 26%;
    }

    .vid-content span {
        font-size: 11px;
    }

    .vid-content h2 {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .scrolling-part .headings {
        text-align: center;
        font-size: 0.9em;
        color: #0A2A59;
        margin: 8% 0 5% 0;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 10%;
        font-size: 0.3em;
    }

    .scrolling-item {
    flex: 0 0 15%;
    height: 10vh;
    margin-top: 2%;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}

    .video-container {
        display: flex ;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 85vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }
}

@media only screen and (max-width:480px){
    .LetsGetStartedDiv .MachineImg {
        max-width: 45vw;
    }

    .LetsGetStartedBtn {
        width: 39%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.7rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .ImageDiv img {
        max-width: 45%;
        height: auto;
    }

    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 20px;
    }

    .inventory-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0%;
    }

    .inventory-text{
        order: 2;
    }

    .inventory-image{
        order: 1;
    }




    .order-content {
        display: grid ;
        grid-template-columns: repeat(1, 1fr);
        gap: 0%;
    }

    .order-image{
        order: 1;
    }

    .order-text { 
        order: 2;
    }
}

@media only screen and (max-width:420px){
    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 17px;
    }

    .LetsGetStartedBtn {
        width: 41%;
        height: 7.6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.7rem;
        border-radius: 5px;
        cursor: pointer;
    }
}

@media only screen and (max-width:407px){
    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 1em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 13%;
        padding: 5%;
    }

    .LetsGetStartedBtn {
        width: 39%;
        height: 7vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.6rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 105%;
        font-size: 0.4em;
        font-weight: 500;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 10px;
        margin: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 48%;
        height: 7vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.6rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 15px;
    }

}

@media only screen and (max-width:370px){
    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 5px;
    }


    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .LetsGetStartedBtn {
        width: 41%;
        height: 7vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.6rem;
        border-radius: 5px;
        cursor: pointer;
    }
}

@media only screen and (max-width:339px){
    .LetsGetStartedDiv .TextDiv {
        width: 70%;
        font-size: 0.8em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-left: 13%;
        padding: 5%;
    }

    .LetsGetStartedBtn {
        width: 38%;
        height: 6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.5rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .POSWithHandPart .TextDiv .descone {
        width: 105%;
        font-size: 0.3em;
        font-weight: 500;
    }

    .POSWithHandPart .TextDiv .desctwo {
        font-size: 8px;
        margin: 0px;
    }

    .POSWithHandPart .TextDiv .BookDemoBtn {
        width: 45%;
        height: 6vh;
        background: linear-gradient(90deg, #243B55, #141E30);
        color: white;
        border: none;
        font-size: 0.5rem;
        border-radius: 5px;
        cursor: pointer;
    }

    .scrolling-items p {
        line-height: 0;
        margin-top: 10%;
        font-size: 0.2em;
    }

    .vid-content h2 {
        font-size: 1.3rem;
        font-weight: 700;
    }

    .vid-content span {
        font-size: 9px;
    }

    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 15px;
    }

}

@media only screen and (max-width:320px){
    .proxima-video {
        background-color: #1A1A1A;
        color: #fff;
        padding: 5% 13px;
    }

    
    .video-container {
        display: flex;
        align-items: center;
        justify-content: center;
        /* width: 70%; */
        width: 100%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        border-top: 5px solid #333333;
        border-right: 5px solid #333333;
        border-bottom: 0 solid #333333;
        border-left: 5px solid #333333;
        border-radius: 20px 20px 0 0;
        padding: 25px 25px 5px 25px;
    }

}
