@import url(http://fonts.googleapis.com/css?family=Dancing+Script);
/*font-family: 'Dancing Script', cursive;*/
/*@import url(http://fonts.googleapis.com/css?family=Marck+Script);*/
/*font-family: 'Marck Script', cursive;*/
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700);*/
/*font-family: 'Open Sans Condensed', sans-serif;*/
@import url(http://fonts.googleapis.com/css?family=Cabin+Condensed:400,700);
/*font-family: 'Cabin Condensed', sans-serif;*/
@import url(http://fonts.googleapis.com/css?family=Oswald);
/*font-family: 'Oswald', sans-serif;*/

/* Global */
html, body, .view-container, .view-frame { 
    margin: 0;
    padding: 0;
    position: absolute !important;
    width: 100%;
    min-height: 100%;
    font-family: 'Cabin Condensed', sans-serif;
}
a:focus, a:active, 
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: 0;
    outline : 0;
}
h3{
    font-size: 20px;
}
.title{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}
.button{
    padding: 5px;
    border-radius: 3px;
}
.center{
    text-align: center;
}
.error{
    color: red;
}
.working{
    color: #0c83e7;
}
.success{
    color: #3cb774;
}
.fa-spin {
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
.navigation{
    position: absolute;
    top: -50px;
    left: -80px;
    z-index: 1000;
}
.navigation a{
    text-decoration: none;
}
.navigation .head{
    display: none;
}
#left{
    display: inline-block;
    position: absolute;
    margin-top: 300px;
    width: 340px;
    //min-height: 100px;
    padding-left: 30px;
}
#right{
    padding: 30px 30px 30px 400px;
}
@media screen and (max-width: 1070px){
    .navigation{
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        background: hsl(257, 22%, 42%);
        overflow: hidden;
    }
    .navigation .head{
        display: block;
        height: 110px;
    }
    .navigation .head .logo{
        text-align: center;
        margin: 0;
        height: 60px;
        padding-top: 10px;
        background: hsl(257, 29%, 60%);
    }
    .navigation .head .logo a{
        color: rgb(214, 214, 214);
    }
    .navigation .ham{
        display: block;
        width: 50px;
        height: 40px;
        background: rgb(214, 214, 214);
        margin: 5px;
        float: right;
        text-align: center;
        border-radius: 5px;
    }
    .navigation .ham span{
        width: 36px;
        height: 36px;
        color: hsl(257, 22%, 42%);;
    }
    .navigation .honeycomb, .navigation .honeycomb .home{
        display: none;
    }
    .navigation .honeycomb .lighter{
        background-color: hsl(257, 22%, 66%);
    }
    .navigation .honeycomb h2, .navigation .honeycomb h3, .navigation .honeycomb span{
        //border-bottom: 2px hsl(257, 29%, 60%) solid;
        margin: 0;
        padding: 10px 0;
        font-size: 24px;
        padding-left: 20px;
        color: rgb(214, 214, 214);
    }
    .navigation .honeycomb h3{
        border-top: 2px hsl(257, 29%, 60%) solid;
    }
    #left{
        display: inline-block;
        margin-top: 130px;
        width: 100%;
        min-height: 0px;
        padding-left: 0;
        text-align: center;
        position: relative;
    }
    #right{
        padding: 10px;
    }
}

/* HOMEPAGE */
.homepageBg{
    position: absolute;
    width:100%;
    height:100%;
    background: url('/img/homepage-bg.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.home .top-corner{
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 270px 0 0 30px;
    color: #FFF;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.home .corner{
    position: absolute;
    bottom: 50px;
    right: 80px;
    width: 50px;
}
.home .corner a{
    text-decoration: none;
    color: #333;
}
.home .corner>div{
    background-color: yellow;
    display: block;
    padding: 6px 0px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 6px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    height: 40px;
    width: 50px;
    -webkit-transition: width 2s; /* For Safari 3.1 to 6.0 */
    transition: width 2s;
    overflow: hidden;
    float: right;
}
.home .corner .email{
    background: rgb(255, 102, 0);
}
.home .corner .phone{
    margin-bottom: 5px;
}
.home .corner>div .val{
    display: none;
    width: 240PX;
}
.home .corner>div .icon{
    display: inline-block;
}
.home .corner>div:hover{
    width: 240px;
}
.home .corner>div:hover .icon{
    display: none;
}
.home .corner>div:hover .val{
    display: inline-block;
}
@media screen and (max-width: 1070px){
    .home .top-corner{
        display: none;
    }
    .home .corner{
        width: 100%;
        right: 0;
        left: 0;
        padding: 0 20%;
    }
    .home .corner>div{
        width: 44%;
        margin: 0 3%;
        display: inline-block;
        float: left;
    }
    .home .corner>div .val{
        display: inline-block;
    }
    .home .corner>div .icon{
        display: none;
    }
    .home .corner>div:hover{
        width: 44%;
    }
}
@media screen and (max-width: 870px){
    .home .corner{
        bottom: 10px;
    }
    .home .corner>div{
        width: 100%;
        margin: 0 0 10px 0;
    }
    .home .corner>div:hover{
        width: 100%;
    }
}
@media screen and (max-width: 390px){
    .home .corner{
        width: 100%;
        right: 0;
        left: 0;
        padding: 0 10px;
    }
}

/* Projects List*/
.view-frame.projectsList{
    background: #fff;
}
.projectsList #left>div{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.projectsList #left input {
    width: 90%;
    border-radius: 3px;
    text-transform: none;
}
.projectsList #left select{
    width: 70%;
    border-radius: 3px;
}
.projectsList .projects {
  list-style: none;
}
.projectsList .projects .thumbnail{
    display: inline-block;
    position:relative;
    width: 100%;
    padding: 15px 15px 15px 15px;
    box-shadow: 10px 10px 10px rgba(0,0,0,.5);
    background: rgb(214, 214, 214);
}
.projectsList .projects .thumbnail:hover{
    box-shadow: 5px 5px 10px rgba(0,0,0,.5);
    top: 2px;
    left: 2px;
}
.projectsList .projects .thumbnail a{
    text-decoration: none;
    color: darkslategrey;
}
.projectsList .projects .thumbnail a:hover{
    text-decoration: underline;
}
.projectsList .projects .thumbnail .thumb {
    display: inline-block;
    float: left;
    width: 100px;
    height: auto;
    overflow: hidden;
    margin-right: 15px;
    margin-bottom: 5px;
    border-radius: 3px;
}
.projectsList .projects .thumbnail p{
    margin: 0;
}
@media screen and (max-width: 1070px){
    .projectsList .projects{
        padding: 0;
    }
}

/* Project Detail */
/*.view-frame.projectDetail{
    background: rgb(214, 214, 214);
}*/
.view-frame.projectDetail #right h1{
    text-align: center;
}
.project-images {
  background-color: inherit;
  //width: 100%;
  display: inline-block;
  //height: 500px;
  overflow: hidden;
  text-align: center;
}
img.project {
    position: absolute;
    background-color: inherit;
    border-radius: 5px;
    max-width: 100%;
    display: block;
    box-shadow: 10px 10px 10px rgba(0,0,0,.5);
    width: 60%;
    height: auto;
    top: -100%;
}
img.project:first-child {
    top: 30px;
}
ul.project-thumbs {
  margin: 0;
  list-style: none;
  width: 110px;
  display: inline-block;
  float: right;
}
ul.project-thumbs li {
  border: 1px solid black;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 0.8em;
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0,0,0,.5);
  position: relative;
}
ul.project-thumbs li:hover{
  box-shadow: 5px 5px 10px rgba(0,0,0,.5);
  top: 2px;
  left: 2px;
}
ul.project-thumbs img {
  height: 100px;
  width: 100px;
  padding: 1em;
}

ul.project-thumbs img:hover {
  cursor: pointer;
}

ul.specs {
  clear: both;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.specs > li{
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.projectDetail #left ul{
    margin-left: 10px;
    margin-bottom: 10px;
}
@media screen and (max-width: 1070px){
    .projectDetail #left{
        padding: 0 20px;
        text-align: left;
    }
    .projectDetail #left h1{
        text-align: center;
    }
    .projectDetail #right{
        padding: 0 20px;
    }
    .project-images {
        height: auto;
        text-align: left;
    }
    img.project {
        position: static;
        margin: 1%;
        height: auto;
        top: 0px;
        max-width: 48%;
        display: inline-block;
        box-sizing: border-box;
        box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
    }
    ul.project-thumbs {
        display: none;
    }
}
@media screen and (max-width: 850px){
    img.project {
        margin: 2%;
        max-width: 96%;
        width: 96%;
    }
}


/*About Us*/
.view-frame.about{
    background-color:#3A3A3A;
    color:#DADADA;
}
.about #right{
   padding: 30px 80px 30px 400px;
}
.about #right .frame{
    display: inline-block;
    float: right;
    width: 500px;
    box-sizing: border-box;
    padding:7px 7px 0 7px;
    margin:0 0 40px 40px;
    background-color: whitesmoke;
    border: 1px black solid;
    border-radius: 3px;
    transform:rotate(5deg);
    -ms-transform:rotate(5deg); /* IE 9 */
    -webkit-transform:rotate(5deg);
    box-shadow: 0 0 20px #000;
}
.about #right .frame img{
    width: 100%;
}
.about #right .frame p{
    font-family: 'Dancing Script', cursive;
    font-size: 21px;
    margin-top: 10px;
    text-align: center;
    color: #3A3A3A;
}
.about #right p{
    text-align: justify;
}
@media screen and (max-width: 1400px){
    .about #right .frame{
        width: 300px;
    }
}
@media screen and (max-width: 1070px){
    .about #right{
        padding: 5%;
    }
}
@media screen and (max-width: 670px){
    .about #right .frame{
        width: 100%;
    }
}

/*Contact Us*/
.contact #left div{
    padding-left: 10px;
    margin-bottom: 10px;
}
.contact #right .fullWidth{
	width: 100%;
}
.contact #right iframe{
    width: 60%;
    height: 600px;
    border: none;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 20px #000;
    float: right;
    margin-left: 5%;
    margin-right: 5%;
}
.contact #right img, .contact #right form{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    box-shadow: 0 0 20px #000;
    width: 30%;
    margin-bottom: 20px;
}
.contact #right form{
    padding: 20px;
    background-color: #DADADA;
}
.contact #right form h2{
    margin-top: 0;
    text-align: center;
}
.contact #right form div,.contact #right form label,.contact #right form input:not(.button),.contact #right form textarea{
    width: 100%;
}
.contact #right form label{
    margin: 0;
}
.contact #right form input{
    margin-bottom: 10px;
}
.contact #right form input.button{
    margin-top: 10px;
    text-align: center;
    background-color: whitesmoke;
}
@media screen and (max-width: 1070px){
    .contact #left{
        padding-left: 5%;
        padding-right: 5%;
    }
    .contact #left h1{
        display: none;
    }
    .contact #left>div{
        width: 50%;
        float: left;
        text-align: left;
    }
    .contact #right iframe{
        width: 90%;
    }
    .contact #right img, .contact #right form{
        width: 40%;
        margin-left: 5%;
        margin-right: 0;
        float: left;
    }
}
@media screen and (max-width: 670px){
    .contact #right img{
        display: none;
    }
    .contact #right form{
        margin-right: 5%;
        width: 90%;
    }
    .contact #right iframe{
        height: 300px;
    }
}

/*Jobs*/
.jobs #right{
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0 0 0 400px;
    overflow: hidden;
}
.jobs #right iframe{
    width: 100%;
    height: 100%;
    border: none;
    box-sizing: border-box;
}
.jobs #right>div{
    display: none;
}
.jobs #right .display{
    display: block;
    margin-top: 50px;
}
@media screen and (max-width: 1070px){
    .jobs #right{
        padding: 0;
        width: 100%;
        text-align: center;
        font-size: 20px;
    }
    .jobs #right iframe{
            display:none;
    }
    .jobs #right>div{
            display: block;
    }
    .jobs #right>div a{
        display: inline-block;
        padding: 15px;
        margin: 10px;
        width: 90px;
        height: 60px;
        color: rgb(214, 214, 214);
        background: hsl(257, 22%, 42%);
        border-radius: 5px;
        box-shadow: 0 0 20px #000; 
        text-decoration: none;
    }
    .jobs #right>div a:hover{
        background: hsl(257, 22%, 66%);;
    }
}
/*Map*/
.map .angular-google-map-container{
    height: 700px;
    height: 100vh; 
    width: 100%; 
}
@media screen and (max-width: 1070px){

}