body,
html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.desktop {
    max-width: 1280px;
    height: 500px;
    top: 7%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
}

.banner {
    max-width: 1280px;
    height: 90px;
    position: absolute;
    display: none;
    left: 0;
    right: 0;
}

.bg {
    background: url(image/banner.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.logo {
    width: 11%;
    height: auto;
    position: absolute;
    left: 7%;
    transform: translateY(-50%);
    top: 50%;
}

.logo img {
    width: 100%;
}

.text {
    width: 30%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text img {
    width: 100%;
}

.cta {
    position: absolute;
    width: 13%;
    top: 50%;
    transform: translateY(-50%);
    right: 12%;
}

.cta img {
    width: 100%;
}

.plus_icon {
    position: absolute;
    width: 3.6%;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}

.plus_icon img {
    width: 100%;
}

.expand {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.expand_ls {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.close {
    position: absolute;
    width: 2%;
    top: 0px;
    right: 0;
    padding: 0px 2px 50px 50px;
    z-index: 9999;
}

.close img {
    width: 100%;
}


/*mobiles*/

.smartphone,
.isMobile {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
}

.isMobile .close {
    width: 6%;
}

.isMobile .banner {
    width: 100%;
    height: 6%;
}


/*placeholder*/

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

.placeholder {
    cursor: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 9999;
    text-align: center;
    font-size: 0;
    pointer-events: auto !important;
}

.landscape .placeholder {
    display: block;
}

.placeholder .plzrotate {
    display: inline-block;
    text-align: center;
    text-transform: none;
    vertical-align: middle;
    font-size: 14px;
    position: relative;
}

.placeholder .plzrotate .rotate {
    position: relative;
    top: 20px;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
}

.placeholder .plzrotate .spinner {
    position: relative;
    top: 30px;
    width: 17px;
    margin: 0 auto;
    -webkit-animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -moz-animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -ms-animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -o-animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
}

.placeholder:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
    }
}

@-moz-keyframes rotating {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(90deg);
    }
}

@-o-keyframes rotating {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(90deg);
    }
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

@-webkit-keyframes btn-rotating {
    0% {
        -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
    }
}

@-moz-keyframes btn-rotating {
    0% {
        -moz-transform: rotate(-45deg);
    }
    100% {
        -moz-transform: rotate(90deg);
    }
}

@-o-keyframes btn-rotating {
    0% {
        -o-transform: rotate(-45deg);
    }
    100% {
        -o-transform: rotate(90deg);
    }
}

@keyframes btn-rotating {
    0% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

@-webkit-keyframes btn-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes btn-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes btn-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes btn-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
iframe#mobileLandscapeView .expand_ls {
    display: block !important;
}