.about-item {
  padding-bottom: 80px;
}

.about-item:last-child {
  padding-bottom: 0px;
}

.about-item .txt-head {
  padding-bottom: 16px;
}

.about-item-values {
  display: flex;
}

.about-item-value {
  flex: 1;
}

.about-item-value h3,
.about-item-value p {
  max-width: 360px;
}

.about-item-value h3 {
  font-weight: 700;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}

.about-item-value h3:before {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  border-radius: 16px;
}

.about-item-value:nth-child(3n + 1) h3:before {
  background-color: #5a4691;
}

.about-item-value:nth-child(3n + 2) h3:before {
  background-color: #edbbd8;
}

.about-item-value:nth-child(3n) h3:before {
  background-color: #f29224;
}

@media screen and (max-width: 820px) {
  .about-item-values {
    flex-wrap: wrap;
    gap: 32px;
  }

  .about-item-values .about-item-value {
    width: 100%;
    flex: auto;
  }
}

@media screen and (max-width: 640px) {
  .about-item {
    padding-bottom: 48px;
  }

  .about-item-value h3:before {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}

.team-member:hover {
  cursor: pointer;
}

.team-member .team-member-image + .team-member-details {
  margin-top: 20px;
}

.team-member .team-member-details {
  padding-top: 20px;
  border-top: 1px solid var(--color-dark-blue);
}

.team-member .team-member-name {
  position: relative;
  padding-right: 20px;
}

.team-member .team-member-name i {
  position: absolute;
  right: 0px;
  top: 0px;
}

.team-member .team-member-text {
  display: none;
}

@media screen and (max-width: 820px) {
  .team.cols .col-1-4 {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .team.cols .col-1-4 {
    width: 100%;
  }
}

.team-member-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.team-member-image:before {
  content: " ";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.team-member-image img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 1500;
  background-color: rgba(255, 255, 255, 0.8);
}

.overlay-content {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 40px;
  box-sizing: border-box;
  background-color: var(--color-light-grey);
  width: 80%;
  max-width: 940px;
  transform: translate3d(-50%, -50%, 0);
}

.overlay-content .overlay-close {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 20px;
  cursor: pointer;
}

.overlay-content .team-member-image {
  max-width: 192px;
  margin-bottom: 30px;
}

.overlay-content .team-member-text {
  padding-top: 10px;
}

@media screen and (max-width: 640px) {
  .overlay-content {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .overlay-content .team-member-image {
    padding-bottom: 15px;
  }

  .overlay-content .team-member-text {
    padding-top: 20px;
  }
}

@media screen and (max-height:800px){
  .overlay-content {
    transform: translate3d(-50%, -42%, 0);
}
}

@media screen and (max-width:800px){
  .overlay-content {
    transform: translate3d(-50%, -40%, 0);
}
}

@media screen and (max-width:500px){
  .overlay-content {
    transform: translate3d(-50%, -35%, 0);
}
}