﻿.silderbody {
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
}

html {
    line-height: 1.15; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overscroll-behavior-y: contain;
    touch-action: none; /*This allow touch move on Microsoft EDGE */
}

.slider_body {
    overflow: hidden;
}

.body_for_pages.slider_for_pages {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 500ms ease-in-out;
    transition: -webkit-transform 500ms ease-in-out;
    -o-transition: transform 500ms ease-in-out;
    transition: transform 500ms ease-in-out;
}

.page.slider_page {
    height: 100%;
    width: 100%;
}

.page_container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    animation: showContent 1.5s;
}

.changing_bottom_text.slider_for_bottom {
    position: absolute;
    -webkit-transform: translate(50%,-50%) rotate(0deg);
    transform: translate(50%,-50%) rotate(0deg);
    bottom: 0px;
    z-index: 1;
    animation: showContent 1.5s;
    padding-bottom: 45px;
    width: 350px;
    right: 22.5%;
}

.bottom_text {
    display: inline-block;
    position: absolute;
    letter-spacing: .3em;
    font-family: DINNextLTPro,sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    /*   width: 94%;
    padding-left: 3%;
    padding-right: 3%; */
    width: 100%;
    opacity: 0;
    text-align: center;
    animation: hideContent 2.0s;
}

.bottom_text--active {
    opacity: 1;
    animation: showContent 2.0s;
}

#bottom-text-2 {
    text-align: center;
}

#bottom-text-3 {
    text-align: center;
}

/*NEXT BUTTON*/
.next_button {
    font-size: 60px;
    display: inline;
    position: absolute;
    top: 50%;
    right: 30px;
    cursor: pointer;
    margin-top: -35px;
}
/*PREVIOUS BUTTON*/
.previous_button {
    font-size: 60px;
    display: inline;
    position: absolute;
    top: 50%;
    left: 30px;
    cursor: pointer;
    margin-top: -35px;
}

/*CUSTOMIZE EVERY PAGE LAYOUT WHEN PAGE IS SHOW OR HIDDEN*/

/*PAGE-0 not exisist but this can add background color on body*/
.page_0_color {
    background: rgb(82, 89, 103);
}
/*PAGE-1 LAYOUT*/
.page_1_color {
    /*background: rgb(237, 240, 246);*/
}

#page-1 {
    transition: transform 500ms ease-in-out;
}

.page_1--active {
}
/*PAGE-2 LAYOUT*/
.page_2_color {
    /*background: rgb(82, 89, 103);*/
}

#page-2 {
    transition: transform 500ms ease-in-out;
}

.page_2--active {
    transition: transform 500ms ease-in-out;
}
/*PAGE-3 LAYOUT*/
.page_3_color {
    /*background: rgb(237, 240, 246);*/
}

#page-3 {
    transition: transform 500ms ease-in-out;
}

.page_3--active {
    transition: transform 500ms ease-in-out;
}
/*PAGE-4 LAYOUT*/
.page_4_color {
    /*background: rgb(82, 89, 103);*/
}

#page-4 {
    transition: transform 500ms ease-in-out;
}

.page_4--active {
    transition: transform 500ms ease-in-out;
}
/*PAGE-5 LAYOUT*/
.page_5_color {
    /*background: rgb(237, 240, 246);*/
}

#page-5 {
    transition: transform 500ms ease-in-out;
}

.page_5--active {
    transition: transform 500ms ease-in-out;
}

.menu_area {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .3em;
    position: absolute;
    -webkit-transform: translate(50%,-50%) rotate(0deg);
    transform: translate(50%,-50%) rotate(0deg);
    top: 30px;
    right: 22.5%;
    color: #fff;
    font-family: DINNextLTPro,sans-serif;
    z-index: 1;
    width: 450px;
    text-align: center;
    animation: showContent 1.5s;
    transition: all .5s linear;
    /*turn menu right side of screen 
	right: 30px;
	top: 50%;
	-webkit-transform: translate(50%,-50%) rotate(90deg);
	transform: translate(50%,-50%) rotate(90deg);*/
}

@keyframes slidePageRtoL {
    0% {
        transform: translate3d(100%, 0%, 0px);
    }

    100% {
        transform: translate3d(0%, 0%, 0px);
    }
}

@keyframes showContent {
    0% {
        opacity: 0.0;
    }

    30% {
        opacity: 0.0;
    }

    40% {
        opacity: 0.1;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes hideContent {
    100% {
        display: none !important;
        opacity: 0.0;
    }

    40% {
        opacity: 0.0;
    }

    30% {
        opacity: 0.1;
    }

    0% {
        opacity: 1.0;
    }
}

@keyframes show50to100Content {
    0% {
        opacity: 0.6;
    }

    25% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.8;
    }

    75% {
        opacity: 0.9;
    }

    100% {
        opacity: 1.0;
    }
}

.slider_indicator {
    z-index: 10;
    padding: 8px;
    cursor: pointer;
    opacity: 0.5;
}

.slider_indicator--active {
    opacity: 1.0;
    font-weight: 500;
}

.slider_indicator:hover {
    opacity: 1;
    /*animation: show50to100Content 0.8s;*/
}

.separator {
    opacity: 0.5;
}

/*STYLE FOR SITEBAR/INDICATORS WHEN SPECIFIC PAGE IS ACTIVE*/
/*When PAGE-1 is active*/
.active_page_1 {
}
/*When PAGE-2 is active*/
.active_page_2 {
    color: #fff;
}
/*When PAGE-3 is active*/
.active_page_3 {
}
/*When PAGE-4 is active*/
.active_page_4 {
    color: #fff;
}
/*When PAGE-5 is active*/
.active_page_5 {
}

/*CUSTOMIZE EVERY INDICATOR BUTTON STYLE SEPARATELY*/
/*Menu Button 1*/
#slide-1 {
}
/*Menu Button 2*/
#slide-2 {
}
/*Menu Button 3*/
#slide-3 {
}
/*Menu Button 4*/
#slide-4 {
}
/*Menu Button 5*/
#slide-5 {
}

/* STYLES FOR MOBILE AND CUSTOM RESOLUTE DEVICES*/
/* mobile phone horizontal*/
@media all and (max-height: 480px) {
    .menu_area {
        -webkit-transform: translate(50%,-50%) rotate(0deg);
        transform: translate(50%,-50%) rotate(0deg);
        top: 30px;
        right: 50%;
        /*font-size: 10px;
		letter-spacing: .1em;
		font-weight: 400;
		padding: 4px;
		width: 250px;*/
    }
}

@media all and (max-height: 480px) {
    .slider_indicator {
        /*padding: 4px;*/
    }
}
/* mobile phone vertical*/
@media all and (max-width: 480px) {
    /*NEXT BUTTON*/
    .next_button {
        display: none;
    }
    /*PREVIOUS BUTTON*/
    .previous_button {
        display: none;
    }
}
