@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    src: url(../Fonts/NotoSans-VariableFont_wdth,wght.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-weight: bold;
    src: url('../Fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: bold;
    src: url('../Fonts/Poppins-Bold.eot');
}

@font-face {
    font-family: 'Poppins';
    font-weight: bold;
    src: url('../Fonts/Poppins-Bold.woff');
}

@font-face {
    font-family: 'Poppins';
    src: url('../Fonts/Poppins-ExtraLight.otf');
    font-size: 20px
}

@font-face {
    font-family: 'AcuminPro';
    src: url('../Fonts/Acumin-BdPro.otf');
    font-weight:bold;
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}
.desigen-ex {
    width: 158px;
    text-align: left;
}




body {
    margin: 0px;
    padding: 0px;
    /*   background: #232323; */
}


#menuToggle {
    display: block;
    position: relative;
    top: 40px;
    right: 0px;
    z-index: -1;
    -webkit-user-select: none;
    user-select: none;
    padding-top: 0px
}
#Logo{
    top:40px;
    left:50px
}

    #menuToggle a {
        text-decoration: none;
        color: black;
        transition: color 0.3s ease;
    }

        #menuToggle a:hover {
            color: cornflowerblue !important;
            font-style: italic !important;
            font-weight: Bold !important;
        }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        right: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 39px;
        height: 4px;
        margin-bottom: 6px;
        position: relative;
        background: aliceblue;
        border-radius: 0px;
        z-index: 1;
        transform-origin: 10px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease-in;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 0%;
        }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        #menuToggle input:checked ~ span:nth-last-child(2) {
            transform: rotate(-45deg) translate(0, -1px);
        }

#menu {
    color: #232323;
    position: absolute;
    width: 60%;
    height: 1000vw;
    text-align: center;
    margin: -100px 0 0 -50px;
    padding: 0px;
    padding-top: 300px;
    background: white;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translateY(-100%);
    box-shadow: -49.5vw 0 rgb(30,136,229,.2);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}


    #menu li {
        padding: 5px 0;
        font-size: 22px;
    }

#menuToggle input:checked ~ ul {
    transform: none;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}


/* Container styles */
.scrolling-text-container {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    font-family: Poppins
}

/* Text styles */
.scrolling-text {
    display: flex;
}

.scrolling-text-item {
    padding: 0 10px 0 10px;
}

/* Apply the animation to the text items */
.scrolling-text-inner > div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner > div {
    animation-play-state: running;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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

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

    100% {
        transform: translateX(0%);
    }
}
/*  .about{
                    color:darkgrey;
                    font-weight:revert;
                    font-size:30px;

                } */




.nav-icon {
    margin-right: 10px;
}

/*//about*/
.accordion {
    background-color: transparent;
    color: black;
    padding: 0 0 2px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 30px;
    transition: 0.4s;
}

    .active, .accordion:hover {
        background-color: transparent;
    }



.active:after {
    content: "\2212";
}

.panel {
    padding: 0 0;
    border: 1px solid black;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    width: 50%
}


* {
    box-sizing: border-box;
}


#myVideo {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    display: block
}

.content {
    position: relative;
    bottom: 0;
    background: #edede9;
    width: 50px;
    display: block;
    padding: 10px
}

#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #00;
    color: #fff;
    cursor: pointer;
}

    #myBtn:hover {
        background: #ddd;
        color: black;
    }



#container {
    max-width: 100vw;
    overflow: hidden;
}

h1 {
    transition: transform 0.3s linear;
}


.image-style {
    width: 100%;
    height: auto;
    padding-right:30px
}
div:has(.image-style)
{

}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 25px;
}

.noto-sans {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 30px
}
.noto-sans-display {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
#navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    transition: top 0.3s;

}
/*  #navbar a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 15px;
        text-decoration: none;
    }*/
/*   #navbar a:hover {
            background-color: #ddd;
            color: black;
        }*/

.hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #333; /* old IE */
    background-color: #333; /* Modern Browsers */
}

a.contact {
    color: white;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    letter-spacing: .14rem;
}

div.contact {
    direction: ltr;
    margin: 70px 0 40px 50px;
    padding: 0 20px 0 30px;
    font-family: Poppins;
    font-weight: 200
}

.contact label {
    font-weight: 200;
}

.contact input {
    color: #232323;
    font-family: "Poppins", sans-serif;
}

.contact textarea {
    color: #232323;
    font-family: "Poppins", sans-serif;
}

span.requaierd {
    padding-left: 10px;
    font-size: 9pt;
    color: #938e8e
}

h1.contactTitle {
    font-family: "Poppins", sans-serif;
}

h4.contactbody {
    font-family: "Poppins", sans-serif;
    color:white;
    line-height:30px
 
}

.pb-3 {
    padding-bottom: 30px;
}
.pb-2 {
    padding-bottom: 20px;
}
.pb-4 {
    padding-bottom: 40px;
}
.copyright {
    font-family: "AcuminPro", sans-serif;
    direction: ltr;
    text-align: left;
    font-weight: bold;
    font-size: 9pt;
    margin: 50px 0 15px 50px;
    letter-spacing:1px;
}
.Poppins {
    font-family: "Poppins", sans-serif;
}
.home-mobile {
    display: none;
}
@media screen and (max-width: 1200px) {
    .home-mobile {
        display: block;
    }
    .Warehouse {
        display: none;
    }
}
@media screen and (min-width: 820px) {
    .videoText {
        width:147%
      
    }

   
}
