.pageBg {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.3) 80%
    ),
    url("/wp-content/uploads/images/page-bg/executive_bg.webp") !important;
}
/*------General CSS-----------------------*/

h1 {
  margin: 1rem auto;
}

.leftSide {
  overflow: hidden;
  line-height: 1.5;
  max-width: fit-content;
  width: 40%;
}

.rightSide {
  padding: 0 1% 0 1%;
  width: 100%;
}

.col3 {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: max(2vh, 2vw) max(5vh, 2vw);
}

.col3 > div {
  /* width: fit-content; */
  min-width: max-content;
  height: fit-content !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  align-items: center;
}

.col3 > div > div:first-child {
  user-select: none;
}

.col3 h2 {
  word-break: keep-all;
  text-align: center;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 0 15px #000;
  font-family: var(--font-header);
}

ul > li:last-child {
  margin: 0;
}

.contentIcon {
  height: min(42px, 22vh);
}

.content-wrapper {
  width: 100%;
  height: 100px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: all !important;
  color: var(--body-text-color);
  width: 100%;
  text-align: left;
  font-size: clamp(0.8rem, 1.5vw, 13px);
  font-weight: var(--font-weight-regular);
  font-family: var(--font-body);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.hr-executive {
  display: none;
}

/* ---------------------------------------- */

.imageWrapper {
  position: relative;
  width: 100%;
  margin: auto;
}

.imageWrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.clickable-area {
  position: absolute;
  display: block;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 4px;
}

.clickable-area:hover {
  background: var(--color-secondary-20);
  mix-blend-mode: color-burn;
}

.logo1 {
  top: 24%;
  left: 09%;
  width: 25%;
  height: 25%;
}

.logo2 {
  top: 55%;
  left: 09%;
  width: 24%;
  height: 25%;
}

/* -------------Responsive CSS------------------------------- */

@media only screen and (min-width: 481px) and (max-height: 430px) and (orientation: landscape) {
  /* .contentContainerLeft {
    display: flex;
  } */

  h1 {
    margin: max(1rem, 12px) 0 max(1rem, 12px) 0;
  }
  .contentIcon {
    height: min(48px, 22vh);
  }

  .leftSide {
    width: 33%;
  }

  .col3 {
    flex-direction: row;
    justify-content: space-evenly;
  }

  p.dsc {
    text-align: left;
    height: fit-content;
  }

  .content-wrapper {
    max-height: 45vh;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .contentIcon {
    height: min(56px, 22vh);
  }
}

@media only screen and (min-width: 1024px) {
  .contentIcon {
    height: min(72px, 22vh);
  }

  h1 {
    margin: 0;
  }

  p.dsc {
    text-align: left;
  }
  .content-wrapper {
    max-height: initial;
    height: fit-content;
  }

  .hr-executive {
    display: block;
  }
}
@media only screen and (min-width: 1023px) and (orientation: portrait) {
  .col3 {
    flex-wrap: wrap;
    align-content: space-evenly;
  }
  .rightSide {
    width: 60% !important;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .col3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
@media only screen and (orientation: landscape) {
  .col3 > div {
    width: 30% !important;
  }
}
