@charset "utf-8";


/* ===================================
     Google Fonts
 ====================================== */

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);


/* ===================================
     Reset and Setup 
 ====================================== */

html,
body {
    height:100%;
    min-height:100%;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:transparent;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Reset Default Margin */
a, abbr, acronym, address, applet, 
big, blockquote, body, caption, 
cite, code, dd, del, dfn, div, dl,
dt, em, fieldset, form, h1, h2, h3,
h4, h5, h6, html, iframe, img, ins, 
kbd, label, legend, li, object, ol, 
p, pre, q, s, samp, section, small, span, 
strike, strong, sub, sup, table, 
tbody, td, tfoot, th, thead, tr, tt, ul, var {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-weight:inherit;
    font-style:inherit;
    font-family:inherit;
    font-size:100%;
    vertical-align:baseline;
}

body {
    font-family:'Montserrat', sans-serif;
    font-size:16px;
    line-height:1.4;
    font-weight:400;
    color:#191919;
    background:#FFFFFF;
    z-index:1;
}

/* Link Setup */
a,
a:active {
    color:#191919;
    text-decoration:none;
}

a:hover,
a:focus {
    cursor:pointer;
    color:#626262;
    text-decoration:none;
}

a:focus {
    outline:none !important;
}

/* Image Setup */
img {
    max-width:100%;
    height:auto;
    line-height:1 !important;
    -webkit-backface-visibility:hidden;
}


/* Video Setup */
video {
    background-size:cover;
    display:table-cell;
    vertical-align:middle;
    width:100%;
}


/* Form Elements Setup */
input,
textarea {
    display:block;
    width:100%;
    max-width:100%;
    padding:8px 15px;
    font-family:'Montserrat', sans-serif;
    font-size:14px;
    letter-spacing:1px;
    color:#191919;
    background-color:transparent;
    border:0;
    border-bottom:2px dashed #626262;
    margin:0 0 30px 0;
    resize:none;
}

input[type="submit"] {
    width:auto;
}

input[type="button"],
input[type="text"],
input[type="email"],
textarea,
input[type="submit"] {
    -webkit-appearance:none;
    border-radius:0;
}

input:focus,
textarea:focus {
    border:0;
    border-bottom:2px solid #191919;
    outline:none;
}

input[type="submit"]:focus {
    border:none !important;
    outline:none;
}

iframe {
    border:0;
}

/* List Setup */
ul {
    list-style:none outside none;
}

ul,
ol,
dl {
    list-style-position:outside;
}

/* Section Setup */
section {
    position:fixed;
    display:block;
    width:100%;
    height:auto;
}

/* SVG Setup */
svg:not(:root) {
    overflow:hidden;
}

/* ===================================
    Typography
====================================== */

/* ======= Style For Heading And Paragraph Tag ======= */
h1,h2,h3,h4 {
    font-weight:inherit;
    line-height:1.2;
}

h1 {
    margin-top:0;
    font-size:3.998em;
}

h2 {
    font-size:2.827em;
}

h3 {
    font-size:1.999em;
}

h4 {
    font-size:1.414em;
}

p {
    margin-bottom:1.3em;
}

small, .copy {
    font-size:1.000em;
}

/* ======= Main Font  ======= */
.main-font {
    font-family:'Montserrat', sans-serif !important;
}

/* ======= Helper Class For Text (Font-weight) ======= */
.font-weight-300 {
    font-weight:300 !important;
}

.font-weight-400 {
    font-weight:400 !important;
}

.font-weight-500 {
    font-weight:500 !important;
}

.font-weight-600 {
    font-weight:600 !important;
}

.font-weight-700 {
    font-weight:700 !important;
}

.italic{
    font-style:italic !important;
}

.no-margin{
    margin: 0 !important;
}
/* ===================================
    Container
====================================== */

/*======= Bootstrap Container ======= */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container:before, .container:after {
    content: " ";
    display: table; 
}

.container:after {
    clear: both; 
}

@media (min-width: 768px) {
     .container {
         width: 732px;
     }
}
 
@media (min-width: 992px) {
     .container {
         width: 952px;
     }
}
 
@media (min-width: 1200px) {
     .container {
         width: 1152px;
     }
}

/* ===================================
    FORMS
====================================== */

/*======= Style For Button ======= */
.btn {
    display:inline-block;
    padding:7px 25px;
    font-size:0.875em;
    font-weight:700;
    color:#FFFFFF;
    text-transform:capitalize;
    background:#191919;
    border:2px solid #191919;
    border-radius:30px 30px;
    -webkit-box-shadow:0 0 10px rgba(51, 60, 78, 0.1);
    -ms-box-shadow:0 0 10px rgba(51, 60, 78, 0.1);
    box-shadow:0 0 10px rgba(51, 60, 78, 0.1);
    -webkit-transition:background 300ms ease,color 300ms ease 00ms;
    -khtml-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -moz-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -ms-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -o-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    transition:background 300ms ease,color 300ms ease 00ms;
}

.btn-dark {
    color:#FFFFFF;
    background:#191919;
    border:2px solid #191919;
}

.btn-light {
    color:#191919;
    background:transparent;
    border:2px solid #191919;
}

/* ======= Style For Button Active, Hover And Focus ======= */
.btn-dark:focus,
.btn-dark:hover,
.btn-dark:active {
    color:#191919;
    background:transparent;
    outline:none;
    -webkit-transition:background 300ms ease,color 300ms ease 00ms;
    -khtml-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -moz-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -ms-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -o-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    transition:background 300ms ease,color 300ms ease 00ms;
}

.btn-light:focus,
.btn-light:hover,
.btn-light:active {
    color:#FFFFFF;
    background:#191919;
    outline:none;
    -webkit-transition:background 300ms ease,color 300ms ease 00ms;
    -khtml-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -moz-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -ms-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    -o-transition:background 300ms ease 00ms,color 300ms ease 00ms;
    transition:background 300ms ease,color 300ms ease 00ms;
}

/* ======= Style For Button Shape ======= */
.btn-rectangle {
    border-radius:0;
}

.btn-rounded-corner {
    border-radius:4px 4px;
}

.btn-rounded-rectangle {
    border-radius:30px 30px;
}

/* ===================================
    Header Section
====================================== */

.header{
    position: fixed;
    display: block;
    width: 100%;
    padding:10px 0;
    z-index: 9999;
    background: #fff;
}

.header .logo-container {
    position: relative;
    display: block;
    line-height: 0;
    margin: 20px 0;
    float: left;
}

.header .logo-container .logo {
    width: 90px;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*==========  Purchase Button ==========*/
.btn-container{
    padding:10px 0;
}
.btn-container {
    float: right;
}

/* ===================================
    Footer Section
====================================== */

.copy {
    position: relative;
    display: block;
    font-size: 0.850em;
    color: #191919;
    text-align: center;
    margin: 10px 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* ===================================
    Content Section
====================================== */
.main_content {
    display: block;
    text-align: center;
}

/* ===================================
  Hero Background, Scene, Layer Setting
====================================== */

/* ======= Style For Background ======= */
.hero-background {
    position:fixed;
    display:block;
    bottom: 0px;
    width: 100%;
    left: 0%;
    top: 0%;
    background:rgba(214, 214, 214, 0.9) no-repeat 50% 100%;
    background-position:center center;
    -ms-background-size:cover;
    background-size:cover;
}

/*==========  Mars Big Image ==========*/
.mars-img{
    width: 1000px;
    height: 400px;
}

/* ======= Style For Scene ======= */
.scene {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/*======= Style For Layer ======= */
.layer {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-backface-visibility:hidden;
    -khtml-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
    -o-backface-visibility:hidden;
    -webkit-transform:translate3d(0, 0, 0);
    -khtml-transform:translate3d(0, 0, 0);
    -moz-transform:translate3d(0, 0, 0);
    -ms-transform:translate3d(0, 0, 0);
    -o-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
}

/*======= Style For Layer Img Scale ======= */
.level-3 img,.level-2 img,.level-1 img {
    -webkit-transform:scale(0.6,0.6);
    -moz-transform:scale(0.6,0.6);
    -ms-transform:scale(0.6,0.6);
    transform:scale(0.6);
}

.level-3,.level-2,.level-1 {
    position:absolute;
    display:block;
}

.level-1{
    -webkit-animation: rotate 10s 0.1s infinite linear;
    -moz-animation: rotate 10s 0.1s infinite linear;
    -ms-animation: rotate 10s 0.1s infinite linear;
    animation: rotate 10s 0.1s infinite linear;
}
.level-2{
    -webkit-animation: rotate 15s 0.1s infinite linear;
    -moz-animation: rotate 15s 0.1s infinite linear;
    -ms-animation: rotate 15s 0.1s infinite linear;
    animation: rotate 15s 0.1s infinite linear;
}
.level-3{
    -webkit-animation: rotate 12s 0.1s infinite linear;
    -moz-animation: rotate 12s 0.1s infinite linear;
    -ms-animation: rotate 12s 0.1s infinite linear;
    animation: rotate 12s 0.1s infinite linear;
}

/*======= Object Positioning For Level-1 ======= */
.level-1.object-1 {
    right:410px;
    bottom:130px;
}
.level-1.object-2 {
    left:380px;
    top:100px;
}
.level-1.object-3 {
    left:70px;
    bottom:120px;
}
.level-1.object-4 {
    left:-20px;
    bottom:-80px;
}

/*======= Object Positioning For Level-2 ======= */

.level-2.object-1 {
    right:100px;
    bottom:10px;
}
.level-2.object-2 {
    right:210px;
    top:-100px;
}
.level-2.object-3 {
    right:200px;
    top:220px;
}

/*======= Object Positioning For Level-3 ======= */
.level-3.object-1 {
    left:300px;
    bottom:-80px;
}
.level-3.object-2 {
    left:-210px;
    top:0;
}
.level-3.object-3 {
    right:-120px;
    top:50%;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
}

/* ===================================
    Body Setting
====================================== */

.demo-wrapper .demo-title {
    margin-top: 150px;
    font-weight: 300;
    color: #000;
    position: relative;
}


.demo-wrapper .demo-title.bottom-margin {
    margin-bottom: 80px;
}

.demo-wrapper .demo-title p {
    font-size: 17px;
}


.demo-wrapper .demo-hold {
    margin-top: 55px;
    margin-bottom: 35px;
    position: relative;
}

.demo-wrapper .demo-hold .img-wrapper {
    width: 100%;
    margin-bottom: 40px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    color: #262626;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    position: relative;
    float: left;
}

.demo-wrapper .demo-hold .img-wrapper .demo-image {
    width: 100%;
    height: auto;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.demo-wrapper .demo-hold .img-wrapper:hover .demo-image{
    -webkit-box-shadow: 0px 0px 20px rgba(102,102,102,0.80);
    -moz-box-shadow: 0px 0px 20px rgba(102,102,102,0.80);
    -ms-box-shadow: 0px 0px 20px rgba(102,102,102,0.80);
    box-shadow: 0px 0px 20px rgba(102,102,102,0.80);
}

.demo-wrapper .demo-hold .img-wrapper h3 {
    font-size: 1.000em;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 0px;
    -webkit-transition-duration: 0.35s;
    -moz-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

.demo-wrapper .demo-hold .img-wrapper p {
    font-size: 14px;
    color: #808080;
}


.demo-wrapper .badge {
    width: 50px;
    height: 50px;
    background: #fff;
    text-transform: uppercase;
    border-radius: 50%;
    right: 0px;
    line-height: 45px;
    margin-top: -15px;
    position: absolute;
    z-index: 1;
    cursor: default;
}

/* ===================================
    Responsive Media Query // Non-Mobile First Method
====================================== */

/*==========  Extra Large Desktop ==========*/

@media only screen and (min-width:1920px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 10.750em;
    }   
    .error-sub-text {
        font-size: 2.000em;
    }
}


/*==========  Extra Large Desktop ==========*/

@media only screen and (min-width:1400px) and (max-width:1919px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 9.750em;
    }   
    .error-sub-text {
        font-size: 1.750em;
    }
}


/*==========  Desktop And Tablet ==========*/

@media (min-width:1024px) and (max-width:1199px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 8.500em;
    }   
}


/*==========  Mobile And Tablet  ==========*/
@media (min-width:992px) and (max-width:1023px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 8.250em;
    }

}

/*==========  Mobile And Tablet  ==========*/
@media (min-width:768px) and (max-width:991px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 8.250em;
    }   
    .error-sub-text {
        font-size: 0.800em;
    }
}

/*==========  Mobile  ==========*/

@media (min-width:640px) and (max-width:767px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 6.000em;
    } 
    .error-sub-text {
        font-size: 0.800em;
    }
}


 @media (min-width:480px) and (max-width:639px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 4.750em;
    }   
    .error-sub-text {
        font-size: 0.750em;
    }
 }


/*==========  Mobile  ==========*/

@media (min-width:360px) and (max-width:479px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 4.500em;
    }   
    .error-sub-text {
        font-size: 0.500em;
    }
}

/*==========  Mobile  ==========*/

@media (min-width:320px) and (max-width:359px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 4.500em;
    }   
    .error-sub-text {
        font-size: 0.500em;
    }
}

@media (max-width:319px) {

/* ===================================
    Content Section
====================================== */
    .error-big-text {
        font-size: 3.500em;
    }   
    .error-sub-text {
        font-size: 0.500em;
    }
}

/*==========  Mobile And Tablet  ==========*/

/* IF Screen height Smaller 500px Then this Query apply */
@media (max-height:500px) {


}
