/* 
    Document   : style
    Created on : 14 Jan, 2014, 2:00:40 PM
    Author     : Aldon
    Description:
        Purpose of the stylesheet follows.

@font-face 
{ 
    font-family: Vincent; 
    src: url('../Fonts/Vincent-Regular.otf'); 
    src: local("Vincent"), url('../Fonts/Vincent-Regular.otf'); 
}
*/
@font-face 
{ 
    font-family: sketch; 
    src: url('../Fonts/Vincent-Regular.otf'); 
    src: local("sketch"), url('../Fonts/Vincent-Regular.otf'); 
} 

root { 
    display: block;
}
/*ScrollBar Design*/
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 0px;
}

::-webkit-scrollbar-button:vertical:increment {
background-color: transparent;
}

::-webkit-scrollbar-track-piece {
background-color: #eee;
-webkit-border-radius: 0px;
}

::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #181818;
}

::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: #637C9D;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 50px;
    background-color: #637C9D;
}
body,html
{
    width:100%;
    min-width:1024px;
    height:auto;
    margin:0px;
    padding:0px;
    background:#fff;
    text-align: center;
}
#container
{
    width:1000px;
    height:630px;
    background: #fff;
    box-shadow: 0px 0px 5px #000;
    position:fixed;
    top:50%;
    text-align: center;
    margin-top:-315px;
    left:50%;
    margin-left:-500px;
    z-index: 6;
}
#exit
{
    width:35px;
    height:35px;
    position: absolute;
    right:5px;
    top:5px;
    border-radius: 50%;
    background:rgb(73,84,129);
    cursor: pointer;
    font-family: arial;
    font-weight: bold;
    line-height: 35px;
    font-size: 1.25em;
    color: #fff;
    z-index:7;
}
#img_container
{
    height:100%;
    width:100%;
    position: absolute;
    background: #333;
    top:0px;
    left:0px;
}
#cover
{
    position: fixed;
    height:0%;
    width:100%;
    z-index:5;
    opacity:0.0;
    background:rgba(0,0,0,0.85);
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out; 
    -o-transition: opacity .5s ease-in-out; 
    -ms-transition: opacity .5s ease-in-out;
}
#container h2
{
    text-shadow: 0px 0px 2px rgb(73,84,129);
    color: rgb(73,84,129);
    font-size: 1.8em;
    text-transform: uppercase;
    font-family: sketch;
    font-weight: 100;
}
#container p
{
    color:#181818;
    text-shadow: 0px 0px 1px #181818;
    width:50%;
    float:left;
    height:25px;
    line-height: 25px;
    margin:25px;
    font-family: arial;
    font-size: 1.25em;
    text-align: left;
    text-indent: 20%;
}
#container input
{
    margin:auto;
    width:200px;
    float:right;
    height:25px;
    margin:25px;
    border:1px solid rgb(73,84,129);
    border-radius:0px;
    box-shadow:none;
    margin-right: 20%;
}
#container textarea
{
    margin:auto;
    float:right;
    width:200px;
    height:70px;
    margin:20px;
    margin-right:20%;
    border:1px solid rgb(73,84,129);
    border-radius:0px;
    padding:0px;
}
#container input[type="button"]
{
    position: absolute;
    bottom:50px;
    height:50px;
    width:200px;
    background: rgb(73,84,129);
    color:#fff;
    text-shadow: 0px 0px 0px transparent;
    margin:0px;
    left:50%;
    margin-left:-100px;
    cursor: pointer;
    box-shadow: 0px 0px 5px #000;
}
#wait
{  
    background:url(../Images/gif/3.gif) no-repeat center center;
    height: 30px;
    width: 30px;
    position: fixed;
    background-size: 100% 100%;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    z-index: 20;
}
.hide
{
    display:none;
}
#headimg
{
    position:relative;
    width:100%;
    height:auto;
    min-width: 1024px;
    border: none;
    background-attachment: fixed;
}
header
{
    width:100%;
    height:auto;
    min-width:1024px;
    z-index: 5;
    box-shadow: 0px 0px 5px #000;
}
header nav
{
    position: fixed;
    top:0px;
    right:0px;
    width:100%;
    min-width:1024px;
    height:50px;
    z-index: 5;
    background: #181818;
    box-shadow: 0px 0px 5px;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
    -ms-transition: background 1s;	
    transition: background 1s;
}
header nav .first
{
    float:left;
    height: 50px;
    width:auto;
    text-align: right;
    color:#333;
    text-shadow: 1px 0px 1px #000;
    line-height: 50px;
    margin-left:100px;
    font-family: calibri;
    font-weight: bold;
    font-size: 1.5em;
}
header nav:hover
{
    background:#282828;
    box-shadow: 0px 0px 5px;
}
header nav:hover ul li a
{
    color:#fff;
}
header nav ul
{
    position: absolute;
    right:0px;
    top:0px;
    margin:0px;
    width:auto;
    height:100%;
    list-style:none;
}
header nav ul li
{
    float:left;
    width:auto;
    height:100%;
    padding-right:20px;
    font-size: .85em;
    font-weight:bold;
    font-family: arial;
    text-transform: uppercase;
}
header nav ul li a
{
    text-decoration: none;
    color:#fff;
    line-height: 50px;
    cursor:pointer;
    height:50px;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -o-transition: color 1s;
    -ms-transition: color 1s;	
    transition: color 1s;
}
header #logo
{
    position: absolute;
    left:0%;
    top:50px;
    height:100%;
    width:100%;
    background:url('../Images/logo.jpg');
    background-size: 200px 200px;
    background-position: 50% 25%;
    background-repeat: no-repeat;
    background-color: #fff;
    opacity: 0;
}
header h1
{
    position: absolute;
    padding:0px;
    font-size: 300%;
    text-align: center;
    font-family: sketch;
    font-weight: 100;
    height:auto;
    top:300px;
    width:100%;
    min-width:1024px;
    text-shadow: 1px 1px 1px #000;   
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out; 
    -o-transition: all 1s ease-in-out; 
    -ms-transition: all 1s ease-in-out; 
}
.dark
{
    color:#181818;
}
.light
{
    color:#bbb;
}
h1
{
    margin:0px;
    text-align: center;
    font-size: 2.75em;
    padding-top:100px;
    font-family: arial;
    text-shadow: 0px 0px 1px #000;
}
.page
{
    min-height: 600px;
}
/*First Div*/
#d_content1
{
    width:100%;
    height:auto;
    margin:auto;
    min-width: 1024px;
    background: #fff;
    border-top:none;
    border-bottom: none;
    overflow:hidden;/*
    background:url('../images/3.jpg');
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: scroll;*/
}
/*Start of Gallery*/
#slider_container{
    overflow:hidden;
    position: absolute;
    left:0px;
    width:100%;
    min-width: 1024px;
    height:325px;
    top:250px;
    background: #000;
    box-shadow:0px 0px 5px #000;
    overflow-y:hidden;
}
#slider{
  position:absolute;
  left:0;
  height:100%;
}
#slider > div {
  position:relative;
  float:left;
  width:500px;
  height:315px;
  margin:0px;
  margin-top:5px;
  margin-left:5px;
  background: #eee;
}
#slider > div img{
  width:100%;
  height:100%;
  border-color:#181818;
  box-shadow: 0px 0px 3px #000;
  cursor:pointer;
  border:none;
}
/* buttons */
#slider_container > span{
  cursor:pointer;
  position:absolute;
  width:100px;
  height:315px;
  margin-top:5px;
  opacity: 1.0;
}
#slider_container > span:nth-child(2n+2)
{
  background:url(../Images/prev.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40% auto;
  background-color: rgba(0,0,0,0.1);
}
#slider_container > span:nth-child(2n+1)
{
  background:url(../Images/next.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40% auto;
  background-color: rgba(0,0,0,0.1);
}
#slider_container > span:hover
{
    background-color: rgba(0,0,0,0.5);
}
#prev
{
    left:0px;
}
#next{
  right:0px;
}
/*End of Gallery*/
.content
{
    max-width: 1500px;
    width:90%;
    margin:auto;
    min-width: 916px;
    padding:5%;
    padding-top:0px;
    padding-bottom:100px;
    line-height: 38px;
    font-family: cambria;
    font-size: 1.3em;
    color:#181818;
    text-shadow: 0px 0px 1px #000;
    height:auto;
}
.content span
{
    font-family: sketch;
    font-size: 0.9em;
    color:rgb(73,84,129);
    text-shadow: 0px 0px 1px rgb(73,84,129);
}
#head
{
    width:100%;
    background:url(../Images/gate1.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto 100%;
    height:500px;
    margin-top: 50px;
    opacity:0;
}
#head1
{
    width:50%;
    padding:25%;
    padding-top:5%;
    padding-bottom:5%;
}
/*Start of Header Transition*/
/*Start of Gallery*/
#slider_container1{
    overflow:hidden;
    position: relative;
    left:0px;
    margin:0px;
    padding:0px;
    padding-top:50px;
    width:100%;
    height:480px;
    background: #fff;
    overflow-y:hidden;
}
#slider1{
  position:absolute;
  left:0;
  height:100%;
}
#slider1 > .transist {
  position:relative;
  float:left;
  width:100%;
  height:100%;
  min-width: 916px;
  margin:0px;
  padding:0px;
  text-align: justify;
}
.transist h1
{
    margin:0px;
    padding:0px;
    margin-bottom: 20px;
    text-shadow: 0px 0px 2px rgb(73,84,129);
    color: rgb(73,84,129);
    font-size: 1.8em;
    text-transform: uppercase;
    font-family: sketch;
    font-weight: 100;
}
#slider_container1 > span{
  cursor:pointer;
  position:absolute;
  width:80px;
  text-transform: uppercase;
  font-family: sketch;
  color:#181818;
  text-shadow: 0px 0px 1px #000;
  height:auto;
  opacity: 1.0;
}
#slider_container1 > span:nth-child(2n+2)
{
}
#slider_container1 > span:nth-child(2n+1)
{
}
#prev1
{
    left:200px;
    bottom:0px;
}
#next1{
    right:200px;
    bottom:0px;
}
/*End of Header Transition*/
#d_content2
{
    width:100%;
    height:auto;
    background: rgb(73,84,129);
    text-align: center;
}
#d_content2 h1, #d_content4 h1
{
    color:#fff;
    text-shadow: 0px 0px 2px #fff;
    text-transform: uppercase;
}
#d_content2 .content
{
    height:auto;
    margin-top:0px;
    text-align: right;
    color:#fff;
    text-shadow: 0px 0px 1px #fff;
    background: rgb(73,84,129);
}
#d_content2 .content .img
{
    margin:auto;
    height:125px;
    padding:1px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 2px 2px 5px #181818;
    width:auto;
}
#client
{
    width:100%;
    height:600px;
    opacity:0;
    margin-top:0px;
    margin-bottom:50px;
    background:url('../Images/client.svg');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
#d_content3
{
    width:100%;
    height:auto;
    background: #fff;
}
#d_content3 h1, #d_content5 h1
{
    color:rgb(73,84,129);
    text-shadow: 0px 0px 2px rgb(73,84,129);
    text-transform: uppercase;
}
#d_content3 .content
{
    margin-top:10px;
    text-align: justify;
}
#d_content3 .content ul
{
    margin-left:0px;
}

#slider_container2{
    overflow:hidden;
    position: relative;
    width:100%;
    height:500px;
    background: transparent;
    overflow-y:hidden;
}
#slider2{
  position:absolute;
  left:0;
  height:100%;
}
#slider2 > div {
  position:relative;
  float:left;
  width:800px;
  height:500px;
  margin:0px;
  background: #fff;
}
#slider2 > div img{
  width:798px;
  height:498px;
  margin:1px;
  cursor:pointer;
  border:none;
}
/* buttons */
#slider_container2 > span{
  cursor:pointer;
  position:absolute;
  width:70px;
  height:500px;
  opacity: 1.0;
}
#slider_container2 > span:nth-child(2n+2)
{
  background:url(../Images/prev.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40% auto;
  background-color: rgba(0,0,0,0.3);
}
#slider_container2 > span:nth-child(2n+1)
{
  background:url(../Images/next.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40% auto;
  background-color: rgba(0,0,0,0.3);
}
#slider_container2 > span:hover
{
    background-color: rgba(0,0,0,0.5);
}
.desc
{
    position:absolute;
    width:100%;
    height:25%;
    bottom:0px;
    left:0px;
    background:rgba(0,0,0,0.5);
    color:rgba(255,255,255,0.85);
    text-shadow:0px 0px 0px transparent;
    text-align: center;
    line-height: 125px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out; 
    -o-transition: all .5s ease-in-out; 
    -ms-transition: all .5s ease-in-out;
}
#slider_container2 div div:hover section
{
    height:0px;
}
#prev2
{
    left:0px;
}
#next2{
  right:0px;
}
#training1
{
    width:40%;
    padding-left:30%;
    padding-right: 30%;
    opacity:0;
    padding-bottom: 5%;
    padding-top:5%;
}
#training2,#training3,#training4
{
    float:left;
    width:25%;
    height:auto;
    border:1px solid #181818;
    box-shadow: -2px 2px 5px #000;
    border-radius: 50%;
    background:  rgb(73,84,129);
}
/*This handles the element rotation*/
.training
{
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out; 
    -o-transition: all 1s ease-in-out; 
    -ms-transition: all 1s ease-in-out;
}
.initial
{
    margin:4%;
}
.initial1
{
    margin-left:-25%;
}
.initial2
{
    margin-left:-25%;
    margin-right:62%;
}
.rotate
{
    -webkit-transform: rotate(0deg); 
    -moz-transform: rotate(0deg); 
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    margin:4%;
}
/*End of Rotation*/

#d_content4
{
    width:100%;
    height:auto;
    background: rgb(73,84,129);
}
#d_content4 .content
{
    margin-top:20px;
    color:#fff;
    text-shadow: 0px 0px 1px #fff;
    text-align:justify;
}
.equipment
{
    width:23%;
    padding:1%;
    height:auto;
    float:left;
    background-color:#fff;
    box-shadow: -2px 2px 5px #000;
    border-radius: 50%;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out; 
    -o-transition: all 1s ease-in-out; 
    -ms-transition: all 1s ease-in-out;
}
#d_content5
{
    width:100%;
    height:auto;
    background: #fff;
}
#d_content5 .content
{
    margin-top:0px;
}
#about
{
    width:60%;
    margin-right:0%;
    margin-left:40%;
    margin-top:5%;
    margin-bottom: 0%;
}
.aboutus
{
    opacity:0;
    float:left;
    margin:10px;
}
#linkref
{
    margin:auto;
}
#imgref
{
    position: absolute;
    height:180px;
    width:180px;
    margin: 0px;
    background:white;
    margin-left: -90px;
    box-shadow: 0px 1px 3px #000;
    padding:10px;
    border-radius:2%;
    margin-bottom: 40px;
}
#icons
{
    width:200px;
    height:600px;
    position: absolute;
    right: 30px;
    margin-top:150px;
}
#map
{
    background:url('../Images/maps.svg');
    background-color: rgb(73,84,129);
    box-shadow: -2px 2px 5px #000;
    border-radius: 50%;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height:180px;
    cursor:pointer;
    width:180px;
}
#contentpic{
    background:url('../Images/map.jpg'); 
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height:100%;
    width:100%;
    cursor:pointer;
    margin:0px;
    box-shadow: 0px 0px 5px #000;
    
}
#facebook
{
    background:url('../Images/facebook.svg');
    background-color: rgb(73,84,129);
    box-shadow: -2px 2px 5px #000;
    border-radius: 50%;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height:180px;
    cursor:pointer;
    width:180px;
}
#contact1
{
    background:url('../Images/contact.svg');
    background-color: rgb(73,84,129);
    box-shadow: -2px 2px 5px #000;
    border-radius: 50%;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height:180px;
    cursor:pointer;
    width:180px;
}


@media only screen and (max-width: 1024px) 
{
#headimg
{
    margin-top:350px;
}
header #logo
{
    position: absolute;
    left:0%;
    top:100px;
    height:250px;
    width:100%;
    background:url('../Images/logo.jpg');
    background-size: auto 80%;
    background-position: 10% 50%;
    background-repeat: no-repeat;
    background-color: #fff;
    opacity: 1.0;
}
header h1
{
    position: absolute;
    padding:0px;
    font-size: 300%;
    text-align: center;
    font-family: sketch;
    font-weight: 100;
    height:auto;
    top:150px;
    left:300px;
    width:70%;
    min-width:720px;
    text-shadow: 1px 1px 1px #000;    
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out; 
    -o-transition: all 1s ease-in-out; 
    -ms-transition: all 1s ease-in-out;
}
.light
{
    color:#181818;
}
#slider1 > .transist {
    text-align: center;
}

#d_content3 .content
{
    margin-top:10px;
    text-align: center;
}
#container
{
    width:1024px;
    height:630px;
    background: #fff;
    box-shadow: 0px 0px 5px #000;
    position:absolute;
    text-align: center;
    left:0px;
    z-index: 6;
    margin:0px;
    padding:0px;
}
#head,#training1,#client
{
    opacity:1.0;
}
#training2,#training3,#training4
{
    width:25%;
}
.initial
{
    margin:4%;
}
.initial1, .initial2
{
    margin:4%;
}


.aboutus
{
    opacity:1;
    left:5%;
}
#about
{
    width:60%;
    margin-right:0%;
    margin-left:40%;
    margin-top:40px;
    margin-bottom: 1%;
}
#icons
{
    margin-top:50px;
    left:5%;
}
#exit
{
    width:100px;
    height:100px;
    position: absolute;
    right:5px;
    top:5px;
    border-radius: 50%;
    background:rgb(73,84,129);
    cursor: pointer;
    font-family: arial;
    font-weight: bold;
    line-height: 100px;
    font-size: 70px;
    color: #fff;
    z-index:7;
}
}