body {
    overflow-x: hidden !important;
}

#scrollbar {
    position: fixed;
    right: 2px;
    height: 50px;
    width: 6px;
    background: #444;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.6);
    z-index: 300;
    border-radius: 3px;
}


#closeOverlay {
    display: none;
    position: fixed;
    top: 2%;
    right: 3%;
    font-size: 3rem;
    z-index: 99999;
}

#scrollToBottom {
    padding: 6px 14px;
    border-radius: 50px;
    background-color: #dddddd17;
    border: solid 1px #ddd;
    opacity: 1;
}

a {
    cursor: pointer !important;
}

.skrollr-desktop #scrollbar {
    display: none;
}

#scene3a {
    z-index: 9999;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#scene3b {
    z-index: 9999;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#easing_wrapper {
    width: 100%;
    height: 100%;
}

#easing {
    width: 50%;
    z-index: 101;
}

.custom-green {
    color: #d6de23;
}

.white {
    color: white;
}

.white-bkgrnd {
    background-color: white !important;
}

.h-80vh {
    height: 90vh !important;
}

.h-90vh {
    height: 90vh !important;
}

.h-100vh {
    height: 100vh !important;
}

.h-80vh {
    height: 80vh !important;
}

.building-position {
    left: 0vw;
    width: 100%;
}

.scene1-typed {
    position: absolute;
    left: 30vw;
    top: 40vh;
}

.scene1 {
    font-size: 4.4rem;
    font-weight: 400;
}

.type-wrap {
    position: absolute;
    font-size: 70px;
    font-weight: 400;
    width: max-content;
    color: #d6de23;
}

.type-wrap {
    font-size: 4.4rem;
}

.plant-position {
    top: calc(100vh - 321px);
}

.lady1-position {
    top: calc(100vh - 678px);
}

.table-position {
    top: calc(100vh - 347px);
}

.lady2-position {
    top: calc(100vh - 553px);
}

.man-position {
    top: calc(100vh - 688px);
}

.lady3-position {
    top: calc(100vh - 529px);
}

.white-bckgrnd {
    top: calc(0vh - 140px);
}

.mobile-white-bckgrnd {
    top: calc(0vh - 200px);
}

.bckgrnd-position {
    left: calc(100vw);
}

a:hover {
    text-decoration: none !important;
}

.arrow-bounce {
    z-index: 2000;
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(16px);
    }
}

.arrow-right {
    position: relative !important;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid #d6de23;
    right: -87%;
}

/* CSS code for speech bubbles */
.bubble {
    display: flex !important;
    font-family: 'Dosis', sans-serif !important;
    position: relative;
    font-family: sans-serif;
    font-size: 23px;
    line-height: 27px;
    width: 190px;
    height: 190px;
    background: #d6de23;
    border-radius: 100px;
    padding: 19px;
    text-align: center;
    color: #000;
}

.bubble-bottom-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 24px solid #d6de23;
    border-right: 22px solid transparent;
    border-top: 22px solid #d6de23;
    border-bottom: 20px solid transparent;
    left: 27px;
    bottom: -14px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

#swipeUp {
    background-image: url("https://demo-scroll.lelabodigital.com/images/skrollr/hand-swipe.png");
    background-size: 15%;
    background-repeat: no-repeat;
    width: 100%;
    animation: swipeUp 1.9s linear infinite;
    left: 135% !important;
    height: 512px !important;
    width: 512px !important;
    top: 0%;
    position: fixed;
}

.scrollDown {
    display: none;
    width: 40px;
    height: 40px;
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 0);
    z-index: 1000;
}

    .scrollDown::before {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        content: "";
        border-radius: 50%;
        width: 20px;
        height: 20px;
        transform: translate(-50%, 40px) scale(0.5, 0.5);
        background: #000;
        animation: scrollDown 1.5s linear infinite;
    }

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 40px) scale(0.5, 0.5);
        opacity: 1;
        animation-timing-function: ease-in;
    }

    10% {
        transform: translate(-50%, 20px) scale(0.4, 0.65);
        animation-timing-function: ease-out;
    }

    20% {
        transform: translate(-50%, 0px) scale(0.6, 0.4);
        animation-timing-function: ease;
    }

    30% {
        transform: translate(-50%, 0px) scale(0.5, 0.5);
        animation-timing-function: ease-in;
        opacity: 1;
        filter: blur(0px);
    }

    50% {
        transform: translate(-50%, 0px) scale(0.9, 0.9);
        opacity: 0.4;
        filter: blur(0.5px);
    }

    65% {
        transform: translate(-50%, 20px) scale(1, 1.2);
        filter: blur(1px);
        opacity: 0.3;
    }

    80% { 
        transform: translate(-50%, 40px) scale(1.05, 0.95);
        animation-timing-function: ease-out;
        opacity: 0.4;
        filter: blur(0.5px);
    }

    100% {
        transform: translate(-50%, 40px) scale(0.5, 0.5);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes swipeUp {
    0% {
        transform: translate(-50%, 350px);
        opacity: 0.2;
        animation-timing-function: ease-in;
    }

    50% {
        opacity: 0.05;
    }

    75% {
        opacity: 0.01;
    }

    100% {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
}


@media(min-width:1600px) {
    .mobile {
        display: none !important;
    }

    .building-position {
        left: 11vw;
        width: auto;
    }

    .btn-space {
        top: 41%;
    }

    footer {
        padding-top: 110px !important;
        top: 94% !important;
    }
}


@media(max-width:1600px) {
    .mobile {
        display: none !important;
    }

    .scene1 {
        font-size: 3.8rem;
    }

    .scene1-typed {
        top: 37vh;
    }

    .type-wrap {
        font-size: 3.8rem;
    }

    .plant-position {
        top: 62vh;
        height: 30vh;
    }

    .lady1-position {
        top: 17vh;
        height: 80vh;
    }

    .question {
        height: 26vh;
    }

    .table-position {
        top: 57vh;
        height: 36vh;
    }

    .lady2-position {
        top: 31vh;
        height: 63vh;
    }

    .man-position {
        top: 14vh;
        height: 80vh;
    }

    .lady3-position {
        top: 31vh;
        height: 63vh;
    }

    .pc-position {
        top: 11vh;
        height: 30vh;
    }

    .arrow-right {
        border-top: 6px solid transparent !important;
        border-bottom: 6px solid transparent !important;
        border-left: 10px solid #d6de23 !important;
    }

    .bubble {
        font-size: 18px;
        line-height: 24px;
        width: 150px;
        height: 150px;
    }

    .bubble-bottom-left:before {
        bottom: -24px;
    }

    .btn-space {
        top: 43%;
    }

    footer {
        top: 90% !important;
    }


}

@media(max-width:1199px) {
    .mobile {
        display: none !important;
    }

    .scene1-typed {
        left: 22vw;
    }
}

@media(max-width:992px) {
    .mobile {
        display: none !important;
    }

    .scene1 {
        font-size: 3.2rem;
    }

    .type-wrap {
        font-size: 3.2rem;
    }
}

@media(max-width:768px) {
    .no-mobile {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .scene1 {
        font-size: 7.5vh;
    }

    .type-wrap {
        font-size: 7.5vh;
    }

    .scene1-typed {
        left: 0vw;
        top: 23vh;
    }

    .logo-mobile {
        height: 40px;
    }

    .typed-cursor {
        font-size: 7.5vh;
    }

        .typed-cursor.typed-cursor--blink {
            font-size: 7.5vh;
        }

    .br {
        display: block;
        margin-bottom: -15px;
    }

    .bubble {
        display: none !important;
    }

    .bubble-mobile {
        display: flex !important;
        font-size: 18px;
        display: flex !important;
        position: relative;
        font-family: sans-serif;
        line-height: 27px;
        width: 170px !important;
        height: 170px !important;
        background: #d6de23;
        border-radius: 100px;
        padding: 19px;
        text-align: center;
        color: #000;
    }

    .bubble-mobile-bottom-left:before {
        bottom: -20px;
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        border-left: 24px solid #d6de23;
        border-right: 22px solid transparent;
        border-top: 22px solid #d6de23;
        border-bottom: 20px solid transparent;
        left: 27px;
    }

    .arrow-right {
        border-top: 9px solid transparent !important;
        border-bottom: 9px solid transparent !important;
        border-left: 13px solid #d6de23 !important;
    }

    .scrollDown {
        display: block;
    }

    #closeOverlay {
        font-size: 2.5rem;
        right: 5%;
    }

}

@media(max-width:450px) and (max-width:768px) {
    .logo-mobile {
        height: 35px;
    }
}

@media(max-height:660px) and (max-width:768px) {
    footer {
        top: 84% !important;
    }
}

@media(max-height:580px) and (max-width:768px) {
    footer {
        top: 74% !important;
    }
}

