.officer {
    background-color: #e7fcef;
    padding: 40px;
}

.officer_content {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.content_left {
    flex: 2;
    width: 760px;
    height: 440px;
    border: 10px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.content_left iframe {
    height: 100%;
}

.content_right {
    flex: 1;
}

.frame {
    width: 538px;
    height: 439px;
    background-color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.info-image {
    width: 173px;
    height: 176px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7cc195;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

.frame_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.frame_content .phone:hover {
    cursor: pointer;
    text-decoration: underline;
}

.frame_content .envelope:hover {
    cursor: pointer;
    text-decoration: underline;
}

.frame_content .designation {
    color: #484848;
    font-size: 25px;
    font-family: var(----manrope-font) !important;
    font-weight: bold;
    margin: 0;
}

.frame_content .name {
    font-family: var(----manrope-font) !important;
    color: #484848;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.frame_content .position {
    font-family: var(----manrope-font) !important;
    color: #484848;
    font-size: 20px;
    margin: 0;
}

.frame_content .phone {
    font-family: var(----manrope-font) !important;
    color: #027f30;
    font-size: 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.frame_content .phone i {
    color: #027f30;
}

.frame_content .email {
    font-family: var(----manrope-font) !important;
    color: #027f30;
    font-size: 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.frame_content .email i {
    color: #027f30;
}

.frame_content .email:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .officer {
        padding: 15px 0px;
    }

    .officer_content {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .content_left,
    .frame {
        width: 100%;
        height: auto;
    }

    .frame {
        padding: 20px 0;
    }

    .content_left iframe {
        height: 250px;
    }

    .info-image {
        width: 100px;
        height: 100px;
    }

    .frame_content .designation,
    .frame_content .name,
    .frame_content .position,
    .frame_content .phone,
    .frame_content .email {
        font-size: 16px;
    }
}

/* TABLET VIEW */
@media (max-width: 1024px) and (min-width: 768px) {
    .officer_content {
        flex-direction: row;
        align-items: center;
    }

    .content_left {
        width: 100%;
        height: 220px;
        flex: 1;
        margin-bottom: 20px;
    }

    .content_right {
        width: 100%;
        flex: 1;
    }

    .frame {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .info-image {
        width: 120px;
        height: 120px;
    }

    .frame_content .designation,
    .frame_content .name,
    .frame_content .position,
    .frame_content .phone,
    .frame_content .email {
        font-size: 18px;
    }

    .frame_content .phone,
    .frame_content .email {
        font-size: 18px;
        justify-content: center;
    }

    .frame_content .phone i,
    .frame_content .email i {
        font-size: 18px;
    }

    .frame_content .phone:hover,
    .frame_content .email:hover {
        text-decoration: underline;
        cursor: pointer;
    }
}

/* TABLET VIEW */
/* @media (min-width: 768px) and (max-width: 1024px) {
    .officer {
      padding: 20px; 
    }
  
    .officer_content {
      flex-direction: column; 
      gap: 20px; 
    }
  
    .content_left {
      width: 100%; 
      height: auto; 
      border-width: 5px; 
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
    }
  
    .content_left iframe {
      width: 100%; 
      height: 300px; 
    }
  
    .content_right {
      flex: none;
      width: 100%; 
    }
  
    .frame {
      width: 100%; 
      height: auto; 
      padding: 20px; 
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
    }
  
    .info-image {
      width: 150px;
      height: 150px;
    }
  
    .info-image img {
      width: 80%; 
    }
  
    .frame_content .designation {
      font-size: 20px; 
      text-align: center; 
    }
  
    .frame_content .name, .frame_content .position {
      font-size: 18px; 
      text-align: center; 
    }
  
    .frame_content .phone, .frame_content .email {
      font-size: 18px; 
      justify-content: flex-start; 
    }
  }
   */
