.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.main-image {
text-align: center;
}

.main-image img{
max-width: 980px;
}

.team-cards-wrapper {
    text-align: center;
}

.team-cards-wrapper .main-image img {
max-width: 480px;
width: 100%;
}

.team-cards-wrapper .team-cards-container {
    padding: 25px 15px;
  }

.alt-bg {
background: #fafafa;
}

  .clearfloat {
    content: '';
    display: block;
    clear: both;
  }

.cards {
	display: grid;
gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	grid-template-columns: 1fr 1fr;
}

.cards hr {
	width: 20%;
	margin: -5px auto 10px;
	border-color: var(--accent-color);
}

.cards li {
	max-width: 435px;
	width: 100%;
	flex: 1 300px;
	display: block;
	margin: 10px auto;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 25px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
	font-size: 0.9em;
	transition: all 0.2s ease-in-out;
	text-align: center;
}

  .cards li:after,
  .cards li:before {
    content: '';
    display: block;
    clear: both;
  }

  .cards li img {
    display: inline-flex;
    width: 100%;
    height: auto;
    max-width: 175px;
  margin: 20px auto;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
  }

  .cards li .details {
    transition: all 0.5s ease-in-out;
    text-shadow: 1px 1px rgba(0, 0, 0, 0);
    min-width: 250px;
  }

  .cards li .details > span,
  .cards li .details > a {
    display: block;
    padding: 0 15px 0 35px;
    margin-bottom: 15px;
    text-decoration: none;
    position: relative;
  }

  .cards li .details > span:before,
  .cards li .details > a:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 15px;
    width: 15px;
    text-align: center;
    color: #444;
  }

  .cards li .details a {
    color: var(--primary-color);
    transition: color 0.5s ease-in-out;
  }

  .cards li .details a:hover,
  .cards li .details a:focus {
    color: #111;
    transition: color 0.5s ease-in-out;
  }

  .cards li .details .name {
    font-weight: 600;
  }


  .cards li:hover {
      background: #fcfcfc;
      transition: all 0.2s ease-in-out;
      transform: scale(1.03);
  }

  .cards li:hover img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease-in-out;
  }

  .cards li:hover .details {
    transition: all 0.5s ease-in-out;
    text-shadow: 1px 1px rgba(211, 213, 169, 1); /* Manually calculated darker color */
  }

  @media (max-width: 550px) {

    .cards li img,
    .cards li .details {
      float: none;
    }

    .cards li img {
      margin: 0 auto;
    }

    .cards li .details {
      margin-top: 20px;
      text-align: center;
      min-width: 0;
    }

    .cards li .details span,
    .cards li .details a {
      padding: 0;
      white-space: break-all;
      word-wrap: break-word;
    }

    .cards li .details span:before,
    .cards li .details a:before {
      display: none;
    }
  }

.main-wrapper {
	align-items: center;
}

#award_section {
    background-color: #f0f0f0;
}