.bg-green {
  background-color: #2b79c3;
  color: white;
}

.bg-blue {
  background-color: #3c4652;
  color: white;
}

.cl-blue {
  color: #3c4652;
}

.cl-green {
  color: #2b79c3;
}

body {
  padding: 30px;
  font-size: 20px;
font-family: 'Lato', sans-serif;
}

section {
  margin-top: 20px;
}

section.header-sec {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

section.header-sec .heading-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.heading-txt h2 {
  margin: 0;
  font-weight: 800;
}

.heading-txt h3 {
  margin: 0;
  font-weight: 600;
  font-style: italic;
}

section .logo {
  width: 300px;
  height: 168px;
}

.logo img {
  width: 100%;
}

section.content {
  display: flex;
  flex-direction: column;
}

.content>.description {
  padding: 25px 45px;
}

.content .tables-sec {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.content .video-sec {
  margin: 30px;
  box-shadow: 0 0 5px 10px lightgray;
  padding: 20px;
}

.content .tables-sec .title {
  padding: 20px;
  font-size: 40px;
}

.tables-sec .agenda-table {
  width: 55%;
  text-align: right;
}

.tables-sec .event-table {
  width: 38%;
}

.event-table > p {
  margin-right: 20px;
  background-color: #e1e1e1;
  line-height: 2.5rem;
  padding: 20px;
}

.agenda-table .table-row {
  display: flex;
  margin: 20px 0 0 20px;
  justify-content: space-between;
  text-align: right;
}

.table-row .time {
  width: 40%;
  margin-right: 20px;
  padding: 15px;
  background-color: #e1e1e1;
  font-weight: 900;
  letter-spacing: 2;
}

.table-row .description {
  display: flex;
  align-items: center;
  width: 60%; 
  justify-content: flex-end;
}

@media only screen and (max-width: 900px) {
  section .logo {
    width: 200px;
    height: 130px;
  }

  .table-row .description {
    font-size: 16px;
  }

  .table-row .time {
    width: 25%;
  }
  .event-table > p {
    line-height: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .content .tables-sec {
    flex-direction: column;
  }

  .tables-sec .agenda-table {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .agenda-table .table-row {
    margin-left: 0;
  }

  .table-row .description {
    font-size: 20px;
  }

  .table-row .time {
    width: 30%;
  }

  .tables-sec .event-table {
    width: 100%;
  }

  .tables-sec .event-table {
    width: 100%;
    text-align: center;
  }

  .event-table > p {
    margin-right: 0;
  }
}

@media only screen and (max-width: 610px) {
  section.header-sec  {
    flex-direction: column;
    align-items: center;
  }

  section.header-sec .heading-txt {
    align-items: center;
  }

  .table-row .description {
    font-size: 16px;
  }

  .table-row .time {
    width: 25%;
  }

  .content .video-sec {
    padding: 10px;
    margin: 20px;
  }

  .content .tables-sec .title {
    font-size: 30px;
    padding: 15px;
  }

  .table-row .time {
    padding: 13px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 500px) {
  .heading-txt h2 {
    font-size: 27px;
  }
}