@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Radio+Canada&display=swap");
* {
  --main-font: "Barlow", sans-serif;
  --primary-color: #13216a;
  --white: #fff;
  --footer-bg: #e2ecf2;
  --text-black: #282943;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 5rem);
}

body {
  font-family: var(--main-font);
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
body::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--main-font);
}

/* present */
.present {
  background-image: url(../img/meet-the-speakers/Top-Header-BG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-block: 2rem;
}
.present::after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 1%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0) 100%);
}
.present__img {
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.present__img img {
  width: 100%;
}
.present .content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.present .content p {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--primary-color);
  font-weight: 500;
  line-height: 130%;
}

/* speakers */
.speakers {
  padding-block: 2rem 0;
}
.speakers .heading {
  text-align: center;
  color: var(--primary-color);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 2rem;
}
.speakers .content-expand {
  height: 0;
  overflow: hidden;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.speakers .expand {
  display: none;
}
.speakers .is-expanded .expand {
  display: inline;
}
.speakers__card {
  background-color: var(--primary-color);
  border-radius: 40px;
  color: #fff;
  background-image: url(../img/meet-the-speakers/Card-Background.png);
  background-position: center top;
  background-repeat: no-repeat;
  padding: 2rem;
  margin-bottom: 5rem;
}
.speakers__card-img {
  float: left;
  shape-outside: circle(50%);
  width: 225px;
  margin-left: -75px;
  margin-top: -75px;
  margin-bottom: 0rem;
}
.speakers__card-img img {
  width: 100%;
}
.speakers__card .profile {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.speakers__card .name {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
}
.speakers__card .role {
  color: #03a0de;
  font-size: clamp(14px, 2vw, 18px);
}
.speakers__card .content .btn {
  color: #03a0de;
  padding-inline: 0;
}
.speakers__card .content .btn .btn-text {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
}
.speakers__card .content p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 130%;
}
.speakers__card .content p:last-child {
  margin-bottom: 0;
}

/* agenda */
.agenda {
  padding-bottom: 100px;
}
.agenda .heading {
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
}
.agenda__table {
  position: relative;
  margin-top: 80px;
}
.agenda__table::before, .agenda__table::after {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  background-color: var(--primary-color);
}
.agenda__table::before {
  top: -40px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.agenda__table::after {
  bottom: -40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.agenda__table p {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(14px, 2vw, 24px);
}
.agenda__table-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.agenda__table-item:last-child {
  padding-bottom: 0.5rem;
}
.agenda__table-item:nth-child(even) .agenda__table-time, .agenda__table-item:nth-child(even) .agenda__table-detail {
  background-color: #b4d9ed;
}
.agenda__table-item:nth-child(odd) .agenda__table-time, .agenda__table-item:nth-child(odd) .agenda__table-detail {
  background-color: #d6e9f2;
}
.agenda__table-time, .agenda__table-detail {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda__table-time {
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda__table-detail p {
  font-weight: 600;
}
.agenda__table-detail strong {
  font-weight: 700;
}

footer {
  height: 200px;
}
footer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Medium Screens (MD) - Tablets */
@media (max-width: 991.98px) {
  /* speakers */
  .speakers__card-img {
    width: 200px;
    margin-left: -70px;
    margin-top: -70px;
  }
}
/* Small Screens (SM) - Large Phones */
@media (max-width: 767.98px) {
  /* speakers */
  .speakers__card-img {
    width: 175px;
  }
}
/* Extra Small Screens (XS) - Mobile Phones */
@media (max-width: 575.98px) {
  /* speakers */
  .speakers__card-img {
    width: 150px;
    margin-left: -45px;
    margin-top: -45px;
  }
}/*# sourceMappingURL=RiseandInnovate.css.map */