/* 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-career--col5.isotope-grid-def-col .isotope-grid-item{
	width: 20%
}

.growfast-career--col3.isotope-grid-def-col .isotope-grid-item{
	width: 33.3%
}

.growfast-career--col2.isotope-grid-def-col .isotope-grid-item{
	width: 50%
}

.growfast-career--col1.isotope-grid-def-col .isotope-grid-item{
	width: 100%
}

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

.growfast-career__item__inner{
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 30px 90px rgba(0,0,0,0.14);
}
.growfast-career__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	display: block;
}
.growfast-career__content{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	padding: 2rem;
}
.growfast-career__content__inner{
	width: 100%;
}
.growfast-career__content__inner>*:last-child{
	margin-bottom: 0;
}
.growfast-career__content__inner--title{
	line-height: 1.2;
	margin-bottom: 1rem;
}
.growfast-career__content__inner--description{
	margin-bottom: 1rem;
}
.growfast-career__content__inner--additional-info{
	list-style: none;
	padding: 0;
	margin: 0 0 1rem 0;
}
.growfast-career__content__inner--additional-info li{
	display: flex;
}
.growfast-career__content__inner--additional-info li svg{
	width: 12px;
	height: 12px;
}
.growfast-career__content__inner--additional-info li .hs_cos_wrapper_type_icon{
	margin-right: 0.75rem;
	display: flex;
	align-items: center;
}

.growfast-career__overlay {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
	position: absolute;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.growfast-career__item:hover .growfast-career__overlay {
	opacity: 1;
}

.growfast-career__overlay--button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.growfast-career__item:hover .growfast-career__overlay--button {
	opacity: 1;
}

.growfast-career__overlay--button > span {
	display: flex;
	align-items: center;
	padding: 5px 20px;
	border: 2px solid;
	border-radius: 21px;
}

.growfast-career__overlay--button > span .hs_cos_wrapper_type_icon {
	margin-left: .5rem;
	margin-right: -0.5rem;
}

.growfast-career__overlay--button svg{
	height: 12px;
	width: 12px;
}

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

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

.growfast-career--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-career--filter > li > a:hover span:after {
	-webkit-animation: growfast-career-filter-underline-animation 1s cubic-bezier(0.77,0,0.175,1) forwards;
	animation: growfast-career-filter-underline-animation 1s cubic-bezier(0.77,0,0.175,1) forwards;
}

@keyframes growfast-career-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}
}

.growfast-career__load-more-button-wrapper{
	display: flex;
}

.growfast-career__load-more-button--alignment-left{
	justify-content: flex-start
}

.growfast-career__load-more-button--alignment-center{
	justify-content: center;
}

.growfast-career__load-more-button--alignment-right{
	justify-content: flex-start;
}

.growfast-career__load-more-button {
	display: inline-flex;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transform: translateY(0);
	align-self: flex-start;
	cursor: pointer;
}

.growfast-career__load-more-button svg {
	width: 12px;
	height: 12px;
}

.growfast-career__load-more-button svg path {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.growfast-career__load-more-button .hs_cos_wrapper_type_icon {
	margin-left: 0.5rem;
	margin-right: -0.5rem;
}

.growfast-career__load-more-button.growfast-button--effect-reveal .hs_cos_wrapper_type_icon {
	margin-left: 0;
	margin-right: 0;
	width: 0;
}

.growfast-career__load-more-button.growfast-button--effect-reveal .growfast-button--text {
	transition: transform .5s;
	transition-timing-function: ease;
}

.growfast-career__load-more-button.growfast-button--effect-reveal .growfast-button--text,
.growfast-career__load-more-button.growfast-button--effect-reveal .hs_cos_wrapper_type_icon svg {
	transition-timing-function: cubic-bezier(0, .71, .4, 1);
}

.growfast-career__load-more-button.growfast-button--effect-reveal:hover .growfast-button--text {
	transform: translateX(-0.5rem);
}

.growfast-career__load-more-button.growfast-button--effect-reveal .hs_cos_wrapper_type_icon svg {
	opacity: 0;
	transform: translateX(0);
	transition: opacity .25s, transform .5s;
}

.growfast-career__load-more-button.growfast-button--effect-reveal:hover .hs_cos_wrapper_type_icon svg {
	opacity: 1;
	transform: translateX(0.125rem);
}

.growfast-career__load-more-button.growfast-button--effect-swap .hs_cos_wrapper_type_icon:first-child {
	margin-left: 0;
	margin-right: 0;
	width: 0;
}

.growfast-career__load-more-button.growfast-button--effect-swap .growfast-button--text {
	transition: transform .6s .125s cubic-bezier(.1, .75, .25, 1);
}

.growfast-career__load-more-button.growfast-button--effect-swap:hover .growfast-button--text {
	transition-delay: .1s;
	transform: translateX(1rem);
}

.growfast-career__load-more-button.growfast-button--effect-swap .hs_cos_wrapper_type_icon {
	transition: opacity .4s .25s, transform .6s .25s;
	transition-timing-function: ease, ease;
	transition-delay: 0.25s, 0.25s;
	transition-timing-function: cubic-bezier(.1, .75, .25, 1);
}

.growfast-career__load-more-button.growfast-button--effect-swap .hs_cos_wrapper_type_icon:first-child {
	opacity: 0;
	transform: translateX(-0.75rem);
	transition-delay: 0s;
}

.growfast-career__load-more-button.growfast-button--effect-swap:hover .hs_cos_wrapper_type_icon:first-child {
	opacity: 1;
	transform: translateX(-0.25rem);
	transition-delay: .225s;
}

.growfast-career__load-more-button.growfast-button--effect-swap:hover .hs_cos_wrapper_type_icon:last-child {
	transition-delay: 0s;
	transform: translateX(0.5rem);
	opacity: 0;
}

.growfast-career.growfast-element-animation .isotope-grid-item .growfast-career__item__inner{
  opacity: 0;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

@media (min-width: 993px) {
  .growfast-career.growfast-element-animation.animated .isotope-grid-item .growfast-career__item__inner{
	-webkit-animation-name: default_animation;
	animation-name: default_animation;
  }
}

@media (max-width: 992px) {
  .growfast-career.growfast-element-animation .isotope-grid-item .growfast-career__item__inner{
	opacity: 1 !important;
  }
}

.hubspot-disable-focus-styles .growfast-career.growfast-element-animation .isotope-grid-item .growfast-career__item__inner{
  opacity: 1 !important;
}