html, body {
    height: 100%;
   font-family: 'Noto Sans Bengali', sans-serif;
  font-weight: 500;
  font-style: normal;
}
main {
    height: 100%;
    overflow-y: auto;
    background: url('../iamges/bg.png');
    background-position: center center;
    background-size: cover;

}

.agenda {
    padding: 56px 0px;
}
.agenda__content-intro {
    padding: 50px 35px;
    background-color: rgba(255,255,255, .95);
    box-shadow: 0 4px 10px 0px rgba(0,0,0, 25%);
     border-radius: 16px;
     margin-bottom: 35px;
     text-align: center;
}
.agenda__content-intro h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}
.agenda__content-intro h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 24px;
}
.agenda__content-intro p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
      margin-bottom: 10px;
}
.agenda__content {
    background-color: rgba(255,255,255, .90);
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 27px;
    box-shadow: 0 4px 10px 0px rgba(0,0,0, 25%);
    cursor: pointer;
}

.agenda__header {
    margin-bottom: 16px;
    position: relative;
}
.agenda__header:before {
    position: absolute;
    content: '';
    top: 0px;
    left: -11px;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: .3s;
    background: #00cc36;
}
.agenda__header span  {
    color: #000000;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding-bottom: 20px;
    transition: .3s;
}

.agenda__header h4 {
    color: #696969;
    font-size: 44px;
    line-height: 44px;
    font-weight: 600;
    margin: 0px;
}
.agenda__content p {
   font-weight: 400;
  font-size: 14px;
 line-height: 20px;

}
.agenda__content h3 {
    /* font-size: 10px; */
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.agenda__content:hover .agenda__header::before {
    opacity: 1;
}

/* .agenda__content:hover .agenda__header h4 {
    color: #696969;
} */
.agenda__content:hover .agenda__header span{
    color: #fd3f3f
}