.mos-img img {display: none !important;}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* #Primary style
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.relative {
    position: relative;
}
.over-hide{
	overflow: hidden;
}

.background-white {
	background-color: #ffffff;
}

.img-wrap  {
	position:relative;
	width:100%;
}
.img-wrap img {
	width:100%;
	display:block;
}
.z-bigger  {
	z-index:10;
}
.padding-top-bottom {
	padding-top: 80px;
	padding-bottom: 80px;
}
.padding-top {
	padding-top: 80px;
}
.padding-bottom {
	padding-bottom: 80px;
}
.padding-top-bottom-big {
	padding-top: 110px;
	padding-bottom: 110px;
}
.padding-top-big {
	padding-top: 110px;
}
.padding-bottom-big {
	padding-bottom: 110px;
}
.padding-top-bottom-small {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-top-small {
	padding-top: 50px;
}
.padding-bottom-small {
	padding-bottom: 50px;
}

.typing_loader{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-animation: typing 1s linear infinite alternate;
       -moz-animation: typing 1s linear infinite alternate;
            animation: typing 1s linear infinite alternate;
    margin: 46px auto; /* Not necessary- its only for layouting*/  
    position: relative;
	transform: rotate(90deg);
}
@-webkit-keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}
@-moz-keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}
@keyframes typing{
   0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{ 
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2), 
                    24px 0px 0px 0px rgba(0,0,0,1);
      }
}


/* #Work Slice Reveal
================================================== */

.scroll-img {
	width: 100%;
	max-width: 100%;
	min-width: 250px;
	height: 40vh;
	min-height: 250px;
	background-size: cover;
	overflow: hidden;
}
.uncover__img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}
.uncover__slices {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}
.uncover__slices--vertical {
	flex-direction: row;
}
.uncover__slices--horizontal {
	flex-direction: column;
}
.uncover__slices--horizontal-double {
	display: grid;
	grid-template-columns: 50% 50%;
}
.uncover__slices--vertical-double {
	display: grid;
	grid-template-rows: 50% 50%;
}
.uncover__slice {
	color: #fff;
	background-color: currentColor;
	flex: 1;
}

.project-name{
	top: 60px;
  left: 40px;
  position: absolute;
  line-height: 1;
  color: #fff;
  font-size: 38px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  font-family: Domkrat;
}
.project-name:hover{
	color: #fba2a2;
}
.project-name span{
	position: relative;
	width: 15px;
	background-color: #212121;
	height: 2px;
	margin-left: 10px;
	margin-bottom: 12px;
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-name span:before{
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 8px;
	height: 2px;
	background-color: #212121;
	transform-origin: 100% 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-name span:after{
	position: absolute;
	content: '';
	bottom: 0;
	right: -10px;
	width: 10px;
	height: 2px;
	background-color: #212121;
	transform-origin: 100% 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.parallax-elements:hover .project-name span{	
	opacity: 1;
	margin-left: 30px;
}
.parallax-elements:hover .project-name span:before{	
	transform: rotate(45deg);
}
.parallax-elements:hover .project-name span:after{	
	transform: rotate(-45deg);
}
.project-type{
	top: 105px;
	left: 50px;
	position: absolute;
	font-weight: 400;
	font-style: italic;
	line-height: 1.5;
	color: #000;
	font-size: 14px;
	letter-spacing: 1px;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 6px 12px;
	max-width: 70%;
}
.project-type2{
	top: 20px;
	left: 20px;
	position: absolute;
	font-weight: 400;
	line-height: 1;
	font-size: 14px;
 white-space:nowrap;
	-webkit-transform: translateZ(0);
		transform: translateZ(0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.project-type2 span{
	background-color: rgba(0, 0, 0, 0.4);
	padding: 6px 12px;
	color: #fff;
	margin-right: 2px;
}
.project-type2 span a{
	color: #fff;
}
.project-type2 span a:hover{
	color: #fba2a2;
}

.parallax-elements{	
	display: block;
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
		transform: perspective(300px);
}
.parallax-elements:hover .project-type{	
	-webkit-transform: translateZ(20px);
		transform: translateZ(20px);
}
.parallax-elements:hover .project-name{	
	-webkit-transform: translateZ(10px);
		transform: translateZ(10px);
}


