.person_card {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 30px 40px;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
}

.person_content {
  display: flex
}

.person_text {
 	width: 80%;
	display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.person_img {
	display: flex;
	width: 20%;
}

.person_img img {
  border-radius: 15px;
  object-fit: cover;
}

.person_img.left {
	margin-right:25px;
}

.person_img.right {
	order:1;
	margin-left:25px;
}
.person_name {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 5px;
}

.person_slogan {
    font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 10px;
}




@media screen and (max-width: 1024px) {
.person_text {
 	width: 70%;
	}

.person_img {
	width: 30%;
}

}

@media screen and (max-width: 768px) {

.person_content {
    display: flex;
    flex-wrap: wrap;
	}

.person_text {
 	width: 100%;
	}


  .person_img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
  }

.person_img.left {
	margin-right:0;
}

.person_img.right {
	order:0;
	margin-left:0;
}

  .person_card {
    padding: 20px;
  }
}
