/* Isotope reset */

.isotope-grid-gutter { width: 0; }

.isotope-grid-sizer { width: 25%; }

.isotope-grid-def-col .isotope-grid-item{
	position: relative;
	width: 25%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}

.isotope-grid-def-col .isotope-grid-item-50{
	width: 50%;
}
@media screen and (max-width: 992px){
	.isotope-grid-def-col .isotope-grid-item{
		width: 50% !important;
	}
}
@media screen and (max-width: 768px){
	.isotope-grid-def-col .isotope-grid-item{
		width: 100% !important;
		margin-bottom: 10px !important;
	}
}

.growfast-portfolio{
	min-height: 1rem;
}

.growfast-portfolio--col5 .isotope-grid-item{
	width: 20%
}

.growfast-portfolio--col3 .isotope-grid-item{
	width: 33.3%
}

.growfast-portfolio--col2 .isotope-grid-item{
	width: 50%
}

.growfast-portfolio--col1 .isotope-grid-item{
	width: 100%
}

.growfast-portfolio--col5 .isotope-grid-sizer { width: 20%; }
.growfast-portfolio--col3 .isotope-grid-sizer { width: 33.3%; }
.growfast-portfolio--col2 .isotope-grid-sizer { width: 50%; }
.growfast-portfolio--col1 .isotope-grid-sizer { width: 100%; }

.growfast-portfolio__item__inner{
	position: relative;
}
.growfast-portfolio__bg {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
	position: absolute;
}

.growfast-portfolio__bg--image:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: '';
	z-index: 1;
	display: block;
	opacity: 0;
	-webkit-transition: opacity 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
	transition: opacity 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
}
.growfast-portfolio__item:hover .growfast-portfolio__bg--image:after {
	opacity: 1;
}

.growfast-portfolio__bg--image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s, opacity 0.3s ease;
}

.growfast-portfolio__item:hover .growfast-portfolio__bg--image {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.growfast-portfolio__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: block;
}
.growfast-portfolio__content{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}
.growfast-portfolio__content__inner{
	width: 100%;
}
.growfast-portfolio__content__inner--title{
	display: flex;
	align-items: center;
	line-height: 1.2;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}
.growfast-portfolio__content__inner--title > div{
	flex-grow: 1;
}
.growfast-portfolio__content__inner--title svg {
	margin: 0 0 -7px 0;
	opacity: 0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	width: 24px;
	height: 24px;
}
.growfast-portfolio__item .growfast-portfolio__content__inner--title svg {
	animation: rightArrowEnd 0.7s cubic-bezier(0, 0.2, 0.1, 1) forwards;
}
.growfast-portfolio__item:hover .growfast-portfolio__content__inner--title svg {
	animation: rightArrowStart 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) forwards;
	opacity: 1;
}
@keyframes rightArrowStart {
	0% {
		transform: translateX(-80px);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes rightArrowEnd {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(24px);
	}
}

.growfast-portfolio--filter{
	padding: 0;
	margin-bottom: 1rem;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.growfast-portfolio--filter > li > a{
	padding: 0 2rem 1rem;
	display: block;
}
.growfast-portfolio--filter > li > a:first-child{
	padding-left: 0;
}

.growfast-portfolio--filter > li > a span{
	position: relative;
}

.growfast-portfolio--filter > li > a span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 3px;
	height: 1px;
	width: 100%;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
	will-change: transform;
}

.growfast-portfolio--filter > li > a:hover span:after {
	-webkit-animation: growfast-portfolio-filter-underline-animation 1s cubic-bezier(0.77,0,0.175,1) forwards;
	animation: growfast-portfolio-filter-underline-animation 1s cubic-bezier(0.77,0,0.175,1) forwards;
}

@keyframes growfast-portfolio-filter-underline-animation{
  0%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 100%;transform-origin:0 100% }
  50%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:0 100%;transform-origin:0 100%}
  51%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:100% 0;transform-origin:100% 0}
  100%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 0;transform-origin:100% 0}
}