@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype'), url('../fonts/Gotham-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BoldItalic.ttf') format('truetype'), url('../fonts/Gotham-BoldItalic.otf') format("opentype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.otf') format('opentype'), url('../fonts/Gotham-Black.ttf') format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BlackItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Ultra.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-UltraItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

body {
    height: 100vh;
    background-color: var(--background-color);
}

header {
	height: 110px;
	background-color: var(--main-color) !important;
}

section {
	padding: 0;
}


/* ======= Global CSS ========*/

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}


/* /////////// Animation ///////////// */

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.7, .7, .7);
        transform: scale3d(.7, .7, .7)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.7, .7, .7);
        transform: scale3d(.7, .7, .7)
    }
    50% {
        opacity: 1
    }
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 1
    }
    95% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 1
    }
    95% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes flash {
    0%,
    50%,
    to {
        opacity: .3
    }
    25%,
    75% {
        opacity: 1
    }
}

@keyframes flash {
    0%,
    50%,
    to {
        opacity: .3
    }
    25%,
    75% {
        opacity: 1
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes kupu2 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(10%, 10%, 0);
    }
    50% {
        transform: translate3d(20%, 0, 0);
    }
    75% {
        transform: translate3d(10%, 10%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rolling-eyes {
    0% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(2%, 0, 0);
    }
    50% {
        transform: translate3d(4%, 0, 0);
    }
    75% {
        transform: translate3d(2%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 500%, 0);
        transform: translate3d(0, 500%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 500%, 0);
        transform: translate3d(0, 500%, 0)
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}


/* /////////// Animation ///////////// */


/* penanda clickable */

.ring-container {
    position: relative;
    width: 28px;
    height: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 15px;
    height: 15px;
    background-color: #cecece;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ringring {
    border: 2px solid #fff;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}

.bubble-text {
    position: absolute;
    right: 50px;
    top: 95px;
    width: 515px;
    background-color: var(--bubble-text-color);
    color: var(--font-color-primary);
    border-radius: 30px;
    font-size: 14px;
    padding: 40px 30px 30px;
}

@media screen and (max-width: 414px) {
    .ring-container {
        width: 28px;
        height: 28px;
    }
    .circle {
        width: 6px;
        height: 6px;
        background-color: #cecece;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .ringring {
        border: 3px solid #cecece;
        -webkit-border-radius: 30px;
        height: 25px;
        width: 25px;
        top: 0;
        left: 0;
        position: absolute;
        -webkit-animation: pulsate 1s ease-out;
        -webkit-animation-iteration-count: infinite;
        opacity: 0.0;
    }
    .bubble-text {
        top: 70px;
        right: 50%;
        transform: translateX(50%);
        width: 360px;
        height: 150px;
        padding: 20px 20px 5px;
        overflow: scroll;
        font-size: 12px;
        border-bottom: 10px solid transparent;
    }
}


/* ======= end of Global CSS ======== */


/* ======= Section 1 ======= */

.panca-indera {
    width: 100vw;
    position: relative;
    height: 510px;
    margin-left: auto;
    margin-right: auto;
	overflow: hidden;
}

.logo-panca-indera {
    position: absolute;
    right: 190px;
    top: 5px;
    width: 160px;
    height: 114px;
    background-size: cover;
    background-image: url(../images/smartpedia/pancaindra/panca-indera-logo.png);
    z-index: 2;
}


/* .panca-indera .bubble-text {
    position: absolute;
    right: 50px;
    top: 95px;
    width: 450px;
    background-color: var(--bubble-text-color);
    color: var(--font-color-primary);
    border-radius: 30px;
    font-size: 14px;
    padding: 40px 30px 50px;
} */

.vido-opening {
    position: absolute;
    left: 100px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 511px;
    height: 640px;
    background-image: url(../images/smartpedia/pancaindra/opening-vido.png);
}

.wrapper {
    width: 70%;
}

.padded-container {
    height: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.img {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    margin: auto;
}

.vido-opening-img {
    width: 589px;
    height: auto;
}

.mata1 {
    position: absolute;
    left: 329px;
    top: 193px;
    width: 45px;
    height: 45px;
    z-index: 1;
    border-radius: 50%;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.mata2 {
    position: absolute;
    left: 460px;
    top: 205px;
    width: 45px;
    height: 45px;
    z-index: 1;
    border-radius: 50%;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.telinga1 {
    position: absolute;
    left: 231px;
    top: 215px;
    width: 45px;
    height: 83px;
    z-index: 1;
    border-bottom-left-radius: 78%;
    border-top-left-radius: 60%;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.telinga2 {
    position: absolute;
    left: 554px;
    top: 230px;
    width: 35px;
    height: 81px;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 161%;
    z-index: 1;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.hidung {
    position: absolute;
    left: 396px;
    top: 232px;
    width: 38px;
    height: 36px;
    z-index: 1;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.lidah {
    position: absolute;
    left: 354px;
    top: 290px;
    width: 110px;
    height: 40px;
    border-bottom-left-radius: 90%;
    border-bottom-right-radius: 90%;
    z-index: 1;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.tangan {
    position: absolute;
    left: 115px;
    top: 250px;
    width: 82px;
    height: 88px;
    z-index: 1;
    /* background-color: white; */
    /* border: 2px solid red; */
}

.icon-mata {
    height: 40px;
    width: 40px;
    bottom: 14px;
    background-image: url("../images/smartpedia/pancaindra/icon/icon-mata.png");
    background-size: cover;
}

.icon-hidung {
    height: 40px;
    width: 40px;
    bottom: 14px;
    background-image: url("../images/smartpedia/pancaindra/icon/icon-hidung.png");
    background-size: cover;
}

.icon-telinga {
    height: 40px;
    width: 40px;
    bottom: 14px;
    background-image: url("../images/smartpedia/pancaindra/icon/icon-telinga.png");
    background-size: cover;
}

.icon-lidah {
    height: 40px;
    width: 40px;
    bottom: 14px;
    background-image: url("../images/smartpedia/pancaindra/icon/icon-lidah.png");
    background-size: cover;
}

.icon-tangan {
    height: 40px;
    width: 40px;
    bottom: 14px;
    background-image: url("../images/smartpedia/pancaindra/icon/icon-tangan.png");
    background-size: cover;
}

@media screen and (max-width: 414px) {
    .panca-indera {
        height: 577px;
        max-width: 375px;
    }
    .logo-panca-indera {
        width: 110px;
        height: 78px;
        right: 50%;
        transform: translateX(50%);
    }
    .panca-indera .vido-opening {
        width: 279px;
        height: 352px;
        left: 50%;
        transform: translateX(-50%);
        top: 250px;
    }
    .mata1 {
        left: 173px;
        top: 355px;
        width: 28px;
        height: 28px;
    }
    .mata2 {
        left: 245px;
        top: 361px;
        width: 28px;
        height: 28px;
    }
    .telinga1 {
        left: 123px;
        top: 367px;
        width: 22px;
        height: 47px;
    }
    .telinga2 {
        left: 294px;
        top: 378px;
        width: 23px;
        height: 45px;
    }
    .hidung {
        left: 208px;
        top: 375px;
        width: 27px;
        height: 23px;
    }
    .lidah {
        left: 188px;
        top: 406px;
        width: 61px;
        height: 26px;
    }
    .tangan {
        left: 50px;
        top: 388px;
        width: 52px;
        height: 52px;
    }
    .icon-mata {
        height: 25px;
        width: 25px;
        bottom: 14px;
        left: 30px;
    }
    .icon-hidung {
        height: 25px;
        width: 25px;
        bottom: 14px;
        left: calc(30px + 30px + 25px);
    }
    .icon-telinga {
        height: 25px;
        width: 25px;
        bottom: 14px;
        left: calc(30px + 30px + 30px + 25px + 25px);
    }
    .icon-lidah {
        height: 25px;
        width: 25px;
        bottom: 14px;
        left: calc(30px + 30px + 30px + 30px + 25px + 25px + 25px);
    }
    .icon-tangan {
        height: 25px;
        width: 25px;
        bottom: 14px;
        left: calc(30px + 30px + 30px + 30px + 30px + 25px + 25px + 25px + 25px);
    }
}

@media screen and (min-width: 1920px) {
    .panca-indera {
        max-width: 1600px;
    }
}


/* ======= end of Section 1 ======= */


/* ======= Section Indera Mata ======= */

.section-indera-mata {
    display: none;
    height: 510px;
    width: 100vw;
    position: relative;
}

.container-vido--fullWajah {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    height: 510px;
    float: left;
}

.container-dialog {
    width: 600px;
    margin-left: auto;
    margin-right: 0;
    z-index: 3;
    position: relative;
    float: right;
}

.section-indera-mata .bubble-text {
    font-size: 14px;
}

.section-indera-mata .vido-wajah {
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
    width: 750px;
    height: 510px;
    background-image: url(../images/smartpedia/pancaindra/mata/wajah.png);
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 1s;
}

.section-indera-mata .vido-trail {
    position: absolute;
    left: 315px;
    top: 185px;
    background-size: cover;
    width: 50px;
    height: 190px;
    background-image: url(../images/smartpedia/pancaindra/mata/garis.png);
    -webkit-animation-name: trail;
    animation-name: trail;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.section-indera-mata .vido-kupu2 {
    position: absolute;
    left: 225px;
    top: 35px;
    background-size: cover;
    width: 150px;
    height: 140px;
    background-image: url(../images/smartpedia/pancaindra/mata/kupu-kupu.png);
    -webkit-animation: kupu2 3s infinite;
    animation: kupu2 3s infinite;
}

.section-indera-mata .vido-mata {
    position: absolute;
    left: 76px;
    top: 172px;
    background-size: cover;
    width: 436px;
    height: 121px;
    background-image: url(../images/smartpedia/pancaindra/mata/mata.png);
    -webkit-animation: zoomIn 1s forwards, rolling-eyes 3s infinite;
    animation: zoomIn 1s forwards, rolling-eyes 3s infinite;
}

.mata-tutup {
    position: absolute;
    margin-left: 40px;
    top: 40px;
}

@media screen and (max-width: 414px) {
    .container-dialog {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        float: none;
    }
    .container-vido--fullWajah {
        width: 100%;
        height: 577px;
        left: 50%;
        transform: translateX(-50%);
    }
    .section-indera-mata .vido-wajah {
        background-image: url(../images/smartpedia/pancaindra/mata/wajah-full.png);
        width: 356px;
        height: 353px;
        left: 10px;
    }
    .section-indera-mata .vido-mata {
        left: 102px;
        top: 408px;
        width: 166px;
        height: 46px;
    }
    .section-indera-mata .vido-trail {
        left: 191px;
        top: 376px;
        width: 21px;
        height: 83px;
    }
    .section-indera-mata .vido-kupu2 {
        left: 153px;
        top: 356px;
        width: 60px;
        height: 56px;
    }
}


/* ======= end of Section Indera Mata ======= */


/* ======= Section Indera Telinga ======= */

.section-indera-telinga {
    display: none;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.section-indera-telinga .bubble-text {
    font-size: 14px;
}

.section-indera-telinga .vido-wajah {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 510px;
}

.section-indera-telinga .vido-wajah .wajah-akhir {
    position: absolute;
    background-size: cover;
    width: 650px;
    height: 100%;
    opacity: 0;
    background-image: url(../images/smartpedia/pancaindra/telinga/wajah-vido-setelah.png);
    animation: fadeIn 1s forwards;
    animation-delay: 1s;
}

.section-indera-telinga .vido-wajah .wajah-awal {
    position: absolute;
    background-size: cover;
    width: 650px;
    height: 100%;
    background-image: url(../images/smartpedia/pancaindra/telinga/wajah-vido-awal.png);
    -webkit-animation: zoomIn 1s forwards, fadeOut 1s forwards;
    animation: zoomIn 1s forwards, fadeOut 1s forwards;
    animation-delay: 0s, 1.2s;
}

.section-indera-telinga .vido-musik {
    top: 205px;
    position: absolute;
    left: 425px;
    background-size: cover;
    width: 282px;
    height: 212px;
    background-image: url(../images/smartpedia/pancaindra/telinga/musik.png);
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 3s;
}

.telinga-tutup {
    position: absolute;
    margin-left: 40px;
    top: 40px;
}

@media screen and (max-width: 414px) {
    .section-indera-telinga .vido-wajah {
        height: 577px;
        position: relative;
    }
    .section-indera-telinga .vido-wajah .wajah-awal {
        top: 234px;
        width: 100%;
        height: 368px;
        background-image: url(../images/smartpedia/pancaindra/telinga/wajah-vido-awal-full.png);
        left: 50%;
        transform: translateX(-50%);
    }
    .section-indera-telinga .vido-wajah .wajah-akhir {
        top: 234px;
        width: 100%;
        height: 368px;
        background-image: url(../images/smartpedia/pancaindra/telinga/wajah-vido-setelah-full.png);
        left: 50%;
        transform: translateX(-50%);
    }
    .section-indera-telinga .vido-musik {
        top: 465px;
        left: 297px;
        width: 73px;
        height: 55px;
    }
}


/* ======= end of Section Indera Telinga ======= */


/* ======= Section Indera Hidung ======= */

.section-indera-hidung {
    display: none;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.section-indera-hidung .bubble-text {
    font-size: 14px;
}

.section-indera-hidung .vido-wajah {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.section-indera-hidung .vido-wajah .wajah-akhir {
    position: absolute;
    background-size: cover;
    width: 974px;
    height: 100%;
    opacity: 0;
    background-image: url(../images/smartpedia/pancaindra/telinga/wajah-vido-setelah.png);
    animation: fadeIn 1s forwards;
    animation-delay: 1s;
}

.section-indera-hidung .vido-wajah .wajah-awal {
    position: absolute;
    background-size: cover;
    width: 726px;
    height: 510px;
    background-image: url(../images/smartpedia/pancaindra/hidung/wajah-vido-awal.png);
    -webkit-animation: zoomIn 1s forwards;
    animation: zoomIn 1s forwards;
}

.section-indera-hidung .vido-makanan {
    position: absolute;
    left: 100px;
    bottom: 0;
    background-size: cover;
    width: 350px;
    height: 195px;
    background-image: url(../images/smartpedia/pancaindra/hidung/makanan.png);
    -webkit-animation: fadeInUp 2s forwards;
    animation: fadeInUp 2s forwards;
}

.section-indera-hidung .vido-aroma {
    position: absolute;
    left: 325px;
    bottom: 170px;
    background-size: cover;
    width: 90px;
    height: 140px;
    opacity: 0;
    background-image: url(../images/smartpedia/pancaindra/hidung/aroma.png);
    -webkit-animation: flash 2s infinite;
    animation: flash 2s infinite;
    animation-delay: 2s;
}

.hidung-tutup {
    position: absolute;
    margin-left: 40px;
    top: 40px;
}

@media screen and (max-width: 414px) {
    .section-indera-hidung .vido-wajah .wajah-awal {
        top: 229px;
        left: 50%;
        transform: translateX(-50%);
        width: 338px;
        height: 350px;
        background-image: url(../images/smartpedia/pancaindra/hidung/wajah-vido-awal-full.png);
    }
    .section-indera-hidung .vido-makanan {
        top: 530px;
        left: 64px;
        width: 162px;
        height: 87px;
    }
    .section-indera-hidung .vido-aroma {
        top: 486px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 65px;
    }
}


/* ======= end of Section Indera Telinga ======= */


/* ======= Section Indera Lidah ======= */

.section-indera-lidah {
    display: none;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.section-indera-lidah .vido-wajah {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.section-indera-lidah .vido-wajah .wajah-akhir {
    position: absolute;
    background-size: cover;
    width: 650px;
    height: 510px;
    background-image: url(../images/smartpedia/pancaindra/lidah/wajah-vido-setelah.png);
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2.7s;
}

.section-indera-lidah .vido-wajah .wajah-awal {
    position: absolute;
    background-size: cover;
    width: 670px;
    height: 510px;
    background-image: url(../images/smartpedia/pancaindra/lidah/wajah-vido-awal.png);
    -webkit-animation: zoomIn 1s forwards, fadeOut 1s forwards;
    animation: zoomIn 1s forwards, fadeOut 1.5s 2s forwards;
}

.section-indera-lidah .vido-makanan {
    position: absolute;
    left: 200px;
    bottom: 0;
    background-size: cover;
    width: 300px;
    height: 170px;
    opacity: 0;
    background-image: url(../images/smartpedia/pancaindra/lidah/vitamin-c.png);
    -webkit-animation: fadeInUp 1s forwards, fadeOut 1s 1s forwards;
    animation: fadeInUp 1s 1s forwards, fadeOut 1.5s 2s forwards;
}

.lidah-tutup {
    position: absolute;
    margin-left: 40px;
    top: 40px;
}

.lidah-tutup button {
    font-size: 14px;
}

@media screen and (max-width: 414px) {
    .section-indera-lidah .vido-wajah .wajah-akhir {
        width: 370px;
        height: 418px;
        top: 190px;
        left: 50%;
        transform: translateX(-50%);
        background-image: url(../images/smartpedia/pancaindra/lidah/wajah-vido-setelah-full.png);
    }
    .section-indera-lidah .vido-wajah .wajah-awal {
        width: 321px;
        height: 387px;
        top: 190px;
        left: 50%;
        transform: translateX(-50%);
        background-image: url(../images/smartpedia/pancaindra/lidah/wajah-vido-awal-full.png);
    }
    .section-indera-lidah .vido-makanan {
        width: 144px;
        height: 83px;
        top: 496px;
        left: 124px;
    }
}


/* ======= end of Section Indera Lidah ======= */


/* ======= Section Indera Tangan ======= */

.section-indera-tangan {
    display: none;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.section-indera-tangan .bubble-text {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2.7s;
}

.section-indera-tangan .vido-wajah {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.section-indera-tangan .vido-wajah .wajah-akhir {
    position: absolute;
    background-size: cover;
    width: 610px;
    height: 510px;
    bottom: 0;
    left: 100px;
    background-image: url(../images/smartpedia/pancaindra/tangan/wajah-vido-setelah.png);
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 2.7s;
}

.section-indera-tangan .vido-wajah .wajah-awal {
    position: absolute;
    background-size: cover;
    width: 610px;
    height: 510px;
    bottom: 0;
    left: 100px;
    background-image: url(../images/smartpedia/pancaindra/tangan/wajah-vido-awal.png);
    -webkit-animation: fadeOut 5s forwards;
    animation: fadeOut 1s 2s forwards;
}

.section-indera-tangan .vido-tangan-merah {
    position: absolute;
    left: 528px;
    bottom: 175px;
    background-size: cover;
    width: 180px;
    height: 167px;
    background-image: url(../images/smartpedia/pancaindra/tangan/tangan-panas.png);
    opacity: 0;
    -webkit-animation: fadeIn 1s 2.8s forwards, pulse 1s infinite ease-in-out;
    animation: fadeIn 1s 2.8s forwards, pulse 1s infinite ease-in-out;
}

.section-indera-tangan .vido-asap {
    position: absolute;
    left: 529px;
    top: 72px;
    background-size: cover;
    width: 154px;
    height: 190px;
    background-image: url(../images/smartpedia/pancaindra/tangan/asap.png);
    -webkit-animation: slideOutDown 3s .8s forwards, fadeOut 1s 2s forwards;
    animation: slideOutDown 3s .8s forwards, fadeOut 1s 2s forwards;
}

.section-indera-tangan .vido-gelas {
    position: absolute;
    left: 529px;
    top: 204px;
    background-size: cover;
    width: 154px;
    height: 147px;
    background-image: url(../images/smartpedia/pancaindra/tangan/gelas.png);
    -webkit-animation: slideOutDown 3s .8s forwards, fadeOut 1s 2s forwards;
    animation: slideOutDown 3s .8s forwards, fadeOut 1s 2s forwards;
}

.tangan-tutup {
    position: absolute;
    margin-left: 40px;
    top: 40px;
}

.tangan-tutup button {
    font-size: 14px;
}

@media screen and (max-width: 414px) {
    .section-indera-tangan .vido-wajah .wajah-akhir {
        width: 370px;
        height: 326px;
        top: 251px;
        left: 10px;
    }
    .section-indera-tangan .vido-wajah .wajah-awal {
        width: 370px;
        height: 326px;
        top: 251px;
        left: 10px;
    }
    .section-indera-tangan .vido-tangan-merah {
        width: 116px;
        height: 106px;
        top: 357px;
        left: 278px;
    }
    .section-indera-tangan .vido-asap {
        width: 77px;
        height: 94px;
        top: 310px;
        left: 276px;
    }
    .section-indera-tangan .vido-gelas {
        width: 77px;
        height: 73px;
        top: 383px;
        left: 287px;
    }
}


/* ======= end of Section Indera Tangan ======= */


/* ======= Section Closing ======= */

.panca-indera-closing {
    display: none;
    width: 100vw;
    position: relative;
    height: 510px;
    margin-left: auto;
    margin-right: auto;
}

.vido-closing {
    position: absolute;
    left: 100px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 511px;
    height: 640px;
    background-image: url(../images/smartpedia/pancaindra/closing-vido.png);
}

.panca-indera-closing .refresh-button {
    position: absolute;
    top: 430px;
    right: 235px;
    width: 50px;
    height: 80px;
    animation: pulse 1s infinite;
}

.refresh-button .button-reload {
    position: -webkit-sticky;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-image: url(../images/smartpedia/pancaindra/reload.png);
}

.refresh-button .text-reload {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width:414px) {
    .panca-indera-closing {
        height: 577px;
        max-width: 375px;
    }
    .panca-indera-closing .vido-closing {
        width: 294px;
        height: 352px;
        left: 50%;
        transform: translateX(-50%);
        top: 250px;
    }
    .panca-indera-closing .refresh-button {
        top: 485px;
        left: 36px;
    }
    .refresh-button .button-reload {
        top: 0;
        left: 0;
    }
}


/* ======= end of Section Closing ======= */

:root {
    --background-color: #cffaff;
    --font-color-primary: #f8fdff;
    --font-color-secondary: #055b92;
    --bubble-text-color: #075689;
}