
@font-face {
    font-family: 'Skia';
    src: url('Fonts/subset-Skia-Regular.eot');
    src: url('Fonts/subset-Skia-Regulard41d.eot?#iefix') format('embedded-opentype'),
        url('Fonts/subset-Skia-Regular.woff2') format('woff2'),
        url('Fonts/subset-Skia-Regular.woff') format('woff'),
        url('Fonts/subset-Skia-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tropen Deco';
    src: url('Fonts/subset-Tropen-Deco.eot');
    src: url('Fonts/subset-Tropen-Decod41d.eot?#iefix') format('embedded-opentype'),
        url('Fonts/subset-Tropen-Deco.woff2') format('woff2'),
        url('Fonts/subset-Tropen-Deco.woff') format('woff'),
        url('Fonts/subset-Tropen-Deco.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tropen Serif';
    src: url('Fonts/subset-Tropen-Serif.eot');
    src: url('Fonts/subset-Tropen-Serifd41d.eot?#iefix') format('embedded-opentype'),
        url('Fonts/subset-Tropen-Serif.woff2') format('woff2'),
        url('Fonts/subset-Tropen-Serif.woff') format('woff'),
        url('Fonts/subset-Tropen-Serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* General Bootstrap */

html {
    font-size: 100px;
    font-weight: 400;
    font-family: 'Skia', sans-serif;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
}

html.lock {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    font-size: 0;
    background-color: white;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none !important;
    -webkit-font-smoothing: antialiased;
}

*:focus {
    outline: none !important;
}

a {
    text-decoration: none;
}

b, strong {
    font-weight: 700;
}

.vcenter {
    font-size: 0;
}

.vcenter > * {
    display: inline-block;
    vertical-align: middle;
}

.vcenter:before {
    content: '';
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle;
}

.font * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.font img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}


/* Loading */

.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 100;
}

.loading .bar {
    position: absolute;
    width: 0;
    height: 1px;
    top: 80%;
    left: 0;
    background-color: #0C102B;
    transition: .1s width linear;
    -webkit-transition: .1s width linear;
    -ms-transition: .1s width linear;
    -moz-transition: .1s width linear;
    -o-transition: .1s width linear;
}

.loading .logo {
    position: absolute;
    width: 5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


/* General */

/* Buttons */

.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .23rem .58rem .28rem .58rem;
    font-weight: 700;
    font-size: 0.32rem;
    line-height: 1.2em;
    color: #ffffff;
    background-image: url(Icons/button-bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .2s all ease;
    -webkit-transition: .2s all ease;
    -ms-transition: .2s all ease;
    -moz-transition: .2s all ease;
    -o-transition: .2s all ease;
}

.btn-default.secondary {
    padding: .17rem .2rem .21rem .19rem;
    font-size: 0.16rem;
    line-height: 1.4em;
    background-image: url(Icons/button-bg-yellow.svg);
}


/* Main */

section.main {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
}

section.main .bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: 0% -50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1.2s all ease-in-out;
    -webkit-transition: 1.2s all ease-in-out;
    -ms-transition: 1.2s all ease-in-out;
    -moz-transition: 1.2s all ease-in-out;
    -o-transition: 1.2s all ease-in-out;
    clip-path: polygon(100% 0, 0 0, 0 100%, 110% 100%);
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 110% 100%);
    z-index: 3;
}

section.main.book-opened {
    overflow: hidden;
}

section.main.book-opened .bg {
    z-index: 3;
    pointer-events: none;
    clip-path: polygon(-10% 0, 0 0, 0 100%, 0% 100%);
    -webkit-clip-path: polygon(-10% 0, 0 0, 0 100%, 0% 100%);
}

section.main .content {
    height: 100%;
    text-align: center;
}

section.main .content .content-container {
    position: relative;
    display: inline-block;
    width: 7rem;
    max-width: 100%;
    padding: .8rem 1rem;
    margin-top: -.5rem;
    text-align: center;
    z-index: 4;
}

section.main .content .image {
    display: block;
    width: 4rem;
    margin-left: auto;
    margin-right: auto;
    animation: move 4s ease 0s infinite;
}

section.main .content * + .text {
    margin-top: .32rem;
}

section.main .content .text p {
    width: 50%;
    font-weight: 400;
	font-size: 0.24rem;
	line-height: 1.2em;
	color: #000000;
}

section.main .content * + .btn-default {
    margin-top: .4rem;
}

section.main .book {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
}

section.main:not(.ready) .content .btn-default,
section.main:not(.ready) .book {
    display: none;
}

section.main .book .page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ebe6e3;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
}

section.main .book .page.next {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
}

section.main .book .page.prev:not(.last-but-one) {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

section.main .book .page.last {
    z-index: 2;
    clip-path: polygon(100% 0, 100% 0, 110% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 100% 0, 110% 100%, 100% 100%);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transition: 1.2s all ease-in-out;
    -webkit-transition: 1.2s all ease-in-out;
    -ms-transition: 1.2s all ease-in-out;
    -moz-transition: 1.2s all ease-in-out;
    -o-transition: 1.2s all ease-in-out;
}

section.main .book .page.current {
    z-index: 2;
}

section.main .book .page.last.current {
    clip-path: polygon(100% 0, -10% 0, 0 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, -10% 0, 0 100%, 100% 100%);
}

section.main .book .page video {
    position: relative;
    width: 100%;
    height: 100%;
}

section.main .book .page .subtitles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

section.main .book .page .subtitles:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2.4rem;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 53.65%, rgba(0, 0, 0, .4) 100%);
}

section.main .book .page .subtitles .sub {
    position: absolute;
    width: 8.24rem;
    /*max-height: 6rem;*/
    height: 100% !important;
    left: 50%;
    top: calc(100% - 1.2rem);
    font-weight: 400;
    font-size: 0.32rem;
    line-height: 1.5em;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    /*overflow: hidden;*/
    cursor: default;
    pointer-events: none;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transition: .2s all;
    -webkit-transition: .2s all;
    -ms-transition: .2s all;
    -moz-transition: .2s all;
    -o-transition: .2s all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.main .book .page .subtitles .sub.active {
    opacity: 1;
}

section.main .book .page .subtitles .sub.dark {
    color: black;
}

section.main .book .page .subtitles .sub.customx {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

section.main .book .page .subtitles .sub.customy {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

section.main .book .page .subtitles .sub.customx.customy {
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -o-transform: none;
}

section.main .book .actions .btn.prev {
    position: absolute;
    width: .41rem;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(Icons/nav-left-small.svg);
    background-size: .41rem 2rem;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 3;
}

section.main .book .actions .btn.next {
    position: absolute;
    width: .41rem;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url(Icons/nav-right-small.svg);
    background-size: .41rem 2rem;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 3;
}

section.main .book .actions .btn .inner {
    position: absolute;
    width: 1.5rem;
    height: 100%;
    top: 0;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
}

section.main .book .actions .btn.prev .inner {
    left: 0;
}

section.main .book .actions .btn.next .inner {
    right: 0;
}

section.main .book .actions .btn .inner img {
    position: absolute;
    width: 1.5rem;
    height: 8.1rem;
    top: 50%;
    left: 0;
    margin-top: -4.05rem;
}

section.main .book .actions .btn.next .inner img {
    left: auto;
    right: 0;
}

section.main .book .actions .btn .inner .image:before {
    content: '';
    position: absolute;
    width: .19rem;
    height: 50%;
    left: 0;
    bottom: calc(50% + 4.05rem);
    background-color: white;
}

section.main .book .actions .btn .inner .image:after {
    content: '';
    position: absolute;
    width: .2rem;
    height: 50%;
    left: 0;
    top: calc(50% + 4.04rem);
    background-color: white;
}

section.main .book .actions .btn.next .inner .image:before {
    width: .2rem;
    left: auto;
    right: 0;
}

section.main .book .actions .btn.next .inner .image:after {
    width: .19rem;
    left: auto;
    right: 0;
}

section.main .book .actions .btn .inner .image-box {
    position: absolute;
    width: .9rem;
    height: .9rem;
    top: 50%;
    left: .41rem;
    margin-top: -.45rem;
    border-radius: .9rem;
    overflow: hidden;
    background-position: 20rem bottom;
}

section.main .book .actions .btn.flash .inner .image-box {
    animation: 1s flash infinite alternate;
}

@keyframes flash {
    100% {
        box-shadow: 0 0 40px 30px white;
        transform: scale(1.1);
    }
}

section.main .book .actions .btn.next .inner .image-box {
    left: auto;
    right: .41rem;
}

section.main .book .actions .btn .inner .image-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    background-image: url(Icons/fill.svg);
    background-size: .9rem;
    background-position: 0 bottom;
    background-repeat: repeat-x;
}

section.main .book .actions .btn .inner .image-box img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

section.main .book .actions .btn .inner .image-box span {
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: Tropen Deco;
    font-size: 0.32rem;
    line-height: 1.2em;
    color: #ffffff;
    z-index: 3;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

section.main .book .actions .btn.disabled {
    display: none !important;
}

section.main .book .actions .replay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: .6rem;
    bottom: .34rem;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: .3s opacity ease;
    -webkit-transition: .3s opacity ease;
    -ms-transition: .3s opacity ease;
    -moz-transition: .3s opacity ease;
    -o-transition: .3s opacity ease;
}

section.main .book .actions .replay.active {
    opacity: 1;
    pointer-events: auto;
}

section.main .book .actions .replay span {
    font-weight: 700;
    font-size: 0.2rem;
    line-height: 1.2em;
    color: #ffffff;
}

section.main .book .actions .replay img {
    width: .48rem;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
}

section.main .book .actions .replay * + img {
    margin-left: .08rem;
}

/* Header */

section.main .menu-wrapper {
    position: fixed;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    left: 0;
    top: .24rem;
    z-index: 10;
}

section.main .menu-wrapper .logo {
    position: absolute;
    width: 1.38rem;
    left: 0;
    top: 0;
    z-index: 2;
}

section.main .menu-wrapper .actions {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: .5rem;
    padding-right: .5rem;
    z-index: 2;
}

section.main .menu-wrapper .actions > * + * {
    margin-left: .28rem;
}

section.main .menu-wrapper .actions .btn-mute {
    width: .33rem;
    height: .24rem;
    background-image: url(Icons/sound-on.svg);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    transition: .2s all ease, 0s background-image;
    -webkit-transition: .2s all ease, 0s background-image;
    -ms-transition: .2s all ease, 0s background-image;
    -moz-transition: .2s all ease, 0s background-image;
    -o-transition: .2s all ease, 0s background-image;
}

section.main .menu-wrapper .actions .btn-mute.muted {
    background-image: url(Icons/sound-off.svg);
}

    section.main .menu-wrapper .actions .btn {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: .72rem;
        height: .73rem;
        background-image: url(Icons/btn-round.svg);
        background-size: contain;
        background-position: left center;
        background-repeat: no-repeat;
        position: relative;
        filter: drop-shadow(0 0 .1rem rgba(0, 0, 0, .5)) !important;
    }

section.main .menu-wrapper .actions .btn.white {
    background-image: url(Icons/btn-round-white.svg);
}

section.main .menu-wrapper .actions .btn .image {
    height: .12rem;
}

section.main .menu-wrapper .actions .btn span {
    margin-top: .05rem;
    padding-left: 0.13rem;
    padding-right: 0.13rem;
    font-weight: 600;
    font-size: 0.11rem;
    line-height: 1em;
    color: #000000;
    text-align: center;
}

section.main .menu-wrapper .actions .btn.control:not(.play):before {
    content: '';
    position: absolute;
    width: 0.06rem;
    height: 0.2rem;
    left: 50%;
    top: 50%;
    margin-left: -0.08rem;
    margin-top: -0.1rem;
    background-color: white;
}

section.main .menu-wrapper .actions .btn.control:not(.play):after {
    content: '';
    position: absolute;
    width: 0.06rem;
    height: 0.2rem;
    left: 50%;
    top: 50%;
    margin-left: 0.03rem;
    margin-top: -0.1rem;
    background-color: white;
}

    section.main .menu-wrapper .actions .btn.control.play:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        left: 50%;
        top: 50%;
        margin-left: -0.06rem;
        margin-top: -0.12rem;
        border-top: 0.12rem solid transparent;
        border-bottom: 0.12rem solid transparent;
        border-left: 0.18rem solid white;
    }

section.main.book-opened .menu-wrapper:not(.menu-active) .logo {
    display: none;
}

section.main .menu-wrapper.soft .logo,
section.main .menu-wrapper.soft .actions > *:not(.rewind):not(.back) {
    display: none;
}

section.main .menu-wrapper .actions .btn.back:not(.active) {
    display: none;
}

section.main .menu-wrapper .actions .btn.control:not(.active) {
    display: none;
}

section.main .menu {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: .42rem;
    padding-bottom: .42rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
}

section.main .menu .top {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
}

section.main .menu .top .name {
    padding-left: .5rem;
    padding-right: .5rem;
    font-weight: 400;
    font-size: 0.24rem;
    line-height: 1.2em;
    color: #ffffff;
}

section.main .menu .top .book-logo img {
    width: 1.8rem;
}

section.main .menu .menu-content {
    position: relative;
    display: block;
    width: 10.14rem;
    height: 6.12rem;
    padding-left: 3.14rem;
    padding-right: 2rem;
    padding-top: 1.36rem;
    padding-bottom: .72rem;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

section.main .menu .menu-content .scroller {
    position: relative;
    max-height: 100%;
    overflow: auto;
}

section.main .menu .menu-content .scroller::-webkit-scrollbar {
    width: 0px;
}

section.main .menu .menu-content .text {
    font-weight: 400;
    font-size: 0.24rem;
    line-height: 1.4em;
    color: #000000;
}

section.main .menu .menu-content .text p + p {
    margin-top: 1.4em;
}

section.main .menu .menu-content .buttons {
    padding-left: .1rem;
}

section.main .menu .menu-content .buttons .btn-default.exit {
    min-width: 1.8rem;
}

section.main .menu .menu-content * + .buttons {
    margin-top: .34rem;
}

section.main .menu .menu-content .buttons > * + * {
    margin-left: .13rem;
}


/* Mark */

section.main .mark {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: .5rem 1rem;
    background-color: white;
    background-image: url(Icons/mark-cover.jpg);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 9;
    clip-path: circle(0 at center);
    -webkit-clip-path: circle(0 at center);
    pointer-events: none;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -o-transition: 1s all ease;
    overflow: auto;
}

section.main .mark.active {
    clip-path: circle(100% at center);
    -webkit-clip-path: circle(100% at center);
    pointer-events: initial;
}

section.main .mark .mark-content {
    font-weight: 400;
    font-size: 0.24rem;
    line-height: 1.3em;
    color: #000000;
}

section.main .mark .mark-content p + p {
    margin-top: 1.3em;
}


/* Landscape */

.landscape {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    background-image: url("Icons/RT-back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
}

.landscape .logo {
    position: absolute;
    width: 1.69rem;
    left: 0;
    top: .52rem;
    z-index: 2;
}

.landscape .content {
    position: relative;
    padding: .5rem;
    
}


/* Logo Boyut */
.landscape .content img {
    width: 7.5rem;
    position: fixed;
    bottom: 1.40rem;
    margin-left: 0.80rem;
    
}

.landscape .content1 img {
    width: 6.50rem;
    position: fixed;
    bottom: 7.50rem;
    margin-left: 0.50rem;
    
}


.landscape .content2 img {
    width: 7.5rem;
    margin-top: 1.10rem;
    
}



.landscape .content * + .text {
    margin-top: .7rem;
}

.landscape .content .text {
    font-weight: 500;
    font-size: .52rem;
    line-height: 1.5em;
    color: white;
}


@keyframes move {
  0%   {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  50%  {
    transform: translateY(-.15rem) scale(1.03);
    -webkit-transform: translateY(-.15rem) scale(1.03);
    -ms-transform: translateY(-.15rem) scale(1.03);
    -moz-transform: translateY(-.15rem) scale(1.03);
    -o-transform: translateY(-.15rem) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}










/* The End */