.part-2 .profile {
  overflow: hidden;
  /* padding: 1%; */
  color: white;
  background-color: #7fabd0;
  max-width: 535px;
  /* max-height: 300px; */
  margin: 1rem;
  /* margin: 3% 1% 1% 1%; */
  display: flex;
}

.part-2 .moreInfo {
  margin-top: 1em;
  line-height: 1.5em;
  /* padding: 1em; */
}

.part-2 .profilelist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.part-2 .leftImage {
  width: 45%;
  height: 100%;
  float: left;
}

.part-2 .leftImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.part-2 .rightDesc {
  position: relative;
  padding: 1em;
  padding-bottom: 80px;
}

.part-2 .icons {
  position: absolute;
  bottom: 1em;
  display: flex;
}

.part-2 .icon:not(:last-child) {
  margin-right: 5px;
}

.part-2 .icon img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 70%;
  /* margin-right: 0.05rem; */
  /* padding-left: 10rem; */
  background-color: white;
}

/* Text Formatting */
.part-2 .topName {
  display: flex;
  align-items: baseline;
}

@media only screen and (max-width: 500px) {
  .part-2 .name {
    font-size: 8vw !important;
  }

  .part-2 .engname {
    font-size: 4vw;
  }
}

.part-2 .name {
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.part-2 .engname {
  font-size: 20;
}

.part-2 .list {
  color: #43464b;
  font-size: 1rem;
}

.part-2 .ext {
  font-size: 1.2rem;
}

/* CSS Animations */

.part-2 .profile {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.part-2 .profile:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
