.event-header-container {
    background: #000000;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.event-content-container {
    padding: 50px;
    background-color: rgb(255 255 255 / 99%);
    backdrop-filter: blur(30px);
  	-webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 12px 18px -6px rgb(0 0 0 / 30%);
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 5px;
}

.counter-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-basis: 50%;
}

.event-overview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 80%;
    margin: 30px auto;
}

.event-overview-container .event-button {
	width: 100%;
    margin-top: 80px;
}

.event-overview-content i {
    padding: 10px;
    color: #e60000;
    font-size: 22px;
    font-weight: 500;
}

.event-overview-content div {
    padding: 10px 20px;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center; 
}

.event-content-container h1 {
    color: #e60000;
    font-weight: 300;
    margin-bottom: 20px;
}

.event-overview-content {
    border-radius: 5px;
    background-color: #f4f4f4;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    margin: auto;
}

.event-overview-content_wrapper {
	flex-grow: 1;
    flex-basis: 50%;
}

.event-button {
    display: inline-block;
    min-width: 300px;
    margin: 20px 0px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 10px;
    background-color: #e60000;
    font-size: 22px;
    text-align: center;
    cursor: pointer;
}

.event-info {
    margin: 20px 0;
    font-size: 20px;
    line-height: 1.4em;
}

div#fme-event-counter {
    padding: 30px;
    font-size: 32px;
    font-weight: 300;
    margin: 20px 0px;
    color: #e60000;
}

@media screen and (max-width: 1200px) {
  .event-overview-content_wrapper, .counter-container {
	flex-basis: 100%;
  }
}



.blob-c {
    min-height: 100vh;
    overflow: hidden;
    position: absolute;
    width: 100%;
    filter: blur(10px);
}

.shape-blob {
	background:#e60000;
	height: 80px;
	width: 80px;
	border-radius: 40% 50% 30% 40%;
  	animation: 
		transform 18s ease-in-out infinite both alternate,
		movement_one 12s ease-in-out infinite both;
	opacity:.7;
	position: absolute;
	left: 80%;
	top: 60%;
}
.shape-blob.one{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 110px;
	width: 110px;
	left: 10px;
	top: 10px;
	transform: rotate(-180deg);
	animation: transform 8s ease-in-out infinite both alternate, movement_two 20s ease-in-out infinite both;
}

.shape-blob.six{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 90px;
	width: 90px;
	left: 160px;
	top: 250px;
	transform: rotate(-180deg);
	animation: transform 5s ease-in-out infinite both alternate, movement_two 5s ease-in-out infinite both;
}

.shape-blob.four{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 80px;
	width: 80px;
	left: 350px;
	top: 60px;
	transform: rotate(-180deg);
	animation: transform 17s ease-in-out infinite both alternate, movement_two 13s ease-in-out infinite both;
}

.shape-blob.five{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 120px;
	width: 120px;
	left: 480px;
	top: 30px;
	transform: rotate(-180deg);
	animation: transform 12s ease-in-out infinite both alternate, movement_two 18s ease-in-out infinite both;
}

.shape-blob.two{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 110px;
	width: 110px;
	right: 500px;
	top: 250px;
	transform: rotate(-180deg);
	animation: transform 10s ease-in-out infinite both alternate, movement_two 10s ease-in-out infinite both;
}

.shape-blob.three{
	background-image: linear-gradient(135deg,#e60000 0%,#de004b 100%);
	height: 100px;
	width: 100px;
	right: 800px;
	top: 30px;
	transform: rotate(-180deg);
	animation: transform 7s ease-in-out infinite both alternate, movement_two 23s ease-in-out infinite both;
}

@keyframes transform
{
    0%,
  100% { border-radius: 100% 95% 93% 88% / 88% 93% 95% 98%; } 
}


@keyframes movement_one
{
    0%,
  100% { transform: none; }
   50% { transform: translate(50%, 20%) rotateY(10deg) scale(1); }
}

@keyframes movement_two
{
    0%,
  500% { transform: none; }
   50% { transform: translate(50%, 20%) rotate(-200deg) scale(1.3);}
}
