/* FIXED FOOTER */



.carousel-cell {
  width: 20%; 
}

.flickity-viewport {
	width: 100%;
}

section.fixed-footer{
	position:fixed;
	z-index:100;
	padding-top: 10px;
	padding-bottom: 10px;
	bottom:0;
	left:0;
	width:100%;
	background:var(--darkest-purple);
	transform:translateY(100%);
	transition:all 0.3s;
	box-shadow:0 0 16px rgba(0,0,0,0.1);
}

section.fixed-footer::before,
section.fixed-footer::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px; 
  z-index: 10;
  pointer-events: none;
}

section.fixed-footer::before {
  left: 0;
  background: linear-gradient(to right, var(--darkest-purple) 0%, transparent 100%);
}

section.fixed-footer:after {
  right: 0;
  background: linear-gradient(to left, var(--darkest-purple) 0%, transparent 100%);
}

section.fixed-footer.visible{
	transform:translateY(0);
}
section.fixed-footer .row{
	display:flex;
	justify-content:center;
	max-width: 1200px;
	margin: auto;
}
section.fixed-footer a.item{
	text-align: center;
	display: block;
	padding:10px;
	transition:all 0.3s;
	border-right: 1px solid var(--main-color);
	border-bottom:none;
}
section.fixed-footer a.item:last-of-type {
	border: none;
}
section.fixed-footer a.item .icon{
	color:var(--third-color);
}
section.fixed-footer a.item:hover .icon{
	color:var(--lighter-gold);
}
section.fixed-footer a.item:last-of-type{
	border:none;
}
section.fixed-footer a.item:hover{
}
section.fixed-footer .item p{
	margin: 0;
	text-transform: capitalize;
	font-size: 0.9em;
	font-weight: 500;
	line-height:1.3em;
	color: var(--light-grey);
	  font-family: var(--main-font);
}
section.fixed-footer .item p.smaller{
	font-size:0.6em;
}
section.fixed-footer .icon{
	margin-bottom:5px;
}
section.fixed-footer .icon i{
	font-size:1.5em;
}



@media screen and (max-width: 800px){
	section.fixed-footer {
	}
	
	.carousel-cell {
	  width: 27%; 
  }
}




@media screen and (max-width: 550px){
	section.fixed-footer {
	}
}

@media screen and (max-width: 400px){
	section.fixed-footer {
	}
}