/*==============================================
   About One
===============================================*/
.about-one {
    position: relative;
    display: block;
    padding: 90px 0 120px;
    z-index: 1;
}

.about-one__inner {
    position: relative;
    display: block;
    margin-left: 320px;
    margin-right: 240px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    border-radius: var(--careon-bdr-radius);
    overflow: hidden;
}


.about-one__img::before {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 1;
    pointer-events: none;
}

.about-one__img:hover::before {
    width: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.about-one__img img {
    width: 100%;
    border-radius: var(--careon-bdr-radius);
}

.about-one__content-box {
    position: absolute;
    top: 230px;
    left: -320px;
    max-width: 477px;
    width: 100%;
    border-radius: var(--careon-bdr-radius);
    background-color: var(--color3);
    padding: 40px 40px 51px;
    z-index: 2;
}

.about-one__content-box .section-title {
    margin-bottom: 19px;
}

.about-one__points-box {
    position: relative;
    display: block;
    margin-top: 18px;
}

.about-one__points-box li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-one__points-box li+li {
    margin-top: 15px;
}

.about-one__points-box li .icon {
    position: relative;
    display: inline-block;
}

.about-one__points-box li .icon span {
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: var(--careon-black);
}

.about-one__working-hour {
    position: absolute;
    top: 33px;
    right: -240px;
    max-width: 410px;
    width: 100%;
    padding: 31px 30px 30px;
    border: 1px solid var(--careon-bdr-color);
    border-radius: var(--careon-bdr-radius);
    background-color: var(--careon-white);
    box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
    z-index: 2;
}

.about-one__working-hour-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 30px;
}

.about-one__working-hour-list {
    position: relative;
    display: block;
}

.about-one__working-hour-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--careon-bdr-color);
    padding: 14px 30px 13px;
    border-radius: var(--careon-bdr-radius);
}

.about-one__working-hour-list li+li {
    margin-top: 20px;
}

.about-one__working-hour-list li p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--careon-black);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.about-two__inner {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    border-radius: var(--careon-bdr-radius);
    overflow: hidden;
}

.about-two__left {
    position: relative;
    display: block;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img img {
    width: 100%;
    border-top-left-radius: var(--careon-bdr-radius);
    border-bottom-left-radius: var(--careon-bdr-radius);
}

.about-two__right {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-right: 40px;
    margin-left: 9px;
}

.about-two__right .section-title-two {
    margin-bottom: 38px;
}

.about-two__points-list {
    position: relative;
    display: block;
}

.about-two__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-two__points-list li+li {
    margin-top: 30px;
}

.about-two__points-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--careon-white);
    border-radius: 50%;
    z-index: 1;
}

.about-two__points-list li .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--careon-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.about-two__points-list li:hover .icon:before {
    transform: scaleX(1);
}

.about-two__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--careon-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.about-two__points-list li:hover .icon span {
    transform: scale(0.9);
    color: var(--careon-white);
}

.about-two__points-list li .content {
    position: relative;
    display: block;
    flex: 1;
}

.about-two__points-list li .content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 14px;
}

.about-two__points-list li .content p {
    font-size: 14px;
    line-height: 26px;
}

.about-two__img-2 {
    position: relative;
    display: block;
    margin: 30px 0 30px;
}

.about-two__img-2 img {
    width: 100%;
    border-radius: var(--careon-bdr-radius);
}

.about-two__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    padding-bottom: 20px;
}

.about-two__points-2 {
    position: relative;
    display: block;
}

.about-two__points-2 li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-two__points-2 li+li {
    margin-top: 15px;
}

.about-two__points-2 li .icon {
    position: relative;
    display: inline-block;
}

.about-two__points-2 li .icon span {
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: var(--careon-black);
}

.about-two__text-1 {
    margin: 20px 0 30px;
}

.about-two__btn-box {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 90px 0 120px;
    z-index: 1;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 110px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.about-three__img img {
    width: 100%;
    border-radius: 10px;
}

.about-three__img-two {
    position: absolute;
    top: 30px;
    right: -130px;
    z-index: 2;
}

.about-three__img-two img {
   width: 250px;
    height: 250px;
    object-fit: cover;
    border: 7px solid var(--careon-white);
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

}

.about-three__trusted-patient-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 20px 22px;
    max-width: 280px;
    width: 100%;
    z-index: 2;
}

.about-three__trusted-patient-review-img-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.about-three__trusted-patient-review-img-box li {
    position: relative;
    display: block;
}

.about-three__trusted-patient-review-img-box li+li {
    margin-left: -16px;
}

.about-three__trusted-patient-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 45px;
}

.about-three__trusted-patient-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--careon-extra);
}

.about-three__trusted-patient-plus-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: var(--careon-base);
    border-radius: 50%;
    border: 2px solid var(--careon-extra);
}

.about-three__trusted-patient-plus-box p {
    font-size: 15px;
    color: var(--careon-white);
    font-weight: 500;
}

.about-three__trusted-patient-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--careon-black);
    line-height: 28px;
}

.about-three__trusted-patient-text span {
    font-family: var(--careon-font) !important;
}

.about-three__right {
    position: relative;
    display: block;
    margin-left: 110px;
}

.about-three__right .section-title {
    margin-bottom: 22px;
}

.about-three__text-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.about-three__text-box:before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 10px;
    left: 0;
    width: 2px;
    background-color: rgba(var(--careon-base-rgb), .60);
}

.about-three__point-one {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 28px;
    margin-bottom: 38px;
}

.about-three__point-one li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-three__point-one li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--careon-base);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
}

.about-three__point-one li .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careon-black);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.about-three__point-one li:hover .icon::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.about-three__point-one li .icon span {
    font-size: 22px;
    color: var(--careon-white);
    position: relative;
    display: inline-block;
}

.about-three__point-one li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__point-one li .text p {
    font-size: 18px;
    color: var(--careon-black);
    font-weight: 700;
    line-height: 18px;
}

.about-three__point-two-and-awards-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-three__point-two {
    position: relative;
    display: block;
}

.about-three__point-two li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-three__point-two li+li {
    margin-top: 10px;
}

.about-three__point-two li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__point-two li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-base);
}

.about-three__point-two li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__point-two li .text p {
    font-weight: 500;
}

.about-three__awards-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(var(--careon-base-rgb), .10);
    gap: 13px;
    border-left: 4px solid var(--careon-base);
    padding: 5px 30px 5px;
    padding-left: 26px;
    margin-bottom: 20px;
}

.about-three__awards-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 1px;
    background-color: var(--careon-white);
}

.about-three__awards-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__awards-icon img {
    width: auto;
}

.about-three__awards-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__awards-content h4 {
   font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.about-three__awards-content h4 span {
    font-weight: 700;
}

.about-three__btn-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
}

.about-three__btn-box {
    position: relative;
    display: block;
}

.about-three__btn-box .thm-btn {
    background-color: var(--careon-base);
}

.about-three__btn-box .thm-btn:before,
.about-three__btn-box .thm-btn:after {
    background-color: var(--careon-black);
}

.about-three__call {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    border: 1px solid var(--careon-bdr-color);
    border-radius: 50%;
}

.about-three__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--careon-base);
}

.about-three__call-number {
    margin-left: 20px;
}

.about-three__call-number p {
    font-size: 16px;
    margin: 0;
    line-height: 16px;
    color: var(--careon-gray);
    font-weight: 400;
    margin-bottom: 11px;
}

.about-three__call-number h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.about-three__call-number h5 a {
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-three__call-number a:hover {
    color: var(--careon-base);
}



/*==================================================
  DR. FAUSTO - BIOGRAFÍA SOBRE MÍ LIMPIA
  3 imágenes apiladas
  mismo ancho
  3ra imagen más larga, completa y redondeada
==================================================*/

.about-four.fausto-bio-clean {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 115px 0 125px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.about-four.fausto-bio-clean .container {
    max-width: 1240px !important;
    margin: 0 auto !important;
}

/*==================================================
  Estructura
==================================================*/

.fausto-bio-clean__inner {
    display: grid !important;
    grid-template-columns: minmax(460px, 520px) minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 70px !important;
}

/*==================================================
  Galería
==================================================*/

.fausto-bio-clean__media {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.fausto-bio-clean__gallery {
    width: 100% !important;
    max-width: 520px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
}

/*==================================================
  Tarjetas de imagen
==================================================*/

.fausto-bio-clean__image {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: #f4f4f4 !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04) !important;
}

/* Primera imagen */
.fausto-bio-clean__image--main {
    aspect-ratio: 16 / 9 !important;
}

/* Segunda imagen */
.fausto-bio-clean__image--small {
    aspect-ratio: 16 / 9 !important;
}

/* Tercera imagen:
   mismo ancho, un poco más larga,
   sin cortar el diploma */
.fausto-bio-clean__image--graduacion {
    aspect-ratio: auto !important;
    background: transparent !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.fausto-bio-clean__image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px !important;
    transform: none !important;
    transition: transform 500ms ease !important;
}

/* comportamiento imágenes 1 y 2 */
.fausto-bio-clean__image--main img,
.fausto-bio-clean__image--small img {
    object-fit: cover !important;
    object-position: center center !important;
}

/* tercera imagen: se muestra completa y redondeada */
.fausto-bio-clean__image--graduacion img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    object-position: center top !important;
    display: block !important;
    border-radius: 10px !important;
    background: transparent !important;
}

/* Hover */
.fausto-bio-clean__image:hover img {
    transform: scale(1.02) !important;
}

/*==================================================
  Contenido
==================================================*/

.fausto-bio-clean__content {
    position: relative !important;
    display: block !important;
    max-width: 570px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.fausto-bio-clean__heading {
    margin: 0 0 26px !important;
}

.fausto-bio-clean__eyebrow {
    margin: 0 0 14px !important;
    font-family: var(--careon-font) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.2px !important;
    color: #6a477b !important;
    text-transform: none !important;
}

.fausto-bio-clean__title {
    max-width: 540px !important;
    margin: 0 !important;
    font-family: var(--careon-font) !important;
    font-size: 38px !important;
    font-weight: 600 !important;
    line-height: 1.18 !important;
    letter-spacing: 1px !important;
    color: #6a477b !important;
    text-transform: none !important;
}

.fausto-bio-clean__subtitle {
    max-width: 540px !important;
    margin: 18px 0 0 !important;
    font-family: var(--careon-font) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    color: #4d4351 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/*==================================================
  Texto
==================================================*/

.fausto-bio-clean__text {
    max-width: 550px !important;
    margin: 0 !important;
    font-family: var(--careon-font) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.85 !important;
    color: #4d4351 !important;
    text-align: left !important;
}

.fausto-bio-clean__text p {
    margin: 0 0 16px !important;
}

.fausto-bio-clean__text br {
    display: block !important;
    margin-bottom: 8px !important;
    content: "" !important;
}

/*==================================================
  Formación
==================================================*/

.fausto-bio-clean__summary {
    position: relative !important;
    display: block !important;
    max-width: 550px !important;
    margin-top: 30px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(106, 71, 123, 0.14) !important;
}

.fausto-bio-clean__summary p {
    position: relative !important;
    margin: 0 !important;
    padding-left: 20px !important;
    font-family: var(--careon-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    color: #101A29 !important;
}

.fausto-bio-clean__summary p + p {
    margin-top: 12px !important;
}

.fausto-bio-clean__summary p::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 12px !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #6a477b !important;
}

/*==================================================
  Certificaciones
==================================================*/

.fausto-bio-clean__credentials {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    max-width: 640px !important;
    margin-top: 34px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(106, 71, 123, 0.14) !important;
}

.fausto-bio-clean__credential-group h4 {
    margin: 0 0 12px !important;
    font-family: var(--careon-font) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #6a477b !important;
}

.fausto-bio-clean__credential-group ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.fausto-bio-clean__credential-group li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 15px !important;
    font-family: var(--careon-font) !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    color: #4d4351 !important;
}

.fausto-bio-clean__credential-group li + li {
    margin-top: 7px !important;
}

.fausto-bio-clean__credential-group li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: #6a477b !important;
}

/*==================================================
  Apagar estilos heredados
==================================================*/

.about-four.fausto-bio-clean .about-four__left,
.about-four.fausto-bio-clean .about-four__right,
.about-four.fausto-bio-clean .about-four__img-box,
.about-four.fausto-bio-clean .about-four__img,
.about-four.fausto-bio-clean .about-four__sobre-mi-box,
.about-four.fausto-bio-clean .about-four__sobre-mi-img,
.about-four.fausto-bio-clean .about-four__graduacion-box,
.about-four.fausto-bio-clean .about-four__graduacion-img,
.about-four.fausto-bio-clean .about-four__point-box,
.about-four.fausto-bio-clean .about-four__point,
.about-four.fausto-bio-clean .about-four__trusted-patient-box,
.about-four.fausto-bio-clean .about-three__awards-box {
    all: unset;
}

.about-four.fausto-bio-clean::before,
.about-four.fausto-bio-clean::after,
.about-four.fausto-bio-clean .about-four__right::before,
.about-four.fausto-bio-clean .about-four__img-box::before,
.about-four.fausto-bio-clean .about-four__img-box::after,
.about-four.fausto-bio-clean .about-four__img::before,
.about-four.fausto-bio-clean .about-four__img::after {
    display: none !important;
}

/*==================================================
  Responsive
==================================================*/

@media (max-width: 1199px) {
    .about-four.fausto-bio-clean {
        padding: 105px 0 115px !important;
    }

    .about-four.fausto-bio-clean .container {
        max-width: 1080px !important;
    }

    .fausto-bio-clean__inner {
        grid-template-columns: minmax(410px, 480px) minmax(0, 1fr) !important;
        gap: 55px !important;
    }

    .fausto-bio-clean__gallery {
        max-width: 480px !important;
    }

    .fausto-bio-clean__title {
        font-size: 35px !important;
    }
}

@media (max-width: 991px) {
    .about-four.fausto-bio-clean {
        padding: 95px 0 105px !important;
    }

    .fausto-bio-clean__inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 50px !important;
    }

    .fausto-bio-clean__content {
        order: 1 !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .fausto-bio-clean__media {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .fausto-bio-clean__heading,
    .fausto-bio-clean__title,
    .fausto-bio-clean__subtitle,
    .fausto-bio-clean__text,
    .fausto-bio-clean__summary,
    .fausto-bio-clean__credentials {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .fausto-bio-clean__text {
        text-align: justify !important;
    }

    .fausto-bio-clean__summary p {
        text-align: left !important;
    }

    .fausto-bio-clean__gallery {
        max-width: 720px !important;
        margin: 0 auto !important;
    }

    .fausto-bio-clean__image--main,
    .fausto-bio-clean__image--small {
        aspect-ratio: 16 / 8.8 !important;
    }
}

@media (max-width: 767px) {
    .about-four.fausto-bio-clean {
        padding: 80px 0 90px !important;
    }

    .fausto-bio-clean__inner {
        gap: 42px !important;
    }

    .fausto-bio-clean__title {
        font-size: 31px !important;
        line-height: 1.22 !important;
    }

    .fausto-bio-clean__subtitle {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    .fausto-bio-clean__text {
        font-size: 15.5px !important;
        line-height: 1.8 !important;
    }

    .fausto-bio-clean__gallery {
        max-width: 100% !important;
        gap: 16px !important;
    }

    .fausto-bio-clean__image--main,
    .fausto-bio-clean__image--small {
        aspect-ratio: 16 / 9.2 !important;
    }

    .fausto-bio-clean__credentials {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
}

@media (max-width: 575px) {
    .about-four.fausto-bio-clean {
        padding: 70px 0 80px !important;
    }

    .fausto-bio-clean__title {
        font-size: 28px !important;
    }

    .fausto-bio-clean__subtitle {
        font-size: 15px !important;
    }

    .fausto-bio-clean__text {
        font-size: 15px !important;
    }

    .fausto-bio-clean__summary {
        margin-top: 26px !important;
        padding-top: 22px !important;
    }

    .fausto-bio-clean__summary p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .fausto-bio-clean__gallery {
        max-width: 100% !important;
    }

    .fausto-bio-clean__image,
    .fausto-bio-clean__image img {
        border-radius: 8px !important;
    }

    .fausto-bio-clean__image--main,
    .fausto-bio-clean__image--small {
        aspect-ratio: 1 / 0.68 !important;
    }

    .fausto-bio-clean__image--graduacion img {
        border-radius: 8px !important;
    }
}



/*--------------------------------------------------------------
# About Five
--------------------------------------------------------------*/
.about-five {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.about-five__left {
    position: relative;
    display: block;
    margin-top: 95px;
    margin-right: 70px;
}

.about-five__left .section-title-three {
    margin-bottom: 22px;
}

.about-five__point-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 39px;
}

.about-five__point {
    position: relative;
    display: block;
}

.about-five__point li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-five__point li+li {
    margin-top: 10px;
}

.about-five__point li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-five__point li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--careon-primary);
}

.about-five__point li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-five__point li .text p {
    font-size: 15px;
    font-weight: 500;
}

.about-five__btn-box {
    position: relative;
    display: block;
}

.about-five__btn-box .thm-btn {
    background-color: var(--careon-extra);
    color: var(--careon-black);
}

.about-five__right {
    position: relative;
    display: block;
    margin-left: 50px;
}

.about-five__img-box {
    position: relative;
    display: block;
}

.about-five__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-five__img img {
    width: 100%;
    border-radius: 10px;
}

.about-five__doctor-list-box {
    position: relative;
    display: block;
    max-width: 282px;
    width: 100%;
    margin: -85px auto 0;
    text-align: center;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    background-color: var(--careon-white);
    border-radius: 10px;
    padding: 27px 0 25px;
    z-index: 2;
}

.about-five__doctor-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 11px;
    text-transform: capitalize;
}

.about-five__doctor-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-five__doctor-list li {
    position: relative;
    display: block;
}

.about-five__doctor-list li+li {
    margin-left: -15px;
}

.about-five__doctor-img {
    position: relative;
    display: block;
    width: 45px;
    overflow: hidden;
    border-radius: 50%;
    z-index: 1;
}

.about-five__doctor-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--careon-extra);
}


/*--------------------------------------------------------------
# About Six
--------------------------------------------------------------*/
.about-six {
    padding: 90px 0 30px;
}

.about-six .about-one__content-box {
    background-color: var(--careon-extra);
    top: inherit;
    bottom: 0;
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/