


/*
***********************
*  Resets
***********************
*/

/*
Switch box sizing model to border-box.
Width = content width + padding + border.
*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing   : border-box;
  -ms-box-sizing    : border-box;
  box-sizing        : border-box;
}

/* Remove default margins and paddings from all elements */

* {
  margin : 0;
  padding: 0;
}

/* Remove unnecessary gaps below images */

img {
  vertical-align: bottom;
}

/* Remove unnecessary gaps between table cells */

table {
  border-collapse: collapse;
  border-spacing : 0;
}

/* Remove borders and outlines from all elements */

* {
  border : none;
  outline: 0;
}

:focus{
  outline: 0;
}

/* Remove background color from all elements */

* {
  background-color: transparent;
}

/* Remove markers from lists */

li {
  list-style: none;
}

/* Remove text-decoration */

a, a:hover, a:visited, ins, del {
  text-decoration: none;
}

/* Remove quotes */

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: ''; 
  content: none;
}

/*Display property for HTML 5 elements*/

section, article, aside, hgroup, header, footer, nav, figure, figcaption {
  display: block;
}

time, mark {
  display: inline;
}

/*
***********************
*  Custom Fonts
***********************
*/

/*
Modern Pictograms
http://www.fontsquirrel.com/fonts/modern-pictograms
*/

@font-face {
    font-family: 'ModernPictograms';
    src: url('../fonts/modern_pictograms/modernpics-webfont.eot');
    src: url('../fonts/modern_pictograms/modernpics-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/modern_pictograms/modernpics-webfont.woff') format('woff'),
         url('../fonts/modern_pictograms/modernpics-webfont.ttf') format('truetype'),
         url('../fonts/modern_pictograms/modernpics-webfont.svg#ModernPictogramsNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
Web Symbols
http://www.fontsquirrel.com/fonts/web-symbols
*/

@font-face {
    font-family: 'WebSymbols';
    src: url('../fonts/web_symbols/WebSymbols-Regular-webfont.eot');
    src: url('../fonts/web_symbols/WebSymbols-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.woff') format('woff'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.ttf') format('truetype'),
         url('../fonts/web_symbols/WebSymbols-Regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
Social Glyphs
*/

@font-face {
    font-family: 'Social Glyphs';
    src: url('../fonts/social-glyphs/socialglyphs-regular.eot');
    src: url('../fonts/social-glyphs/socialglyphs-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/social-glyphs/socialglyphs-regular.woff') format('woff'),
         url('../fonts/social-glyphs/socialglyphs-regular.ttf') format('truetype'),
         url('../fonts/social-glyphs/socialglyphs-regular.svg#socialglyphs-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*
***********************
*  Basic Typography
***********************
*/

/*Base font-size: 1rem = 10px*/

html {
  font-size: 10px;
}

/*Default font settings*/

body {
  font-family:    'Open Sans', 'Arial', 'Helvetica', sans-serif;
  font-size:      1.4rem;
  font-weight:    normal;
  font-style:     normal;
  color:          #838383;
}

* {
  letter-spacing: normal;
  line-height:    180%;
}

/*
Ensure inheritance of font settings.
Note: letter-spacing and line-height are not inherited. Their values are calculated via * rule above.
*/

* {
  font-family:    inherit;
  font-size:      inherit;
  font-weight:    inherit;
  font-style:     inherit;
  color:          inherit;
}

/*
****************************
*  Common CSS3 transitions
****************************
*/

/*Does not effect the lightbox plugin (thanks to :not selector)*/

*:not(.pp_pic_holder) {
  -webkit-transition: -webkit-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -moz-transition: -moz-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -o-transition: -o-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  -ms-transition: -ms-transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
  transition: transform 0.5s, color 0.5s, border 0.5s, background 0.5s, opacity 0.5s, top 0.5s, left 0.5s;
}

/*
***********************
*  Header
***********************
*/

/*Header bg*/

.site-header {
  width        : 100%;
  height       : 75px;
  margin-bottom: 60px;
  background: #ec5d16;

  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow        : 0px 2px 2px rgba(0, 0, 0, 0.3);
}

/*Site logo*/

.site-logo img {
  vertical-align: middle;
}

.site-logo a {
  line-height: 75px; /*Must be = .site-header height*/
  position   : relative;
  top        : -4px;
}

/*Site navigation*/

.site-nav {
  text-align: right;
}

.site-nav li {
  display    : inline-block;
  margin-left: 50px;
}

.site-nav li:first-child {
  margin-left: 0;
}

.site-nav li a {
  display       : inline-block;
  line-height   : 75px; /*Must be = .site-header height*/
  color         : #fff;
  font-weight   : 600;
  opacity       : 0.75;
  text-transform: uppercase;
}

/*Navigation item active state*/

.site-nav .active-link {
  opacity: 0.75;
}

/*Navigation item hover state*/

.site-nav li a:hover {
  color: #fff;
  opacity: 1;

  -webkit-transform: translate(0px, -7px);
  -moz-transform   : translate(0px, -7px);
  -o-transform     : translate(0px, -7px);
  -ms-transform    : translate(0px, -7px);
  transform        : translate(0px, -7px);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .site-nav li a:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*
***********************
*  Slogan
***********************
*/

/*Slogan container*/

.slogan-wrap {
  width   : 100%;
  position: relative;
}

.bg-img {
  position: absolute;
  top     : 0;
  left    : 0;
  width   : 100%;
}

#slogan {
  margin-bottom: 15px;
}

/*Slogan*/

.slogan {
  margin-bottom : 10px;
  font-family   : 'Open Sans';
  text-align    : center;
  font-size     : 8rem;
  font-weight   : 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height   : 120%;
  text-shadow   : 1px 1px 2px rgba(0, 0, 0, 0.45);
}

/*Subslogan*/

.sub-slogan {
  text-shadow   : 1px 1px 2px rgba(0, 0, 0, 0.45);
  font-size     : 3.3rem;
  text-align    : center;
  color         : #fff;
  line-height   : 120%;
  letter-spacing: 0.02em;
  margin-bottom : 30px;
}

.sub-slogan span {
  background: rgba(0, 0, 0, 0.65);
}

.sub-slogan strong {
  color: #ec5d16;
}

/*
***********************
*  Common Styles
***********************
*/

/*Block  Heading*/

.container .block-heading {
  margin-bottom : 40px;
  font-family   : 'Open Sans';
  font-weight   : 300;
  text-align    : center;
  font-size     : 4rem;
  letter-spacing: 0.07em;
  color         : #ffffff;
  line-height   : 120%;
  
  border-top    : 1px dashed #fff;
  border-bottom : 1px dashed #fff;
  padding       : 10px 0;
}

.container .block-heading {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.color-bg .block-heading {
  text-shadow: none;
  background: none;
}

/*
***********************
*  Portfolio
***********************
*/

#portfolio .tiles {
  margin-bottom: 30px;
}

/*Filter*/

.container .filter {
  text-align   : center;
  margin-bottom: 35px;
/*  background: rgba(0, 0, 0, 0.65);
  padding: 10px 0px;*/
}

.filter:before {
  content    : 'Filter:';
  font-weight: 700;
  font-size  : 1.8rem;
  color      : #fff;
}

.filter li {
  display    : inline-block;
  margin-left: 20px;
}

.filter li a {
  display      : inline-block;
  padding-left : 12px;
  padding-right: 12px;
  line-height  : 200%;
  color        : #fff;
  font-weight  : 700;
  font-size    : 1.8rem;

  text-shadow  : 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/*Filter - hover state*/

.filter li a:hover {
  cursor: pointer;
  color : #ec5d16;
}

/*Filter - active state*/

.filter li.active-filter a {
  display      : inline-block;
  font-weight  : 700;
  color        : #fff;
  background   : #ec5d16;
  border-radius: 7px;
  text-shadow  : none;

  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow        : 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/*Tiles*/

.tiles .column,
.tiles .columns {
  margin-bottom: 20px;
}

.tiles li {
  height       : 300px;
  border       : 4px solid #fff;
  border-radius: 300px;
  overflow     : hidden;

  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow        : 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.tiles {
  margin-bottom: -20px;
}

.tiles img {
  width        : 100%;
  display      : block;
  border-radius: 300px;

}

.tiles a {
  border-radius: 300px;
  overflow     : hidden;
  position     : relative;
  display      : inline-block;
  width        : 100%;
  line-height  : 1;
}

/*Tile Overlay*/

.overlay {
  position     : absolute;
  top          : 0;
  left         : 0;
  padding-top  : 90px;
  width        : 100%;
  height       : 100%;
  border-radius: 300px;
  text-align   : center;
  color        : #FFF;
  background   : rgba(236, 93, 22, 0.9);
  opacity      : 0;
  overflow     : hidden;
}

.icon span {
  display: inline-block;
}

.icon span:before {
  content    : 'L';
  font-family: 'WebSymbols';
  font-size  : 3.2rem;
}

.icon {
  margin-bottom: 20px;
  position     : relative;
  top          : -100%;
}

.project-title {
  font-weight: 700;
  font-size  : 1.3rem;
  position   : relative;
  left       : -100%;
  font-size  : 1.6rem;
} 

.tags {
  font-weight: 300;
  font-style : italic;
  font-size  : 1.3rem;
  position   : relative;
  left       : 100%;
  font-size  : 1.6rem;
}

.icon,
.project-title,
.tags {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
}

/*Overlay hover state*/

.overlay:hover {
  opacity: 1;
}

.overlay:hover .icon,
.overlay:hover .project-title,
.overlay:hover .tags {
  top  : auto;
  left : auto;
  right: auto;
}

.icon span:hover {
  -webkit-transform: scale(1.5);
  -moz-transform   : scale(1.5);
  -o-transform     : scale(1.5);
  -ms-transform    : scale(1.5);
  transform        : scale(1.5);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .icon span {
  opacity: 0.75;
}

html.no-csstransitions .icon span:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;

  opacity: 1;
}

/*
***********************
*  Services
***********************
*/

.color-bg {
  padding-bottom: 1px;
  background: #5e5c5b;

  -webkit-box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.5),
                      inset 0px -2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.5),
              inset 0px -2px 2px rgba(0, 0, 0, 0.5);
}

.color-bg .block-heading {
  color        : #fff;
  margin-top   : 30px;
  margin-bottom: 50px;
  border-color : #fff;
}

.color-bg p {
  opacity: 0.75;
  color: #fff;
}

#services {
  text-align: center;
}

#services .column,
#services .columns {
  margin-bottom: 50px;
}

.big-icon {
  margin-bottom: 15px;
  font-family  : 'ModernPictograms';
  font-size    : 12rem;
  line-height  : 1;
  color        : #fff;
  text-shadow  : 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.big-icon.layout:before {
  content: 'P';
}

.big-icon.pencil:before {
  content: 'Z';
}

.big-icon.tools:before {
  content: 'K';
}

.big-icon.camera:before {
  content: 'e';
}

.big-icon:hover {
  -webkit-transform: translate(0px, -20px);
  -moz-transform   : translate(0px, -20px);
  -o-transform     : translate(0px, -20px);
  -ms-transform    : translate(0px, -20px);
  transform        : translate(0px, -20px);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .big-icon:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

.content-title {
  margin-bottom: 10px;
  font-weight  : 600;
  font-size    : 2.4rem;
  color        : #FFF;
}

body .slogan-on-color {
  font-size  : 3.2rem;
  color      : #fff;
  line-height: 120%;
  text-align: center;
  opacity: 1;
}

/*
***********************
*  About
***********************
*/

/*About - heading*/

#about .column,
#about .columns {
  margin-bottom: 50px;
}

#about .block-heading {
  margin-top: 30px;
}

/*About - portrait*/

.portrait {
  position: relative;
  overflow: hidden;
  border  : 4px solid #fff;

  -webkit-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.3);
  box-shadow        : 0px 2px 6px 2px rgba(0, 0, 0, 0.3);
}

.portrait img {
  width: 100%;
}

.portrait img:hover {
  -webkit-transition-duration: 1s;
  -moz-transition-duration   : 1s;
  -o-transition-duration     : 1s;
  -ms-transition-duration    : 1s;
  transition-duration        : 1s;  

  -webkit-transform: scale(1.3);
  -moz-transform   : scale(1.3);
  -o-transform     : scale(1.3);
  -ms-transform    : scale(1.3);
  transform        : scale(1.3);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .portrait img:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*About - slogan*/

.sub-slogan-on-light {
  font-size    : 3.2rem;
  color        : #fff;
  margin-bottom: 30px;
  line-height  : 120%;
}

.slogan-on-light span {
  background: #ec5d16;

  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow        : 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/*Text in About section*/

#about p {
  margin-bottom: 20px;
  padding: 15px;
  color        : #fff;
  font-size    : 1.6rem;
  background: rgba(0, 0, 0, 0.65);
}

#about p:last-of-type {
  margin-bottom: 0;
}

/*About - social*/

.social {
  text-align : left;
  margin-left: -9px;
}

.social li,
.social a {
  display: inline-block;
}

.social li {
  margin-left : 7px;
  margin-right: 7px;
  margin-top  : 25px;
}

.social a {
  font-family  : 'Social Glyphs';
  width        : 40px;
  height       : 40px;
  text-align   : center;
  line-height  : 100%;
  font-size    : 2.8rem;

  color        : #fff;
  background   : #ec5d16;
  border       : 2px #fff solid;
  border-radius: 40px;

  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow        : 1px 1px 1px rgba(0, 0, 0, 0.35);
}

.social a:hover {
  color     : #ec5d16;
  background: #fff;
  border    : 2px #ec5d16 solid;

  -webkit-transform: rotate(360deg) translate(0px, -5px) scale(1.2);
  -moz-transform   : rotate(360deg) translate(0px, -5px) scale(1.2);
  -o-transform     : rotate(360deg) translate(0px, -5px) scale(1.2);
  -ms-transform    : rotate(360deg) translate(0px, -5px) scale(1.2);
  transform        : rotate(360deg) translate(0px, -5px) scale(1.2);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .social a:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

.twitter-icon:before {
  content: 't';
}

.facebook-icon:before {
  content: 'f';
}

.drible-icon:before {
  content: 'u';
}

.pinterest-icon:before {
  content: 'p';
}

.vimeo-icon:before {
  content: 'v';
}

.github-icon:before {
  content: 'j';
}

.behance-icon:before {
  content: 'b';
}

.flickr-icon:before {
  content: 'a';
}

/*
***********************
*  News
***********************
*/

#news .column,
#news .columns {
  margin-bottom: 50px;
}

body .date-published {
  margin-top : 20px;
  color      : #fff;
  font-weight: 700 !important;
  opacity: 1;
}

.news-image {
  overflow     :hidden;
  border       : 6px solid #fff;
  margin-bottom: 20px;

  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
  box-shadow        : 0px 2px 3px rgba(0, 0, 0, 0.35);
}

.news-image img {
  width: 100%;
}

.news-image img:hover {
  -webkit-transition-duration: 1s;
  -moz-transition-duration   : 1s;
  -o-transition-duration     : 1s;
  -ms-transition-duration    : 1s;
  transition-duration        : 1s;  

  -webkit-transform: scale(1.3);
  -moz-transform   : scale(1.3);
  -o-transform     : scale(1.3);
  -ms-transform    : scale(1.3);
  transform        : scale(1.3);
}

/*For browsers that do not suport CSS3 Transitions*/

html.no-csstransitions .news-image img:hover {
  -webkit-transform: none;
  -moz-transform   : none;
  -o-transform     : none;
  -ms-transform    : none;
  transform        : none;
}

/*
***********************
*  Contact
***********************
*/

/*Contact Heading*/

#contact {
  margin-bottom: 50px;
}

#contact .block-heading {
  margin-top: 30px;
}

/*Google Map*/

#google-map {
  overflow     : hidden;
  width        : 100%;
  height       : 390px;
  margin-bottom: 50px;
  border       : 6px solid #fff;
}

/*Contact details and form wrap*/

.contact-details-and-form-wrap {
  padding: 30px 0px;
}

/*Contact Details*/

.contact-details-list li {
  margin-bottom: 20px;
  position     : relative;
  color        : #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-details-list li p {
  opacity: 1;  
}

.contact-name {
  font-weight: 700;
  color: #fff !important;
}

.contact-value {
  color: #fff !important;
}

.contact-details-list li:before {
  font-family: 'ModernPictograms';
  color: #fff;
  position   : absolute;
  line-height: 100%;
  top        : 3px;
  left       : 0;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-details-list li p {
  margin-left: 40px;
}

.phone-icon:before {
  content  : 'O';
  font-size: 4.5rem;
}

.email-icon:before {
  content  : '@';
  font-size: 4rem;
}

.address-icon:before {
  content  : ',';
  font-size: 4.5rem;
}

/*Contact form*/

.contact-form input:not([type='submit']),
.contact-form textarea {

  background   : url(../images/patterns/tiny_grid.png);
  border-radius: 5px;
  font-family  : 'Georgia', serif;
  font-style   : italic;
  color        : #aaa;
  padding-left : 15px;
  padding-right: 15px;
}

.contact-form input:not([type='submit']) {
  background-position: 0px -4px;
}

.contact-form textarea {
  background-position: 0px 1px;
}

.contact-form input[type='text'] {
  width        : 220px;
  height       : 35px;
  margin-bottom: 20px;
  line-height  : 35px;
}

.contact-form textarea {
  height        : 215px;
  padding-top   : 10px;
  padding-bottom: 10px;
  margin-bottom : 20px;
}

.note {
  font-family: 'Georgia', serif;
  font-style : italic;
  color      : #fff !important;
  opacity: 1 !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.submit {
  text-align: right;
}

.submit button[type='submit'] {
  display : inline-block;
  width   : 102px;
  height  : 32px;
  position: relative;

  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow        : 0px 1px 1px rgba(0, 0, 0, 0.3);
}

.submit button[type='submit'] img  {
  position: absolute;
  top     : 0;
  left    : 0;
}

.submit button[type='submit']:hover {
  cursor: pointer;
}

.submit button[type='submit']:hover  img.default-img{
  opacity: 0;
}

/*
***********************
*  Call to action
***********************
*/

.call-to-action {
  margin-top: 100px;
  margin-bottom: 100px;
}

.cta-slogan {
  background: rgba(0, 0, 0, 0.65);
}

.cta-button-wrap {
  text-align: center;
}

.cta-button {
  display : inline-block;
  width   : 216px;
  height  : 64px;
  position: relative;

  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow        : 0px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button img {
  position: absolute;
  top     : 0;
  left    : 0;
}

.cta-button:hover {
  cursor: pointer;
}

.cta-button:hover img.img-default {
  opacity: 0;
}

/*
***********************
*  Site Footer
***********************
*/

.site-footer {
  width     : 100%;
  height    : 40px;
  text-align: center;
  background: #5e5c5b;
}

.copyright-link {
  line-height: 40px; /*Must be = .site-footer-height*/
  color      : #fff;
  opacity: 0.55;
  display: inline-block;
}

.copyright-link:before,
.copyright-link:after {
  content    : '*';
  font-family: 'ModernPictograms';
  font-size  : 2.1rem;
  margin     : 0 10px;
  position   : relative;
  top        : 1px;
}

.copyright-link:hover {
  opacity: 1;
}

/*
***********************
*  Go to Top Button
***********************
*/

.go-to-top {

  /*Button style*/

  display: block;
  width        : 50px;
  height       : 50px;
  background   : rgba(0, 0, 0, 0.5);
  border-radius: 10px;

  /*Icon symbol style*/

  font-size: 2.1rem;
  color    : #999;

  /*Align icon to button center*/

  line-height: 50px; /*Must = .go-to-top height*/
  text-align : center;

  /*Rotate button so arrow icon points up*/

  -webkit-transform: rotate(90deg);
  -moz-transform   : rotate(90deg);
  -o-transform     : rotate(90deg);
  -ms-transform    : rotate(90deg);
  transform        : rotate(90deg);

  /*Position button in bottom right corner of the window*/

  position: fixed;
  z-index: 1000;
  bottom  : 10px;
  right   : 10px;
}

.go-to-top:before {

  /*Icon symbol*/

  content    : '<';
  font-family: 'WebSymbols';
}

.go-to-top:hover {

  /*Button hover state*/

  background: #fff;
  color: #ec5d16;
  cursor: pointer;
}

/*
******************************
*  Isotope Plugin Styles
******************************
*/

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/*
***********************
*  Background slider
***********************
*/

#bg-slider {
  position: fixed;
  width   : 100%;
  height  : 100%;
  top     : 0;
  left    : 0;

  background-size      : cover;
  background-position  : 50% 50%;
  background-repeat    : no-repeat;
  background-attachment: fixed;
}

#bg-slider ul.slides {
  display: block;
  width  : 100%;
  height : 100%;
}

#bg-slider ul.slides>li {
  display              : block;
  width                : 100%;
  height               : 100%;
  background-size      : cover;
  background-position  : 50% 50%;
  background-repeat    : no-repeat;
  background-attachment: fixed;
}

#bg-slider:before {
  content   : '';
  display   : block;
  width     : 100%;
  height    : 100%;
  background: url(../images/patterns/dots.png);
  opacity: 0.3;

  position: absolute;
  z-index: 100;
}

.page-wrap {
  position: absolute;
  width   : 100%;
  top     : 0;
  left    : 0;
  z-index : 100;
}
