.top{
    padding: 3vh;
    background-color: white;
}
.intro {
    text-align: center;
    color: black;
    font-size: 4rem;
    margin-top: 5vh;
    margin-bottom: 3vh;
}
.logo-link{
    color: black;
}
.nav-link{
    color: black;
}
.nav-link:hover{
    color: rgb(57, 57, 57);
}
.dropdown-content li a{
    color: black;
}
.dropdown-content li a:hover{
    color: rgb(57, 57, 57);
}
.bar{
    background-color: black;
}
.search-inputcont{
    background-color: white;
    padding: 3px 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 60%;
    min-width: 250px;
    display: inline-block;
    border: 2px solid rgb(200, 200, 200);
    border-right: none;
}
.search-input{
    background-color: white;
    border: none;
    font-size: 1rem;
    height: 31px;
    color: black;
    width: 100%;
}
.search-input:focus{
    outline: none;
}
.search-btn{
    display: inline-block;
    padding: 5px 13px 2px 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    min-width: 70px;
    max-width: 120px;
    width: 25%;
    font-size: 1.1rem;
    height: 41px;
    background-color: #32ccff;
    color: white;
    cursor: pointer;
    border: none;
}
.search-input-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    margin: auto;
}
.search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 0.8; /* Firefox */
}
  
.search-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}
  
.search-input::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
}
.search-inputcont:focus-within {
    border-color: #32ccff;
}
.events{
    text-align: center;
    padding: 2vh 2vw 8vh 2vw;
  min-height: 60vh;
}
.events-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    width: 60vw;
    margin: 30px auto 0 auto;
}
.events-img{
    width: 30vw;
    max-width: 350px;
    min-width: 250px;
    border-radius: 20px;
    cursor: pointer;
}
.event-none{
    font-size: 1.7rem;
    text-align: center;
    margin: 10vh 2vw;
}
.filters-btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.filters-btn{
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    min-width: 70px;
    max-width: 120px;
    width: 100%;
    font-size: 1.1rem;
    height: 41px;
    background-color: #32ccff;
    color: white;
    margin: 2vh auto;
    cursor: pointer;
    border: none;
}
.filters-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2vh;
}
.filters-title{
    text-align: center;
    font-size: 1.4rem;
    cursor: pointer;
}
.filters-icon{
    text-align: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.5s;
}
.filters-icon.active{
    transform: rotate(-180deg);
}
.filters-content{
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.7s; 
    -moz-transition: max-height 0.7s; 
    -ms-transition: max-height 0.7s; 
    -o-transition: max-height 0.7s; 
    transition: max-height 0.7s;
}
.filters-content.active{
    max-height: 300px;
}
.filters-date-title{
    margin: 2vh auto 0 auto;
    text-align: center;
}
.filters-date{
    border: 2px solid rgb(200, 200, 200);
    width: 60%;
    min-width: 250px;
    padding: 3px 15px;
    border-radius: 20px;
    height: 41px;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;;
    margin: 1vh 1vw 0 1vw;
    outline: none;
    font-size: 1.1rem;
}
.filters-date:focus{
    border-color: #619bae;
}
.filters-events{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    margin: 1vh auto 0 auto;
}
.filters-events-content div{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.filters-events-content div label{
    cursor: pointer;
}

.round {
    position: relative;
  }
  
  .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    width: 15px;
  }
  
  .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 3px;
    left: 2px;
    opacity: 0;
    position: absolute;
    top: 3px;
    transform: rotate(-45deg);
    width: 7px;
  }
  
  .round input[type="checkbox"] {
    visibility: hidden;
  }
  
  .round input[type="checkbox"]:checked + label {
    background-color: #32ccff;
    border-color: #32ccff;
  }
  
  .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }