/*-----------------------------------    1 ) Font Import From Google Fonts   -----------------------------------*/

@import url(http://fonts.googleapis.com/css?family=Hind:300,500);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic);

/*----------------------   2 ) Preloader Styles  ----------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1b23;
    z-index: 10000;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -moz-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -o-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
    -webkit-animation: loader 1.2s infinite ease-in-out;
    animation: loader 1.2s infinite ease-in-out;
}

.loader span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    background-color: #00B796;
    -webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
    animation: loaderBlock 1.2s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    top: 0;
    left: 0;
}

.loader span:nth-child(2) {
    top: 0;
    right: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(3) {
    bottom: 0;
    left: 0;
    -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
    animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(4) {
    bottom: 0;
    right: 0;
}

@-webkit-keyframes loader {
    0%, 10%, 100% {
        width: 40px;
        height: 40px;
    }
    65% {
        width: 80px;
        height: 80px;
    }
} 

@-webkit-keyframes loaderBlock {
    0%, 30% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes loaderBlockInverse {
    0%, 20% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes loader {
    0%, 10%, 100% {
        width: 40px;
        height: 40px;
    }
    65% {
        width: 80px;
        height: 80px;
    }
}

@keyframes loaderBlock {
    0%, 30% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loaderBlockInverse {
    
    0%, 20% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    55% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

/*-------------------  3 ) General Rulas  -------------------*/

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #343333;
}

html,
body,
textarea,
button,
input {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Hind', sans-serif;
}

p {
    font-size: 14px;
    line-height: 1.42;
}

h1 {
    font-size: 63px;
    font-weight: 500;
}

h2 {
    font-size: 36px;
    font-weight: 500;
}

h2.small-heading {
    padding: 60px 0 20px 0;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

body {
    overflow-x: hidden;
}



/*---------------------  4 ) Homepage Styles  ---------------------*/

/* ( a ) Homepage */

.home-page {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* ( b ) Introduction Section */

.introduction {
    float: left;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.introduction img {
    position: absolute;
    top: 0;
    left: 0;
}

.mask {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    background: #1a1b23;
}
.mask_intro {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}

.intro-content {
    position: relative;
    z-index: 10;
    top: 50%;
    opacity: 0.9;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.intro-content h1 {
    color: #fff;
    text-align: center;
}

.intro-content h1 span,
.main-heading h1 span {
    color: #00B796;
}

.intro-content h2 {
    color: #fff;
    text-decoration: underline;
    text-align: center;
    font-weight: 300;
    font-size: 30px;
}

.social-media {
    font-size: 25px;
    text-align: center;
    margin-top: 50px;
}

.social-media a {
    color: #fff;
    text-decoration: none;
    outline: 0 none;
    padding: 0 10px;
}

.social-media a + .tooltip > .tooltip-inner {
    background-color: transparent;
    color: #00B796;
    font-size: 16px;
}
.social-media a + .tooltip > .tooltip-arrow {
    border-bottom-color: transparent;
}

/*Bootstrap tooltips Customized*/

.social-media a:hover {
    color: #00B796;
}

/* ( c ) Navigation Menu */

.menu {
    float: left;
    padding: 0;
    position: relative;
}

.menu > div {
    width: 100%;
    /*height: 25%;*/
    /*height: 16.666%;*/
    /*height: 14.285%;*/
    height: 12.50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.menu > div > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 1s linear;
    -moz-transition: -moz-transform 1s linear;
    -ms-transition: -ms-transform 1s linear;
    -o-transition: -o-transform 1s linear;
    transition: transform 1s linear;
}

.menu > div:hover > img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.heading {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.heading i {
    background: rgba(256, 256, 256, 0.2);
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 25px;
    height: 60px;
    line-height: 60px;
    margin: auto auto 10px;
    text-align: center;
    box-shadow: 0 0 0 0 rgba(256, 256, 256, 0.2);
    width: 60px;
    -webkir-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu > div:hover .heading i {
    box-shadow: 0 0 0 50px rgba(256, 256, 256, 0);
}

.heading h2 {
    color: #fff;
    margin: 0;
    font-size: 25px;
    opacity: 0.9;
    margin-top: 10px;
}

.heading h2 span {
    color: #00B796;
}

.heading h2:hover{
/*    text-decoration: #00B796 underline;*/
    border-bottom: 3px solid #00B796;
    display: inline-block;    
}

.heading h3 {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
    font-weight: 300;
}


/*------------------ 5 ) Close Button  ------------------*/

.close-btn {
    background: url(/assets/images/land/close.png);
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 3%;
    top: 30px;
    background-size: cover;
}
.company-logo {
    background: url(/assets/images/land/ZPCL_LogoOriginal_092218.jpg);
    z-index: 1000;
    cursor: pointer;
    width: 40%;
    height: 40%;
    position: fixed;
    left: 3%;
    top: 30px;
    background-size: cover;
}

/*------------  6 ) General Rules for Content Pages Fixed Image  -------------------------*/
.masters-page,
.materials-page,
.sales-dist-page,
.logistics-page,
.misc-page,
.accounts-page,
.plant-page,
.attendance-page{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.image-container {
    height: 100vh;
    position: fixed;
    padding: 0;
    overflow: hidden;
}

.main-heading {
    position: relative;
    top: 50%;
    padding-left: 50px;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
}

.main-heading h1 {
    color: #fff;
    position: relative;
    text-align: left;
        
    border-bottom: 6px solid #00B796;
    display: inline-block;    
}

/*.main-heading h1:after {
    background-color: #00B796;
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 400px;
    height: 6px;
}*/



.content-container {
    /*left: 41.666%;*/
    left: 50%;
    position: relative;
    padding: 0;
    padding-top: 10px;
    background: #f5f5f5;
   /* height: 100vh; */
}


/* WBridge Section */
.wbridge-page .image-container {
    background: url(/assets/images/land/weighbridge.jpg);
    background-size: cover;
    background-position: bottom;
}

/* store Section */
.store-page .image-container {
    background: url(/assets/images/land/mainstores.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Transport Section */
.transport-page .image-container {
    background: url(/assets/images/land/transport.jpg);
    background-size: cover;
    background-position: bottom;
}

/* GPSTracker Section */
.gpstrack-page .image-container {
    background: url(/assets/images/land/gpstracker.jpg);
    background-size: cover;
    background-position: bottom;
}


/* Masters Section */
.masters-page .image-container {
    background: url(/assets/images/land/weighbridge.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Material Section */
.materials-page .image-container {
    background: url(/assets/images/land/mainstores.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Sales & Distribution Section */
.sales-dist-page .image-container {
    background: url(/assets/images/land/mainstores.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Logistics Section */
.logistics-page .image-container {
    background: url(/assets/images/land/mainstores.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Accounts Section */
.accounts-page .image-container {
    background: url(/assets/images/land/accounts.jpg);
    background-size: cover;
    background-position: bottom;
}

/*  Miscellaneous Section */
.misc-page .image-container {
    background: url(/assets/images/land_2/accounts.jpg);
    background-size: cover;
    background-position: bottom;
}

/*  Plant Section */
.plant-page .image-container {
    background: url(/assets/images/land_2/zpcl_cover.jpg);
    background-size: cover;
    background-position: bottom;
}

/* Attendance Section */
.attendance-page .image-container {
    background: url(/assets/images/land/attendance.jpg);
    background-size: cover;
    background-position: bottom;
}


/*------------- 11 ) Footer  -------------*/

.footer {
    background: #00B796;
    padding: 10px 20px 6px 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    float: left;
}
.footer p {
    line-height: 1;
    color: #fff;
    float: right;
    margin: 0;
}