
/*--------------------------------------------------------------
#Event
--------------------------------------------------------------*/
.event {
  
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.event:before {
  content: "";
  background:#183883;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.event .about-img {
  position: relative;
  transition: 0.5s;
}
.event .about-img img {
  max-width: 100%;
 /* border: 4px solid rgba(255, 255, 255, 0.2);*/
  position: relative;
}
.event .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  /*border-left: 5px solid #ff9e00;
  border-top: 5px solid #ff9e00;*/
  transition: 0.5s;
}
.event .about-img::after {
  position: absolute;
  right: 50px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  /*border-right: 5px solid #ff9e00;
  border-bottom: 5px solid #ff9e00;*/
  transition: 0.5s;
}
.event .about-img:hover {
  transform: scale(1.03);
}
.event .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.event .about-img:hover::after {
  right: 40px;
  bottom: 10px;
}
.event .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.event .content ul {
  list-style: none;
  padding: 0;
}
.event .content ul li {
  padding-bottom: 10px;
}
.event .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff9e00;
}
.event .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}




.eventLEFT {
  position: relative;
}
.eventLEFT:before {
  content: "";
  
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.eventLEFT .about-img {
  position: relative;
  transition: 0.5s;
}
.eventLEFT .about-img img {
  max-width: 100%;
 /* border: 4px solid rgba(255, 255, 255, 0.2);*/
  position: relative;
}
.eventLEFT .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
 /* border-left: 5px solid #ff9e00;
  border-top: 5px solid #ff9e00;*/
  transition: 0.5s;
}
.eventLEFT .about-img::after {
  position: absolute;
  right: 50px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
 /* border-right: 5px solid #ff9e00;
  border-bottom: 5px solid #ff9e00;*/
  transition: 0.5s;
}
.eventLEFT .about-img:hover {
  transform: scale(1.03);
}
.eventLEFT .about-img:hover::before {
  left: 10px;
  top: 10px;
}
.eventLEFT .about-img:hover::after {
  right: 40px;
  bottom: 10px;
}
.eventLEFT.content h3 {
  font-weight: 600;
  font-size: 26px;
}
.eventLEFT .content ul {
  list-style: none;
  padding: 0;
}
.eventLEFT .content ul li {
  padding-bottom: 10px;
}
.eventLEFT .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff9e00;
}
.eventLEFT .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}


--------------------------------------------------------------*/