@charset "UTF-8";
/* CSS Document */

.page__header:before, .page__header:after{
	display: none;
}

.social-wall__header.page__header h1 {
	text-transform: uppercase;
	width: 80%;
	font-size: 10vw;
	line-height: 8.5vw;
}

.social-wall__header .frame{
	 position: absolute;
	 z-index: 0;
	 left: 0;
	 top:0;
	 width: 100%;
	 height: 100%;
 }
.social-wall__header .frame .paper_element{
	position: absolute;
	width: 3.5vw;
	height: 3.5vw;
}
.social-wall__header .frame .paper_element.top_left{
	left: 1.5vw;
	top: 1.5vw;
}
.social-wall__header .frame .paper_element.top_right{
	right: 1.5vw;
	top:1.5vw;
}
.social-wall__header .frame .paper_element.bottom_left{
	left: 1.5vw;
	bottom: 1.5vw;
	transform: rotate(-90deg);
}
.social-wall__header .frame .paper_element.bottom_right{
	right: 1.5vw;
	bottom: 1.5vw;
	transform: rotate(90deg);
}
.hashtag_info{
	position: relative;
	padding: 5vh 2vw 8vh;
	text-align: center;
	text-transform: uppercase;
}

.hashtag_info h1{
	font-size: max(2vw, 1.5rem);
	line-height: max(2vw, 1.5rem);
	font-family: 'StainlessCond', sans-serif;
}

.hashtag_info h1 span{
	font-size: max(3vw, 2.5rem);
	line-height: max(3vw, 2.5rem);
	display: block;
}


.masonry {
	column-count: 4;           /* Change to 2 or 4 for different layouts */
	column-gap: 0.5rem;
	padding: 15px;
}

.masonry-item {
	break-inside: avoid;
	margin-bottom: 0rem;
	border-radius: 8px;
	overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;

}

.social-wall__item,
.social-wall__item-cover{
	position: relative;
	z-index: 1;
}
.social-wall__item:before, .social-wall__item:after{
	content:'';
	position: absolute;
	width: 100%;
	height: 30px;
	left: 0;
	background-size: contain;
	background-repeat: repeat-x;
	z-index: 2;
}
.social-wall__item:before{
	top:.-2px;
	background-image: url(../images/elements/social_wall_top.svg);
	background-position:  top;
}
.social-wall__item:after{
	bottom:-2px;
	background-image: url(../images/elements/social_wall_bottom.svg);
	background-position:  bottom;
}
.social-wall__item-cover:before, .social-wall__item-cover:after{
	content:'';
	position: absolute;
	width: 30px;
	height: 100%;
	top:0;
	background-size: contain;
	background-repeat: repeat-y;
	z-index: 2;
}
.social-wall__item-cover:before{
	left: -2px;
	background-image: url(../images/elements/social_wall_left.svg);
	background-position:  left;
}
.social-wall__item-cover:after{
	right: -2px;
	background-image: url(../images/elements/social_wall_right.svg);
	background-position:  right;
}

.social-wall__category{
	/* display: flex; */
	gap: 10px;
	justify-content: center;
	margin-bottom: 5vh;
	display: none;
}

.social-wall__category .rounded_button a{
	font-size: 1.3rem;
	line-height: 1.3rem;
}

@media(max-width:1400px){
	.masonry {
		column-count: 3;
	}
}

@media(max-width:767px){
	.page__main {
		padding: 80px 0px 20px;
	}
	.social-wall__header .frame .paper_element {
		position: absolute;
		width: 6.5vw;
		height: 6.5vw;
	}
	.social-wall__header.page__header h1 {
		font-size: 13vw;
		line-height: 10.5vw;
	}
	.page__header {
		margin-bottom: 0px;
	}
	.masonry {
		column-count: 2;
	}

	.social-wall__item:before, .social-wall__item:after{
		height: 12px;
	}
	.social-wall__item-cover:before, .social-wall__item-cover:after{
		width: 12px;
	}

	.social-wall__category{
		gap: 5px;
		margin-bottom: 2vh;
	}
	.hashtag_info {
		padding: 3vh 2vw 4vh;
	}

	.social-wall__category .rounded_button a{
		font-size: 0.8rem;
		line-height: 0.8rem;
		padding: 10px 20px 10px 12px;
	}

	.social-wall__category .rounded_button:after {
		width: 0.8rem;
		height: 0.8rem;
		right: 5px;
		top: calc(50% - 7px);
	}
}


/*
.animation_item{
	transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart * /
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
} */