.director {
  display: flex;
  padding: 200px 0 80px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .director {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .director {
    flex-direction: column;
  }
}

.director .principal {
  margin-top: -10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .director .principal {
    order: 0;
  }
}

.director .box {
  width: calc(100% / 3);
  background: white;
}

@media (max-width: 767px) {
  .director .box {
    width: 100%;
  }
}

.director .box .image {
  width: 170px;
  height: 170px;
  margin: 5px auto 0;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid var(--red-color-100);
}

.director .box .image img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.director .box .text {
  padding: 30px;
}

.director .box .text h1 {
  color: black;
  font-size: 22px;
  margin: 0px 0px 20px 0px;
  font-family: var(--mont-b);
  text-align: center;
}

.director .box .text h3 {
  color: #8a8d91;
  margin: 0px 0px 20px 0px;
  font-family: var(--mont-r);
  font-size: 14px;
  text-align: center;
  min-height: 50px;
}

.director .box .text h4 {
  color: #8a8d91;
  margin: 0px auto 20px auto;
  font-family: var(--mont-b);
  font-size: 15px;
  border-bottom: 2px solid #CF2E2E;
  padding-bottom: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.director .box .text p {
  color: #8a8d91;
  margin: 0;
  font-family: var(--mont-r);
  font-size: 14px;
  text-align: center;
}

.director .box .text .cv {
  margin: 10px auto 0;
  color: var(--white-color);
  padding: 5px 15px;
  background: var(--red-color-100);
  font-family: var(--mont-r);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--red-color-100);
  min-height: 32px;
}

.director .box .text .cv:hover {
  background: var(--white-color);
  color: var(--red-color-100);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.director .box .text .bottom-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 4px;
  font-family: var(--mont-r);
  font-size: 12px;
}

.director .box .text .bottom-txt a {
  color: var(--red-color-100);
  display: block;
}

.director .second {
  margin: 10px;
  box-shadow: 0px 20px 49px 0px rgba(24, 27, 33, 0.1);
}

@media (max-width: 767px) {
  .director .second {
    order: 1;
    margin: 10px 0;
  }
}

