/*CSS Injector for dev Data Day page*/

/*Hiding the page title*/
#page-title {
  display: none;
}

/*Hero section*/
.eb-parallax .even {
  width: min-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: unset !important;
}

h3.about-hero-title {
  background-color: unset !important;
  width: 800px;
  color: white !important;
  text-transform: uppercase !important;
  font-size: 50px !important;
}

h5.big-sub-title {
  font-size: 35px;
}

h5.big-sub-title s {
  text-decoration-thickness: 2px;
}

.eb-parallax {
  background: rgba(0,0,0,0.65) !important;
}

/*Days left, speakers, and dashboards counters*/
.counters {
  display: flex;
  gap: 40px;
  background: rgba(0,0,0, 0.65);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.counters .counter {
  width: 150px;
}

.counters .number {
  color: white !important;
  background: unset;
  font-size: 40px !important;
}

.counters .text {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 18px;
}

/*Sign up and lunch buttons*/
.save_the_date {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.btn-large .fas,
.btn-large .far {
  font-size: 2em;
}

.save_the_date .btn-large {
  background: #d73f09 !important;
  border: unset;
  padding: 20px;
  border-radius: 100px;
}

/*Event cards*/
.event-cards {
  display: flex;
  flex-direction: column;
}

.event {
  display: flex;
  height: fit-content;
  min-height: 180px;
  box-shadow: 10px 10px 15px grey;
  width: 100%;
  margin: auto;
  margin-bottom: 20px !important;
  border-radius: 10px;
}

.event .event-time{
  min-width: 25%;
  background-color: #242424;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  min-width: 200px;
}

.event .event-time h5 {
  margin-bottom: 0;
  font-size: 40px;
}

.event .event-text {
  padding: 10px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.event .event-title {
  font-weight: bolder;
  text-transform: uppercase;
  color: #d73f09;
}

.event .event-desc {
  font-size: 16px;
}

.event .event-desc p {
  margin-bottom: 0 !important;
}

.event .pills {
  margin-top: auto;
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 16px;
  flex-wrap: wrap;
}

.event .event-type {
  width: fit-content;
  padding: 3px 15px;
  border-radius: 20px;
  background: #d73f09;
  color: white;
}

.event .event-duration {
  width: fit-content;
  padding: 3px 15px;
  border-radius: 20px;
  background: #FDD26E;
  color: black;
}

.event .event-audience {
  width: fit-content;
  padding: 3px 15px;
  border-radius: 20px;
  background: #C6DAE7;
}

.event .type-null {
  display: none;
}

.divider-line {
  width: 80px;
  border: 3px solid #d73f09;
  height: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}


/*Responsive CSS*/
@media (max-width: 1280px){
  .paragraphs-item-12121 {
    padding: 0 !important;
    margin: 0 5%;
  }
}

@media (max-width: 767px){
  .save_the_date {
    flex-direction: column;
    gap: 0px !important;
  }
  
  .save_the_date .btn-large {
    width: 100% !important;
    display: flex;
  }
  
  .save_the_date .btn-large {
    justify-content: center;
  }
  
  .counters .counter {
    width: unset;
  }
  
  h3.about-hero-title {
    width: 100%;
    line-height: 50px;
  }
  
  .event-cards .event {
    flex-direction: column;
  }
  
  .event-time {
    width: 100% !important;
    border-radius: 10px 10px 0 0 !important;
    min-height: 100px;
    padding-top: 20px;
  }
}