.party_top_info{
  width: 100%;
  padding: 20px 0;
  position: relative;
  background: #00ACAC;
  color: white;
}

.party_info_container{
  position: relative;
  height: auto;
  width: auto;
  display: flex;
  overflow: hidden;
  padding: 10px;
}
.party_info_box{
  position: relative;
  height: auto;
  width: 100%;
  margin-right: 10px;
  float: left;
  overflow: hidden;
}
.party_info_box:nth-child(1){
  background: rgba(16,126,195,1);
}
.party_info_box:nth-child(2){
  background: rgba(185,32,37,1);
}
.party_info_box:nth-child(3){
  background: rgba(224,159,68,1);
}
.party_info_box:last-child{
  margin-right: 0;
}
.party_info_pic{
  position: relative;
  top: 0;
  left: 0;
  height: 200px;
  transition: .5s;
}
.party_info_pic img{
  /* filter: grayscale(100%); */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .party_info_container{
    display: block;
  }
  .party_info_box{
    width: 100%;
    flex: none;
    margin-top: 10px;
  }
  .party_info_pic {
    position: absolute;
  }
  .party_info_pic img{
    filter: grayscale(100%);
  }
  .party_info_box:nth-child(1){
    background: rgba(16,126,195,.6);
  }
  .party_info_box:nth-child(2){
    background: rgba(185,32,37,.6);
  }
  .party_info_box:nth-child(3){
    background: rgba(224,159,68,.6);
  }
  .party_details .symbol{
    display: none;
  }
}
.party_info_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.party_info_text{
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  color: white;
  background: inherit;
  overflow: hidden;
  transition: .5s;
}
.party_info_text p{
  color: white;
  padding: 0 20px;
}
.party_info_text h2{
  text-transform: uppercase;
  color: white;
  padding: 20px 10px 5px 10px;
  letter-spacing: 1px;
  font-size: 24px;
}
.party_info_text a[class*="buttoninfo"] {
  font-family: 'Ranchers' , Arial, sans-serif;
  letter-spacing: 3px;
  display: inline-block;
	margin: 20px 0;
  padding: 8px 12px;
  text-decoration: none;
  transition: all .2s ease;
	border: 2px solid white;
  text-transform: uppercase;
}

.party_details{
  background: #F5F5F5;
  flex: 1;
  padding: 20px;
  margin: 10px;
  margin-bottom: 50px;
  color: rgba(0,0,0,.6);
  position: relative;
  border-left: 20px solid #0F7EC2;
}
.party_details:focus{
  outline: none;
}
.party_details h2{
  font-size: 200%;
  color: #0F7EC2;
}
.party_details:nth-child(3n-1){
  border-left: 20px solid #B81F24;
}
.party_details:nth-child(3n-1) h2{
  color: #B81F24;
}
.party_details:nth-child(3n+3){
  border-left: 20px solid #E09F44;
}
.party_details:nth-child(3n+3) h2{
  color: #E09F44;
}

.party_details:nth-child(3n-1) .symbol{
  background: #B81F24;
}
.party_details:nth-child(3n+3) .symbol{
  background: #E09F44;
}
.party_details .symbol{
  background: #0F7EC2;
  position: absolute;
  top: 0;
  right: 20px;
  height: 60px;
  width: 120px;
  color: #F5F5F5;
}
.party_details .symbol img{
  position: absolute;
  top: 5px;
  left: 35px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transition: .5s ease;
}
.party_details h2{
  font-weight: bold;
}
#safty p{
  margin-top: 10px;
}
#extras h4{
  color: #0F7EC2;
  padding-top: 20px;
  border-bottom: none;
  letter-spacing: 1px;
}
.party_details ul{
  padding: 20px;
}
.party_details li{
  padding: 10px;
  border-top: 1px solid rgba(0,0,0,.1);
  font-family: 'Nunito', sans-serif;
}
.party_details li:first-child{
  border-top: none;
}
@media screen and (max-width: 800px) {
  .party_details li{
    padding: 5px 10px;
  }
}

.top_pic{
  width: 100%;
  height: 500px;
  min-height: 300px;
  position: relative;
}
.top_title{
  position: relative;
  width: 100%;
  padding: 30px;
  color: white;
}
.top_pic img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
