.master-events-container{
  min-height: 110vh;
  
}

.event-cards-container{
    width: auto;
    margin: auto;
    display: flex;
    flex-wrap:wrap;
    justify-content:space-evenly;
    min-height: 100vh;
   
}

.event-card{
    height: auto;
    border: 1px solid rgb(211, 210, 210);
    margin: 30px;
    width: 550px;
    border-radius: 10px;
    transition: 0.2s;
    display: none;
}

.show{
  display: block;
}

.event-card:hover{
    box-shadow: 0px 0px 20px rgb(216, 216, 216);
    transition: 0.2s;
    transform:translatey(-10px)
}

@media (max-width:600px) {
    .event-card{
        margin: 20px 0px;
        width: auto;
    }
    .event-cards-container{
        margin: 15px;
    }
    .event-card-content p{
        height: 140px!important;
    }
    .event-card-image-container2{
        height: 300px!important;
    } 
}

.event-card-content p{
    height: 80px;
    color: #5a5a5a;
}

.event-card-content h2{
    color: #012970;
    font-weight: 600;
}

.event-card-image-container2{
    width: auto;
    height: 350px;
    background-repeat: no-repeat;
    background-size:contain;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: black;
} 

.event-date-btn{
    margin: 10px;
    margin-bottom: 10px;
    line-height: 40px;
}

.event-date-btn span{
    color:#a19f9f;
    font-size: 15px;
}

/*.event-card-image-container img{
    width:100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}*/

.event-date-btn a{
    background: #4154f1;
    padding: 0px 20px;
    border-radius: 4px;
    color: #fff;
    float:right;
}

.event-btn:hover {
    color: #fff;
    background: #5969f3;
  }

.event-card-content{
    padding: 10px;
}

.event-card-content p{
    text-align: justify;
}


.lds-dual-ring {
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
  }

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    margin: 8px;
    border-radius: 50%;
    border: 8px solid rgb(180, 17, 17);
    border-color: #012970 transparent #012970 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

@keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  

.fade-in-bottom {
  display: flex;
	-webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.0s both;
	        animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.0s both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }

.event-card-image-container2:hover #image-overlay{
    opacity: 1;
  }

#event-img-btn{
    border: 2.5px solid #fff;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    font-family:"Nunito";
}

#image-overlay{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.61);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition:all 0.2s ease-in-out 0s;
  }


  /*Filter Buttons*/
  .button-group{
    padding: 0;
    margin: 15px 0px 0px 0px;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
    overflow: hidden;
  }
  
  .button {
      cursor: pointer;
      display: inline-block;
      padding: 12px 20px 15px 20px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      color: #444444;
      margin: 0 4px 8px 4px;
      transition: 0.3s;
      border-radius: 50px;
      border: 1px solid #fff;
  }
  
  .button:hover {
    color: #4154f1;
    border-color: #4154f1;
  }
  
  .button.active {
    background-color: #28F;
    color: white;
  }

  #event-search-input{
    outline:none;
    border-radius: 50px;
    padding: 7px 10px 10px 10px;
    border: 1px solid #b3b3b3;
    margin:auto 10px;
    font-size: 15px;
    color: #444444;
    width: 250px;
  }

  #event-search-input:focus{
    border:1px solid #4154f1;
  }
  
  @media (max-width:600px){
    #event-search-input{
      margin-top: 5px;
    }
  }
  