.elementor-kit-36{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#006280;--e-global-typography-primary-font-family:"League Spartan";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-36 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container must be relative to use absolute positioning inside */
.doctor-container {
  position: relative;
}

/* Shared doctor image styling */
.doctor-image {
  position: absolute;
  z-index: 2;
  max-width: 50%;
  height: auto;
  transition: all 0.3s ease;
}

/* Doctor Left */
.doctor-left {
  left: 0;
}

/* Doctor Right */
.doctor-right {
  left: -200px;
}

/* Tablet breakpoint */
@media screen and (max-width: 1024px) {
  .doctor-left {
    left: 0;
    max-width: 45%;
  }

  .doctor-right {
    left: 50%;
    transform: translateX(-50%);
    max-width: 45%;
  }
}

/* Mobile breakpoint */
@media screen and (max-width: 768px) {
  .doctor-left,
  .doctor-right {
    display: block;
    margin: 0 auto auto 50px;
    max-width: 80%;
    transform: none;
  }

  .doctor-container {
    text-align: center;
  }
}/* End custom CSS */