.about-section {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.about-section-img-cnt > img {
  
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: right top;
  object-fit: cover;
}
.about-section-desc-cnt {
  padding: var(--default-padding);
}
  .about-desc {
    font-size: 1rem;
    padding-top: var(--default-padding);
  }
  .ipp-cnt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--default-padding);
    padding: var(--default-padding);
  }
  
/* Manifest section */
.manifest-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.manifest-section-left {

}
  .manifest-section-title {
    font-size: 2rem;
    padding: 2.5rem;
    font-weight: 700;
  }
  .manifest-section-desc-cnt {
    text-align: justify;
    padding: var(--default-padding);
    padding-top: 0 !important;
    width: 100%;
    float: right;
  }
  .manifest-desc {
    font-size: 1rem;
    line-height: 1.5rem;
  }
.manifest-section-img-cnt {
  
}
.manifest-section-img-cnt > img {
  
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center center;
  object-fit: cover;
}

/*People*/
.people-section {
  padding: calc(var(--default-padding) * 2) var(--default-padding);
  gap: var(--default-padding);
  display: flex;
  flex-wrap: wrap;
  column-count: 2;
}
  .people-section-msg {
    margin-bottom: var(--default-margin);
    flex: 0 0 100%;
  }
  
  .people-cnt {
    flex: 0 0 calc((100% - var(--default-padding)) / 2);
  }

.people-section-title {
  font-size: 2.5rem;
  margin-top: 0;
  font-weight: 700;
}

.people-section-subtitle {
  font-size: 0.833rem;
  margin-top: var(--default-padding);
}

.person-name {
  font-size: 1.1rem;
  margin-top: var(--default-padding);
  font-weight: 700;
}

.person-position {
  display: block;
  color: #888;
  font-size: 0.9rem;
}

.people-cnt img {
  width: 100%;
  height: auto;
  display: block;
}

.person-social-media {
  display: flex;
  gap: calc( var(--default-padding) / 2);
  margin: calc(var(--default-padding) / 2) 0;
}

.person-social-media a {
  color: #999;
  text-decoration: none;
  font-size: 0.667rem;
  line-height: 1rem;
  text-transform: lowercase;
}

.person-social-media a:hover {
  color: #fff;
}


.person-description {
  font-size: 0.833rem;
}


/* Small devices */
@media (min-width: 576px) {
  .manifest-section-desc-cnt {
    width: 50%;
  }
}

/* Medium devices */
@media (min-width: 768px) {
  
  .about-section,
  .manifest-section {
    flex-direction: row;
  }
  .manifest-section-desc-cnt {
    width: 75%;
  }
}

/* Large devices */
@media (min-width: 992px) {
  

  
}

/* X-Large devices */
@media (min-width: 1200px) {
  
  .manifest-section-desc-cnt {
    width: 50%;
    padding-left:0;
  }
  
  .about-section-img-cnt,
  .about-section-desc-cnt,
  .manifest-section-left,
  .manifest-section-img-cnt {
    width: 50%;
  }
  
  .people-section {
    column-count: 5;
  }
  .people-section > div {
    flex: 0 0 calc((100% - var(--default-padding) * 4) / 5);
  }
}

/* XX-Large devices */
@media (min-width: 1400px) {
  
}
