:root {
  --primary-1: #8d0024;
  --primary-1-hover: #ad0730;
  --primary-2: #cc2944;
  --light-1: #d97786;
  --light-2: #e5acb5;
  --dark-1: #701131;
  --bg-1: #e7d6cf;
  --bg-2: #fcfcfc;
  --secondary-1: #ffaa5c;
  --secondary-1-hover: #ff9500ea;
}

body {
  font-family: 'Manrope', sans-serif !important;
  font-size: 22px;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero h1 {
  font-family: 'Fjalla One', 'Manrope', sans-serif;
}

.cta {
  margin: 0;
  padding: 0;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  margin-top: 0;
}

.cta form label {
  display: block;
  margin-top: 10px;
}

.cta form input[type='text'],
.cta form input[type='email'] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.cta form button {
  background: #5cb85c;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
}

footer {
  background: #35424a;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  min-height: 30vh;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(50, 0, 0, 0.8), rgba(100, 0, 0, 0.8)), url('/img/SMP\ Week\ 2-46.jpg');
}

.hero h1 {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
}

.hero p {
  line-height: 1.5em;
  font-size: 1.2em;
  color: #fff;
}

.hero-img {
  width: 100%;
  height: auto;
}
.about-the-programme {
  background-color: #fafafa;
  padding: 24px;
}

.about-the-programme p {
  font-size: 1.2em;
  line-height: 1.5em;
  color: #333;
/*  text-align: justify;*/
}

.cards {
  display: flex;
}

.summary-details__card:hover {
  background-color: #ffeaea !important;
}

.info-card {
  padding: 16px;
  margin: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
  box-shadow: 0 0 1px #333;
  border: solid 1px #b23d58;
  background-color: #ffeaea;
}

.info-card__header {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.2em;
}

.info-card__header img {
  margin-top: 4px;
}

.summary-details p {
  color: #212529;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.learning-outcomes {
  background: linear-gradient(to right, #b23d58, var(--dark-1));
  color: white;
}

.learning-outcomes .container {
  position: relative;
}

.custom-counter {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.custom-counter h4 {
  font-weight: 800;
}
.custom-counter li {
  counter-increment: step-counter;
  margin-bottom: 32px;
  display: flex;
  padding: 4px;
}
.custom-counter li::before {
  content: counter(step-counter);
  margin-right: 20px;
  background-color: #8d0024;
  color: white;
  font-weight: bold;
  border-radius: 100%;
  font-size: 2em;
  padding: 6px 20px;
  height: 60px;
  width: 60px;
}

.card-block img {
  height: 120px;
  width: 120px;
  border-radius: 100%;
  margin: 24px;
  object-fit: cover;
}

.panel-speakers {
  background: linear-gradient(to right, var(--bg-2), white);
}

.panel-speakers .card-title {
  font-weight: 700;
}

.card-text {
  font-style: italic;
}
.enrol-programme {
  background: linear-gradient(to right, #b23d58, var(--dark-1));

  text-align: center;
}

form {
  background-color: #303345;
  border-radius: 1em;
}

.nav-item {
  width: 50%;
}

.nav-link {
  width: 100%;
  background-color: #303345 !important;
  color: white !important;
  border: none !important;
  padding: 20px !important;
  font-size: 1.2em !important;
  font-weight: 600 !important;
}

.nav-link.active {
  background-color: #15172b !important;
  color: white !important;
  border: none !important;
}

#brochure-tab {
  border-radius: 1em 1em 0 0;
}

#brochure-tab .active {
  background-color: red;
}

#enquire-tab {
  border-radius: 1em 1em 0 0;
}

#myTabContent {
  padding: 24px;
  background-color: #15172b;
  border-radius: 0 0 1em 1em;
  height: 540px;
}

button .nav-link .active {
  background-color: red !important;
}

.form-group {
  color: white;
  margin-bottom: 16px;
}

.form-group label {
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  background-color: #303345;
  border-color: #303345;
  padding: 12px;
  color: white;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #55556a;
}

.btn-primary {
  background-color: var(--primary-1) !important;
  color: white;
  border: none;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-1-hover) !important;
}

.btn-secondary {
  background-color: var(--secondary-1) !important;
  border: none;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--secondary-1-hover) !important;
}

section h2 {
  font-family: 'Fjalla One', 'Manrope', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 24px;
}

.pre-event-workshop {
  color: white;
  background-image: linear-gradient(rgba(255, 170, 92, 0.8), rgba(255, 123, 0, 0.8)), url('/img/SMP\ Day\ 2-28.jpg');
  background-size: cover;
  background-position: center;
}
.keynote-dialogue {
  color: white;
  background: linear-gradient(to right, #b23d58, var(--dark-1));
  background-size: cover;
  background-position: center;
}

.enrol-programme {
  color: white;
}

.pricing .info-card {
  text-align: center;
  padding: 32px 24px;
  border: solid 1px #770b24;
}

.pricing .info-card:hover {
  border: solid 1px #b23d58;
  background-color: #ffeaea;
}

.notification-banner {
  padding: 12px;
  background-color: var(--primary-1);
  color: white;
  margin: 0 auto;
  font-weight: 600;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}

.pricing .info-card h5 {
  font-weight: 400;
}
.pricing .info-card h6 {
  font-size: 2em;
  padding: 24px 12px;
  padding-bottom: 0;
  font-weight: 600;
}

.pricing .info-card p {
  font-style: italic;
}

footer {
  background: var(--dark-1);
}

footer span {
  text-align: start;
  padding: 0 12px;
  margin: 0;
}

.learning-outcomes {
  position: relative;
}
.learning-outcomes .promotion {
  position: absolute;
  padding: 0;
  width: 100%;
  top: 0;
  right: 0;
}

@media screen and (min-width: 500px) {
  .learning-outcomes .promotion {
    width: 50%;
  }
}