.doctor-bigotes-container {
    position: relative;
    background-color: var(--c2-light);
    min-height: 500px;
}

.doctor-bigotes-container article {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.doctor-bigotes-container article>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.doctor-bigotes-container .cruces {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.doctor-bigotes-container .cruces.izquierda {
    left: 0;
}

.doctor-bigotes-container .cruces.derecha {
    right: 0;
}

.doctor-bigotes-container .speech-bubble .title {
    font-size: 24px;
    text-align: center;
}

.doctor-bigotes-container .speech-bubble p {
    text-align: center;
    margin-bottom: 0;
}

.doctor-bigotes-container .speech-bubble>div:first-child {
    border: 2px solid var(--c2-light2);
    border-radius: 10px;
    position: relative;
    padding: 4rem;
}

.doctor-bigotes-container .speech-bubble>div:first-child::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 28px solid var(--c2-light2);
    border-right: 17px solid transparent;
    border-top: 9px solid var(--c2-light2);
    border-bottom: 13px solid transparent;
    left: 50%;
    bottom: -22px;
}

.doctor-bigotes-container .speech-bubble>div:first-child::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 34px solid var(--c2-light);
    border-right: 14px solid transparent;
    border-top: 6px solid var(--c2-light);
    border-bottom: 16px solid transparent;
    left: 50.4%;
    bottom: -18px;
}

.doctor-bigotes-container .speech-bubble .bigotes {
    margin-top: 2rem;
}

@media(max-width: 768px) {
    .doctor-bigotes-container .speech-bubble>div:first-child {
        padding: 1rem;
    }
}