.flex-events {
    display: flex;
    gap: 20px;
  }
  .main-counter {
    position: relative;
}
  .countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .countdown > div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 15px rgb(0 0 0 / 53%);
    width: 90px;
    height: 100px;
    border-radius: 5px;
    background: white;
  }
  .number {
    font-weight: 500;
    font-size: 32px;
    color: black;
  }
  .right-event {
    background: white;
    box-shadow: 1px 1px 10px 0 #00000038;
    border-radius: 12px;
    padding: 20px 20px;
    max-width: 350px;
    width: 100%;
    overflow: hidden;
}
.row-box h4 {
    color: #105f27;
    text-transform: capitalize;
    border-bottom: 1px solid #c1c1c1;
    padding-bottom: 10px;
}
.row-box {
    margin-bottom: 10px;
}
.row-box p a {
    color: black;
    text-decoration: none;
}
.row-box p span {
    font-weight: 500;
}
p.para-evetns {
    font-size: 15px;
}
.content-events {
    padding: 30px 0 0;
}
section.event-sec {
    padding: 40px 0;
}
.row-box p {
    margin-bottom: 10px;
}
.event-img {
    border: 1px solid;
}
a.register-btn {
    background: #105f27;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
}
a.register-btn:hover {
    color: white;
}
.event-img img {
    width: 902px;
    height: 401px;
    object-fit: cover;
    background: #105f27;
}
.row-box p i {color: #105f27;margin-right: 10px;}
  @media screen and (max-width: 600px) {
    .countdown {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
    }
    .countdown > div {
      background-color: #fff;
      width: 250px;
      height: 60px;
      margin: 0;
      flex-direction: row;
      justify-content: space-between;
      padding: 20px;
    }
    div span:last-of-type {
      font-size: 24px;
      text-transform: uppercase;
    }
    .number {
      font-size: 34px;
    }
  }
  