.ceoSection {
    background-image: radial-gradient(#FAFBFF, #FEFCFF);
    width: 100%;
    height: auto;
    min-height: 100svh;
    box-sizing: border-box;
    position: relative;
    /* border: 1px solid black; */
  }
  
  .ceoInnerSection {
    padding: 50px 0 100px 0;
    width: 90%;
    height: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
    box-sizing: border-box;
    position: relative;
  }
  
  .ceoSection h1 {
    font-size: 200%;
    font-family: var(--font-one);
    text-transform: capitalize;
    color: #121212;
  }
  
  .ceoSection p {
    width: 100%;
    line-height: 1.5;
    text-align: center;
    font-family: var(--font-three);
    font-size: 90%;
    color: #121212;
    font-weight: 500;
    margin: 15px 0 70px 0;
  }
  
  
  .ceoPhotuSection {
    width: fit-content;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: perspective(400px) rotateY(-9deg);
  }
  
  .ceoPhotuSection img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
  }

  .ceoPhotuSection h2{
    width: 100%;
    color: #121212;
    font-family: var(--font-two);
    font-size: 120%;
    text-align: left;
    margin: 5px 0;
  }

  .ceoPhotuSection p{
    width: 100%;
    text-align: left;
    color: #121212;
    font-family: var(--font-two);
    font-size: 70%;
    margin: 0;
    padding: 0;
  }
  
  .ceoPhotuSection h1 {
    position: absolute;
    top: 10%;
    font-size: 500%;
    letter-spacing: 1rem;
    font-family: var(--font-three);
    font-weight: 500;
  }
  
  .ceoPhotuSection h1::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5%;
    background-color: black;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
  }
  




























  @media only screen and (max-width: 768px) {
    
    .ceoPhotuSection img {
      max-width: 250px;
    }
  
  }
  
  
  @media only screen and (max-width: 576px) {
    
    .ceoPhotuSection img {
      max-width: 220px;
    }
  
  }