html, body {
    overflow-x: hidden !important;
}

body {
    background: url("../images/landscape/bg.jpg") center top no-repeat;
    background-size: cover;
    color: #ffedbb;
    margin: 8px 0;
    position: relative;
}

.character-img {
    position: absolute;
    width: 700px;
    top: 200px;
    right: 0;
}

.store-link-container {
    display: flex;
    justify-content: space-around;
    padding: 0 30vw;
    margin-top: 15px;
}

.introduction-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2vw 10px 0 10px;
}

.introduction {
    text-align: center;
    margin-top: 13vw;
    animation: introductionAppear 1.5s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.introduction .introduction-text {
    font-size: 2rem;
    font-weight: 400;
    margin: 20px 0 5px 0;
    line-height: 2.4rem;
    text-align: center;
    color: #ffd200;
}

.left-align-device-img-container img{
    width: 1000px;
    max-width: 100%;
    visibility: hidden;
    position: sticky;
}

.right-align-device-img-container img{
    float: right;
    width: 980px;
    max-width: 100%;
    visibility: hidden;
    position: sticky;
}

.left-align-image-animation {
    animation: leftAlignImgSlideIn 1.5s ease-in-out;
}

.right-align-image-animation {
    animation: rightAlignImgSlideIn 1.5s ease-in-out;
}

.text .summary {
    margin: 5px 10px 0 0;
    display: inline-block;
    color: #2e5d0f;
    font-weight: 500;
    font-size: 2.8rem;
    color: #61362b;
}

.text .title {
    margin: 10px 0 0 0;
    font-size: 4.5rem;
    line-height: 5.5rem;
    font-family: 'Laila', sans-serif;
    display: inline-block;
}

.device-section .text{
    margin-left: 30px;
}

.device-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.device-section:nth-of-type(odd) .text {
    width: 35vw;
    margin: 7vw 15vw 0 30px;
}

.device-section:nth-of-type(even) .text {
    width: 35vw;
    margin: 8vw 0 0 10vw;
}

.play-btn{
    width: 150px;
    height: 150px;
    animation: playBtnSlideUp 1s ease-in;
    position: relative;
}

.play-btn-container {
    text-align: center;
    margin-top: 2.5vw;
}

.play-btn-container h5{
    margin: -5px 0 5px 0;
    font-size: 2.3rem;
    font-family: 'Laila', sans-serif;
}

.follow-us-container a {
    text-decoration: none;
    color: #61362b;
    position: relative;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 999;
}

.ytb-video {
    width: 90vw;
    height: 80vh;
    position: relative;
    left: 5vw;
    top: 10vh;
}

.video-mask {
    position: absolute;
    background-color: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.follow-us-container img{
    width: 35px;
    top: 4px;
    position: relative;
}

.follow-us-container{
    color: #61362b;
    font-size: 2rem;
    font-family: 'Laila', sans-serif;
    font-weight: 500;
}

.floats-container{
    position: absolute;
    top: 0;
    left: 0;
}

.floats {
    position: absolute;
    z-index: 10;
    display: none !important;
}

.float-normal {
    width: 140px;
}

.float-light {
    width: 125px;
}

.show-landscape {
    display: inline-block;
}

.show-portrait {
    display: none;
}

#float-1 {
    left: 15vw;
    top: 1250px;
}

#float-2 {
    left: 55vw;
    top: 1400px;
}

#float-3 {
    left: 23vw;
    top: 2850px;
}

#float-4 {
    left: 39vw;
    top: 2200px;
}

#float-5 {
    left: 84vw;
    top: 3200px;
}

#float-6 {
    left: 25vw;
    top: 1695px;
}

#float-7 {
    left: 49vw;
    top: 3950px;
}


#preview-video{
    width: 100%;
    height: auto;
    position: absolute;
    top: 30vh;
}

#logo {
    width: 650px;
    animation: logoSlideDown 1s ease-in;
    position: relative;
}

#introduction-title {
    margin: 10px 0 0 0;
    font-size: 5rem;
    font-family: 'Laila', sans-serif;
}

#device-1, #device-2, #device-3{
    margin-bottom: 30px;
}

#device-2, #device-4 {
    margin-right: 0;
}

#device-1 {
    margin-top: 30px;
}

#device-3 {
    margin-bottom: 0;
}

#device-4 {
    margin-bottom: 70px;
}

#device-2 .title {
    margin-top: -15px;
}

#device-3 .title {
    margin-top: -10px;
}

#device-4 .text .summary {
    margin-bottom: 70px;
}

#ios-link-img { 
    width: 200px;
}

#gp-link-img {
    width: 204px;
}

#amazon-link-img{
    width: 247px;
}

@keyframes logoSlideDown {
    from {
        bottom: 150px;
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes introductionAppear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes playBtnSlideUp {
    from {
        top: 70px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes leftAlignImgSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to{
        opacity: 1;
        transform: none;
    }
}

@keyframes rightAlignImgSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to{
        opacity: 1;
        transform: none;
    }
}

@media screen and (max-width: 2150px) {
    .device-section:nth-of-type(odd) .text {
        width: 37vw;
        margin: 7vw 8vw 0 80px;
    }

    .device-section:nth-of-type(even) .text {
        width: 35vw;
        margin: 14vh 0 0 8vw;
    }

    .character-img {
        width: 500px;
        top: 150px;
    }

    .introduction .introduction-text {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .introduction {
        margin-top: 10vw;
    }

    .play-btn {
        width: 120px;
        height: 120px;
    }

    .text .title {
        font-size: 3rem;
        line-height: 4rem;
    }

    .text .summary {
        font-size: 2.1rem;
    }

    .left-align-device-img-container img{
        width: 750px;
    }

    .right-align-device-img-container img{
        width: 720px;
    }

    .float-normal {
        width: 110px;
    }
    
    .float-light {
        width: 100px;
    }

    #introduction-title {
        font-size: 4rem;
    }

    #logo {
        width: 500px;
    }

    #float-1 {
        top: 920px;
    }

    #float-2 {
        top: 1070px;
    }

    #float-3 {
        top: 2180px;
    }

    #float-4 {
        top: 1700px;
    }

    #float-5 {
        top: 2400px;
    }

    #float-7 {
        top: 3000px;
    }

    #ios-link-img { 
        width: 160px;
    }
    
    #gp-link-img {
        width: 163px;
    }
    
    #amazon-link-img{
        width: 196px;
    }
}

@media screen and (max-width: 1600px) {
    .character-img {
        width: 400px;
        top: 120px;
    }

    .introduction .introduction-text {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }

    .play-btn {
        width: 80px;
        height: 80px;
    }

    .play-btn-container h5 {
        font-size: 1.8rem;
    }

    .follow-us-container {
        font-size: 1.5rem;
    }

    .follow-us-container img {
        width: 28px;
        top: 5px;
    }

    .device-section:nth-of-type(odd) .text {
        width: 38.5vw;
        margin: 7vw 5vw 0 2vw;
    }

    .device-section:nth-of-type(even) .text {
        width: 38vw;
        margin: 8vw 0 0 8vw;
    }
    
    .text .title {
        font-size: 2.5rem;
        line-height: 3.2rem;
    }
    
    .text .summary {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    .left-align-device-img-container img{
        width: 570px;
    }

    .right-align-device-img-container img{
        width: 550px;
    }

    .float-normal {
        width: 90px;
    }
    
    .float-light {
        width: 80px;
    }
    
    #introduction-title {
        font-size: 3.5rem;
    }

    #logo {
        width: 350px;
    }

    #float-1 {
        top: 650px;
    }

    #float-2 {
        top: 800px;
    }

    #float-3 {
        top: 1680px;
    }

    #float-4 {
        top: 1230px;
    }

    #float-5 {
        top: 1850px;
    }

    #float-7 {
        top: 2300px;
    }

    #ios-link-img { 
        width: 90px;
    }
    
    #gp-link-img {
        width: 92px;
    }
    
    #amazon-link-img{
        width: 111px;
    }
}

@media screen and (max-width: 1100px) {
    .character-img {
        width: 250px;
        top: 90px;
    }

    .introduction .introduction-text {
        font-size: 1.1rem;
        line-height: 1.3rem;
        margin-top: 10px;
    }

    .play-btn-container {
        margin-top: 1.5vw;
    }

    .play-btn-container h5 {
        font-size: 1.3rem;
    }

    .follow-us-container {
        font-size: 1.1rem;
    }

    .device-section:nth-of-type(odd) .text {
        width: 350px;
        margin: 6vw 3vw 0 2vw;
    }

    .device-section:nth-of-type(even) .text {
        width: 350px;
        margin: 9vw 0 0 6vw;
    }

    .text .title {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .text .summary {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }

    .left-align-device-img-container img{
        width: 430px;
    }

    .right-align-device-img-container img{
        width: 420px;
    }

    #logo {
        width: 250px;
    }

    #introduction-title {
        font-size: 2.3rem;
    }

    #float-1 {
        top: 500px;
    }

    #float-2 {
        top: 600px;
    }

    #float-3 {
        top: 1400px;
    }

    #float-4 {
        top: 1020px;
    }

    #float-5 {
        top: 1720px;
    }

    #float-7 {
        top: 1900px;
    }
}

@media screen and (min-width: 768px) and(max-width: 1024px) and (orientation: landscape) {
    .introduction {
        margin-top: 60px;
    }

    #float-3 {
        left: 23vw;
        top: 1000px;
    }

    #float-7 {
        left: 56vw;
        top: 1400px;
    }
}

/* ipad landscape */
@media screen and (min-height: 768px) and (max-height: 1024px) and (min-width: 768px) and (max-width: 1366px)
    and (orientation: landscape) {
    .store-link-container {
        padding: 0 230px;
    }

    .play-btn-container h5 {
        font-size: 1.5rem;
    }

    .follow-us-container {
        font-size: 1.1rem;
    }

    .follow-us-container img {
        width: 25px;
    }

    .character-img {
        width: 320px;
        top: 100px;
    }

    .introduction-container{
        margin-top: 50px;
    }

    .introduction{
        margin-top: 10vw;
    }
 
    .introduction .introduction-text {
        font-size: 1.3rem;
        line-height: 1.5rem;
        padding: 0 25vw;
        margin-top: 5px;
    }

    .text .title {
        font-size: 2.1rem;
        line-height: 2.1rem;
    }

    .text .summary {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }

    .device-section:nth-of-type(odd) .text {
        width: 500px;
        margin: 11vw 50px 0 30px;
    }

    .device-section:nth-of-type(even) .text {
        width: 500px;
        margin: 13vw 50px 0 110px;
    }

    .left-align-device-img-container img, .right-align-device-img-container img{
        width: 600px;
    }

    .summary {
        font-size: 1.5rem;
    }

    #introduction-title{
        font-size: 2.5rem;
    }

    #logo {
        width: 300px;
    }

    #ios-link-img { 
        width: 120px;
    }
    
    #gp-link-img {
        width: 122px;
    }
    
    #amazon-link-img{
        width: 147px;
    }

    #float-1 {
        left: 13vw;
        top: 530px;
    }

    #float-2 {
        left: 55vw;
        top: 650px;
    }

    #float-3 {
        left: 25vw;
        top: 1530px;
    }

    #float-4 {
        top: 1110px;
    }

    #float-5 {
        left: 85vw;
        top: 1640px;
    }

    #float-7 {
        left: 51vw;
        top: 2170px;
    }
}

/* ipad portrait */
@media only screen and (max-width: 1024px) and (orientation: portrait){
    body {
        background: url("../images/bg.jpg") top no-repeat;
        background-size: cover;
    }

    .show-landscape {
        display: none;
    }

    .show-portrait {
        display: inline-block;
    }

    .store-link-container {
        padding: 0 16vw;
    }

    .introduction-container{
        margin-top: 50px;
    }

    .introduction{
        margin-top: 60vw;
    }

    .character-img {
        display: none;
    }

    .introduction .introduction-text {
        font-size: 1.5rem;
        line-height: 1.8rem;
        width: auto;
        padding: 0 10vw;
        margin: 0;
    }

    .device-section {
        flex-direction: column;
    }

    .device-section:nth-of-type(odd) .text, .device-section:nth-of-type(even) .text {
        width: auto;
        margin: 3vh 10vw;
        text-align: left;
    }

    .device-section .text {
        margin-left: 50px;
    }

    .left-align-device-img-container img, .right-align-device-img-container img{
        width: 750px;
    }

    .text .title{
        font-size: 3.5rem;
        line-height: 4rem;
    }

    .text .summary {
        font-size: 1.8rem;
        line-height: 2.3rem;
        margin-top: 15px;
    }

    .play-btn {
        width: 170px;
        height: 170px;
    }

    .play-btn-container {
        margin-top: 10vw;
    }

    .play-btn-container h5 {
        font-size: 2rem;
    }

    .follow-us-container {
        font-size: 1.5rem;
    }

    .follow-us-container img{
        width: 30px;
        top: 5px;
    }

    #introduction-title{
        font-size: 3.5rem;
    }

    #logo {
        width: 400px;
    }

    #ios-link-img { 
        width: 130px;
    }
    
    #gp-link-img {
        width: 132px;
    }
    
    #amazon-link-img{
        width: 160px;
    }

    .float-normal {
        width: 100px;
    }
    
    .float-light {
        width: 90px;
    }

    #float-1{
        left: 5vw;
        top: 1200px;
    }
    
    #float-2{
        left: 73vw;
        top: 1750px;
    }
    
    #float-3 {
        left: 64vw;
        top: 2080px;
    }
    
    #float-4 {
        left: 2vw;
        top: 2370px;
    }
    
    #float-5 {
        left: 20vw;
        top: 2950px;
    }
    
    #float-6 {
        left: 2vw;
        top: 3550px;
    }
    
    #float-7 {
        left: 75vw;
        top: 4200px;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .store-link-container{ 
        padding: 0 15vw;
    }

    .character-img {
        top: 70px;
        width: 190px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .left-align-device-img-container img, .right-align-device-img-container img{
        width: 300px;
    }

    .device-section:nth-of-type(odd) .text {
        margin-top: 4vw;
        width: 350px;
    }

    .introduction .introduction-text {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .text .title {
        font-size: 1.5rem;
    }

    .text .summary {
        font-size: 1.1rem;
        line-height: 1.3rem;
    }

    .float-normal {
        width: 60px;
    }
    
    .float-light {
        width: 50px;
    }

    #ios-link-img { 
        width: 90px;
    }
    
    #gp-link-img {
        width: 91px;
    }
    
    #amazon-link-img{
        width: 102px;
    }

    #introduction-title {
        font-size: 1.6rem;
    }

    #logo {
        width: 200px;
    }

    #float-1 {
        top: 400px;
    }

    #float-2 {
        top: 510px;
    }

    #float-3 {
        top: 720px;
    }
    
    #float-4 {
        top: 1000px;
    }
    
    #float-5 {
        top: 1300px;
    }
    
    #float-7 {
        left: 21vw;
        top: 1410px;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {

    .introduction .introduction-text {
        font-size: 1.2rem;
        line-height: 1.3rem;
    }

    .device-section:nth-of-type(odd) .text, .device-section:nth-of-type(even) .text {
        margin: 5vh 5vw;
    }

    .left-align-device-img-container img, .right-align-device-img-container img{
        width: 580px;
    }

    .text .title{
        font-size: 3rem;
    }

    .text .summary {
        font-size: 1.8rem;
        line-height: 2rem;
        margin-top: 0px;
    }

    #logo {
        width: 270px;
    }

    #introduction-title{
        font-size: 2.7rem;
    }

    .introduction{
        margin-top: 53vw;
    }

    #ios-link-img { 
        width: 90px;
    }
    
    #gp-link-img {
        width: 91px;
    }
    
    #amazon-link-img{
        width: 109px;
    }

    #float-1{
        left: 5vw;
        top: 900px;
    }
    
    #float-2{
        left: 73vw;
        top: 1250px;
    }
    
    #float-3 {
        left: 64vw;
        top: 1640px;
    }
    
    #float-4 {
        left: 2vw;
        top: 1800px;
    }
    
    #float-5 {
        left: 20vw;
        top: 2300px;
    }
    
    #float-6 {
        left: 5vw;
        top: 2850px;
    }
    
    #float-7 {
        display: none;
    }
}

@media screen and (max-width: 600px) and (orientation: landscape) {
    .device-section:nth-of-type(odd) .text {
        margin-top: 7vw;
        width: 300px;
    }

    .character-img {
        top: 55px;
        width: 160px;
    }

    .text .title {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    .text .summary {
        font-size: 0.9rem;
        line-height: 1rem;
    }

    .introduction .introduction-text {
        font-size: 0.8rem;
        line-height: 0.9rem;
    }

    #logo {
        width: 180px;
    }

    #introduction-title {
        font-size: 1.3rem;
    }

    #float-1 {
        top: 350px;
    }

    #float-2 {
        top: 450px;
    }

    #float-3 {
        top: 620px;
    }
    
    #float-4 {
        top: 850px;
    }
    
    #float-5 {
        top: 1130px;
    }
    
    #float-7 {
        left: 21vw;
        top: 1290px;
    }
}

@media screen and (max-width: 600px) and (orientation: portrait) {
    .introduction .introduction-text {
        font-size: 1rem;
        line-height: 1.1rem;
        padding: 0 3vw;
    }

    .introduction {
        margin-top: 50vw;
    }

    .play-btn {
        width: 120px;
        height: 120px;
    }

    .play-btn-container {
        margin-top: 20px;
    }

    .play-btn-container h5 {
        font-size: 1.5rem;
    }

    .follow-us-container {
        font-size: 1.2rem;
    }

    .follow-us-container img {
        width: 25px;
        top: 4px;
    }

    .left-align-device-img-container img, .right-align-device-img-container img {
        width: 330px;
    }

    .text .title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .text .summary {
        font-size: 1.3rem;
        line-height: 1.5rem;
        margin-top: 5px;
    }

    .float-normal {
        width: 60px;
    }
    
    .float-light {
        width: 53px;
    }

    #introduction-title {
        font-size: 2rem;
        line-height: 2.3rem;
    }

    #ios-link-img { 
        width: 70px;
    }
    
    #gp-link-img {
        width: 71px;
    }
    
    #amazon-link-img{
        width: 83px;
    }

    #device-4 {
        margin-bottom: 10px;
    }

    #float-1{
        top: 550px;
    }
    
    #float-2{
        top: 670px;
    }
    
    #float-3 {
        top: 1030px;
    }
    
    #float-4 {
        top: 1150px;
    }
    
    #float-5 {
        top: 1430px;
    }
    
    #float-6 {
        top: 1670px;
    }
    
    #float-7 {
        display: inline-block;
        top: 2050px;
    }
}

@media screen and (max-width:360px) {
    .introduction {
        text-align: center;
        margin-top: 55vw;
    }

    .introduction .introduction-text{
        font-size: 0.8rem;
        line-height: 1rem;
        padding: 0 1vw;
    }

    .left-align-device-img-container img, .right-align-device-img-container img{
        width: 300px;
    }

    #device-1 {
        margin-top: 50px;
    }

    #ios-link-img { 
        width: 60px;
    }
    
    #gp-link-img {
        width: 61px;
    }
    
    #amazon-link-img{
        width: 75px;
    }

    #logo {
        width: 200px;
    }

    #introduction-title {
        font-size: 1.6rem;
    }

    #float-2 {
        top: 790px;
    }

    #float-3 {
        top: 960px;
    }

    #float-5 {
        top: 1500px;
    }

    #float-6 {
        top: 1660px;
    }

    #float-7 {
        top: 2150px;
    }
}

@media screen and (max-height: 360px) and (max-width: 600px) {
    .store-link-container {
        padding: 0 100px;
    }

    .device-section:nth-of-type(odd) .text {
        margin: 10vw 10px 0 10px;
    }

    #float-2 {
        top: 420px;
    }

    #logo {
        width: 200px;
    }

    #ios-link-img { 
        width: 70px;
    }
    
    #gp-link-img {
        width: 71px;
    }
    
    #amazon-link-img{
        width: 88px;
    }
}