:root {
  --neutral-600: #2C3054;
  --neutral-500: #898A98;
  --neutral-400: #CDCDCD;
  --neutral-300: #F1E9E8;
  --neutral-200: #FAF4F3;
  --neutral-100: #FFFFFF;
  --purple: #868DD1;

}

/* Typography */
body {
  background-color: var(--neutral-200);
  color: var(--neutral-600);

  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

h1 {
  font-family: 'Prata', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 72px;
}

h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}

.purple {
  color: var(--purple);
}

.subtitle {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.muted {
  color: #898A98; 
}

.button {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}

.profile-button {
  text-decoration:none;
  color:#2C3054;
}

.profile-button img {
  padding: 5px;
}


.body-bold {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}

.body-muted {
  color: var(--neutral-500);
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.max-1440 {
  max-width: 1440px;
  margin-left: 0;
  margin-right: auto;
}

.bborder {
  border-bottom: 1px solid #CDCDCD;
}

.tborder {
  border-top: 1px solid #CDCDCD;
}


.bg-neutral-200 {
  background-color: var(--neutral-200);
}

.container-fluid-no-padding {
  padding-left: 0px;
  padding-right: 0px;
}

/*
The padding seems to big on small screens such as phones. This
media block will set it to the design on full pages and default
to the 24px on smaller viewports.

breakpoints:

lg - 992px
md - 768px
 */
  .header {
    padding: 24px;
  }

  .footer {
    trengthening CIOs through Connection and Conversation
    margin-top: 15px;
  }

  .lpad {
    padding-left: 24px;
  }

  .rpad {
    padding-right: 24px;
  }

  .tpad {
    padding-top: 24px;
  }

  @media (min-width: 992px) {

    .header,
    .footer {
      padding: 24px 96px;
    }

    .lpad {
      padding-left: 96px;
    }

    .rpad {
      padding-right: 96px;
    }
  }

  /* Image Styles - important as B5 calls some radii important as well*/
  .rounded-lg {
    border-radius: 20px !important;
  }

  .rounded-md {
    border-radius: 15px !important;
  }

  /* Navigation */

  .logo {
    width: 80px;
    height: auto;
  }

  .hero-logo { 
    width: 120px;
    height: auto;
    display: block;
  }

  .nav-link {
    gap: 80px;

    color: #2C3054 !important;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
  }

  .nav-link a {
    padding: 8px;
  }

  .nav-link:hover {
    border-radius: 5px;
    background-color: #F1E9E8;
    padding: 8px;
    border-radius: 8px;
  }

  .nav-link.active {
    color: #868DD1 !important;
  }

  /* Sponsor Logo */
  .sponsor-logo {
    width: 128px;
    height: 128px;
    object-fit: contain;
  }

  /* Team Member Card */
  .team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;

    color: #2C3054;
    text-decoration: none;
  }

  .team-card:hover {
    color: #2C3054;
  }

  .team-card img {
    object-fit: cover;
    height: 70%;
    /* adjust this based on your preference */
    width: 100%;
    margin-bottom: 15px;
  }

  .team-card div {
    flex-grow: 1;
  }


  /* Events */

  .event-card {
    border-radius: 32px;
    padding: 32px;
  }

  .event-card .event-img {
    border-radius: 15px;
    max-width: 90%;
  }

  .event-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--neutral-300);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 5px;
  }

  .event-icon {
    max-width: 100%;
    height: auto;
  }

  .event-logo {
    max-width: 200px;
  }
  /*

  .event-title, .event-description, .event-details, .sponsor-info {
  margin-bottom: 15px; 

  .event-details {
  justify-content: space-between;
  }

  .event-details i {
  font-size: 1.2em; 
  }

  .client-logo {
  width: 150px;
  height: auto;
  } 
   */


  /* Testimonial Card */
  .testimonial-card {
    background-color: var(--neutral-200);
    padding: 32px;
  }

  .testimonial-card img {
    width: 80px;
    height: 80px;
  }

  .testimonial-image {
    display: none;
  }

  /* Contact Form */
  .check-img {
    height: 24px;
    width: 24px;
  }

