/* @less partials */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* @group GN Additions */
/* @end */
/* @group Corporate colours taken from logo */
/* @end */
/* @group Site Defaults */
/* @end */
/* @group Greys */
/* @end */
/* @group Variables */
/* @end */
/* Table of Contents
   - - - - - - - - -
   1.	xxx
   - - - - - - - - -
 */
.LazyImageWrap {
  position: relative;
  margin-top: 1rem;
}
.LazyImageWrap .LazyCredit {
  margin-bottom: 0rem!important;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: .2rem .7rem !important;
}
.LazyCaption {
  margin-top: .5rem;
  margin-bottom: 3rem!important;
}
/* Smartphones (portrait and landscape) ————— */
@media only screen and (min-width: 320px) and (max-width: 736px) {
  .LazyCaption {
    margin-bottom: 1rem!important;
    text-align: left!important;
    float: left;
  }
}
/* @end */
/* @end */
/* @group For video on lazy load display */
.video-container {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.box-video {
  position: relative;
  max-width: 100%;
  margin: 1rem auto 0px!important;
  cursor: pointer;
  overflow: hidden;
}
.box-video .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
.box-video .video-container {
  position: relative;
  margin: 0;
  z-index: 1;
}
.box-video .bt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -12px 0 0 -6px;
  border: solid transparent;
  border-left-color: #000;
  border-width: 12px 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.box-video:hover .bt-play {
  transform: scale(1.1);
}
.box-video.open .bg-video {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
.box-video.open .video-container {
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
/* @end */
/*# sourceMappingURL=Projects_lazy.css.map */