.content.about {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 14%;
  display: grid;
  grid-column-gap: 15px;
  grid-template-columns: repeat(10, 1fr);
  margin: auto;
  max-width: 1140px;
}
@media screen and (min-width: 1024px) {
  .content.about {
    align-items: start;
    margin-bottom: 2rem;
    padding: 8rem 1.5rem;
  }
}

.about_description {
  grid-column: span 12; 
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 1rem; 
  margin: 0 27px 27px 0; 
}



.leader {
  grid-column: span 10;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .leader {
    grid-column: span 5;
    height: 380px;
  }
}
@media screen and (min-width: 1024px) {
  .leader {
    grid-column: span 2;
    height: 330px;
  }
}

.leader__content {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  justify-content: flex-start;
  padding: 1rem;
  position: relative;
}

.leader__image {
  flex: 1 1 0;
}
@media screen and (min-width: 768px) {
  .leader__image {
    flex: 0 1 60%;
  }
}
.leader__image img {
  max-width: 100%;
  object-fit: contain;
}

.leader__text {
  display: flex;
  flex: 1;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding-top: 1rem;
}

.leader__text-name {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
}

.leader__text-title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.leader__text-contact {
  font-size: 0.9rem;
  text-decoration: none;
}

@keyframes example {
  from {
    opacity: 0;
  }
  to {
    opacity: 1 !important;
  }
}
.white-popup {
  animation-duration: 1s;
  animation-name: example;
  background: #fff url("../images/md-dna-bottom.svg");
  background-position: 20px bottom;
  background-repeat: no-repeat;
  background-size: 13%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(27, 63, 107, 0.2);
  margin: 20px auto;
  max-width: 900px;
  min-height: 450px;
  padding: 3rem;
  position: relative;
  width: auto;
}
@media screen and (min-width: 900px) {
  .white-popup {
    padding: 2rem;
  }
}

.white-popup p {
  margin: 0;
  padding: 0;
}

.popup_content {
  font-size: 0.9rem;
  line-height: 24px;
}
@media screen and (min-width: 900px) {
  .popup_content {
    display: flex;
    flex-flow: row nowrap;
  }
}

.popup_image {
  margin-right: 2rem;
}

.popup_image_text {
  font-size: 0.9rem;
  font-weight: bold;
}

.popup_image_title {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.mfp-bg {
  animation-duration: 0.2s;
  animation-name: example;
  background: rgb(243, 243, 243) !important;
  opacity: 0.98 !important;
}