*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--main-background-color);
}

/* root theme attributes */
:root {
  --dark-color: #272a31;
  --main-theme-color: #ec5242;
  --main-background-color: #fff;
  --white-color: #fff;
  --grey-color: #d3d3d3;
  --menu-items-color: #000;
}

/* toolbar section| header */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.toolbar-menu {
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hamburger {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  color: var(--dark-color);
}

/* Mobile Menu */
.menu-list {
  display: none;
}

.program-link-desktop {
  display: none;
}

.mobile-menu {
  position: fixed;
  width: 100%;
  left: 0;
  background-color: var(--white-color);
  z-index: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow-y: hidden;
  height: calc(100vh - 50px);
  top: 0;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(37, 47, 137, 0.08);
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100px;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
}

.mobile-menu-list-items {
  list-style: none;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  margin-top: 30px;
  margin-left: 30px;
  text-decoration: none;
}

.mobile-menu-list-items a {
  text-decoration: none;
  color: var(--mobile-items-color);
}

.close-btn {
  position: absolute;
  margin: 10px;
  top: 60px;
  right: 50px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.hidden {
  display: none;
}

#footer-section {
  display: none;
}

#partner-section {
  display: none;
}

/* Mobile Menu END */

/* menu */

/* social navbar */
.menu-container .social-navbar {
  display: none;
}

/* toolbar section| header END */

/* hero section|STARt */
#hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
  background-size: cover;
  top: 0;
  margin-bottom: 10px;
}

.hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  background-image: url(./assets/images/mobile/hero-bg-mobile.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  height: 80vh;
  margin-top: -50px;
}

.hero-content-container {
  margin-top: -100px;
  margin-left: 10px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.hero-content-container h1 {
  font-weight: 900;
  font-size: 40px;
  color: var(--main-theme-color);
}

.hero-content-container h2 {
  font-size: 20px;
  font-weight: normal;
  color: var(--main-theme-color);
}

.hero-content-container span {
  display: block;
  font-size: 40px;
  margin-top: 5px;
}

.description-container {
  border: 6px solid var(--white-color);
  justify-content: center;
  margin: 5px 2px 2px;
  padding: 12px;
  background-color: var(--grey-color);
  color: var(--dark-color);
}

.date-venue {
  color: var(--dark-color);
  width: 100%;
  margin-right: 2px;
  margin-left: 2px;
}

.date-venue h3 {
  font-size: 28px;
}

.date-venue p {
  font-size: 14px;
}

/* header-section end  */

/* program-section mobile  */
#program-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-color);
  margin-top: -210px;
  background-image: url("assets/images/pattern_bg.png");
  background-repeat: repeat;
  background-size: auto;
}

.program-container {
  margin: 0 10px 10px;
}

.program-container h2 {
  position: relative;
  font-style: normal;
  font-size: 30px;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 5px;
  padding: 1rem;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}

.section-indicator {
  position: absolute;
  width: 48px;
  height: 4px;
  background-color: var(--main-theme-color);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 24px;
}

/* program content */
.program-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(355px, 3fr));
  margin-top: 30px;
  padding: 11px 12px;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.program-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  width: 355px;
  height: 82.06px;
  background-color: var(--dark-color);
  align-items: center;
  color: var(--white-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-icon {
  height: auto;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: auto;
  grid-column-gap: 10px;
  width: 355px;
  height: auto;
  color: var(--white-color);
  align-items: center;
  justify-content: center;
}

.card-title {
  margin: 0;
  margin-right: 10px;
  font-size: 20px;
  color: var(--main-theme-color);
  padding: 0;
  margin-left: 0;
}

.card-description {
  font-size: 12px;
}

.program-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 68px;
  color: var(--white-color);
  background-color: var(--main-theme-color);
  padding: 20px 50px;
  gap: 10px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: -100px;
}

/* program-section END  */

/* Speakers section START */
#speaker-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-color);
  height: 100vh;
  margin-top: 30px;
}

.speaker-container {
  margin: 10px 20px 20px;
}

.speaker-container h2 {
  position: relative;
  font-style: normal;
  font-size: 30px;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 5px;
  padding: 1rem;
}

.speaker-content {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.speaker-card {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.speaker-card img {
  height: auto;
  width: 100px;
  margin-right: 20px;
  margin-bottom: 10px;
  background-color: var(--grey-color);
}

.speaker-card .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.speaker-card h2 p {
  margin: 0;
  margin-bottom: 30px;
}

.more-speakers-lg {
  display: none;
}

.text-content .speaker-credential {
  margin: 0;
  font-size: 12px;
  color: var(--main-theme-color);
  font-weight: 600;
}

.text-content .speaker-description {
  margin: 0;
  font-size: 13px;
  color: var(--dark-color);
  font-weight: 600;
}

.content-divider {
  background-color: var(--grey-color);
  width: 30px;
  height: 2px;
  margin: 6px 0 6px;
}

.more-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 12px;
  color: var(--dark-color);
  background-color: var(--white-color);
  padding: 20px 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  margin-bottom: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.more-btn i {
  margin-left: 5px;
  color: var(--main-theme-color);
}

/* speaker section END */

/* Desktop Media Queries */
@media only screen and (min-width: 768px) {
  /* toolbar- START  */
  .social-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
    display: block;
    justify-content: space-between;
  }

  .social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .social-icon-menu {
    color: white;
    font-size: 12px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    height: 50px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(23, 23, 23, 0.2);
  }

  .toolbar-menu {
    width: 100%;
  }

  .hamburger {
    display: none;
  }

  .logo {
    background: url(./assets/images/logo.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    margin-left: 160px;
  }

  /* menu-section START  */
  .menu-list {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-list li {
    cursor: pointer;
    transition: transform 0.3s;
  }

  .menu-list li a {
    text-decoration: none;
    color: var(--menu-items-color);
    font-weight: 600;
    line-height: 20px;
    font-style: normal;
    display: flex;
    align-items: center;
  }

  .menu-item {
    position: relative;
  }

  .menu-item:last-child {
    border: 4px solid var(--main-theme-color);
    padding: 8px;
    border-radius: 4px;
    margin-right: -160px;
    margin-left: 390px;
  }

  .mobile-menu {
    display: none;
  }

  /* menu-section end  */

  /* toolbar- END  */

  /* hero-section   */
  #hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px;
    background-size: cover;
    top: 0;
    margin-bottom: 10px;
    margin-top: 50px;
  }

  .hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    background-image: url(./assets/desktop/hero-bg-desktop.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
  }

  .hero-content-container {
    width: 70%;
    margin-top: -60px;
    margin-left: 10px;
    margin-right: 50px;
    margin-bottom: 10px;
    margin-bottom: 20px;
  }

  .hero-content-container h1 {
    font-weight: 900;
    font-size: 50px;
    color: var(--main-theme-color);
    line-height: 80px;
  }

  .hero-content-container h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-theme-color);
  }

  .hero-content-container span {
    display: block;
    font-size: 50px;
    margin-top: 5px;
  }

  .description-container {
    border: 6px solid var(--white-color);
    justify-content: center;
    margin: 5px 2px 2px;
    background-color: var(--grey-color);
    color: var(--dark-color);
    padding: 50px;
  }

  .date-venue {
    color: var(--dark-color);
    width: 100%;
    margin-right: 2px;
    margin-left: 2px;
  }

  .date-venue h3 {
    font-size: 30px;
  }

  .date-venue p {
    font-size: 30px;
    margin-bottom: 50px;
  }

  /* hero-section END  */

  /* header-section end  */

  /* program-section  */
  #program-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    background-image: url("assets/images/pattern_bg.png");
    background-repeat: repeat;
    background-size: auto;
    position: relative;
    margin-top: auto;
  }

  .program-container {
    margin: 0 10px 10px;
    width: 100%;
    position: relative;
  }

  .program-container h2 {
    position: relative;
    font-style: normal;
    font-size: 30px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 5px;
    padding: 1rem;
    margin-top: -10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .section-indicator {
    position: absolute;
    width: 48px;
    height: 4px;
    background-color: var(--main-theme-color);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
  }

  /* program content */
  .program-content {
    display: grid;
    flex-direction: row;
    grid-template-columns: repeat(5, 15%);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 10px;
    margin-top: 100px;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5px;
  }

  .program-card {
    gap: 5px;
    display: flex;
    width: 200px;
    height: 230px;
    background-color: var(--dark-color);
    align-items: center;
    color: var(--white-color);
    margin-bottom: -40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
  }

  .program-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgb(240, 240, 240);
  }

  .card-icon {
    height: auto;
    margin: 0;
    margin-top: -80px;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: auto;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -40px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .card-title {
    margin: 0;
    font-size: 20px;
    color: var(--main-theme-color);
    padding: 0;
    margin-left: 10px;
    margin-bottom: 18px;
    align-items: center;
  }

  .card-description {
    font-size: 12px;
  }

  .program-btn {
    display: none !important;
  }

  .program-link-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--white-color);
    padding: 20px 50px;
    gap: 10px;
    margin: 0 auto;
    position: relative;
    margin-top: 60px;
    text-align: center;
  }

  /* program-section END  */

  /* Speakers section START */
  #speaker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    height: 100vh;
    margin-top: 30px;
  }

  .speaker-container {
    margin: 10px 20px 20px;
  }

  .speaker-container h2 {
    position: relative;
    font-style: normal;
    font-size: 30px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 5px;
    padding: 1rem;
  }

  .speaker-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding: 0 10%;
  }

  .speaker-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    grid-column: span 1;
    grid-row: span 1;
  }

  .speaker-card img {
    height: auto;
    width: 100px;
    margin-right: 20px;
    margin-bottom: 10px;
    background-color: var(--grey-color);
  }

  .speaker-card .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .speaker-card h2 p {
    margin: 0;
    margin-bottom: 30px;
  }

  .more-speakers-desktop {
    display: none;
  }

  .text-content .speaker-credential {
    margin: 0;
    font-size: 12px;
    color: var(--main-theme-color);
    font-weight: 600;
  }

  .text-content .speaker-description {
    margin: 0;
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 600;
  }

  .content-divider {
    background-color: var(--grey-color);
    width: 30px;
    height: 2px;
    margin: 6px 0 6px;
  }

  .more-btn {
    visibility: hidden;
  }

  /* speaker section END */

  /* partner section */
  #partner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    height: 50vh;
    margin-bottom: -50px;
    margin-top: 100px;
  }

  .partner-container {
    margin: 0 10px 10px;
  }

  .partner-container h2 {
    position: relative;
    font-style: normal;
    font-size: 30px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 5px;
    padding: 1rem;
    margin-top: -10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .partner-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    margin-top: 30px;
  }

  .top-row {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 90px;
  }

  .bottom-row {
    display: none;
  }

  .hidden {
    display: flex;
  }

  /* partner section END */

  /* footer section START */
  #footer-section {
    background-color: var(--white-color);
    display: block;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: space-around;
    align-items: center;
    align-content: stretch;
  }

  .footer-column {
    display: flex;
    align-items: center;
  }

  .footer-column img:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    margin: 0;
    max-width: 100%;
    height: auto;
    padding: 10px;
    width: 200px;
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .footer-column p:nth-child(2) {
    font-size: 18px;
    display: block;
    flex-grow: 0;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    margin: 0;
    color: black;
    white-space: nowrap;
    padding: 10px;
    width: 200px;
  }

  .footer-column p:last-child {
    margin-top: 5px;
    margin-right: 40px;
  }

  .footer-column p span {
    display: block;
    white-space: normal;
    margin-top: 5px;
  }

  /* footer section END */
}

@media only screen and (max-width: 375px) {
  /* toolbar section| header */
  .program-link-desktop {
    display: none;
  }

  .toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .toolbar-menu {
    width: 100%;
  }

  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hamburger {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    color: var(--dark-color);
  }

  /* Mobile Menu */
  .menu-list {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    width: 100%;
    left: 0;
    background-color: var(--white-color);
    z-index: 1;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow-y: hidden;
    height: calc(100vh - 50px);
    top: 0;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(37, 47, 137, 0.08);
  }

  .mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 100px;
  }

  .mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }

  .mobile-menu-list-items {
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    margin-top: 30px;
    margin-left: 30px;
    text-decoration: none;
  }

  .mobile-menu-list-items a {
    text-decoration: none;
    color: var(--mobile-items-color);
  }

  .close-btn {
    position: absolute;
    margin: 10px;
    top: 60px;
    right: 50px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }

  #footer-section {
    display: none;
  }

  #partner-section {
    display: none;
  }

  /* Mobile Menu END */

  /* menu */

  /* social navbar */
  .menu-container .social-navbar {
    display: none;
  }

  /* hero section|STARt */
  #hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px;
    background-size: cover;
    top: 0;
    margin-bottom: 10px;
  }

  .hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    background-image: url(./assets/images/mobile/hero-bg-mobile.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    height: 80vh;
    margin-top: -50px;
  }

  .hero-content-container {
    margin-top: -100px;
    margin-left: 10px;
    margin-right: 5px;
    margin-bottom: 10px;
  }

  .hero-content-container h1 {
    font-weight: 900;
    font-size: 40px;
    color: var(--main-theme-color);
  }

  .hero-content-container h2 {
    font-size: 20px;
    font-weight: normal;
    color: var(--main-theme-color);
  }

  .hero-content-container span {
    display: block;
    font-size: 40px;
    margin-top: 5px;
  }

  .description-container {
    border: 6px solid var(--white-color);
    justify-content: center;
    margin: 5px 2px 2px;
    padding: 12px;
    background-color: var(--grey-color);
    color: var(--dark-color);
  }

  .date-venue {
    color: var(--dark-color);
    width: 100%;
    margin-right: 2px;
    margin-left: 2px;
  }

  .date-venue h3 {
    font-size: 28px;
  }

  .date-venue p {
    font-size: 14px;
  }

  /* header-section end  */

  /* program-section mobile  */
  #program-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    height: 90vh;
    margin-top: -90px;
    background-image: url("assets/images/pattern_bg.png");
    background-repeat: repeat;
    background-size: auto;
    margin-bottom: 30px;
  }

  .program-container {
    margin: 0 10px 10px;
  }

  .program-container h2 {
    position: relative;
    font-style: normal;
    font-size: 30px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 5px;
    padding: 1rem;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .section-indicator {
    position: absolute;
    width: 48px;
    height: 4px;
    background-color: var(--main-theme-color);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
  }

  /* program content */
  .program-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(355px, 3fr));
    margin-top: 30px;
    padding: 11px 12px;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }

  .program-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    width: 355px;
    height: 82.06px;
    background-color: var(--dark-color);
    align-items: center;
    color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .card-icon {
    height: auto;
    margin: 0;
    padding: 0;
    justify-content: space-around;
  }

  .card-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    grid-template-rows: auto;
    grid-column-gap: 10px;
    width: 355px;
    height: auto;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
  }

  .card-title {
    margin: 0;
    margin-right: 10px;
    font-size: 20px;
    color: var(--main-theme-color);
    padding: 0;
    margin-left: 0;
  }

  .card-description {
    font-size: 12px;
  }

  .program-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 68px;
    color: var(--white-color);
    background-color: var(--main-theme-color);
    padding: 20px 50px;
    gap: 10px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: -100px;
  }

  /* program-section END  */

  /* Speakers section START */
  #speaker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    height: 100vh;
    margin-top: 30px;
  }

  .speaker-container {
    margin: 10px 20px 20px;
  }

  .speaker-container h2 {
    position: relative;
    font-style: normal;
    font-size: 30px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 5px;
    padding: 1rem;
  }

  .speaker-content {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }

  .speaker-card {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .speaker-card img {
    height: auto;
    width: 100px;
    margin-right: 20px;
    margin-bottom: 10px;
    background-color: var(--grey-color);
  }

  .speaker-card .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .speaker-card h2 p {
    margin: 0;
    margin-bottom: 30px;
  }

  .more-speakers-lg {
    display: none;
  }

  .text-content .speaker-credential {
    margin: 0;
    font-size: 12px;
    color: var(--main-theme-color);
    font-weight: 600;
  }

  .text-content .speaker-description {
    margin: 0;
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 600;
  }

  .content-divider {
    background-color: var(--grey-color);
    width: 30px;
    height: 2px;
    margin: 6px 0 6px;
  }

  .more-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 12px;
    color: var(--dark-color);
    background-color: var(--white-color);
    padding: 20px 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
  }

  .more-btn i {
    margin-left: 5px;
    color: var(--main-theme-color);
  }

  /* speaker section END */
}
