/* General CSS */

html, body {
    background-color: rgba(19, 19, 19, 0.83);
    height: 100%;

    /*background: url("../img/main_background_lg.jpg") top left no-repeat #000000;*/
    /*max-width: 1680px;*/
}

#site {

    background: url("../img/main_background_lg.jpg") top left no-repeat #000000;
    /*max-width: 1680px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    height: 100%;
    /*box-shadow: 9px 0px 6px -5px #333, -9px 0px 5px -5px #333;*/

    overflow: auto; /* this is necessary to deal with the resizing of the background when content overflows*/

    /*overflow-y: scroll; *//* need this make sure there is always a scroll bar so that viewport doesn't jump */
}

#content {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

nav {
    margin-top: 20px;
    margin-right: 25px;
    float: right;
    width: 650px;
}

h1 {
    font-size: 72px;
    color: #ffffff;
    word-spacing: 500px; /* by setting the word spacing to a large value we are forcing a line-break after each word */
    width: 100%;
    text-align: left;
    float: left;
}

#main {
    clear: right;
}

/* Content CSS */

.homeContent {
    float: right;
    margin-top: 50px;
    margin-right: 25px;
    width: 650px;
    background-color: rgba(5, 5, 5, 0.55);
    padding-left: 10px;
}

.homeContent p {
    color: lightgrey;
    font-size: 1.2em;
    clear: both;
}

.aboutContent {

    float: right;
    margin-top: 50px;
    margin-right: 25px;
    width: 650px;
    background-color: rgba(5, 5, 5, 0.55);
    padding-left: 10px;
}

.aboutContent p {
    color: lightgrey;
    font-size: 1.2em;
    width: 100%;
    clear: right;
}


.aboutContent p:last-of-type {
    clear: none;
    margin: 0px;
    padding: 0px;

}

.aboutContent .row {
    margin-top: 10px;
}

.aboutContent img {
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}



.contactContent {

    float: right;
    margin-top: 50px;
    margin-right: 25px;
    width: 650px;
    background-color: rgba(5, 5, 5, 0.55);
    padding-left: 10px;
}

.contactContent .cntLabel {
    display: inline-block;
    width: 100px;
}

.contactContent p {
    color: lightgrey;
    font-size: 1.2em;
    letter-spacing: 1px;
    clear: both;
}

.contactContent p:first-of-type {
    padding-top: 20px;
}

.contactContent p:last-of-type {
    padding-bottom: 20px;
}

.servicesContent {

    float: right;
    margin-top: 50px;
    margin-right: 25px;
    width: 650px;
    background-color: rgba(5, 5, 5, 0.55);
    padding-left: 10px;
}

.servicesContent h3 {
    font-size: 1.4em;
    font-weight: bold;
    /*color: rgb(135, 89, 89);*/
    color: rgb(141, 160, 214);
}

.servicesContent p {
    color: lightgrey;
    font-size: 1.2em;
    clear: both;
}

.servicesContent > div:last-of-type {
    padding-bottom: 40px;
}

.active {
    font-weight: bold;
}

.portfolioContent {
    float: right;
    margin-right: 25px;
    background-color: rgba(5, 5, 5, 0.55);
    width: 650px;
    margin-bottom: 25px;
    padding-left: 10px;
    margin-top: 50px;

}

.portfolio-col {
    float: left;
    margin-left: 10px;
}

.top-buffer {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.portfolioContent .textBlock {
    margin-left: 200px;
    margin-top: 20px;
}

.portfolioContent h4 {
    font-size: 1.6em;
    color: #ffffff;
}

.portfolioContent p {
    color: lightgrey;
    font-size: 1.2em;
    margin-top: 10px;
    /*margin-left: 200px;*/
    /*clear: both;*/
}

.portfolioContent img {
    border-radius: 50%;
    width: 128px;
    height: 128px;
}

.portfolioContent a {
    text-decoration: none;
    font-kerning: normal;
}

.portfolioContentGallery {
    width: 80%;
    margin: auto;
}

.photoframe {

    width: 280px;
    height: 280px;
    border-left: none;
    border-right: none;
    /*border-top-width: thin;*/
    /*border-bottom-width: thin;*/
    /*border-bottom-style: groove;*/
    /*border-top-style: solid;*/
    /*border-color: #cccccc;*/
    border: 1px solid rgba(255, 255, 255, 1);
    /*background-color: rgba(14, 14, 14, 0.83);*/
    background-color: rgba(0, 0, 0, 1);
    background-image: url("../img/loader.gif");
    background-position: center;
    background-repeat: no-repeat;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    text-align: center;
    /*-moz-box-shadow: 0 0 5px #444;*/
    /*-webkit-box-shadow: 0 0 5px #444;*/
    /*box-shadow: 0 0 5px #444;*/

}

.col-padding {
    padding-bottom: 10px;
}

.photoframe img {

    margin: 5px 0;
    /*padding: 1px;*/
    background: #FFF;
    /*border: 1px solid rgba(123, 123, 123, 0.83);*/
    position: relative;
    display: block;
    margin: auto;
    vertical-align: middle;
    max-height: 240px;
    max-width: 210px;
    cursor: pointer;

    -webkit-box-shadow: 0 0 7px rgba(55, 55, 55, 0.2);
    -moz-box-shadow: 0 0 7px rgba(55, 55, 55, 0.2);
    box-shadow: 0 0 7px rgba(55, 55, 55, 0.2);
}

.photoframe img:hover {
    -moz-box-shadow: 0 0 10px #ddd;
    -webkit-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;

}

.verticalLine {
    border-top: thin solid #6a6a6a;
}

/* page animation */

/*.pop {*/
    /*position: relative;*/
    /*left: 0;*/
    /*right: 0;*/
    /*top: 0;*/
    /*bottom: 0;*/
/*}*/

/*.pop.ng-enter,*/
/*.pop.ng-leave {*/
    /*-webkit-transition: all 1s ease;*/
    /*-moz-transition: all 1s ease;*/
    /*-o-transition: all 1s ease;*/
    /*transition: all 1s ease;*/
/*}*/

/*.pop.ng-enter {*/
    /*-webkit-transform: scale(0);*/
    /*-moz-transform: scale(0);*/
    /*-ms-transform: scale(0);*/
    /*-o-transform: scale(0);*/
    /*transform: scale(0);*/
/*}*/

/*.pop.ng-enter-active,*/
/*.pop.ng-leave,*/
/*.pop.ng-leave-active {*/
    /*-webkit-transform: scale(1);*/
    /*-moz-transform: scale(1);*/
    /*-ms-transform: scale(1);*/
    /*-o-transform: scale(1);*/
    /*transform: scale(1);*/
/*}*/

/*.pop.ng-leave-active {*/
/*}*/

/*.img-frame-sh*/

/*.container {*/
/*display: table;*/
/*float: left;*/
/*border: solid black 1px;*/
/*margin: 2px;*/
/*padding: 0;*/
/*background-color: black;*/
/*width: 150px;*/
/*height: 150px;*/
/*}*/
/*.photoframe {*/
/*display: table-cell;*/
/*text-align: center;*/
/*vertical-align: middle;*/
/*border-width: 0;*/
/*}*/

/*.portfolioContentWeddings img {*/
/*max-width: 250px;*/
/*max-height: 250px;*/
/*vertical-align: middle;*/
/*}*/

.pricing {

    max-width: 300px;
    color: rgba(221, 211, 218, 1.0);
}

/*footer {*/
    /*position: inherit;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*height: 60px; *//* Height of the footer */
    /*color: white;*/
    /*text-align: center;*/
    /*display: block;*/
/*}*/

/*#Content {*/
/*width: 80%;*/
/*float: left;*/
/*margin-left: 50px;*/
/*}*/

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

/*body {*/
    /*overflow-y: scroll;*/
/*}*/