/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    outline:none;
}

:root{
    /* ===== Colors ===== */
    --body-color: #ffffff;
    --sidebar-color: #FFF;
    --primary-color: #695CFE;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #cdc7c7;

    /* ====== Transition ====== */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
    --tran-06: all 0.8s ease;

    /* ===== Webkit Color ===== */
    --color:0;

    --scrollPosition:0
}
html{
    position:relative;
    scrollbar-width: none;
}

body{
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
    position: relative !important;
    -ms-overflow-style: none;
}

body .wms-index{
    position: relative;
    background-image:url('../img/wms-index-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}





#frontpage-header-nav{
    background: #0A3981;
    height: auto;
    justify-content: space-between;
    position: relative;
}

#frontpage-header-nav img{
    margin: 5px;
    width: 48%;
    background: #110c25;
    height: 38%;
    /* position: absolute;
    top: 0;
    left: 0; */
}

#navbar-container{
    z-index: 100;
    position: relative;
    left: 0;
    /* margin-bottom: 40px !important; */
}

#front-container{
    height: 100%;
    position: relative;
    overflow-y: visible;
    /* overflow-x: hidden;  */
    z-index: 0;
}

#front-nav{
    position: relative;
    height: 55px;
    width: 100%;
    padding:0 20px ;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(2px);
}.contact{
    position: absolute;
    top: 0;
    right: 0;
    height: 110%;
    border-radius: 0 0 0 20px;
    display: flex;
    align-items: center;
    background: rgb(40, 114, 154);
    font-size: .7em;
    padding: 20px;
}.contact i{
    border-radius: 50%;
    background: whitesmoke;
    padding: 10px;
    color:#000305;
    margin-right: 10px;
}


#navbar-groupbtn button:first-child{
    background: transparent;
    backdrop-filter: blur(2px);
    border: #D4EBF8 solid;
    border-right: transparent !important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#navbar-groupbtn button:nth-child(2){
    background: transparent;
    backdrop-filter: blur(2px);
    border: #D4EBF8 solid;
    border-right: transparent;
    border-left: transparent;
    color: #cdd2d2;
}

#navbar-groupbtn button:last-child{
    background: transparent;
    backdrop-filter: blur(2px);
    border: #D4EBF8 solid;
    border-left: transparent !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#navbar-groupbtn button span:hover{
    color: rgb(9, 26, 61);
    animation: zooming-in 2s ease 0s 1 normal forwards;
}

@keyframes zooming-in {
	0% {
		font-size: 1em;
	}

	100% {
		font-size: 1.2em;
	}
}

@keyframes dash {
    to { stroke-dashoffset: -200; }
}

#front-image{
    max-width: 100%;
    height: 100%;
    width: 100%;
    left: 0%;
    top: 0%;
    position: absolute;
    z-index: -5;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.img1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/frontpage_glacier.jpeg');
    animation: fadeIn 3s ease-out;
    z-index: -5;

    /* //  transform */
    transform-origin: bottom center;     
    will-change: transform; 
    transform: 
        translate3d(0, calc(var(--pct) * 35%), 0)                  
        scale3d(calc(var(--pct)/2 + 1), calc(var(--pct)/2 + 1), 1); 
}



.img2:before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    background-color: #0A3981 !important;
    background-image: url('../img/frontpage_glacier2.jpeg') !important;
    animation: fadeOut 3s ease-out;
    z-index: -5;

    /* //  transform */
    transform-origin: bottom center;     
    will-change: transform; 
    transform: 
        translate3d(0, calc(var(--pct) * 35%), 0)                  
        scale3d(calc(var(--pct)/2 + 1), calc(var(--pct)/2 + 1), 1); 
    
}

@keyframes fadeIn {
    0% {opacity: 0;background-image: url('../img/frontpage_glacier.jpeg') !important;}
    100% {opacity: 1;background-image: url('../img/frontpage_glacier2.jpeg') !important;}
}

@keyframes fadeOut {
    0% {opacity: 0;background-image: url('../img/frontpage_glacier2.jpeg') !important;}
    100% {opacity: 1;background-image: url('../img/frontpage_glacier.jpeg') !important;}
}



#front-nav-image-outerlayer{
    height: 100%;
    width: 100%;
    top: 0%;
    position: absolute;
    z-index: -4;
    background: linear-gradient(to right, #001F3F  , #3A6D8C) !important;
    opacity: 0.7;
    display: flex;
    align-items: center;
    margin-top: 0;
}


#navbar-container header{
    position: relative;
}

#navbar-container header .image-text{
    display: flex;
    align-items: center;
    position: relative;
    padding:0px 10px;
    overflow: hidden;
}
#navbar-container header .logo-text{
    display: flex;
    flex-direction: column;
}
header .image-text .name {
    margin-top: 2px;
    font-size: 20px;
    font-weight: bolder;
    animation: logoname-animation 5s infinite ease-out;
}


header .image-text .profession{
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

#navbar-container header .image{
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logo-animation 5s infinite ease-out;
}



#navbar-container header .image img{
    width: 30px;
    border-radius: 100px;
    /* margin-left: 20px; */
}

#navbar-container header .image img:hover{
    width: 35px;
}

#navbar-front{
    /* margin-left: 76%; */
    position: relative;
    width: 96%;
    height: 50%;
    left: 2%;
    display: flex;
    text-align: left;
    align-items: center;
}


#navbar-front a{
    position: absolute;
    right: 6%;
    top: 3%;
    text-decoration: none;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    /* color: #F6F5FF; */
    font-size: 20px;
    letter-spacing: 0.5px;
    padding: 0 10px;
    color: #ece8e8 !important;
    font-weight: bolder;
}

#navbar-front a:hover{
    color: #89c7fd !important;
}

#navbar-front a:after {
    content: "";
    position: absolute;
    background-color: #3237c2;
    height: 3px;
    width: 0;
    left: 0px;
    bottom: -5px;
    transition: 0.3s;
}

#navbar-front a:hover:after {
    width: 100%;
}

#frontpage-header-title{
    width: 100%;
    font-weight: bolder;
    font-size: 3.5em;
    padding: 20px;
    /* margin-top: 5.5%; */
    color: #ffffff;
    transition: var(--tran-03);
    padding-right:15px;
    text-align: left;
    position: relative;
    /* background: #0A3981; */
}

#frontpage-header-title span{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1;
    /* background: transparent; */
    margin: 20px;
}

#frontpage-header-title p{
    font-size: .4em; 
    font-weight: normal;
    margin-top: 20px;
    padding-left:15px;
    width: 80%;
}

#frontpage-header-title button{
    background: linear-gradient(to right, #469ab9 , #097f91) !important;
    border: #0d6a79 !important; 
    margin-left:15px !important;
    padding: 10px 20px;
}

#frontpage-header-title #sbu-name{
    color: transparent;
    font-weight:bolder !important;
    background-clip: text;
    animation: changeColor 2s ease-in-out 1s infinite alternate both !important;
}


#frontpage-header-content{
    /* position: absolute; */
    width: 45%;
    font-size: .9em;
    /* margin-top: 420px; */
    padding: 20px;
    color: #d1d1d1;
    transition: var(--tran-03);
    padding-right:15px;
    display: flex;
    align-items: top;
}

#frontpage-header-buttons{
    width: 50%;
    display: flex;
    justify-content: center;
    margin-left: 10px;
}

#frontpage-header-buttons button{
    font-size: .9em;
    padding: 10px 30px;
    margin: 10px;
    border-radius: 30px;
}

#frontpage-header-buttons button:last-child{
    background-color: #9ae5e7 !important;
    color: #110c25;
    display: flex;
    align-items: center;
}


#frontpage-header-collab-image{
    margin-top: 100px;
    height: 100%;
    width: 100%;
    transition: var(--tran-03);
    padding-right:15px;
    /* border: #6753b7 solid; */
    position: relative;
}

#frontpage-collab-image-1 img{
    margin: 5px;
    width: 48%;
    background: #110c25;
    height: 38%;
    position: absolute;
    top: 0;
    left: 0;
}

#frontpage-collab-image-2 img{
    margin: 5px;
    width: 48%;
    background: linear-gradient(215deg, transparent 30px,#110c25 0%) ;
    height: 58%;
    position: absolute;
    top: 0;
    right: 0;
}
#frontpage-collab-image-3 img{
    margin: 5px;
    width: 48%;
    background: linear-gradient(35deg, transparent 30px,#110c25 0%) ;
    height: 58%;
    position: absolute;
    bottom: 0;
    left: 0;

}

#frontpage-collab-image-4 img{
    margin: 5px;
    width: 48%;
    background: #110c25;
    height: 38%;
    position: absolute;
    bottom: 0;
    right: 0;
}


#frontpage-opening{
    height: 100%;
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;

}

#frontpage-opening span{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    position: relative;
}

#frontpage-opening span:before{
    position: absolute;
    top: 30px;
    left: -30px;
    text-shadow: none;
    filter: blur(8px);
    z-index: -1;
}

#frontpage-opening span:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    /* background: #110c25; */
    background: #110c25;
    border-left: 2px solid #756c95;
    animation: typing 1s steps(35) forwards;
}

#frontpage-opening-image{
    margin-right: 10px;
    animation-name: move360;
    animation-duration: 2s;
}

#frontpage-box-choices{
    /* border: #097f91 solid; */
    width: 100%;
    height: 30%;
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translate(0%,-40%);
    /* background: yellow; */
}

#frontpage-box-choices-1,#frontpage-box-choices-3{
    position: relative;
    height: 220px;
    width: 500px;
    background-color: #f2f2f2;
    color:#001F3F;
    backdrop-filter: blur(2px);
    text-align: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3)!important;
    /* overflow: auto; */
}

#frontpage-box-choices-2{
    position: relative;
    height: 260px;
    width: 460px;
    background-color: #f8f4f4;
    color:#001F3F;
    backdrop-filter: blur(2px);
    text-align: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3)!important;
    z-index: 2;
}

.fronted-intro-boxes{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.fronted-intro-boxes:hover{
    .hat2 {
        animation: slide-in 0.5s forwards;
        -webkit-animation: slide-in 0.5s forwards;
    }
}

@keyframes slide-in {
    100% { 
        transform: translateX(0%);
        right: -300px;
        top: 0px;
    }
}

@-webkit-keyframes slide-in {
    100% { 
        -webkit-transform: translateX(0%); 
        right: -300px;
        top: 0px;
    }
}

.hat2{
    position: absolute;
    left: -40px;
    top: -100px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}


.fixed{
    display:block;
    position:fixed;
    left:0;
    top:0;
    height:100%;
    width:100%;
}

.fixed .relative{
    position:relative;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.black-container-first{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:50%;
    background-color: #110c25;
    animation-name: up;
    animation-duration: 3.5s;
    animation-timing-function:linear;
}
.black-container-last{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50%;
    background-color: #110c25;
    animation-name: down;
    animation-duration: 3.5s;
    animation-timing-function:linear;
}
.title-container{
    position:absolute;
    top:0;
    left:0;
    color: white;
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*  ========================= Line Animation For Front page ========================== */

.line-container{
    position: relative;
    height:470px;
    width:800px;
}

.animation-box-container{
    position: absolute;
    right:-50px;
    top:0px;
    margin:20px 150px;
}

.animation-box{
    position: relative;
    width:450px;
    height:430px;
    overflow: hidden;
    border-radius: 10px;
}

.animation-box-btn{
    position: absolute;
    bottom: 15%;
    right: -90px;
    animation: movingFromLeftoRight 2s ease;
}

@keyframes movingFromLeftoRight {
    from {
        right: -200px;
        opacity: 0;
    }
    to {
        right: -90px;
        opacity: 1;
    }
}

.animation-box .line-1{
    position: absolute;
    top:0px;
    left:0px;
    height:120px;
    width:120px;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}

.animation-box .line-1::after{
    content: '';
    position: absolute;
    bottom:0px;
    left:0px;
    height:120px;
    width:15px;
    background-image: linear-gradient(red, orange);
    box-shadow: 5px 20px 8px rgba(255,255,255,0.3);
    animation: line-1 4.5s ease-in;
}

.animation-box .line-2{
    position: absolute;
    top:0px;
    left:0px;
    height:15px;
    width:100%;
    background-image: linear-gradient(to left, orange, red);
    box-shadow: 5px 5px 8px rgba(255,255,255,0.3);
    animation: line-2 2s ease-in;
}

.animation-box .line-3{
    position: absolute;
    top:0px;
    right:0px;
    height:100%;
    width:15px;
    background-image: linear-gradient(orange ,red);
    box-shadow: -5px 20px 8px rgba(255,255,255,0.3);
    animation: line-3 2s ease-in;
}

.animation-box .line-4{
    position: absolute;
    bottom:0px;
    right:0px;
    height:15px;
    width:100%;
    background-image: linear-gradient(to left, red, orange);
    box-shadow: -20px -5px 8px rgba(255,255,255,0.3);
    animation: line-4 2s ease-in;
}

.animation-box .line-5{
    position: absolute;
    bottom:0px;
    left:0px;
    height:120px;
    width:120px;
    background-color: transparent;
    overflow: hidden;
}

.animation-box .line-5:after{
    content: '';
    position: absolute;
    bottom:0px;
    left:0px;
    height:120px;
    width:15px;
    background-image: linear-gradient(red ,orange);
    box-shadow: 5px -20px 8px rgba(255,255,255,0.3);
    animation: line-5 2s ease-in;
}

/* ================================ End for Line Animation =============================== */


/* ============================= Gear Animation ============================================ */

.gear {
    font-size: 10em;
    border-radius: 50%;
    margin: 20px auto;
    -webkit-animation: rotating 1.2s linear infinite;
    -moz-animation: rotating 1.2s linear infinite;
    -ms-animation: rotating 1.2s linear infinite;
    -o-animation: rotating 1.2s linear infinite;
    animation: rotating 1.2s linear infinite;
}

@-webkit-keyframes rotating  {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}
  @keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}



/* .gear, .gear2{
    height: 100px;
    width: 100px;
    background: transparent;
    box-shadow: inset 0 0 0px 20px rgb(178, 171, 171), inset 0 0 0px 25px #444;
    border-radius: 50%;
    position: relative;
    margin: 20px auto;
    -webkit-animation: rotate 3s linear infinite;
    -moz-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}
.gear:before, .gear:after, .gear2:before, .gear2:after {
    height: 20px;
    width: 20px;
    content: '';
    border-radius: 20%;
    position: absolute;
    background: rgb(178, 171, 171);
}
.gear:before, .gear2:before{
    box-shadow: 50px 50px 0 0 rgb(178, 171, 171), -50px 50px 0 0 rgb(178, 171, 171), 0 100px 0 0 rgb(178, 171, 171);
    top: -10px; left: 40px;
}
.gear:after, .gear2:after{
    transform: rotate(45deg);
    top: 5px; left: 76px;
    box-shadow: 0px 100px 0 0 rgb(178, 171, 171), 50px 50px 0 0 rgb(178, 171, 171), -50px 50px 0 0 rgb(178, 171, 171);
}
.gear2 {
    top: -28px; left: 62px;
    -webkit-animation: rotate2 2.4s ease-out 1;
    -moz-animation: rotate2 2.4s ease-out 1;
    animation: rotate2 2.4s ease-out 1;
} */
/*Keyframes*/


@-webkit-keyframes rotate {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);}
}
@-moz-keyframes rotate {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);}
}
@keyframes rotate {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(-360deg);}
}
@-webkit-keyframes rotate2 {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotate2 {
    0% {-moz-transform: rotate(0deg);}
    100% {-moz-transform: rotate(360deg);}
}
@keyframes rotate2 {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

/* =============================== Gear Animation End */



/* ======================== About Background Image =================================== */
.about-background-img{
    display: flex;
    justify-content: end;
    align-items: center;
    /* background: linear-gradient(to left, #097f91, #001F3F, #0A3981); */
    border-top-left-radius: 200px;
}
.about-background-outer{
    overflow-y: hidden;
    overflow-x: hidden;
}

.about-background-outer img{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 200px;
    /* opacity: 0.4; */
}

.about-background-outer .gear{
    position: absolute;
    top: -90px;
    right: -80px;
    font-size: 1400%;
    animation: rotating 2.4s linear infinite;
}

.about-background-outer .gear2{
    position: absolute;
    bottom: -150px;
    right: -70px;
    font-size: 2000%;
    animation: rotating 2.4s linear infinite;
}


.about-box1{
    position: absolute;
    bottom: -40px;
    left: -30px;
    height: 70px;
    width: 50px;
    padding: 60px;
    background: linear-gradient(to right, #6da8c2, #599fbd, #3da3ce);
}

.about-box2{
    position: absolute;
    bottom: 80px;
    left: 90px;
    height: 20px;
    width: 10px;
    padding: 35px;
    background: rgb(252, 247, 247);
}

.about-box3{
    position: absolute;
    bottom: -100px;
    left: 90px;
    height: 40px;
    width: 10px;
    padding: 30px;
    background: #E93223;
}




/*  Animation Letters */

.frontpage-quote .preserving{   
    margin: 0px !important;
    animation: slidein-right 2s ease forwards;
    transition: var(--tran-03);
}


.frontpage-quote .farmtoplate{
    margin-right: 0px !important;
    animation: slidein-left 2s ease forwards;
    transition: var(--tran-03);
}


.freshness-container{
    margin: 0px !important;
    animation: pop-up 4s ease forwards;
    transition: var(--tran-03);
}

.freshness{
    animation: logoname-animation 2s ease-in-out 1s infinite alternate both !important;
}

.frontpage-quote p{
    animation: slide-up 2s ease forwards;
    transition: var(--tran-03);
}


/* Systems Start */
#landingpage-inside-system{
    position: relative;
    /* height: 7500px; */
    height: var(--max-height) !important;
    background: linear-gradient(to right, #001F3F  , #3A6D8C) !important;
}
.parallax-systems-container{
    position: sticky;
    top: 0;
    /* height: 1400px; */
    height: var(--deviceHeight);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #001F3F  , #3A6D8C) !important;
    overflow: auto;
}

.parallax-system-title-container{
    background: linear-gradient(to right, #acb1b7  , #b5c7cb) !important;
    width: 100%;
    /* height: 1400px; */
    height: var(--deviceHeight);
    position: absolute;
    top: 0px;
    z-index: 7;
}

.parallax-system-title-container .parallax-system-title-container-box{
    height: calc(var(--deviceHeight) / 8);
}

.parallax-system-title-container-window,.parallax-system-title-container-window2{
    height: 10%;
    width: 20%;
    z-index: 10;
    border: #001F3F solid;
    position: absolute;
    background: yellow;
}
.parallax-system-title-container-window{
    top: 52%;
    left: 25%;
    transform: translateY(-50%);
}

.parallax-system-title-container-window2{
    top: 52%;
    left: 55%;
    transform: translateY(-50%);
}


.parallax-system-title-box1,.parallax-system-title-box2,.parallax-system-title-box3,.parallax-system-title-box4{
    height: auto;
    width: 15%;
    border-top: 10px double rgba(214, 125, 0, 0.87);
    border-bottom: 10px double rgba(214, 125, 0, 0.87);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: burlywood;
}

.parallax-system-title{
    width: 40%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2em;
    font-weight: bolder;
    padding: 20px 0px;
    border-top: 10px double rgba(214, 125, 0, 0.87);
    border-bottom: 10px double rgba(214, 125, 0, 0.87);
    text-align: center;
}

.parallax-system-title span{
    background: linear-gradient(to left, #01385c  ,#c65c06);
    background-clip: text;
    color: transparent;
    animation: Spin-Center 3s linear 0s 1 alternate forwards;
}

.systems-container{
    background: linear-gradient(to right, #001F3F  , #3A6D8C) !important;
    width: 100%;
    /* height: 1400px; */
    height: var(--deviceHeight);
    color: #097f91 !important;
    display: flex;
    align-items: top;
    justify-content: space-between;
    overflow: hidden;

    /* padding: 20px; */
}

.systems-loading-bay-container{
    height:100vh;
    width:100%;
}

#systems-loading-bay{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    
    border-left: 25px double rgba(253, 226, 51, 0.87);
    border-right: 25px double rgba(253, 226, 51, 0.87);
    border-bottom: 25px double rgba(214, 125, 0, 0.87);
    border-top: 25px double rgba(214, 125, 0, 0.87);
    border-radius: 40px;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    display: flex;
}


#systems-loading-bay .systems-loading-bay-intro{
    background-image: url('../img/warehouse-background.png');
    min-width: 100% !important;
    position: relative;
    object-fit: contain;
    background-size: contain;
    height: auto;
    width: 100%;
    display: flex;
    align-items: top;
    justify-content: center;
    overflow: hidden;
}

.systems-loading-bay-intro .systems-loading-bay-intro-container{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

.systems-loading-bay-intro .systems-loading-bay-intro-roof{
    position: absolute;
    top: 10%;
    left:2%;
    width: 100%;
    height: 8%;
    margin: 0px auto;
    border: rgb(9, 37, 87)  solid;
    border-radius: 5px;
    background: linear-gradient(to right, #10466a  , #145a89);
    z-index: 11;
}

.systems-loading-bay-intro .systems-loading-bay-intro-body{
    top: 10%;
    width: 80%;
    height: 90%;
    margin: 0px auto;
    display: flex;
    align-items:end;
    justify-content: center;
    border-left: 100px #0e5280  solid;
    border-right: 100px #0e5280  solid;
    border-top: 100px #0e5280  solid;
    /* background: linear-gradient(to left, #0e5280  , #10466a); */
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 10;
}

.systems-loading-bay-intro .systems-loading-bay-intro-door{
    width: 100%;
    height: 100%;
    border: rgb(9, 37, 87)  solid;
    border-bottom: transparent;
    /* background-color: #0d6a79; */
    position: relative;
    z-index: 4;
    background-color: transparent;
}

.systems-loading-bay-intro-door .intro-door{
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    background: linear-gradient(to right , #9da1a4, #949ba2);
    z-index: 10;
    /* animation: slidingup 10s ease forwards; */
}

.systems-loading-bay-intro-door .intro-door img{
    height: 100px;
    width: 100px;
}


.systems-loading-bay-intro .systems-loading-bay-intro-door h4{
    position: absolute;
    top: 25%;
    right: 40px;
    font-size: 2.3em;
}
.systems-loading-bay-intro .systems-loading-bay-intro-door i{
    position: absolute;
    top: 40%;
    right: 40px;
    font-size: 5.3em;
}

.systems-loading-bay-intro .systems-loading-bay-intro-inside-door{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10%;
    height: 100%;
    background-color: #0e5280;
    border: rgb(9, 37, 87)  solid;
    z-index: 15;
    
}

.systems-loading-bay-intro .systems-loading-bay-intro-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    border: rgb(9, 37, 87)  solid;
    background: linear-gradient(to left, #0f4970  , #093e61);
    z-index: 10;
    display: flex;
    justify-content: end;
}.systems-loading-bay-intro .systems-loading-bay-intro-layer .support{
    width: 50%;
    height: 100%;
    /* background: #2586c6; */
}

.systems-loading-bay-intro .systems-loading-bay-intro-bridge{
    width: 105%;
    height: 11.5%;
    margin: 0px auto;
    /* clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); */
    /* clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
    position: absolute;
    left: 0%;
    bottom: 0px;
    border: rgb(9, 37, 87) solid;
    /* background: linear-gradient(to left, #749eba  , #2586c6); */
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}.systems-loading-bay-intro .systems-loading-bay-intro-bridge img{
    position: relative;
    top: 0;
    left: -8%;
    height: 100%;
    width: 90%;
    background-size: contain;
}


.systems-loading-bay-intro-pole-container{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}


.systems-loading-bay-intro-pole1{
    width: 50px;
    height: 150px;
    margin: 0px auto;
    position: absolute;
    left: 7%;
    bottom: 0;
    border: rgb(9, 37, 87) solid;
    background: linear-gradient(to right bottom, #c1a61d  , rgb(215, 213, 213));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    z-index: 16 !important;
}

.systems-loading-bay-intro-pole2{
    width: 50px;
    height: 150px;
    margin: 0px auto;
    position: absolute;
    right: 12%;
    bottom: 0;
    border: rgb(9, 37, 87) solid;
    background: linear-gradient(to right bottom, #c1a61d  , rgb(215, 213, 213));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    z-index: 22;
}

.systems-loading-bay-intro-package1 img{
    position: absolute;
    top: 0px;
    height: 10%;
}

.systems-loading-bay-intro-package1 .pckg2 img{
    left: 5%;
}


#systems-loading-bay .systems-loading-bay-system {
    position: relative;
    background-image: url('../img/warehouse-background.png');
    object-fit: contain;
    background-size: contain;
    width:100vw;
    height: auto;
}

.systems-loading-bay-system .systems-loading-bay-system-stair{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10%;
    width: 100%;
    background-color: silver;
    border-top: 10px rgb(199, 185, 35) dotted solid;
    z-index: 6;
}

.systems-loading-bay-system .systems{
    width:100vw;
    position: relative;
    height: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    margin-right:10px;
}

.systems-loading-bay-system .systems #system1-container,
.systems-loading-bay-system .systems #system2-container,
.systems-loading-bay-system .systems #system3-container,
.systems-loading-bay-system .systems #system4-container{
    position: relative;
    width:45%;
    height: 100%;
    overflow: hidden;
}

.system-container-box{
    position: absolute;
    bottom: 0;
    left: 0;
    height:90%;
    width:100%;
    border: rgb(34, 14, 14) solid;
    overflow: hidden;
}

#system1-container .system-container-insider,
#system2-container .system-container-insider,
#system3-container .system-container-insider,
#system4-container .system-container-insider
{
    position: absolute;
    bottom: 0;
    left:50%;
    transform: translate(-50%,10%);
    width: 68%;
    height: 90%;
    z-index: 1;
    -webkit-animation: color-change-3x 8s linear infinite alternate both;
    animation: color-change-3x 8s linear infinite alternate both;
    cursor: pointer;
    box-sizing: border-box;
    border: 10px solid rgb(47, 41, 41);
}

.systems-loading-bay-system .systems .door1{
    position: absolute;
    top: 0;
    left: 0;
    height: 116%;
    width: 100%;
    z-index: 4;
}

.systems-loading-bay-system .systems .door2{
    position: relative;
    top: 0;
    left: 0;
    height: 116%;
    width: 100%;
    pointer-events: none;
    z-index: 5;
}


.list-group .list-group-flush,
.card,
.list-group-item,
.system-container-insider .image-container .box div
{
    background:transparent !important ;
}
.system-container-insider .image-container{
    position: relative;
    height: 100%;
    width: 100%;
    transition: var(--tran-02);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: .5rem;
    z-index: 3;
}

.system-container-insider .image-container h2
,.system-container-insider .image-container i
{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bolder;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    z-index: 2;

    background-image: linear-gradient(45deg, #f3ec78, #af4261);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.system-container-insider .image-container .icon-container{
    position: relative;
    height: 100%;
    width: 100%;
    font-size: 8em;
    overflow: hidden;
    display: grid;
    z-index: 5;
}
.system-container-insider .image-container .icon-container .icon-container-box{
    margin: auto;
}

.system-container-insider .image-container .icon-container .slider{
    position: relative;
    width: 200px;
    height: 300px;
    transform-style: preserve-3d;
    animation: infinite-rotation 30s linear infinite;
}.system-container-insider .image-container .icon-container .slider span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg)) translateZ(200px);
}.slider span:hover i{
    transform: translateY(-10px) scale(1.2);
}
.system-container-insider .image-container .slider  span i{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transition: 2s;
}


.system-container-box .keyboard{
    position: absolute;
    top: 10%;
    left: 50%;
    width: 70%;
    font-weight: bolder;
    font-size: 2.6em;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    z-index: 2;
    color: #181a1d;
    background: linear-gradient(to right bottom, #bbc2c6, #1c74af, #093e61);
    border: 5px solid #140d0c;
    border-radius: 10px;
    transition: var(--tran-03);
    transform: translate(-50%,-50%);
    z-index: 10;
}

.system-container-insider .image-container h2{
    position: absolute;
    font-size: 1.3em;
    bottom: 30%;
    left: 50%;
    width: 75%;
    transition: var(--tran-03);
    transform: translate(-50%,-50%);
    z-index: 10;
}

.system-container-insider .image-container .box{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}.system-container-insider .image-container .box div{
    position: absolute;
    width: 40px;
    height: 40px;
    border: 5px solid #cbd2d7;
    z-index: 1;
}

.system-container-insider .image-container .box div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: falling-animate 7s linear infinite;
}.system-container-insider .image-container .box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: falling-animate 3s linear infinite;
}.system-container-insider .image-container .box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: falling-animate 7s linear infinite;
}.system-container-insider .image-container .box div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: falling-animate 6s linear infinite;
}.system-container-insider .image-container .box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: falling-animate 6s linear infinite;
}.system-container-insider .image-container .box div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: falling-animate 12s linear infinite;
}.system-container-insider .image-container .box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: falling-animate 16s linear infinite;
}.system-container-insider .image-container .box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: falling-animate 9s linear infinite;
}.system-container-insider .image-container .box div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: falling-animate 12s linear infinite;
}.system-container-insider .image-container .box div:nth-child(10){
    top: 10%;
    left: 70%;
    animation: falling-animate 5s linear infinite;
}

#systemModal{
    animation-name: slit-in-horizontal !important;
    animation-duration: 0.5s !important;
    animation-timing-function: linear !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-direction: normal !important;
    animation-fill-mode: none !important;
    backdrop-filter: blur(5px);   
    padding: 30px;
}#systemModal .modal-content{
    margin: 0 auto;
    padding: 2em;
    position: relative;
    background: #000305 !important;
    color: rgb(223, 223, 223);
    border-radius: 20px;
    transition: var(--tran-04);
    z-index: 0;
}#systemModal .modal-content h1,#systemModal .modal-content p{
    width: 50%; 
    z-index: 1;
}#systemModal .modal-content h1{
    animation: slidingright 1s ease forwards;
}#systemModal .modal-content p{
    animation: slidingleftCurrentPosition 1s ease forwards;
}#systemModal .modal-content h4{
    animation: slidingdown 1s ease forwards;
}#systemModal .modal-content button{
    animation: slidingupCurrentPosition 1s ease forwards;
}#systemModal .modal-content i{
    animation: slide-in-elliptic-top-fwd 1s ease forwards; 
}



#systemModal .modal-content:hover{
    box-shadow: 1px 1px 50px;
}#systemModal .modal-content:hover i{
    background: -webkit-linear-gradient(#eee, #0a5286);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.2);
}#systemModal .card:hover::before,#systemModal .card:hover::after{
    content: "Normal";
    animation: normal;
    background-image: none;
}#systemModal .modal-content button{
    width: 35%;
    font-weight: bolder;
    background-color: #000305;
    margin-top: 100px;
    padding: 20px 10px;
    color: rgb(223, 223, 223);
    border: solid rgb(223, 223, 223);
    border-radius: 10px;
    z-index: 1;
}#systemModal .modal-content button:hover{
    background-color: rgb(223, 223, 223);
    color: #000305;
}#systemModal .modal-content h4,#systemModal .modal-content h1{
    z-index: 1;
}#systemModal .modal-content i{
    position: absolute;
    top: 0%;
    right: 0;
    z-index: 0;
    font-size: 400px;
    color: white;
    transition: var(--tran-04);
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
#systemModal .card{
    position: relative;
    margin: 0 auto;
    padding: 5px;
    width: 100%;
    background: #000305;
    border-radius: 20px;
}#systemModal .card::after,#systemModal .card::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 5px;
    background-image: conic-gradient(from var(--angle),  rgb(221, 40, 40),rgb(78, 78, 161),rgb(114, 104, 44),rgb(95, 181, 42),rgb(218, 43, 201),rgb(221, 40, 40));
    border-radius: 20px;
    animation: 3s spin linear infinite;
}#systemModal .card::before{
    filter: blur(1.5em);
    opacity: 0.5;
}



.forklift-container-1{
    position: absolute;
    width:400px;
    height:450px;
    bottom: 0;
    z-index: 20;
    left: -1000px;
    transition: var(--tran-04);
    box-shadow: 0 10px 4px -2px rgba(0, 0, 0, 0.3);
    pointer-events: none; 
}

.forklift-container-1 img:first-child{
    position: absolute;
    left: 0;
    bottom:-9%;
    width: 100%;
    transition: var(--tran-03);
}

.forklift-container-1 img:last-child{
    width: 60%;
    transition: var(--tran-03);
    position: absolute;
    bottom:-5%;
    right: -33%;
}

.system-pallet-container-box1{
    transition: var(--tran-03);
    /* border-right: 10px double rgba(5, 54, 200, 0.87); */
    border-bottom: 10px double rgba(214, 125, 0, 0.87);
}
.system-pallet-container-box2,.system-pallet-container-box3,.system-pallet-container-box4{
    transition: var(--tran-03);
    /* border-left: 10px double rgba(5, 54, 200, 0.87);
    border-right: 10px double rgba(5, 54, 200, 0.87); */
    border-bottom: 10px double rgba(214, 125, 0, 0.87);
}


.system-pallet-container{
    display: grid;
    grid-template-columns: 1fr  1fr  1fr  1fr ;
    position: absolute;
    top: 200px;
    width: 100%;
}

.system-pallet-container img {
    margin: auto;
    height: 200px;
}



/* Systems End */


/* Exclusive Benefits */

#exclusive-benefits-container{
    background: linear-gradient(to right, #001F3F  , #3A6D8C) !important;
    padding: 70px 50px 80px;
}

.exclusive-benefits h4,.exclusive-benefits p{
    text-align: center;
    padding-top: 15px;
    font-weight: bolder;
    color: #d2d1e9; 
}

.exclusive-benefits h4{
    font-size: 2em;
}

.exclusive-benefits p{
    font-size: 1em;
}


.exclusive-benefits .box {
    height: 100px !important;
    width:  110px  !important;
    border: #1a3e54 solid !important;
    /* margin-top: 20px; */
    /* background: linear-gradient(to right, #427da2  , #3A6D8C) !important; */
    /* margin: 20px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* .exclusive-benefits .box-borderline,.exclusive-benefits .box-borderline2{ */
.exclusive-benefits #box1 .box-borderline1,
.exclusive-benefits #box2 .box-borderline1,
.exclusive-benefits #box3 .box-borderline1,
.exclusive-benefits #box4 .box-borderline1,
.exclusive-benefits #box5 .box-borderline1,
.exclusive-benefits #box6 .box-borderline1{
    position: absolute;
    height: 105%;
    width: 104%;
    top: -2.5px !important;
    left: -2.5px !important;
    background-color: transparent;
}

.exclusive-benefits #box1 .box-borderline2,
.exclusive-benefits #box2 .box-borderline2,
.exclusive-benefits #box3 .box-borderline2,
.exclusive-benefits #box4 .box-borderline2,
.exclusive-benefits #box5 .box-borderline2,
.exclusive-benefits #box6 .box-borderline2{
    position: absolute;
    height: 105%;
    width: 104%;
    bottom: -2.5px !important;
    right: -2.5px !important;
    background-color: transparent;
}


.exclusive-benefits #box1 .box-borderline1:after,
.exclusive-benefits #box2 .box-borderline1:after,
.exclusive-benefits #box3 .box-borderline1:after,
.exclusive-benefits #box4 .box-borderline1:after,
.exclusive-benefits #box5 .box-borderline1:after,
.exclusive-benefits #box6 .box-borderline1:after
{
    content: '';
    position: absolute;
    top: 0px !important;
    left: 0px !important;
    border-top: solid #036daf !important;
    border-left: solid #036daf !important;
    height: 60%;
    width: 60%;
}

.exclusive-benefits #box1 .box-borderline2:after,
.exclusive-benefits #box2 .box-borderline2:after,
.exclusive-benefits #box3 .box-borderline2:after,
.exclusive-benefits #box4 .box-borderline2:after,
.exclusive-benefits #box5 .box-borderline2:after,
.exclusive-benefits #box6 .box-borderline2:after
{
    content: '';
    position: absolute;
    bottom: 0px !important;
    right: 0px !important;
    border-right: solid #036daf !important;
    border-bottom: solid #036daf !important;
    height: 60%;
    width: 60%;
}

.exclusive-benefits #box1:hover,
.exclusive-benefits #box2:hover,
.exclusive-benefits #box3:hover,
.exclusive-benefits #box4:hover,
.exclusive-benefits #box5:hover,
.exclusive-benefits #box6:hover{

    .box-borderline1:after {
        transition: var(--tran-04);
        border-top: solid #036daf !important;
        border-left: solid #036daf !important;
        height: 100%;
        width: 100%;
        top: 0px !important;
        left: 0px !important;
    }

    .box-borderline2:after {
        transition: var(--tran-04);
        border-right: solid #036daf !important;
        border-bottom: solid #036daf !important;
        height: 100%;
        width: 100%;
        bottom: 0px !important;
        right: 0px !important;
    }
}

.exclusive-benefits img{
    width: 100%;
    height: 100%;
}
.exclusive-benefits i{
    font-size: 5rem;
    color: #036daf;
}


.exclusive-benefits .col h5{
    text-align: center;
    color: #d2d1e9; 
    font-size: 1.1em;
    margin-top: 20px;
}

.exclusive-benefits .flip-box{
    background-color: transparent;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    text-align: center;
    transition: transform 2s;
    transform-style: preserve-3d;
  }
  
  .flip-box-inner {
    transform: rotateY(180deg);
  }

  
  .flip-box-front, .flip-box-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-box-back {
    background-color: transparent;
    color: white;
    transform: rotateY(180deg);
  }

  

  /* Redirecting Animation And CSS Start */
  .redirecting-body{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100%;
    background: black;
    z-index: 10000;
    overflow: hidden;

    animation: slide-in-elliptic-top-fwd 1s ease forwards;

  }
  .redirecting-container{
    position: relative;
    width: 100%;
  }
  .redirecting-container .redirecting-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgb(12, 12, 12, 0.3333));
    animation: animateSurfaceBig 1.5s ease-in-out infinite;
  }
  .redirecting-container .redirecting-box .redirecting-cube{
    position: relative;
    width: 200px;
    height: 200px;
    background:rgb(28, 212, 229);
    box-shadow: 0 0 5px rgb(28, 212, 229, 1), 
    0 0 25px rgb(28, 212, 229, 1),
    0 0 50px rgb(28, 212, 229, 1),
    0 0 100px rgb(28, 212, 229, 1),
    0 0 200px rgb(28, 212, 229, 0.5),
    0 0 300px rgb(28, 212, 229, 0.5);
    transform-origin: bottom right;
    animation: walking-cube 1.5s ease-in-out infinite;
  }
  .redirecting-loading{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 3em;
    font-weight: bold;
    color: rgb(28, 212, 229, 0.5) !important;
  }
  .redirecting-loading div{
    width: 40px;
    height: 40px;
    background: linear-gradient(to right bottom, #000305, white);
    border-radius: 50%;
    box-shadow: 0 -0.4em rgba(18, 172, 186, 0.1) inset;

    animation: loadingCycle 1s ease-in-out infinite;
  }
  .redirecting-loading div:nth-child(1) {
    animation-delay: 0s;
  }.redirecting-loading div:nth-child(2) {
    animation-delay: 0.3s;
  }.redirecting-loading div:nth-child(3) {
    animation-delay: 0.6s;
  }


  /*  ================================================= Animation ======================================== */



@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes up {
    0% {top: 0%}
    10%{top: 0%}
    20%{top: 0%}
    30%{top: 0%}
    40%{top: 0%}
    50%{top: 0%}
    60%{top: -20%}
    70%{top: -40%}
    80%{top: -60%}
    90%{top: -80%}
    100% {top: -100%}
    /* from {
        top: 0%;
    }
    to {
        top: -100%;
    } */
}
@keyframes down {
    0% {bottom: 0%}
    10%{bottom: 0%}
    20%{bottom: 0%}
    30%{bottom: 0%}
    40%{bottom: 0%}
    50%{bottom: 0%}
    60%{bottom: -20%}
    70%{bottom: -40%}
    80%{bottom: -60%}
    90%{bottom: -80%}
    100% {bottom: -100%}
}


@keyframes move360 {
    from {
        transform: rotate(0.5turn);
    }
    to {
        transform: rotate(1turn);
    }
}

@keyframes typing {
    100% {
        left: 100%;
        margin: 0 -35px 0 5px;
        display: none;
    }
}

@keyframes top {
    0%   {top:-1000px;}
    100%  {top:10px;}
}

/* Animation Definition */
@keyframes changeColor {
    0% {
        background-color: #74EBD5;
    }
    50% {
        background-color: #e78b8b;
    }
    100% {
        background-color: #8798e3;
    }
}

@keyframes logoname-animation {
    9% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    10%   {background: linear-gradient(to right, #f54242 , var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    11%  {background: linear-gradient(to right, #f54242 , #f54242  , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    12%  {background: linear-gradient(to right, #f54242 , #f54242  , #f54242 , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    13%  {background: linear-gradient(to right, var(--text-color) , #f54242 ,#f54242 , #f54242  , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    14%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , #f54242 ,#f54242 ,#f54242);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    15%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color) ,#f54242 ,#f54242);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    16%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color), var(--text-color)  , #f54242);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    17%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    52%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color), var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    53%  {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color)  , #4287f5);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    54% {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color) ,#4287f5 ,#4287f5);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    55% {background: linear-gradient(to right, var(--text-color) , var(--text-color) , #4287f5, #4287f5 ,#4287f5);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    56% {background: linear-gradient(to right, var(--text-color) , #4287f5 , #4287f5 , #4287f5 , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    57% {background: linear-gradient(to right, #4287f5 , #4287f5 , #4287f5 , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    58% {background: linear-gradient(to right, #4287f5 , #4287f5 , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    59% {background: linear-gradient(to right, #4287f5 , var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    60% {background: linear-gradient(to right, var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    75% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    80% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    85% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    90% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    95% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
    100% {background: linear-gradient(to right, var(--text-color) , var(--text-color));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
}


@keyframes logo-animation {
    5%   {transform:rotate(0deg);}
    10%  {transform:rotate(-50deg)}
    15%  {transform:rotate(50deg)}
    20%  {transform:rotate(-40deg);}
    25%  {transform:rotate(40deg);}
    30%  {transform:rotate(-30deg);}
    35%  {transform:rotate(30deg);}
    40%  {transform:rotate(-20deg);}
    45%  {transform:rotate(20deg);}
    50% {transform:rotate(-10deg);}
    55% {transform:rotate(10deg);}
    60% {transform:rotate(0deg);}
    65% {transform:rotate(0deg);}
    70% {transform:rotate(0deg);}
    75% {transform:rotate(0deg);}
    80% {transform:rotate(0deg);}
    85% {transform:rotate(0deg);}
    90% {transform:rotate(0deg);}
    95% {transform:rotate(0deg);}
    100% {transform:rotate(0deg);}
}


  @keyframes loadingCycle {
    0%{
        transform: translateY(0);
        opacity: 1;
    }
    50%{
        transform: translateY(1rem);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
  }

  

  /* Redirecting Animation anad CSS End */

  @keyframes spin {
    from {
        --angle: 0deg;
    }
    to{
        --angle: 360deg;
    }
}

  @keyframes slidingleftCurrentPosition {
    0%{
        opacity: 0;
        transform: translateX(500px);
    }100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidingupCurrentPosition {
    0%{
        opacity: 0;
        transform: translateY(500px);
    }100%{
        opacity: 1;
        transform: translateY(0);
    }
}

  /* Parallax Container */
  @keyframes slidingright {
	0% {
		transform: translateX(-500px);
	}

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


@keyframes line-1 {
    0%{bottom:-120px;box-shadow: 5px 20px 8px transparent;}
    10%{bottom:0px;box-shadow: 5px 20px 8px transparent;}
    20%{bottom:0px;box-shadow: 5px 20px 8px transparent;}
    30%{bottom:0px;box-shadow: 5px 20px 8px transparent;}
    35%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    40%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    50%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    60%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    70%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    80%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    90%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
    100%{bottom:0px;box-shadow: 5px 20px 8px rgba(255,255,255,0.3);}
}

@keyframes line-2 {
    0%{width:0%;box-shadow: 5px 5px 8px transparent;}
    10%{width:0;box-shadow: 5px 5px 8px transparent;}
    20%{width:0%;box-shadow: 5px 5px 8px transparent;}
    30%{width:100%;box-shadow: 5px 5px 8px transparent;}
    40%{width:100%;box-shadow: 5px 5px 8px transparent;}
    50%{width:100%;box-shadow: 5px 5px 8px transparent;}
    60%{width:100%;box-shadow: 5px 5px 8px transparent;}
    70%{width:100%;box-shadow: 5px 5px 8px transparent;}
    80%{width:100%;box-shadow: 5px 5px 8px rgba(255,255,255,0.3);}
    90%{width:100%;box-shadow: 5px 5px 8px rgba(255,255,255,0.3);}
    100%{width:100%;box-shadow: 5px 5px 8px rgba(255,255,255,0.3);}
}

@keyframes line-3 {
    0%{height:0%;box-shadow: -5px 20px 8px transparent;}
    10%{height:0%;box-shadow: -5px 20px 8px transparent;}
    20%{height:0%;box-shadow: -5px 20px 8px transparent;}
    30%{height:0%;box-shadow: -5px 20px 8px transparent;}
    40%{height:100%;box-shadow: -5px 20px 8px transparent;}
    50%{height:100%;box-shadow: -5px 20px 8px transparent;}
    60%{height:100%;box-shadow: -5px 20px 8px transparent;}
    70%{height:100%;box-shadow: -5px 20px 8px transparent;}
    80%{height:100%;box-shadow: -5px 20px 8px rgba(255,255,255,0.3);}
    90%{height:100%;box-shadow: -5px 20px 8px rgba(255,255,255,0.3);}
    100%{height:100%;box-shadow: -5px 20px 8px rgba(255,255,255,0.3);}
}

@keyframes line-4 {
    0%{width:0%;box-shadow: -20px -5px 8px transparent;}
    10%{width:0%;box-shadow: -20px -5px 8px transparent;}
    20%{width:0%;box-shadow: -20px -5px 8px transparent;}
    30%{width:0%;box-shadow: -20px -5px 8px transparent;}
    40%{width:0%;box-shadow: -20px -5px 8px transparent;}
    50%{width:100%;box-shadow: -20px -5px 8px transparent;}
    60%{width:100%;box-shadow: -20px -5px 8px transparent;}
    70%{width:100%;box-shadow: -20px -5px 8px transparent;}
    80%{width:100%;box-shadow: -20px -5px 8px rgba(255,255,255,0.3);}
    90%{width:100%;box-shadow: -20px -5px 8px rgba(255,255,255,0.3);}
    100%{width:100%;box-shadow: -20px -5px 8px rgba(255,255,255,0.3);}
}

@keyframes line-5 {
    0%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    10%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    20%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    30%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    40%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    50%{bottom:-150px;box-shadow: 5px -20px 8px transparent;}
    60%{bottom:0px;box-shadow: 5px -20px 8px transparent;}
    70%{bottom:0px;box-shadow: 5px -20px 8px transparent;}
    80%{bottom:0px;box-shadow: 5px -20px 8px rgba(255,255,255,0.3);}
    90%{bottom:0px;box-shadow: 5px -20px 8px rgba(255,255,255,0.3);}
    100%{bottom:0px;box-shadow: 5px -20px 8px rgba(255,255,255,0.3);} 
}

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

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

@keyframes slidingup {
	0% {
		transform: translateY(0);
	}

	100% {
		/* transform: translateY(-1400px); */
        transform: translateY(calc(var(--deviceHeight) * -1));
	}
}

@keyframes slidingdown {
	0% {
		/* transform: translateY(-1400px); */
        transform: translateY(calc(var(--deviceHeight) * -1));
	}

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

@keyframes slidein-right {
    from {
        position: relative;
        left: -100px;
        opacity: 0;
    }

    to {
        position: relative;
        left: 0px;
        opacity: 1;
    }
}

@keyframes slidein-left {
    from {
        position: relative;
        right: -100px;
        opacity: 0;
    }

    to {
        position: relative;
        right: 0px;
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        position: relative;
        bottom: -100px;
        opacity: 0;
    }

    to {
        position: relative;
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes pop-up {
    from {
        position: relative;
        /* right: -100px; */
        opacity: 0;
    }

    to {
        position: relative;
        /* right: 0px; */
        opacity: 1;
    }
}

@keyframes scaling-up-to-bottom {
	0% {
		background-position: center;
		background-size: 100%;
	}

	100% {
		background-position: center;
		background-size: 150%;
	}
}


@keyframes Bounce-Right {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(150px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(32px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}

@keyframes Bounce-Left {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(-150px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(-68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}

  
@keyframes Bounce-Bottom {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(150px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}

@keyframes Bounce-Top {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(-150px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 0;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
        opacity: 0.3;
		transform: translateY(-65px);
	}

	72% {
		animation-timing-function: ease-out;
        opacity: 0.5;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
        opacity: 0.7;
		transform: translateY(-28px);
	}

	90% {
		animation-timing-function: ease-out;
        opacity: 0.8.5;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
        opacity: 1;
		transform: translateY(-8px);
	}

	100% {
		animation-timing-function: ease-out;
        opacity: 1;
		transform: translateY(0);
	}
}

@keyframes Spin-Center {
	0% {
		opacity: 0;
		transform: rotate(-540deg) scale(0);
	}

	100% {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

@keyframes infinite-rotation {
    0% {
        transform: perspective(500px) rotateY(0deg);
    }

    100%{
        transform: perspective(500px) rotateY(360deg);
    }
}

@keyframes slit-in-horizontal {
			
    0% {
        transform:translateZ(-800px) rotateX(90deg);
        opacity:0;
    }
    50% {
        transform:translateZ(-160px) rotateX(87deg);
        opacity:1;
    }
    100% {
        transform:translateZ(0) rotateX(0);
    }
}

@keyframes slide-in-elliptic-top-fwd {
    0% {
      -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
              transform: translateY(-600px) rotateX(-30deg) scale(0);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) rotateX(0) scale(1);
              transform: translateY(0) rotateX(0) scale(1);
      -webkit-transform-origin: 50% 1400px;
              transform-origin: 50% 1400px;
      opacity: 1;
    }
}

@keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
}

@keyframes falling-animate {
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }

    100%{
        transform: scale(1.3) translateY(-90px) rotate(360);
        opacity: 0;
    }
}

@-webkit-keyframes color-change-3x {
    0% {
      background: #213555;
    }
    50% {
      background: #3E5879;
    }
    100% {
      background: #9F5255;
    }
}
  @keyframes color-change-3x {
    0% {
        background: #213555;
    }
    50% {
        background: #3E5879;
    }
    100% {
        background: #9F5255;
    }
}



/* Animation Exit */
@media only screen and (max-width: 600px) and (max-height: 800px){

    #frontpage-opening-title{
        font-size: 1rem !important;
    }

    #frontpage-opening-image{
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 600px) and (min-height: 790px){

    #frontpage-opening-title{
        font-size: 1.5rem !important;
    }

    #frontpage-opening-image{
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 450px) and (max-height: 800px),
                        (max-width: 450px) and (min-height: 790px){
    #frontpage-opening-title{
        font-size: 1.2rem !important;
    }

    .forklift-container-1{
        width: 150px !important;
        height: 50px !important;
    }.systems-loading-bay-intro .systems-loading-bay-intro-body{
        top: 50% !important;
        height: 40% !important;
        border-left: 50px #0e5280  solid;
        border-right: 50px #0e5280  solid;
        border-top: 50px #0e5280  solid;
    }.systems-loading-bay-intro .systems-loading-bay-intro-roof{
        top: 42% !important;
    }.systems-loading-bay-intro .systems-loading-bay-intro-door h4{
        right: 0 !important;
        font-size: 1.3em !important;
    }.system-container-box{
        height: 45% !important;
    }.system-container-box .keyboard{
        font-size: 1em;
    }.system-container-insider .image-container .icon-container{
        font-size: 4em !important;
    }.system-container-insider .image-container .icon-container .slider{
        width: 135px;
        height: 180px;
    }.system-container-insider .image-container h2{
        font-size: 0.5em;
    }#systemModal .modal-content button{
        width: 100%;
        margin-top: 150px;
    }#systemModal .modal-content i{
        position: absolute;
        top: 50% !important;
        right: 50%;
        transform: translate(50%, 0) !important;
        z-index: -1;
        font-size: 190px;
    }#systemModal .modal-content p, #systemModal .modal-content h1{
        width: 100%;
    }.systems-loading-bay-intro-pole1,.systems-loading-bay-intro-pole2{
        width: 20px;
        height: 50px;
    }.forklift-container-1 img:first-child{
        bottom: -30%;
    }

    .system-pallet-container{
        display: block;
        position: relative;
        top: 50px;
    }

    .contact{
        width: 50%;
    }
    .contact i{
        font-size: 1.5em !important;
    }

    .system-pallet-container img{
        height: 180px;
        margin: auto;
    }

    #frontpage-header-title{
        width: 120%;
        font-size: 2.2em;
        padding: 0px;
    }#frontpage-header-title p{
        width: 50%;
    }
    .animation-box-btn{
        right: 45%;
    }
    #front-nav nav{
        display: none;
    }
    .forklift-container-1{
        width: 300px;
        height: 200px;
    }

    .ventillation-container{
        top: 35% !important;
        
    }.ventillation{
        height: 13%;
    }.ventillation .aircons{
        height: 40px;
        width: 40px;
    }.linebar-container{
        display: block !important;
    }

    .redirecting-container .redirecting-box .redirecting-cube{
        width: 75px !important;
        height: 75px !important;
    }

    .redirecting-container .redirecting-box{
        animation: animateSurfaceSmall 1.5s ease-in-out infinite !important;
    }.redirecting-loading{
        margin-top: 50px;
        font-size: 1.5rem;
    }.redirecting-loading div{
        height: 20px;
        width: 20px;
    }



    @keyframes movingFromLeftoRight {
        from {
            right: -200px;
            opacity: 0;
        }
        to {
            right: 45%;
            opacity: 1;
        }
    }
}


@media only screen and (max-width: 880px) and (min-width: 450px) and (max-height: 750px){
    #frontpage-header-title{
        width: 120%;
        font-size: 2.7em;
        padding: 0px;
    }
    #front-nav nav{
        display: none;
    }
    .animation-box-container{
        right: 20px;
    }
    .forklift-container-1{
        width: 200px !important;
        height: 125px !important;
    }.systems-loading-bay-intro .systems-loading-bay-intro-body{
        top: 40% !important;
        height: 60% !important;
        border-left: 50px #0e5280  solid;
        border-right: 50px #0e5280  solid;
        border-top: 50px #0e5280  solid;
    }.systems-loading-bay-intro .systems-loading-bay-intro-roof{
        top: 32% !important;
    }.systems-loading-bay-intro .systems-loading-bay-intro-door h4{
        right: 0 !important;
        font-size: 1.3em !important;
    }.system-container-box{
        height: 70% !important;
    }.system-container-box .keyboard{
        font-size: 1em;
    }.system-container-insider .image-container .icon-container{
        font-size: 4em !important;
    }.system-container-insider .image-container .icon-container .slider{
        width: 135px;
        height: 180px;
    }.system-container-insider .image-container h2{
        font-size: 0.5em;
    }#systemModal .modal-content button{
        width: 100%;
        margin-top: 150px;
    }#systemModal .modal-content i{
        position: absolute;
        top: 50% !important;
        right: 50%;
        transform: translate(50%, 0) !important;
        z-index: -1;
        font-size: 190px;
    }#systemModal .modal-content p, #systemModal .modal-content h1{
        width: 100%;
    }


}


@media only screen and (max-width: 1100px) and (min-height: 790px){

    .systems-loading-bay-intro .systems-loading-bay-intro-body{
        top: 40%;
        height: 50%;
    }.systems-loading-bay-intro .systems-loading-bay-intro-roof{
        top: 32%;
    }.systems-loading-bay-intro .systems-loading-bay-intro-inside-door{
        height: 75%;
    }.system-container-box{
        height: 60%;
    }.ventillation-container{
        display: block !important;
    }
}


/* Footer Start */
footer div{
    background: linear-gradient(to right , #001F3F, #01385c);
    text-align: center;
    color: rgb(216, 215, 211);
    padding: 20px;
}
/* Footer End */


/* Button to Start */
.start-beginning-btn{
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    font-size: 4em;
    text-align: end;
    cursor: pointer;
    padding: 10px 40px 30px 10px;
    transition: var(--tran-04);
}

.start-beginning-btn:hover{
    opacity: 1;
}

/* Button End */

/* Ventillation Start */
.ventillation-container {
    position: absolute;
    top: 10%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    z-index: 1;
}.ventillation{
    position: relative;
    background-color: gray;
    border: 15px double black;
    border-radius: 5px;
    width: 40%;
    height: 15%;
    left: 30%;
    box-shadow: 0 2.5rem 5rem rgba(0,0,0,0.5)!important;
}.aircons{
    height: 75px;
    width: 75px;
    background-color: #212121;
    border-radius: 50%;
}
/* Ventillation End */

/* Line Bar Start */
.linebar-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 85%;
    z-index: 0;
    border: 20px double #3e3f41;
    z-index: 0;
}.bar-container{
    width: 100%;
    height: 10%;
    overflow: hidden;
    border-bottom: 20px double #272b2d;
    
}

/* Line Bar End */

/* Title */

@keyframes pressDown1 {
    30%,
    40%,
    100% {
      transform: translateY(0);
    }
    35% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown2 {
    70%,
    80%,
    100% {
      transform: translateY(0);
    }
    75% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown3 {
    30%,
    40%,
    100% {
      transform: translateY(0);
    }
    35% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown4 {
    40%,
    50%,
    100% {
      transform: translateY(0);
    }
    45% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown5 {
    20%,
    30%,
    100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown6 {
    60%,
    70%,
    100% {
      transform: translateY(0);
    }
    65% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown7 {
    10%,
    20%,
    100% {
      transform: translateY(0);
    }
    15% {
      transform: translateY(10px);
    }
  }
  
  @keyframes pressDown8 {
    35%,
    45%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(10px);
    }
  }

  @keyframes animateSurfaceBig {
    0%{
        transform: translateX(0px);
    }100%{
        transform: translateX(-200px);
    }
  }

  @keyframes animateSurfaceSmall {
    0%{
        transform: translateX(0px);
    }100%{
        transform: translateX(-75px);
    }
    }

  @keyframes walking-cube {
    0%{
        transform: rotate(0deg);
    }
    60%{
        transform: rotate(90deg);
    }

    60%{
        transform: rotate(90deg);
    }
    65%{
        transform: rotate(85deg);
    }
    70%{
        transform: rotate(90deg);
    }
    75%{
        transform: rotate(87.5deg);
    }80%,100%{
        transform: rotate(90deg);
    }
  }
  
  .key {
    display: inline-block;
    transition: transform 0.2s;
  }
  
  .key:nth-child(1) {
    animation: pressDown1 2s infinite;
  }
  
  .key:nth-child(2) {
    animation: pressDown2 3s infinite;
  }
  
  .key:nth-child(3) {
    animation: pressDown3 4s infinite;
  }
  
  .key:nth-child(4) {
    animation: pressDown4 2.5s infinite;
  }
  
  .key:nth-child(5) {
    animation: pressDown5 2.5s infinite;
  }
  
  .key:nth-child(6) {
    animation: pressDown6 3.5s infinite;
  }
  
  .key:nth-child(7) {
    animation: pressDown7 2.2s infinite;
  }
  
  .key:nth-child(8) {
    animation: pressDown8 3.2s infinite;
  }
  
