/* Styling the background of 
    left floating section */
section .content {
  color: #fff;
  background: #f9f7f7;
  padding: 40px;
  transition: 0.5s;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
section .content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* Styling the hover effect  
            of left floating section */
section .content:hover {
  background: #e0f6cf;
}

/* Styling the header of left 
            floating section */
section .content h1 {
  margin: 0;
  padding: 0;
  font-size: 50px;
  text-transform: uppercase;
  color: black;
  font-weight: 600;
}
@media (max-width: 1199.5px) {
  section .content h1 {
    font-size: 40px;
  }
}

/* Styling the paragraph of 
            left floating section */
section .content p {
  margin: 10px 0 0;
  padding: 0;
  color: black;
  text-align: justify;
}
@media (max-width: 1199.5px) {
  section .content p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Styling the three events section */
section .events .content {
  padding: 40px;
  background: #f9f7f7;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* Styling the links of 
        the events section */
section .events ul h2 {
  font-size: 50px;
  color: black;
}

/* Styling the lists of the event section */
section .events ul li {
  list-style: none;
  background: #fff;
  box-sizing: border-box;
  height: 240px;
  margin: 10px 0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1199.5px) {
  section .events ul li {
    height: 200px;
  }
}

/* Styling the time class of events section */
section .events ul li .time {
  position: relative;
  padding: 20px;
  background: #262626;
  box-sizing: border-box;
  width: 30%;
  height: 100%;
  float: left;
  text-align: center;
  transition: 0.5s;
}

/* Styling the hover effect
            of events section */
section .events ul li:hover .time {
  background: #70A548;
}

/* Styling the header of time 
            class of events section */
section .events ul li .time h2 {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 60px;
  line-height: 30px;
}

/* Styling the texts of time 
        class of events section */
section .events ul li .time h2 span {
  font-size: 30px;
}

/* Styling the details 
        class of events section */
section .events ul li .details {
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  width: 70%;
  height: 100%;
  float: left;
}

/* Styling the header of the 
        details class of events section */
section .events ul li .details h3 {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 22px;
  color: black;
}

/* Styling the lists of details 
        class of events section */
section .events ul li .details p {
  position: relative;
  margin: 10px 0 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
}

/* Styling the links of details
        class of events section */
section .events ul li .details a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  border: 2px solid #262626;
  margin-top: 8px;
  font-size: 18px;
  transition: 0.5s;
  color: black;
}
@media (max-width: 1199.5px) {
  section .events ul li .details a {
    padding: 8px;
  }
}

/* Styling the details class's hover effect */
section .events ul li .details a:hover {
  background: black;
  color: #fff;
  border-color: black;
}

button {
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 4px;
  padding: 10px 15px;
}
button:hover {
  color: white;
  background-color: black;
}

@media (max-width: 992px) {
  .events {
    background: #f9f7f7 !important;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 470px;
  }
}
@media (max-width: 375.8px) {
  section .events ul {
    top: 50%;
    padding: 20px;
  }
  section .events ul li {
    height: 250px;
  }
}
/* Media query for screens up to 768 pixels */
@media (max-width: 768px) {
  /* Adjusting width for events */
  .events {
    width: 100%;
  }
  /* Making events li stack on top of each other */
  .events ul li {
    float: none;
    width: 100%;
  }
  /* Adjusting width for time and details */
  .events ul li .time,
  .events ul li .details {
    width: 100%;
  }
  /* Styling for the content inside */
  .content {
    padding: 10px;
  }
  /* Styling for the time and details sections */
  .events ul li .time,
  .events ul li .details {
    padding: 10px;
  }
  /* Styling for the headers in time and details sections */
  .events ul li .time h2,
  .events ul li .details h3 {
    font-size: 18px;
  }
  /* Styling for the paragraph in details section */
  .events ul li .details p {
    font-size: 14px;
  }
  /* Styling for the view details link */
  .events ul li .details a {
    font-size: 14px;
    padding: 5px 10px;
  }
}
#show-more {
  width: 10%;
  border: 2px solid black;
}
@media screen and (max-width: 1199.8px) {
  #show-more {
    width: 12% !important;
  }
}
@media screen and (max-width: 991.8px) {
  #show-more {
    width: 15% !important;
  }
}
@media screen and (max-width: 767.8px) {
  #show-more {
    width: 20% !important;
  }
}
@media screen and (max-width: 536.8px) {
  #show-more {
    width: 22% !important;
  }
}
@media screen and (max-width: 488.8px) {
  #show-more {
    width: 25% !important;
  }
}
@media screen and (max-width: 429.8px) {
  #show-more {
    width: 28% !important;
  }
}
@media screen and (max-width: 383.8px) {
  #show-more {
    width: 34% !important;
  }
}
@media screen and (max-width: 316.8px) {
  #show-more {
    width: 36% !important;
  }
}
#show-more:hover {
  background-color: black;
  border-color: black;
}

#show-less {
  width: 10%;
  border: 2px solid black;
}
@media screen and (max-width: 1199.8px) {
  #show-less {
    width: 12% !important;
  }
}
@media screen and (max-width: 991.8px) {
  #show-less {
    width: 15% !important;
  }
}
@media screen and (max-width: 767.8px) {
  #show-less {
    width: 20% !important;
  }
}
@media screen and (max-width: 536.8px) {
  #show-less {
    width: 22% !important;
  }
}
@media screen and (max-width: 488.8px) {
  #show-less {
    width: 25% !important;
  }
}
@media screen and (max-width: 429.8px) {
  #show-less {
    width: 28% !important;
  }
}
@media screen and (max-width: 383.8px) {
  #show-less {
    width: 34% !important;
  }
}
@media screen and (max-width: 316.8px) {
  #show-less {
    width: 36% !important;
  }
}
#show-less:hover {
  background-color: black;
  border-color: black;
}/*# sourceMappingURL=event-one.css.map */