/* ==================================================
Item:   Rediso - Creative Under Construction Template
Author: igdepe
Email:  igp.ekasuryawan@gmail.com
--------------------------------|

/* ==================================================
Color Codes and fonts typography
--------------------------------|

Softorange : #FFB122;
White : #ffffff;
Lesswhite : #aaaaaa;
Dark : #2A2C2B;

--------------------------------|

font-family: 'Poppins', sans-serif;
font-family: 'Roboto', serif;

--------------------------------|

/* ==================================================
Table of content
--------------------------------|

1. General Style
2. Helper Class
3. Loader Style
4. Timer Style
5. Form Subscriber
6. Form Contact
7. Main 1 Content Wrapper
8. Main 2 Content Wrapper
9. Responsive Part

----------------------------------*/

/*  ==========================================================================
1.  General Style
    -------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,600,700|Roboto');
*{
    padding: 0;
    margin: 0;
}
html,
body{
    width: 100%;
    height: 100%;
}
body{
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #555;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing:antialiased;
    color: #282828;
}
h1{
    font-size: 50px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -0.04em;
}
h2{
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    color: #303133;
    letter-spacing: -0.01em;
}
h3{
    font-size: 17px;
}
h4{
    font-size: 15px;
}
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
img{
    border: none;
    outline:none;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
p, li, a, span{
    letter-spacing: 1px;
}
p{
    font-size: 14px;
    margin-bottom: 15px;
}
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #ddd !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #ddd !important;  
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #ddd !important;  
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{  
   color: #ddd !important;  
}
button{
    border: none;
}

/*  ==========================================================================
2.  Helper Class
    -------------------------------- */
.padding{
    padding: 80px 0;
}
.no-padding{
    padding: 0;
}
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.fz-28{ font-size: 28px; }
.fz-24{ font-size: 24px; }
.fz-22{ font-size: 22px; }
.fz-20{ font-size: 20px; }
.fz-18{ font-size: 18px; }
.text-black{
    color: #282828;
}
.text-white{
    color: #ffffff;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.align-center{
    text-align: center;
}
.fl-right{
    float: right;
}
.fl-left{
    float: left;
}
.display-table{
    width: 100%;
    height: 100%;
    display: table;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
}
.overlay{
    width: 100%;
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.wraplogo{
    margin-bottom:100px;
    margin-top: 40px;
}

/*  ==========================================================================
3.  Loader Style
    -------------------------------- */
.cs-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: #2A2C2B;
}

.cs-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: calc(100% - 200px);
  color: #FFF;
  padding: 0 100px;
  text-align: center;
}

.cs-loader-inner label {
  font-size: 20px;
  opacity: 0;
  display:inline-block;
}

.cs-loader-inner label .circle {
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #ffffff;
}

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    transform: translateX(0px);
  }
  66% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@-webkit-keyframes lol {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}

.cs-loader-inner label:nth-child(6) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
  -webkit-animation: lol 3s 100ms infinite ease-in-out;
  animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
  -webkit-animation: lol 3s 200ms infinite ease-in-out;
  animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
  -webkit-animation: lol 3s 300ms infinite ease-in-out;
  animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
  -webkit-animation: lol 3s 400ms infinite ease-in-out;
  animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
  -webkit-animation: lol 3s 500ms infinite ease-in-out;
  animation: lol 3s 500ms infinite ease-in-out;
}

/*  ==========================================================================
4.  Timer Style
    -------------------------------- */
.timer{
    margin-bottom:40px;
}
.timer .box{
    border:3px solid #fff;
    display: inline-block;
    margin:20px;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.timer label.dinamic{
    line-height: 70px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: block;
    color:#fff;
    font-size: 50px;
    margin-top: 36px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.timer label.static{
    font-size: 25px;
    display: block;
    position: relative;
    left: 23px;
    bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color:#aaaaaa;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

/*  ==========================================================================
5.  Form Subscriber
    -------------------------------- */
.wrapform{
    margin:100px 0 0 0;
}
.wrapform p{
    margin:40px 0 0 0;
    padding: 0 0 20px;
    color:#aaaaaa;
}
.wrapform p.textform{
    margin:0;
    padding:0 0 10px;
    color:#fff;
    font-size: 18px;
}
.wrapform p.notifsubscribe{
    margin:0;
    color:yellow;
}
.wrapform p.notifsubscribe label{
    margin:0;
    color:#4CAF50;
}
.wrapform form input[type=email]{
    height: 40px;
    width: 280px;
    outline: 0;
    border:none;
    padding:0 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.wrapform form input[type=submit]{
    height: 40px;
    outline: 0;
    background: #ffb122;
    border:none;
    padding:0 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.wrapform form input[type=submit]:hover{
    background: #b07b19;
    color:#fff;
}
.wrapform form input::-webkit-input-placeholder {
    color: #666!important;
}
.wrapform form input:-ms-input-placeholder {
    color: #666!important;
}
.wrapform form input::-moz-placeholder {
    color: #666!important;
}

/*  ==========================================================================
6.  Form Contact
    -------------------------------- */
.contact{
    position: absolute;
    overflow: hidden;
    z-index: 9999;
    width: 100%;
    height: 100%;
    min-height: 868px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(163, 148, 126, 0.9);
    transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    opacity:0;
    
}
.opencontact{
    transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    opacity:1;   
}
.contact p.notif{
    display: none;
    background: yellow;
    padding: 2px;
    text-align: center;
}
.contact p.notif label{
    background: #4CAF50;
    padding: 2px;
    text-align: center;
    color:#fff;
}
.contact .close{
    position: absolute;
    z-index: 9999;
    right:20px;
    top:20px;
}
.contact .close a{
    display: block;
    width: 50px;
    height: 50px;
}
.contact .close a .bar{
    position: relative;
    top: 20px;
    width: 50px;
    height: 2px;
    background: #fff;
    transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -o-transform:rotate(45deg);
}
.contact .close a .bar:last-child{
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
}
.contact .wrapformcontact {
    width: 500px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 20%;
}
.contact .wrapformcontact h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color:#fff;
    margin:0 0 30px;
    color:#c4c4c4;
    font-size: 35px;
}
.contact .wrapformcontact form label{
    display: block;
    color:#fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.contact .wrapformcontact form input{
    width: 100%;
    height: 40px;
    margin-bottom:20px;
    border:none;
    padding:0 10px;
    outline: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.contact .wrapformcontact form textarea{
    width: 100%;
    height: 100px;
    margin-bottom:20px;
    border:none;
    padding:10px;
    outline: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.contact .wrapformcontact form{
    overflow: hidden;
}
.contact .wrapformcontact form input[type=submit]{
    width: 100%;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding:15px 20px;
    border:none;
    background: #664e2a;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
}
.contact .wrapformcontact form input[type=submit]:hover{
    background: #3d2f1a;
}
.hidenow{
    transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    opacity:0;
}

/*  ==========================================================================
7.  Main 1 Content Wrapper
    -------------------------------- */
.main_section {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}
p#typed1{
    font-size: 50px;
    color:#fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 40px;
}
.height-100{ 
    min-height: 100%; 
}
.main1{
    background-image: url(../img/image2.jpg);
    min-height: 100%;
    position: absolute;
}
.main1 .main_content h1{
    color: #ffffff;
    margin: 0 0 10px;
}
.main1 .social_links{}
.main1 .social_links li{
    display: inline-block;
}
.main1 .social_links li a{
    background-color: #ffffff;
    display: inline-block;
    font-size: 16px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    color: #282828;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.main1 .social_links li a:hover{
    color: #fff;
    background-color: #333;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/*  ==========================================================================
8.  Main 2 Content Wrapper
    -------------------------------- */
.main2{
    background-image: none;
    height: 100%;
    position: absolute;
}
.main2 .bx-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    height: 100%;
}
.main2 .bx-wrapper{
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}
.main2 .bx-wrapper .bx-viewport,
.main2 ul.bxslider{
    height: 100%;
}
.main2 .bx-wrapper .bx-viewport{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    left: 0;
}
.main2 ul.bxslider li{
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    height: 100%;
}
.main3{
    background-image: url(../img/image1.jpg);
    position:fixed ;
    overflow: auto;
    top:0;
    z-index:8888;
    width:100%;
    height:100%;
    background-size: calc(100% + 50px);
    -webkit-background-size: calc(100% + 50px);
    -moz-background-size: calc(100% + 50px);
    -ms-background-size: calc(100% + 50px);
    -o-background-size: calc(100% + 50px);
}

/*  ==========================================================================
9.  Responsive Part
    -------------------------------- */
@media only screen and (max-width: 1440px){
    .wraplogo {
        margin-bottom: 30px;
        margin-top:30px;
    }
    .wrapform{
        margin:40px 0 0 0;
    }
    p#typed1{
        font-size: 30px;
    }
    .contact {
    	position: fixed;
	}
	.contact .wrapformcontact {
	    top: 10%;
	}
	.main2 .bx-wrapper {
	    min-height: 120%;
	}
	.main3{
	    overflow: scroll;
	    overflow-x: hidden;
	}
}
@media only screen and (max-width: 1280px){
    .timer .box {
        margin: 15px;
        width: 120px;
        height: 120px;
    }
    .timer label.dinamic {
        font-size: 40px;
        margin-top: 26px;
    }
    .timer label.static {
        font-size: 18px;
        left: 28px;
    }
    .bx-viewport{
    	height: 100% !important;
    }

}
@media only screen and (max-width: 620px){
    .main1 {
        height: auto;
    }
    .main3 {
    	height: 100%;
    }
    .align-center {
        padding: 0 40px;
    }
    .wrapform form input[type=email]{
        width: 280px;
        text-align: center;
        margin-bottom: 10px;
    }
    .wrapform form input[type=submit]{
        width: 300px;
    }
    #contact .wrapformcontact {
        width: 90%;
        top: 20%;
    }
    #contact .wrapformcontact h1 {
        font-size: 38px;
    }
}
@media only screen and (max-width: 520px){
    .align-center {
        padding: 0;
    }
    .main3{
	    overflow: auto;
	    position: relative;
	}
}
@media only screen and (max-width: 380px){
    .timer .box {
        margin: 10px;
        width: 100px;
        height: 100px;
    }
    .timer label.dinamic {
        margin-top: 17px;
    }
    .timer label.static {
        font-size: 16px;
        left: 18px;
        bottom: 30px;
    }
    p#typed1{
        font-size: 22px;
    }
    .wrapform p.textform {
        margin: 0;
    }
    .wrapform {
        margin: 50px 0 0 0;
    }
    .wrapform p {
        margin: 50px 0 0 0;
    }
}