/*
  Azin Pash Tehran - CEO Page Styles
*/

.az-ceo-section {
  position: relative;
  background-image: url("/images/ceo/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-color: var(--bg-color-4);
}

/* photo with red frame */
.az-ceo-photo {
  position: relative;
  overflow: visible;
  max-width: 580px;
  margin-inline-start: auto;
}
/* red background layer */
.az-ceo-photo::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--az-accent);
  z-index: 1;
}
.az-ceo-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: visible;
  z-index: 2;
}
