
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .person {
    display: flex;
    max-width: 930px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }

  .person__image {
    width: 250px;
    height: 180px;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 50px;
    margin-bottom: 30px;
  }

  .person__inner {
    border: 1px solid gray;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    object-fit: cover;
    overflow: hidden;
  }

  .person__inner img {
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
  }
  
  .person__name {
    font-family: "OpenSans", sans-serif;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    color: #c71919;
    margin-bottom: 25px;
  }
  
  .personal__story {
    text-align: justify;
  }

  .personal__story p {
    margin-bottom: 20px;
	line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
	color: black;
  }

  .person__tabs {
    margin-bottom: 25px;
  }

  .person__tabs-item {
    padding: 11px 26px 12px;
  }

  .person__tabs-item--active {
    border-radius: 5px;
    background-color: #f0f0f4;
  }

  .person__content {
      width: 100%;
  }

  .person__content-item p {
    width: 100%;
    justify-content: center;
}