/* FX */

.fx-shadow {

	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	border: 1px solid #ddd;

}
.fx-back-pop-in {

	filter: opacity(0);
	transform: translateX(12px) translateY(12px);
	transition: all 500ms;

}
.fx-back-pop-in::before {

    filter: opacity(0);
    transform: translateX(-12px) translateY(-12px);
    transition: all 500ms 200ms;

}
.fx-back-pop-in.show {

    filter: opacity(1);
    transform: translateX(0px) translateY(0px);

}
.fx-back-pop-in.show::before {

    filter: opacity(1);
    transform: translateX(0px) translateY(0px);

}

/* on scroll slide elements in / out at top / bottom when moving out of viewport */

.fx-slide-up {
		transition: all 700ms;
		filter: opacity(0);
		transform: translateY(100px);
}
.fx-slide-up.show {
    transform: translateY(0px);
    filter: opacity(1);
}
.fx-slide-up.show.background {
    background-color: rgba(255,255,255,0.05);
}
.fx-slide-up.hide-up {
    transform: translateY(-100px);
    filter: opacity(0);
}

.fx-slide-down {
		filter: opacity(0);
		transition: all 1000ms;
		transform: translateY(-100px);
}
.fx-slide-down.show {
    transform: translateY(0px);
    filter: opacity(1);
}
.fx-slide-down.background {
    background-color: rgba(255,255,255,0.05);
}
.fx-slide-down.hide-up {
    transform: translateY(-130px);
    filter: opacity(0);
}

/* fx list items slide in -------------------------------------- */

ul.fx-list-items-slide-in li {

    transform-origin: center;
    transition: transform 0ms, filter 0ms;
    transform: scale(.5);
    filter: opacity(0);

}

ul.fx-list-items-slide-in.show li {

    transition: transform 500ms ease-in-out, filter 400ms ease-in-out;
    transform: scale(1);
    filter: opacity(1);

}

ul.fx-list-items-slide-in.show li:nth-child(1) {
    transition-delay: 0;
}
ul.fx-list-items-slide-in.show li:nth-child(2) {
    transition-delay: 0.15s;
}
ul.fx-list-items-slide-in.show li:nth-child(3) {
    transition-delay: 0.3s;
}
ul.fx-list-items-slide-in.show li:nth-child(4) {
    transition-delay: 0.45s;
}
ul.fx-list-items-slide-in.show li:nth-child(5) {
    transition-delay: 0.6s;
}
ul.fx-list-items-slide-in.show li:nth-child(5) {
    transition-delay: 0.75s;
}
ul.fx-list-items-slide-in.show li:nth-child(6) {
    transition-delay: 0.9s;
}
ul.fx-list-items-slide-in.show li:nth-child(7) {
    transition-delay: 1.05s;
}
ul.fx-list-items-slide-in.show li:nth-child(8) {
    transition-delay: 1.20s;
}
ul.fx-list-items-slide-in.show li:nth-child(9) {
    transition-delay: 1.35s;
}
ul.fx-list-items-slide-in.show li:nth-child(10) {
    transition-delay: 1.5s;
}
ul.fx-list-items-slide-in.show li:nth-child(11) {
    transition-delay: 1.65s;
}
ul.fx-list-items-slide-in.show li:nth-child(12) {
    transition-delay: 1.8s;
}
ul.fx-list-items-slide-in.show li:nth-child(13) {
    transition-delay: 1.95s;
}
ul.fx-list-items-slide-in.show li:nth-child(14) {
    transition-delay: 2.1s;
}
ul.fx-list-items-slide-in.show li:nth-child(15) {
    transition-delay: 2.25s;
}
ul.fx-list-items-slide-in.show li:nth-child(16) {
    transition-delay: 2.4s;
}
ul.fx-list-items-slide-in.show li:nth-child(17) {
    transition-delay: 2.55s;
}
ul.fx-list-items-slide-in.show li:nth-child(18) {
    transition-delay: 2.7s;
}
ul.fx-list-items-slide-in.show li:nth-child(19) {
    transition-delay: 2.85s;
}

/* footer fx + mood image -------------------------------------- */

.footer-mood-image {

    margin-top: -10000px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);

}
@media (max-width: 599px) {
    .footer-mood-image {

        width: 100px;
        transform: translateX(-50%) translateY(-110%);
    
    }
}
@media (max-width: 1239px) {
    .footer-mood-image {

        width: 140px;
        transform: translateX(-50%) translateY(-110%);
    
    }
}

footer.wp-block-template-part {
    position: relative;
    margin-top: 13vw;
}

footer.wp-block-template-part::before {

    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    transform-origin: center;
    transform: skew(0deg,-3deg);
    background-color: #ffffff;
    display: block;
    top: 250px;

}
