.ceo-container {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ceo-container .ceo-box {
  width: 90%;
  background-color: #f2faff;
  padding: 20px;
  display: flex;
  gap: 2rem;
  justify-content: space-around;
}

.ceo-text {
  width: 80%;
}

.ceo-text p {
  text-align: justify;
}

.ceo-container .ceo-img {
  width: 20%;
  text-align: center;
}

.ceo-container img {
  box-sizing: border-box;
  width: 100%;
  border-left: 10px solid #105192;
  border-top: 10px solid #105192;
  padding-left: 5px;
  padding-top: 5px;
  border-radius: 6px;
  transition: padding 0.2s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ceo-container img:hover {
  padding: 0;
}

.ceo-container .ceo-img h3 {
  padding-top: 10px;
}

@media screen and (max-width: 800px) {
  .ceo-container .ceo-box {
    margin-top: 50px;
    flex-direction: column-reverse;
  }

  .ceo-text {
    width: 100%;
  }

  .ceo-container .ceo-img {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .ceo-text {
    width: 100%;
  }

  .ceo-container .ceo-img {
    width: 100%;
  }
}
