html {
    font-size: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 16px
}

:root {
    --color-white: #fff;
    --color-light: #f1f5f8;
    --color-black: #121212;
    --color-night: #001633;
    --color-purple: #9b27b0;
    --color-indigo: #63f;
    --color-sequoia: #00205e;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit
}

body {
    font-family: Arial
}

.w-4\/12 {
    width: 33.333333%
}

.w-8\/12 {
    width: 66.666667%
}

.overflow-y-auto {
    overflow-y: auto
}

.hidden {
    display: none !important;
}

.flex-col {
    flex-direction: column
}

.flex-row {
    flex-direction: row
}

.h-screen {
    height: 100vh
}

.justify-end {
    justify-content: flex-end
}

.justify-between {
    justify-content: space-between
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify
}

.color-texto {
    color: #202020
}

.bg-blue-sequoia {
    background-color: #00205e;
}

.bg-white {
    background-color: #fff;
}

.text-sequoia {
    color: #00205e;
}

.rounded-lg {
    border-radius: .5rem
}

.w-full {
    width: 100%
}

.h-full {
    height: 100%
}

.object-cover {
    object-fit: cover
}

.max-w-\[600px\] {
    max-width: 600px
}


.max-h-\[400px\] {
    max-height: 400px
}


.p-2 {
    padding: .5rem
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.grid {
    display: grid
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.justify-start {
    justify-content: flex-start
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.gap-4 {
    gap: 1rem
}

.gap-8 {
    gap: 2rem
}

.gap-2 {
    gap: .5rem
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.pt-1 {
    padding-top: .25rem
}

.pt-2 {
    padding-top: .5rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pt-3 {
    padding-top: .75rem
}

.pb-3 {
    padding-bottom: .75rem
}

.p-1 {
    padding: .25rem
}

.p-8 {
    padding: 2rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.pt-8 {
    padding-top: 2rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pb-14 {
    padding-bottom: 3.5rem
}

.pt-10 {
    padding-top: 2.5rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-10 {
    padding-bottom: 2.5rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mr-20 {
    margin-right: 5rem
}

.rounded-lg {
    border-radius: .5rem
}

.border {
    border-width: 1px;
    border-style: solid;
    border-color: currentColor;
}

.border-radius-5 {
    border-radius: 5px
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.border-black {
    border-color: #000
}

.top-15\/17 {
    top: 88.235294%
}

.left-1\/17 {
    left: 5.882353%
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-white {
    color: #fff
}

.font-bold {
    font-weight: 700
}

.w-6 {
    width: 1.5rem
}

.w-9 {
    width: 2.25rem
}

.w-96 {
    width: 24rem;
}

.w-fit {
    width: fit-content
}

.max-w-full{
    max-width: 100% !important;
}

.item-end {
    align-items: flex-end
}

.item-center {
    align-items: center
}

.w-full {
    width: 100%
}

.h-\[43rem\] {
    height: 43rem
}

.fixed {
    position: fixed
}

.z-index-10 {
    z-index: 10
}


@media (min-width:640px) {
    .sm\:text-lg {
        font-size: 18px
    }

    .sm\:p-8 {
        padding: 2rem
    }

    .sm\:hidden {
        display: none
    }

}

@media (min-width:768px) {
    .md\:text-xl {
        font-size: 20px
    }

    .md\:p-12 {
        padding: 3rem
    }

    .md\:grid-cols-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:block {
        display: block !important;
    }

    .md\:flex {
        display: flex !important;
    }


}

@media (min-width:1024px) {
    .lg\:text-2xl {
        font-size: 24px
    }

    .lg\:p-16 {
        padding: 4rem
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:block {
        display: block
    }

    .lg\:w-4\/12 {
        width: 33.333333%
    }

    .lg\:w-8\/12 {
        width: 66.666667%
    }

    .lg\:h-\[43rem\] {
        height: 43rem
    }
}

@media (min-width:1280px) {
    .xl\:text-3xl {
        font-size: 28px
    }

    .xl\:p-20 {
        padding: 5rem
    }
}

@media (min-width:1536px) {
    .\32xl\:text-4xl {
        font-size: 32px
    }

    .\32xl\:p-24 {
        padding: 6rem
    }
}

.buscador {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-42%, -50%)
}

.buscador form {
    display: flex;
    margin: inherit;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
    margin-top: 0;
    border: 1px solid #000;
    border-radius: 8px
}

.buscador button {
    padding-left: .625rem;
    padding-right: .625rem
}

.buscador input {
    min-height: 20px
}

.buscador-mobil {
    display: flex;
    width: 100%
}

.buscador-mobil form {
    display: flex;
    margin: inherit;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
    margin-top: 0;
    border: 1px solid #000;
    border-radius: 8px
}

.buscador-mobil button {
    padding-left: .625rem;
    padding-right: .625rem
}

.buscador-mobil input {
    min-height: 20px
}

.busqueda-container {
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1.25rem
}

.busqueda-container h2 {
    font-size: 16px
}

.busqueda-container ul {
    list-style: none
}

.busqueda-container li {
    margin-top: .9375rem
}

.paginacion {
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin-top: 1.25rem
}

img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto
}

.underline {
    text-decoration-line: underline
}

.tamaño-img {
    margin: 0 auto;
    max-width: 100%
}

.size-img-resposive {
    margin: 0 auto;
    max-width: 100%
}

.buscador-hidden-container {
    position: absolute;
    right: 29%;
    top: 8%
}

.buscador-hidden {
    cursor: pointer
}

.buscador-hidden-input {
    display: none;
    position: absolute;
    top: 3.5rem;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px;
    border: 1px solid;
    z-index: 10;
    right: -3rem;
    width: 28rem
}

.buscador-hidden-input button {
    font-size: 14px
}

.buscador-hidden-container:hover .buscador-hidden-input {
    display: block
}

.buscador-hidden-container:hover .buscador-hidden {
    color: gray
}

.buscador-hidden-input form {
    margin: auto;
    display: flex;
    background: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 0;
    border-radius: 7px
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none
}

.logo-size {
    display: flex;
    max-width: 251px;
    height: auto;
    margin-left: -47px
}

.container {
    max-width: 90%;
    width: 100%;
    height: auto;
    margin: 0 auto
}

.navbar {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border: none;
    outline: none;
    color: var(--color-black);
    background: var(--color-white);
    box-shadow: 0 7px 16px -5px rgba(0, 0, 0, .75);
    -webkit-box-shadow: 0 -3px 16px -5px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 7px 16px -5px rgba(0, 0, 0, .75);
    padding-top: 1.5rem
}

.navbar .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    justify-content: space-around
}

.navbar .burger {
    position: relative;
    display: none;
    cursor: pointer;
    width: 1rem;
    height: .7rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    transform: rotate(0deg);
    transition: 0.35s ease-in-out
}

.navbar .burger-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: .25rem;
    background: #bfdb49;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out
}

.navbar .burger-line:nth-child(1) {
    top: 0;
    height: 3px
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
    top: .3rem;
    height: 3px
}

.navbar .burger-line:nth-child(4) {
    top: .7rem
}

.navbar .burger.active .burger-line:nth-child(1),
.navbar .burger.acstive .burger-line:nth-child(4) {
    top: 1.25rem;
    width: 0%;
    left: 50%
}

.navbar .burger.active .burger-line:nth-child(2) {
    transform: rotate(45deg)
}

.navbar .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg)
}

.navbar .menu-inner {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2vw;
    list-style: none
}

.navbar .menu-inner li {
    margin-right: 2vw;
    margin-top: 1vw
}

.menu-link {
    font-family: inherit;
    font-weight: 600;
    line-height: inherit;
    border: none;
    color: #00235d;
    font-size: calc(12px + .8vw);
    transition: all 0.35s ease-in-out
}

.navbar .menu-link.active,
.navbar .menu-link:hover {
    border: none;
    outline: none;
    color: #c0d41f
}

.menu-button-container {
    background-color: #00235d;
    padding: 11px;
    border-radius: 3px;
    margin-right: -29px
}

.top-header {
    background-color: #00205e;
    padding-top: .625rem;
    padding-bottom: .625rem;
    width: 100%;
    text-decoration: none;
    position: fixed;
    text-align: center;
    word-wrap: break-word;
    position: fixed
}

.top-header a {
    text-decoration: none
}

.top-header-icono {
    padding-top: 8px
}

.linea-top-menu {
    border-top: 30px solid #c0d41f;
    height: 20px;
    max-width: 2px;
    border-radius: 30px
}

.icono {
    flex-basis: calc(44.4% - 10px);
    text-align: center
}

.company-social {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    list-style: none;
    display: flex
}

.company-social li {
    margin: 0;
    padding: 0;
    height: 45px;
    width: 45px;
    background: #c0d41f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 .125rem
}

.company-social li div {
    display: flex
}

.company-social a {
    margin: 0 2px 0 0;
    font-size: 12px !important
}

.company-social .social-facebook a img {
    height: 20px
}

.company-social .social-youtube a img {
    height: 20px
}

.company-social .social-whatsapp a img {
    height: 20px
}

.company-social .social-instagram a img {
    height: 20px
}

.company-social .social-twitter a img {
    height: 20px
}

.company-social .social-tiktok a img {
    height: 20px
}

.company-social a:hover {
    color: #fff
}

.company-social .social-facebook li:hover {
    background: #4893ce
}

.company-social .social-twitter li:hover {
    background: #82e6ff
}

.company-social .social-instagram li:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.company-social .social-whatsapp li:hover {
    background: #128c7e
}

.company-social .social-youtube li:hover {
    background: red
}

.linea-blanca {
    border-top: 3px solid #fff;
    max-width: 100%
}

.wrapper {
    display: grid
}

.search-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 13rem
}

.show {
    display: block !important
}

#site-wrapper {
    z-index: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%
}

#site-canvas {
    width: 100%;
    position: relative;
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
    transition: .3s ease all;
    backface-visibility: hidden
}

.show-nav #site-canvas {
    transform: translateX(10vw);
    transform: translate3d(80vw, 0, 0)
}

#top-header {
    z-index: 4;
    transition: .3s ease all
}

.justificar {
    float: right;
    padding-top: 2.8125rem;
    padding-right: 1.875rem
}

.scrollup {
    position: fixed;
    width: 100%;
    padding: .625em 0;
    bottom: 0;
    background: #00235d;
    border-radius: 2px 2px 0 0;
    border-bottom: 2px solid #c0d41f
}

a.scrollup {
    outline: 0;
    text-align: center;
    transition: all .3s ease-out 0s
}

a.scrollup:active,
a.scrollup:focus,
a.scrollup:hover {
    opacity: 1;
    text-decoration: none
}

.scrollup p {
    font-size: 12px;
    font-weight: 600;
    color: #fff
}

a {
    text-decoration: none
}

.centrar-texto {
    text-align: center !important
}

.justificar-derecha-texto {
    text-align: left !important
}

.centrar-objeto {
    display: flex;
    margin: 0 auto
}

.color-verde {
    color: #b5cd59 !important
}

.letra-cursiva {
    font-family: Pacifico, cursive;
    font-weight: 200;
    font-size: calc(0.6875em + 0.7vw)
}

.margin-top-20 {
    margin-top: 1.25rem
}

.font-bold {
    font-weight: 700
}

.img-90 {
    max-width: 90% !important;
    margin: 0 auto
}

.contenedor-85porciento {
    margin-left: auto;
    margin-right: auto
}

.contenedor-75porciento {
    max-width: 75% !important;
    margin: 0 auto
}

.contenedor-40porciento {
    max-width: 40% !important;
    margin: 0 auto
}

.contenedor-45porciento {
    max-width: 45% !important;
    margin: 0 auto
}

.contenedor-contacto {
    width: 100%;
    max-width: 2500px;
    margin: 0 auto
}

.contenedor-info-contacto {
    max-width: 100%;
    margin: 0 auto;
    background: #00235d
}

.tercer-p p {
    text-align: center;
    font-size: calc(0.75rem + 1vw) !important;
    font-weight: 500;
    line-height: 1.5 !important;
    color: white !important;
    margin: 5px !important
}

.contacto-box {
    max-width: 90%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 1.25rem
}

.formulario h3 {
    font-size: 38px;
    color: #00235d;
    line-height: 38px;
    font-weight: 300;
    font-style: normal;
    text-align: center
}

.font-ciudades {
    font-size: 6vw;
    font-weight: 700;
    text-align: center;
    color: #c0d41f;
    margin: 18px 0 0 0;
    line-height: 2
}

.font-ciudades span {
    font-weight: 700;
    text-align: center;
    color: #c0d41f
}

.formulario {
    margin-bottom: 25px
}

form {
    margin: auto;
    background: #00235d;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px
}

.contacto-grid {
    display: grid;
    grid-template-columns: 50% 50%
}

.boton-contacto:hover {
    color: #fff !important;
    box-shadow: 0 1px 10px #b5cd59;
    transition: all .2s ease
}

input,
select,
textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 15px !important;
    border: none;
    min-height: 50px
}

.imprimir input {
    position: absolute;
    float: right;
    right: 0;
    margin-right: 1%;
    margin-top: 51vw;
    width: 32px;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px !important;
    border: none;
    min-height: auto
}

textarea {
    min-height: 250px;
    max-height: 200px;
    max-width: 100%
}

#boton {
    background: #c0d41f;
    color: #00205e;
    max-width: 140px;
    font-size: .8125em;
    font-weight: 700;
    padding: 15px 0
}

.input-color {
    color: #b9b9b9 !important
}

#boton:hover {
    cursor: pointer
}

.contenedor-principal {
    max-width: 100%;
    margin: 0 auto;
    line-height: 0
}

.titulos-azules {
    font-size: calc(10px + .5vw);
    color: #00235d;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
    line-height: 1.15
}

.titulos-azules h3 {
    line-height: 1.5;
    margin: 0 auto
}

.textos-azules {
    font-size: calc(12px + .8vw);
    color: #00235d;
    font-weight: 500;
    margin: .375em auto;
    line-height: 1.2;
    text-align: center;
    max-width: 90%
}

.textos-principal p {
    margin: 0 auto;
    max-width: 90%;
    font-size: calc(13px + .4vw);
    font-weight: 500;
    color: #878787;
    text-align: center;
    word-spacing: 1px;
    line-height: 20px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.textos-principal li {
    margin: 0 auto;
    max-width: 90%;
    font-size: calc(13px + .3vw);
    font-weight: 500;
    color: #878787;
    text-align: center;
    word-spacing: 1px;
    line-height: calc(20px + .6vw);
    margin-top: 1.25rem
}

.textos-principal ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.textos-principal li {
    padding-left: 1.25em;
    text-indent: -2.2em;
    text-align: left
}

.textos-principal li::before {
    content: "• ";
    font-size: 50px;
    color: #c0d41f
}

.barra-titulo {
    border-top: 3px solid #c0d41f;
    border-radius: 0 0 200px 0;
    width: 100%
}

.wrapper {
    display: grid
}

.flexbox.padre {
    display: flex;
    align-items: center
}

.boton-sequoia {
    background: #c0d41f;
    font-weight: 700;
    text-decoration: none;
    height: 55px;
    width: 290px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff
}

.boton-sequoia:hover {
    color: #fff !important;
    box-shadow: 0 1px 10px #b5cd59;
    transition: all .2s ease
}

.titulos-grid-index {
    display: grid;
    grid-template-columns: 18% 64% 18%
}

.banner-doctores-img {
    margin: 0;
    min-height: 39vw;
    max-width: 100%;
    background-image: url(/img/banners/PORTADA_2026.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative
}

.text-container {
    width: 100%;
    margin: 0 auto;
    line-height: 1.4
}

.text-container h2 {
    text-align: center;
    font-size: calc(22px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #00205e
}

.text-container h3 {
    text-align: center;
    font-size: calc(18px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #323232
}

.text-container h4 {
    text-align: center;
    font-size: calc(16px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #626262
}

.text-container h5 {
    text-align: center;
    font-size: calc(15px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: gray
}

.text-container p {
    font-size: 19px;
    max-width: 90%;
    margin: .3125em auto;
    color: #202020;
    text-align: left
}

.text-container ol li {
    font-size: 19px;
    padding: .625rem 0
}

.text-container ol li strong {
    margin: 0
}

.text-container ol {
    padding-inline-start: 25px;
    max-width: 90%;
    margin: 0 auto
}

.text-container ul li {
    font-size: 19px;
    padding-top: .625em
}

.text-container strong {
    font-size: 19px
}

.text-container ul {
    color: #000;
    padding-inline-start: 25px;
    max-width: 90%;
    margin: .625em auto
}

.text-container p em {
    font-size: 19px
}

.text-container em {
    font-size: 19px;
    text-align: center !important
}

h3~ul {
    padding-left: 3.75rem
}

.box-titles {
    max-width: 100%;
    background-color: #00205e;
    border-top: 3px solid #c0d41f;
    border-bottom: 3px solid #c0d41f
}

.box-titles-h2 {
    color: white !important;
    text-align: center !important;
    font-weight: 400;
    font-size: calc(18px + .8vw) !important;
    font-weight: 700
}

.titulos-principal h2 {
    max-width: 95%;
    text-align: center;
    font-weight: 500;
    color: #fff;
    padding: 20px 0;
    margin: 0 auto;
    font-size: calc(16px + .8vw);
    line-height: 1.5
}

.menu-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 1210px;
    margin: 0 auto
}

.lazy-container {
    width: 600px;
    margin: 2px auto
}

.lazy-button {
    width: 600px;
    position: relative;
    margin: 0 auto
}

.lazy-button p {
    position: absolute;
    z-index: 3;
    color: #fff;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 23px;
    font-weight: 600;
    width: fit-content;
    text-align: center;
    inline-size: max-content
}

.lazy-button .mascara {
    background: linear-gradient(#00102e, #001744);
    opacity: .7;
    z-index: 2;
    width: 600px;
    height: 144.5px;
    position: absolute;
    border-radius: 15px
}

.lazy-button img {
    border-radius: 15px;
    position: relative;
    z-index: 1
}

strong {
    margin: 0 !important
}

.titulos-grid-contacto {
    display: grid;
    grid-template-columns: 28% 44% 28%
}

.titulos-grid-crecimiento-infantil-deficiente {
    display: grid;
    grid-template-columns: 11% 78% 11%
}

.titulos-grid-crecimiento-infantil {
    display: grid;
    grid-template-columns: 15% 70% 15%
}

.titulos-grid-gci {
    display: grid;
    grid-template-columns: 26% 48% 26%
}

.titulos-grid-baja-estatura {
    display: grid;
    grid-template-columns: 27% 46% 27%
}

.contenedor-video {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: .625em auto
}

.reproductor {
    margin: 0 auto;
    display: block;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    width: 350px;
    height: 350px;
    cursor: pointer;
    display: block
}

.reproductor-vertical {
    margin: 0 auto;
    display: block;
    overflow: hidden;
    position: relative;
    width: 312px;
    height: 552px;
    cursor: pointer;
    display: block
}

.reproductor-rectangular {
    margin: 0 auto;
    display: block;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block
}

img.imagen-previa {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    width: 350px;
    height: 350px;
    position: absolute;
    object-fit: cover;
    right: 0;
    top: 0;
    border: 0
}

img.imagen-previa-vertical {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    width: 312px;
    height: 550px;
    position: absolute;
    object-fit: cover;
    right: 0;
    top: 0;
    border: 0
}

img.imagen-previa-rectangular {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    width: 102%;
    position: absolute;
    background-size: cover;
    right: 0;
    top: 0
}

div.youtube-play {
    height: 64px;
    width: 64px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    opacity: .7;
    position: absolute;
    background: url(https://cdn2.iconfinder.com/data/icons/social-icons-color/512/youtube-64.png) no-repeat
}

div.youtube-play:hover {
    opacity: 1
}

#youtube-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.contenedor-footer {
    max-width: 90%;
    margin: 0 auto;
    padding-top: 1.25em
}

.contenedor-footer p {
    text-align: center
}

.contenedor-footer p:first-child {
    max-width: 80%;
    margin: 0 auto
}

.contenedor-footer a {
    text-decoration: none
}

.texto-footer p {
    font-size: calc(0.5em + 0.8vw);
    color: #656565;
    font-weight: 600;
    text-align: center;
    padding-bottom: .75rem;
    line-height: 18px
}

.boton {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .234375rem .46875rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.boton-footer {
    background: #c0d41f;
    text-decoration: none;
    height: 20px;
    width: 200px;
    margin-bottom: 15px
}

.texto-boton button {
    font-weight: 500;
    font-size: 12px;
    color: #00205e;
    font-weight: bolder;
    padding-bottom: 20px
}

.boton-footer:hover {
    color: #fff !important;
    box-shadow: 0 1px 10px #b5cd59;
    transition: all .2s ease
}

.letras-blue-footer {
    font-weight: 700;
    font-size: 17px;
    color: #122242;
    text-align: center;
    margin: 0;
    margin-bottom: .25em
}

.icono {
    flex-basis: calc(44.4% - 10px);
    text-align: center
}

.company-social a {
    font-size: 10px !important
}

.company-social a:hover {
    color: #fff
}

.company-social a i {
    border-radius: 1%;
    color: #fff !important;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s
}

.company-social .social-facebook a i {
    background-color: #c0d41f
}

.company-social .social-twitter a i {
    background-color: #c0d41f
}

.company-social .social-instagram a i {
    background-color: #c0d41f
}

.company-social .social-whatsapp a i {
    background-color: #c0d41f
}

.company-social .social-youtube a i {
    background-color: #c0d41f
}

.company-social .social-facebook a:hover i {
    background: #4893ce
}

.company-social .social-twitter a:hover i {
    background: #82e6ff
}

.company-social .social-instagram a:hover i {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.company-social .social-whatsapp a:hover i {
    background: #128c7e
}

.company-social .social-youtube a:hover i {
    background: red
}

.cuadros-crecimiento {
    width: 100%;
    background-color: #00205e
}

.cuadros-crecimiento a {
    color: rgb(255, 255, 255)
}

.cuadros-crecimiento-2 {
    background-color: #00205e;
    margin: .625em 0
}

.efecto3-2 {
    position: relative
}

.efecto3-2:after {
    content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0 5px 7px 2px #a7a7a7;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 100px/10px
}

.cuadros-crecimiento-2 h1 {
    color: rgba(255, 255, 255, .89);
    font-size: 17px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-weight: 400;
    padding-top: .625rem;
    padding-bottom: .625rem;
    line-height: 1.15
}

.cuadros-crecimiento h1 {
    color: rgba(255, 255, 255, .89);
    font-size: calc(0.75em + 1vw);
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    font-weight: 400;
    padding-top: .625rem;
    padding-bottom: .625rem;
    line-height: 1.15
}

.justificar-texto-85 {
    max-width: 85%;
    font-size: calc(13px + .4vw);
    color: #202020;
    text-align: justify;
    margin: 0 auto;
    line-height: 1.5
}

.justificar-texto-85 h3 {
    max-width: 85%;
    font-size: 18px;
    color: #000;
    text-align: justify;
    margin: 0 auto
}

.justificar-texto-85 h3 {
    max-width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
    text-align: justify;
    margin: 0 auto
}

.justificar-texto-90 {
    max-width: 90%;
    font-size: calc(13px + .4vw);
    color: #202020;
    text-align: center;
    margin: 0 auto;
    line-height: 1.15
}

.justificar-texto-90 h3 {
    max-width: 90%;
    font-size: calc(0.875em + 0.1vw);
    color: #00205e;
    font-weight: 700;
    margin: 0 auto
}

.justificar-texto-90 h4 {
    max-width: 90%;
    font-size: calc(0.8125em + 0.1vw);
    color: #00205e;
    font-weight: 700;
    margin: 0 auto
}

.justificar-texto-90 h5 {
    max-width: 90%;
    font-size: calc(0.75em + 0.1vw);
    color: #00205e;
    font-weight: 700;
    margin: 0 auto
}

.cuadro-gris h3 {
    max-width: unset;
    padding: 20px;
    background-color: #efeded;
    color: #00205e;
    font-weight: 700;
    font-size: calc(0.75em + 1vw)
}

.cuadro-gris-grande h3 {
    max-width: unset;
    padding: 20px;
    background-color: #efeded;
    color: #00205e;
    font-weight: 700;
    font-size: calc(0.34375em + 1vw)
}

.cuadros-crecimiento-crecimiento {
    background-color: #00205e;
    margin-top: 30px
}

.cuadros-crecimiento-crecimiento p {
    color: rgba(255, 255, 255, .89);
    font-size: calc(0.9375em + 0.6vw);
    max-width: 85%;
    margin: 0 auto;
    font-weight: 300;
    padding-top: .9375rem;
    padding-bottom: 1.5625rem;
    line-height: calc(1.2em + .1vw);
    text-align: center;
    word-spacing: 2px
}

.cuadros-crecimiento-crecimiento h1 {
    color: rgba(255, 255, 255, .89);
    font-size: 18px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    font-weight: 400;
    padding-top: .625rem;
    padding-bottom: .625rem
}

.boton-e {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .234375rem .46875rem;
    font-size: .625rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer
}

.boton-contacto-landing {
    background: #bfdb49;
    text-decoration: none;
    font-weight: 700;
    font-size: calc(1em + 0.6vw);
    color: #00205e !important;
    height: calc(2em + 1vw);
    width: calc(17em + 1vw);
    border-radius: 5px;
    border-color: #c0d41f;
    border-width: 2.5px
}

.boton-esp {
    background: #00235d;
    text-decoration: none;
    height: 70px;
    width: 320px;
    border-radius: 30px;
    border-color: #c0d41f;
    border-width: 2.5px
}

.texto-boton-contacto button {
    font-weight: 600;
    font-size: calc(0.4375em + 0.6vw);
    color: #00235d;
    line-height: 1
}

.boton-contacto {
    background: #b5cd59;
    text-decoration: none;
    height: 50px;
    width: 70%;
    border-radius: 30px;
    border-color: #c0d41f;
    border-width: 2.5px
}

.boton-crecimiento {
    background: #c0d41f;
    text-decoration: none;
    height: 40px;
    width: 200px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700 !important
}

.texto-boton-esp button {
    font-weight: 400;
    font-size: calc(0.8125em + 0.6vw);
    color: #fff;
    cursor: pointer
}

.boton-esp:hover {
    color: #fff !important;
    box-shadow: 0 1px 10px #b5cd59;
    transition: all .2s ease
}

.justificar-texto-90-listas {
    max-width: 90%;
    margin: 0 auto
}

.justificar-texto-90-listas h4 {
    margin: 0;
    display: inline
}

.justificar-texto-90-listas li {
    padding-left: 15px;
    margin-top: calc(0.625em + 1vw);
    position: relative;
    color: #202020;
    list-style-type: none;
    font-size: calc(13px + .4vw);
    line-height: 1.15
}

.justificar-texto-90-listas ul {
    list-style: none;
    padding-left: 10px
}

.justificar-texto-90-listas li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c0d41f;
    color: #c0d41f
}

.justificar-texto-90-listas p {
    margin-bottom: 10px;
    margin-top: 10px
}

.pr-1 {
    padding-right: .25rem;
}

.pr-4 {
    padding-right: 1rem;
}

.pl-4 {
    padding-left: 1rem;
}

.etapas-tenner-grid {
    display: grid;
    grid-template-columns: 30% 70%
}

.etapas-tenner-grid ul {
    padding-left: 0 !important
}

.etapas-grado {
    max-width: 100%
}

.etapas-grado-bg {
    margin: 0 auto;
    width: 85%;
    height: 100%;
    background: #f3f3f3
}

.linea-etapas {
    border-top: 3px solid #c0d41f;
    max-width: 100%
}

.etapas-grado-bg p {
    font-size: 14px;
    font-weight: 800;
    color: #00205e
}

.etapas-grado-bg {
    display: table
}

.etapas-grado-bg p {
    text-align: center
}

.etapas-grado-hijo {
    display: table-cell;
    vertical-align: middle
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000
}

table strong {
    font-size: 14px !important
}

thead th:nth-child(1) {
    width: 14%
}

thead th:nth-child(2) {
    width: 12%
}

thead th:nth-child(3) {
    width: 33%
}

td,
th {
    text-align: center;
    padding: .3125rem
}

.centrar-imagen {
    margin: 0 auto
}

.caja-imagen-footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #efefef;
    box-shadow: inset -1px 15px 46px -23px rgb(0 0 0 /17%);
    padding-bottom: 4rem;
}

.texto-imagen-footer {
    font-weight: 700;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 10.8px !important;
    font-weight: bolder;
    color: #00205e !important;
    line-height: 7px
}

.texto-importancia-2 p {
    margin: 0 auto;
    max-width: 90%;
    font-size: calc(0.8125em + 0.5vw);
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.15;
    margin-top: 0;
    padding-bottom: 0
}

.contenedor-video-2 {
    display: block;
    margin: auto;
    width: 90%;
    max-width: 700px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.box {
    max-width: 100%;
    height: calc(8em + 6.5vw);
    background: #d6d6d6;
    margin: 0 auto
}

.box h3 {
    font-family: Pacifico, cursive;
    color: #00235d;
    font-size: calc(1em + 0.8vw);
    font-weight: 600;
    text-align: center !important;
    position: relative;
    top: calc(1.3em + .5vw);
    line-height: 1.15
}

.efecto3 {
    position: relative;
    box-shadow: 0 0 4px #202020, 0 0 20px #ccc inset
}

.efecto3:after,
.efecto3:before {
    content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0 0 20px #202020;
    top: 0;
    bottom: 0;
    left: 10px;
    right: 10px;
    border-radius: 100px/10px
}

.boton-e-2 {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .234375rem .46875rem;
    font-size: .625rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer
}

.boton-esp-2 {
    background: #00235d;
    text-decoration: none;
    height: 70px;
    width: 320px;
    border-radius: 30px
}

.boton-crecimiento-2 {
    background: #c0d41f;
    text-decoration: none;
    height: 35px;
    padding: 0 .625rem;
    border-radius: 20px;
    color: #fff;
    font-weight: 700 !important
}

.texto-boton-esp-2 button {
    font-weight: 400;
    font-size: calc(0.75em + 0.8vw);
    color: #00235d
}

.boton-esp-2:hover {
    color: #fff !important;
    box-shadow: 0 1px 10px #b5cd59;
    transition: all .2s ease
}

.margin-negativo {
    margin-bottom: -10px
}

.margin-negativo-top-18 {
    margin-top: -18px
}

.margin-negativo-top-18-5 {
    margin-top: calc(-1.5625em + 1.5vw)
}

.titulos-principal-3 h2 {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    color: #fff;
    padding: 25px 0 20px 0;
    font-size: calc(0.875em + 0.8vw);
    line-height: 1.15
}

.titulos-principal-33 h2 {
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-size: calc(0.75em + 1vw);
    line-height: 1.15
}

.font-blanquitas-curveadas {
    font-weight: 400;
    font-style: italic
}

.img-95 {
    max-width: 93%;
    margin: 0 auto
}

.margin-negativo-2 {
    margin-bottom: -10px
}

.letra-cursiva-2 {
    font-family: Pacifico, cursive;
    font-size: calc(0.75em + 1vw);
    font-weight: 500
}

.tablas-grid-3 {
    display: grid;
    grid-template-columns: 32% 1.2% 32% 1.2% 32%;
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.tablas-grid-2 {
    display: grid;
    grid-template-columns: 49% 1.2% 49%;
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.tablas-grid-1 {
    display: grid;
    grid-template-columns: 100%;
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.tablas-grid-4 {
    display: grid;
    grid-template-columns: 24% 1.2% 24% 1.2% 24% 1.2% 24%;
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.tablas-grid-2-unique {
    display: grid;
    grid-template-columns: 70% 1.2% 29%;
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.tablas-grid-3-unique {
    display: grid;
    grid-template-columns: 26% 47% 26%;
    font-weight: 700;
    text-align: center;
    color: #00205e;
    font-size: calc(0.375em + 1vw)
}

.tablas-grid-3-unique p {
    margin-top: 10px;
    margin-bottom: 2px
}

.tablas-grid-3-animal {
    display: grid;
    grid-template-columns: 49% 1.2% 24% 1.2% 23%;
    font-weight: 700;
    text-align: center;
    color: #00205e;
    font-size: calc(0.375em + 1vw)
}

.tablas-grid-4-unique {
    display: grid;
    grid-template-columns: 24% 1.2% 24% 1.2% 24% 1.2% 24%
}

.tablas-grid-4-title {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    font-weight: 700;
    text-align: center;
    color: #00205e;
    font-size: calc(0.375em + 1vw)
}

.tablas-grid-3-title {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    font-weight: 700;
    text-align: center;
    color: #00205e;
    font-size: calc(0.375em + 1vw)
}

.tablas-grid-4-title p {
    margin-top: 10px;
    margin-bottom: 2px
}

.tablas-sombra {
    background: #fff;
    box-shadow: inset 0 14px 31px -17px rgba(0, 0, 0, .75)
}

.linea-vertical-tablas {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #c0d41f
}

.linea-horizontal-tablas {
    border-top: 4px solid #c0d41f;
    max-width: 100%;
    border-radius: 30px
}

.tablas-letras p {
    font-size: calc(0.3125em + 1vw);
    font-weight: 600;
    text-align: center;
    color: #00205e
}

.tablas-letras-titulo {
    font-size: calc(0.5625em + 1vw);
    font-weight: 700;
    text-align: center;
    color: #00205e
}

.cuadro-tabla {
    background-color: #00205e;
    width: 100%;
    margin: 0 auto;
    height: 30px
}

.tabla-letra-cursivo p {
    max-width: 90%;
    font-size: calc(0.5625em + 1vw);
    font-style: italic;
    font-weight: 600;
    text-align: left;
    color: #00205e;
    line-height: 1.15;
    margin: 0 auto
}

.letra-cursiva-contacto {
    font-family: Pacifico, cursive;
    font-size: calc(0.9375em + 1vw);
    font-weight: 500;
    color: #00205e;
    margin: 0 auto;
    max-width: 70%;
    line-height: 1.15
}

.crecer-mujeres-font-cursivas {
    font-size: .5em;
    color: rgb(0, 0, 0);
    font-style: italic;
    max-width: 100%;
    text-align: center;
    margin: 0 auto
}

.modal {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

a {
    color: #1157df
}

.centrar-div {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center
}

.about-this-site-h2 {
    color: #838383;
    font-size: calc(0.8125em + 1vw)
}

.articles-related {
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 1px 3px 8px 0 rgba(0, 0, 0, .33);
    border-radius: 5px
}

.articles-related-container {
    display: flex;
    flex-direction: column
}

h3 a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #00235d;
    font-size: calc(0.25em + 1vw)
}

.meet-us-container {
    max-width: 80%;
    margin: 0 auto
}

.meet-us-container h2 {
    text-align: center;
    color: #54585a;
    font-size: calc(1.125em + 1vw)
}

.meet-us-container h3 {
    color: #54585a;
    font-size: calc(0.9375em + 1vw)
}

.meet-us-container h4 {
    color: #111;
    font-size: calc(0.625em + 1vw)
}

.meet-us-container ul {
    padding-inline-start: 20px !important
}

.meet-us-container ul li {
    list-style: none;
    font-size: calc(0.5625em + 1vw);
    line-height: 2.5;
    text-decoration: underline
}

.text-decoration-no {
    text-decoration: none !important
}

.meet-us-sub-container {
    margin-left: 10%
}

.list-num {
    list-style: decimal
}

.list-num li::marker {
    font-weight: 700
}

.medic-container {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.15
}

.medic-container h2 {
    color: #00205e;
    font-size: calc(1.25em + 1vw);
    line-height: 2
}

.medic-container h3 {
    color: #111;
    font-size: calc(0.6875em + 1vw);
    line-height: 2
}

.medic-container a li {
    color: #003da5;
    padding-bottom: .6875em
}

.medic-container li {
    font-size: 15px
}

.medic-container li:not(:last-child) {
    padding-bottom: .6875em
}

.medic-container p {
    font-size: 15px;
    text-align: justify;
    line-height: 1.3
}

.medic-container ul li {
    max-width: 100%
}

.medic-container ul {
    padding-inline-start: 20px;
    list-style: none
}

.medic-inner-list {
    list-style: outside !important
}

.medic-grid {
    margin: 0 auto;
    line-height: 1.15;
    display: grid;
    grid-template-columns: 60% 40%;
    margin-top: .625em
}

.medic-grid img {
    width: 200%
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--uiBreadcrumbIndent)
}

.breadcrumb__list span {
    padding: 0 .3125rem;
    color: #7a7a7a
}

.breadcrumb__group {
    display: inline-flex;
    align-items: center;
    padding: 0 !important
}

.breadcrumb__group a {
    color: #474747;
    font-size: 16px
}

.page {
    font-size: calc(0.4375em + 1vw);
    font-weight: 500;
    font-style: italic;
    box-sizing: border-box;
    margin-top: .75em;
    margin-bottom: .875em
}

.page ol {
    padding-inline-start: calc(0.3125em + 1vw);
    list-style: none
}

.list-style-none {
    list-style: none
}

details {
    color: #fff;
    margin-bottom: .625em
}

details summary {
    margin-bottom: .15625em;
    font-weight: 600
}

details summary:focus {
    outline: none
}

details summary {
    color: lightskyblue
}

details summary:hover {
    cursor: pointer
}

details section {
    margin-left: 18px;
    padding: .46875em 0
}

details section:focus {
    outline: none
}

details section p {
    margin: 0;
    padding-bottom: .3125em
}

details section p:last-child {
    padding-bottom: 0
}

[contenteditable]:empty:before {
    content: attr(placeholder);
    color: #727272
}

.about-us {
    margin: 0 auto;
    max-width: 100%
}

.h2-azules h2 {
    color: #00205e;
    font-size: calc(0.8125em + 1vw);
    line-height: 1.15
}

.p-estandar p {
    margin: 0 auto;
    max-width: 80%;
    font-size: calc(13px + .4vw);
    color: #202020;
    line-height: 1.5
}

.author-info {
    background-color: #f0f8ff;
    max-width: 100%;
    margin: 0 auto;
    border: solid #e5e5e5;
    border-width: 1px 0;
    padding: 20px 0;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center
}

.author-info img {
    width: 151px;
    padding-bottom: .6em
}

.author-info p,
strong {
    font-size: calc(13px + .4vw);
    margin: .625em;
    max-width: 100%
}

.author-info a {
    color: #1157df;
    font-weight: 600
}

.main-container {
    max-width: 100%;
    margin: 0 auto
}

.article-container {
    width: 100%;
    margin: 0 auto;
    line-height: 1.4
}

.article-container h2 {
    text-align: center;
    font-size: calc(22px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #00205e
}

.article-container h3 {
    text-align: center;
    font-size: calc(18px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #323232
}

.article-container h4 {
    text-align: center;
    font-size: calc(16px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: #626262
}

.article-container h5 {
    text-align: center;
    font-size: calc(15px + .4vw);
    max-width: 90%;
    margin: .3125em auto;
    color: gray
}

.article-container p {
    font-size: 19px;
    max-width: 90%;
    margin: .3125em auto;
    color: #202020;
    text-align: center
}

.article-container ol li {
    font-size: 19px
}

.article-container ol li strong {
    margin: 0
}

.article-container ol {
    padding-inline-start: 25px;
    max-width: 90%;
    margin: 0 auto;
    color: #202020
}

.article-container ul li {
    font-size: 19px
}

.article-container strong {
    font-size: 19px
}

.article-container ul {
    color: #202020;
    padding-inline-start: 25px;
    max-width: 90%;
    margin: 0 auto
}

.article-container p em {
    font-size: 19px
}

.article-container em {
    font-size: 19px;
    text-align: center !important
}

.indice {
    margin: .625em auto;
    max-width: 500px;
    background-color: #f8f9fa;
    border: solid #e5e5e5;
    border-width: 1px 1px
}

.indice ol li {
    padding: 0 0
}

.descargar-libro {
    display: flex
}

.titulos-principal-casos-exito h2 {
    max-width: 90%;
    text-align: center;
    font-weight: 500;
    color: #fff;
    padding: 20px 0;
    margin: 0 auto;
    font-size: calc(12px + .8vw);
    line-height: 1.5
}

.biografias {
    word-break: break-all
}

.biografias-template {
    line-height: 2
}

.biografias-template p,
em {
    font-size: 19px
}

.tg {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100%;
    margin: 0 auto
}

.tg td {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal
}

.tg th {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal
}

.tg .tg-9e3q {
    background-color: #f3f3f3;
    border-color: #c0d41f;
    color: #00205e;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle
}

.tg .tg-ripc {
    border-color: #c0d41f;
    color: #00205e;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle
}

.tg .tg-bxar {
    border-color: #c0d41f;
    color: #202020;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px;
    text-align: center;
    vertical-align: middle
}

.tg .tg-o25r {
    background-color: #85c6ff;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    text-align: center;
    vertical-align: top
}

.tg .tg-3wzv {
    background-color: #85c6ff;
    border-color: inherit;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-i1zu {
    background-color: #85c6ff;
    border-color: inherit;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    text-align: center
}

.tg .tg-r6nw {
    background-color: #edec73;
    border-color: inherit;
    text-align: center;
    vertical-align: top
}

.tg .tg-nnzh {
    background-color: #edec73;
    border-color: inherit;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-tygn {
    background-color: #99c4f8;
    border-color: inherit;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-2pqm {
    background-color: #99c4f8;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-d2gn {
    background-color: #b9d9ff;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-prdy {
    background-color: #b9d9ff;
    text-align: center
}

.tg .tg-prdy ul {
    max-width: 100%;
    margin: 0
}

.tg .tg-prdy ul li {
    font-size: 14px;
    text-align: left
}

.tg {
    border-collapse: collapse;
    border-spacing: 0
}

.tg td {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 7px;
    word-break: normal
}

.tg th {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 7px;
    word-break: normal
}

.tg .tg-gso4 {
    background-color: #ffccef;
    border-color: inherit;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-2no5 {
    background-color: #ffccef;
    border-color: inherit;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    text-align: center;
    vertical-align: top
}

.tg .tg-drnm {
    background-color: #ffccef;
    font-family: Arial, Helvetica, sans-serif !important;
    ;
    font-size: 18px;
    text-align: center;
    vertical-align: top
}

.tg .tg-kd6x {
    background-color: #fac4ff;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-lpja {
    background-color: #f8aaff;
    border-color: inherit;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-v8fx {
    background-color: #f8aaff;
    font-weight: 700;
    text-align: center;
    vertical-align: top
}

.tg .tg-sbqe {
    background-color: #fac4ff;
    text-align: center;
    vertical-align: top
}

.body-container {
    font-family: Montserrat, sans-serif;
    background: #fff;
    color: #4d5974;
    display: flex;
    margin: 0 auto;
    width: 90%;
    text-align: center
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #bfdb49
}

.accordion button {
    margin-bottom: calc(0.9375em + 1vw);
    padding: .25em 1.875rem;
    color: #00205e;
    font-size: calc(0.75em + 1vw);
    font-weight: 700;
    border: #bfdb49 5px solid;
    border-radius: 12px;
    border-width: 4px;
    background: 0 0;
    outline: 0
}

.accordion button:focus,
.accordion button:hover {
    cursor: pointer;
    color: #00205e
}

.accordion button:focus::after,
.accordion button:hover::after {
    cursor: pointer;
    color: #00205e;
    border: 2px solid#00205e
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor
}

.accordion button[aria-expanded=true] {
    color: #02132f
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 40em;
    transition: all .2s linear;
    will-change: opacity, max-height;
    line-height: 1.15
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .2s linear, max-height .2s linear;
    will-change: opacity, max-height
}

.accordion .accordion-content p {
    font-size: calc(10px + .8vw);
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.15;
    text-align: justify !important
}

input[type="color"] {
    max-width: 12%;
    margin: 20px;
    background-color: #fff;
    transform: scale(1.25)
}

label {
    user-select: none
}

input[type="radio"] {
    display: none
}

input[type="radio"]+label {
    z-index: 10;
    margin: 0 10px 10px 0;
    position: relative;
    color: #ced4da;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .1);
    font-weight: 700;
    background-color: #fff;
    border: 2px solid #ced4da;
    cursor: pointer;
    transition: all 200ms ease
}

input[type="radio"]:checked+label {
    color: #495057;
    background-color: #ced4da
}

input[type="radio"]+label {
    padding: 5px 20px;
    border-radius: 10px
}

.character {
    width: 100px;
    position: absolute;
    bottom: 32px;
    left: 200px
}

.share-in {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center
}

.share-in div {
    margin: 0 .625em
}

.share-in h3 {
    font-weight: 800;
    font-size: 19px;
    max-width: 100%
}

.edad-f {
    display: flex;
    align-items: baseline;
    align-content: center
}

input[type="color"] {
    max-width: 12%;
    margin: 20px;
    background-color: #fff;
    transform: scale(1.25)
}

label {
    user-select: none
}

input[type="radio"] {
    display: none
}

input[type="radio"]+label {
    z-index: 10;
    margin: 0 10px 10px 0;
    position: relative;
    color: #ced4da;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .1);
    font-weight: 700;
    background-color: #fff;
    border: 2px solid #ced4da;
    cursor: pointer;
    transition: all 200ms ease
}

input[type="radio"]:checked+label {
    color: #495057;
    background-color: #ced4da
}

input[type="radio"]+label {
    padding: 5px 20px;
    border-radius: 10px
}

.character {
    width: 100px;
    position: absolute;
    bottom: 4.4%;
    left: 31%;
    transition: width 2s
}

.character:hover {
    filter: saturate(180%)
}

.character-info-container {
    max-width: 90%;
    margin: 0 auto;
    padding-top: 1.875em
}

.character-info-container p {
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    max-width: 90%;
    margin: .3125em auto;
    color: #202020;
    text-align: left
}

.character-info p {
    color: red !important;
    font-size: 1.875em
}

.listen-container {
    display: flex;
    width: 90%;
    gap: 1rem;
    margin: 0 auto
}

.landC {
    display: flex;
    cursor: pointer;
    gap: .5rem
}

.landC span {
    font-size: large;
    color: #00205e
}

.sound {
    display: none;
    transition: all 2s linear;
    text-align: center
}

.sound audio {
    width: 90%
}

.close-listen {
    display: none
}

.contact-captivate-author {
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .625em;
    margin: 0 auto
}

.contact-captivate-author p {
    font-size: 16px;
    max-width: 100%
}

.contact-captivate-author .medium {
    font-weight: 600
}

.contact-captive-author-img {
    background-image: url(/img/doctores/dr-dorantes-sequoia-mini.webp);
    width: 24%;
    height: 91px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 26px;
    position: relative;
    bottom: 1em
}

.contact-captive-author-text {
    line-height: 1.14;
    max-width: 70%;
    font-size: 14px;
    color: #202020;
    background: #ddeeffbf;
    position: relative;
    padding: 8px .625em;
    word-spacing: 0;
    letter-spacing: .5px;
    z-index: 0;
}

.contact-captive-author-text:after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -11px;
    margin-left: -11px;
    background: inherit;
    transform: rotate(45deg);
    z-index: -1;
}

.contact-captivate-swipe-up {
    position: fixed;
    width: 100%;
    height: 39em;
    bottom: 0;
    border-radius: 2px 2px 0 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    transition: all 0.5s ease 0.1s;
    flex-direction: column;
    z-index: 4
}

.contact-captivate-swipe-up-close {
    transform: translate3d(0, 330px, -135px)
}

.contact-captivate-swipe-up-hidden {
    margin-bottom: 1.25rem;
    font-size: 19px;
    font-weight: 500
}

.contact-captivate-swipe-up-cerrar {
    display: none
}

.contact-captivate-swipe-up-hidden a {
    color: #00205e;
    font-weight: 600
}

.contact-captivate-swipe-up-text {
    font-size: 14px;
    max-width: 80%;
    text-align: center
}

.contact-captivate-swipe-up-text .medium {
    font-weight: 600
}

.contact-captivate-swipe-up-question {
    display: flex
}

.contact-captivate-swipe-up-button {
    background-color: #00205e;
    font-weight: 500;
    font-size: 20px;
    color: rgb(255, 255, 255);
    width: 80%;
    padding: .3125em 0;
    margin-top: .625em
}

.contact-captivate-swipe-up-button-close {
    color: #000;
    font-size: 20px;
    padding: .3125em 0
}

.contact-captivate-swipe-up-img {
    background-image: url(/img/banners/doctores-sequoia.webp);
    width: 100%;
    height: 41%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 9px;
    position: relative;
    bottom: 1em
}

#mid-modal {
    position: fixed;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: none;
    animation-name: example;
    animation-duration: 1.5s
}

@keyframes example {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#mid-modal img {
    max-width: 84%;
    position: relative;
    top: 62px;
    z-index: -1
}

.modal-close {
    position: relative;
    top: 76px;
    left: 367px;
    cursor: pointer
}

.mid-modal-textBox {
    max-width: 100% !important;
    width: 400px;
    height: 200px;
    border: 1px solid #333;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background: #00205e;
    display: flex;
    box-shadow: -2px 2px 28px 5px rgba(0, 0, 0, .36)
}

.mid-modal-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column
}

.mid-modal-container a {
    font-size: 18px;
    font-weight: 800;
    background-color: #c0d41f;
    border-radius: 2px;
    height: 47px;
    width: 299px;
    display: flex;
    justify-content: center;
    align-items: center
}

.mid-modal-container p {
    color: #fff
}

.mid-modal-container p:first-child {
    font-size: 20px;
    font-weight: 700
}

.mid-modal-container p:nth-child(2) {
    font-size: 15px;
    font-weight: 700
}

.libro-img {
    width: 30px;
    margin: 0;
    margin-left: .625rem
}

.dropdown-menu {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.dropdown-menu span {
    font-size: calc(18px + .4vw);
    background-color: #00205e;
    color: #fff;
    width: 90%;
    margin: 0 0 10px 0;
    padding: 5px 10px 5px 10px;
    text-align: center;
    border-radius: 5px
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.dropdown-menu ul li {
    padding: .1875rem;
    margin: 0 0 .125rem 0;
    background-color: #fff;
    border: 2px solid #00205e;
    border-radius: 5px
}

.dropdown-menu ul a li {
    color: #000
}

.dropdown-menu ul {
    width: 100%
}

.block {
    display: block
}

.small\:table-format {
    width: max-content;
    margin: 0 auto;
    font-size: 1.25rem
}

.small\:table-format tr,
td {
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    padding: .625rem 2.5rem
}

.conversor__container {
    width: 100%;
    margin: 0 auto
}

.conversor__container h2 {
    color: #fff;
    font-size: 1.25rem;
    padding: 1.25rem 0
}

.conversor__container div {
    display: flex;
    justify-content: flex-end
}

.conversor__container button {
    background: #fff;
    color: #00205e;
    padding: .625rem;
    font-size: .9375rem;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 1.875rem
}

.conversorRespuesta {
    font-size: 1.875rem;
    font-weight: 700;
    padding: 1.25rem;
    max-width: 100%
}

.sellos-verificacion {
    display: flex;
    padding-bottom: .65rem;
    align-items: center
}

.sellos-verificacion img {
    width: 150px
}

.botones-footer {
    display: flex;
    justify-content: center;
    gap: 3rem
}

.link_button {
    background-color: var(--color-sequoia);
    border-radius: 10px;
    max-width: 350px;
    width: 350px;
    margin: 0 auto;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s
}

.link_button:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19)
}

.link_button .text {
    font-size: 19px;
    color: var(--color-white);
    padding: .9375rem .9375rem;
    text-align: center
}

.form-newsletter {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 1.25rem
}

.form-newsletter form {
    margin: auto;
    background: #00235d;
    padding: 20px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px
}

.form-newsletter h2 {
    color: #fff;
    font-size: 20px;
    text-align: center !important;
    max-width: 100% !important
}

.form-newsletter label {
    color: #fff;
    font-size: 16px;
    margin-bottom: 1.25rem
}

.form-newsletter input {
    min-height: 40px;
    margin: .625rem 0
}

@media (max-width:1200px) {
    .mostrar {
        display: none
    }

    .menu-categorias {
        flex-direction: column;
        width: 100%
    }
}

@media (min-width:768px) {
    .menu-button-container {
        display: none
    }

    .logo-size {
        max-width: 323px;
        margin-right: 8vw
    }

    .buscador-mobil {
        display: none
    }

    .conversor__container {
        width: 750px
    }

    .md\:w-50 {
        width: 31.25rem
    }

    .search {
        display: none
    }

    .buscador-hidden-container {
        display: none
    }

    .dropdown-menu span {
        width: 50%
    }

    .text-container h2,
    .text-container h3,
    .text-container h4,
    .text-container h5 {
        text-align: left;
        max-width: 50%
    }

    .text-container h3 {
        max-width: 50%
    }

    .text-container h4 {
        padding-left: 1.25em;
        max-width: 50%
    }

    .text-container h5 {
        max-width: 50%;
        padding-left: 1.5625em
    }

    .text-container p {
        max-width: 50%
    }

    .text-container ol {
        max-width: 50%
    }

    .text-container ul {
        max-width: 50%
    }

    .text-container ul ul {
        max-width: 100%
    }

    .text-container ol ul {
        max-width: 100%
    }

    .author-info img {
        padding-left: .65em;
        padding-right: .65em;
        padding-bottom: 0
    }

    .author-info {
        max-width: 50%;
        padding: 12px 0;
        margin-bottom: 35px;
        display: flex;
        flex-flow: row nowrap
    }

    .author-info p,
    strong {
        font-size: calc(11px + .4vw);
        margin: 0;
        max-width: 100%
    }

    .article-container {
        max-width: 60%
    }

    .article-container h2,
    h3,
    h4,
    h5 {
        text-align: left !important
    }

    .article-container h3 {
        padding-left: .65em
    }

    .article-container h4 {
        padding-left: 1.25em
    }

    .article-container h5 {
        padding-left: 1.5625em
    }

    .indice ol {
        max-width: 100%
    }

    .indice h2 {
        text-align: center
    }
}

@media (max-width:768px) {
    .top-header {
        padding-top: .2rem;
        padding-bottom: .8rem
    }

    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible
    }

    .navbar .menu {
        width: 90%;
        margin: 0 auto;
        max-height: 0rem;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.35s ease
    }

    .navbar .menu.active {
        opacity: 1;
        visibility: visible
    }

    .navbar .menu-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: .9rem;
        padding: .3125rem 0
    }

    .sellos-verificacion {
        display: block
    }

    .sellos-verificacion img {
        width: 150px;
        padding: .625rem 0
    }

    .buscador-container {
        width: 100%;
        margin: 0 auto;
        padding-top: 1.25rem
    }

    .box-titles {
        border-top: 0;
        border-bottom: 0;
        background-color: #fff;
        margin-top: .75rem
    }

    .box-titles-h2 {
        color: #00205e !important;
        font-size: 26px !important
    }

    .lazy-container {
        width: 100%
    }

    .lazy-button {
        width: 95%
    }

    .lazy-button p {
        font-size: 18px
    }

    .lazy-button .mascara {
        width: 100%;
        height: 100%
    }

    .search-box {
        display: none
    }

    .buscador {
        display: none
    }

    .top-header {
        padding-top: .2rem;
        padding-bottom: .8rem
    }
}

@media (max-width:886px) {
    .icono {
        display: none
    }

    .top-header {
        padding-top: .4rem;
        padding-bottom: .4rem
    }

    .buscador {
        position: relative;
        top: 12px;
        left: 0;
        transform: translate(0, 0)
    }
}

@media (min-width:720px) {
    .imprimir input {
        margin-right: 2%;
        margin-top: 0
    }

    .tercer-p p {
        font-size: 1.5vw
    }

    .contenedor-info-contacto {
        max-width: 60%;
        margin: 0 auto;
        background: #00235d
    }

    .font-ciudades {
        font-size: 2.6vw
    }

    .banner-doctores-img {
        max-width: 50%;
        margin: 0 auto;
        min-height: 19vw
    }

    .menu-categorias-only {
        max-width: 35%;
        grid-template-columns: 100%
    }

    .fa-caret-right {
        font-size: 3vw;
        top: .6vw
    }

    .fa-caret-left {
        font-size: 3vw;
        top: .6vw
    }
}

@media (max-width:480px) {
    form {
        width: 100%
    }
}

@media (min-width:580px) {
    .texto-imagen-footer {
        max-width: 80%
    }

    .tabla-letra-cursivo p {
        max-width: 50%
    }

    .texto-imagen-footer {
        top: 18px
    }

    .ocultar-media {
        display: none
    }

    .tel-grid-footer {
        display: grid;
        grid-template-columns: repeat(4, 1fr)
    }

    .texto-footer p {
        color: #00205e;
        font-size: 18px;
        line-height: 22px
    }

    .letras-blue-footer {
        font-size: 15px
    }

    .cuadros-crecimiento-crecimiento {
        max-width: 50%;
        margin: 0 auto;
        margin-top: 30px
    }

    .tamaño-img {
        margin: 0 auto;
        max-width: 75%
    }

    .size-img-resposive {
        margin: 0 auto;
        max-width: 60%
    }

    .contenedor-video {
        max-width: 400px
    }

    .reproductor {
        width: 400px;
        height: 400px
    }

    img.imagen-previa {
        width: 401px;
        height: 400px
    }

    .titulos-grid-index {
        display: grid;
        grid-template-columns: 35% 30% 35%
    }

    .titulos-grid-contacto {
        display: grid;
        grid-template-columns: 37% 26% 37%
    }

    .titulos-grid-crecimiento-infantil-deficiente {
        display: grid;
        grid-template-columns: 25% 50% 25%
    }

    .titulos-grid-crecimiento-infantil {
        display: grid;
        grid-template-columns: 30% 40% 30%
    }

    .titulos-grid-gci {
        display: grid;
        grid-template-columns: 35% 30% 35%
    }

    .textos-principal p {
        margin: 0 auto;
        font-weight: 500;
        color: #878787;
        text-align: center;
        word-spacing: 1px;
        line-height: 1.7;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
        max-width: 90%
    }

    .textos-azules {
        color: #00235d;
        font-weight: 500;
        text-align: center;
        max-width: 50%
    }

    .justificar-texto p {
        text-align: justify !important;
        line-height: 1.15
    }

    .boton-esp {
        background: #00235d;
        text-decoration: none;
        height: 90px;
        width: 580px;
        border-radius: 30px;
        border-color: #c0d41f;
        border-width: 2.5px
    }

    .texto-boton-esp button {
        text-transform: uppercase;
        font-weight: 600
    }

    .justificar-texto-90 {
        max-width: 50%
    }

    .justificar-texto-90-listas {
        max-width: 60%
    }

    .ajustar-tanner {
        max-width: 100% !important
    }

    .justificar-texto-85 {
        max-width: 60%
    }

    .boton-crecimiento-2 {
        background: #c0d41f;
        text-decoration: none;
        height: 45px;
        padding: 0 .625rem;
        border-radius: 20px;
        color: #fff;
        font-weight: 700 !important
    }

    .boton-crecimiento {
        background: #c0d41f;
        text-decoration: none;
        height: 40px;
        width: 300px;
        border-radius: 20px;
        color: #fff;
        font-weight: 700 !important
    }

    .letra-cursiva-contacto {
        max-width: 40%
    }

    .body-container {
        margin: 0 auto;
        width: 60%
    }
}

@media (max-width:580px) {
    .mostrar-media {
        display: none
    }
}

@media (min-width:1200px) {
    .tamaño-img {
        margin: 0 auto;
        max-width: 50%
    }

    .size-img-resposive {
        margin: 0 auto;
        width: 700px
    }

    .ocultar {
        display: none
    }

    .cuadros-crecimiento-crecimiento {
        max-width: 50%
    }

    .titulos-grid-contacto {
        display: grid;
        grid-template-columns: 40% 20% 40%
    }

    .titulos-grid-crecimiento-infantil-deficiente {
        display: grid;
        grid-template-columns: 29% 42% 29%
    }

    .titulos-grid-crecimiento-infantil {
        display: grid;
        grid-template-columns: 32% 36% 32%
    }

    .titulos-grid-gci {
        display: grid;
        grid-template-columns: 33% 34% 33%
    }

    .textos-principal p {
        margin: 0 auto;
        max-width: 45%;
        font-weight: 500;
        color: #878787;
        text-align: center;
        word-spacing: 1px;
        line-height: 1.7;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem
    }

    .justificar-texto p {
        text-align: justify !important;
        line-height: 1.15
    }

    .contenedor-45porciento-d {
        max-width: 45% !important;
        margin: 0 auto
    }
}

@media (max-width:767px) {
    .centrar-div {
        line-height: 1
    }

    .about-this-site-h2 {
        color: #838383;
        font-size: calc(1.0625em + 1vw)
    }

    .medic-grid {
        grid-template-columns: 100%
    }

    .medic-grid img {
        width: 100%
    }
}

@media (min-width:767px) {
    .meet-us-container {
        max-width: 45%;
        margin: 0 auto
    }

    .articles-related-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem
    }

    .articles-related-container p {
        max-width: 90%
    }

    .articles-related-container h3 {
        max-width: 100%
    }

    .medic-container {
        max-width: 50%;
        margin: 0 auto;
        line-height: 1.15
    }

    .medic-container p {
        font-size: 20px
    }

    .medic-container li {
        font-size: 20px
    }

    .medic-container h3 {
        font-size: calc(0.375em + 1vw)
    }

    .page {
        max-width: 65%;
        font-size: calc(0.125em + 1vw)
    }

    .p-estandar {
        max-width: 60%
    }

    .tg {
        max-width: 50%
    }
}

@media (max-width:1000px) {
    .caracter-flex {
        max-width: 100%;
        display: block
    }

    .bl_view {
        width: 96vw
    }

    .form-estaturas {
        margin: .0625em
    }

    .character-info-container p {
        max-width: 95%
    }

    .character-info {
        font-size: .625rem;
        max-width: 100%
    }
}

@media (max-width:340px) {
    #mid-modal {
        width: 320px
    }

    .modal-close {
        left: 300px
    }

    .mid-modal-container a {
        width: 281px
    }

    .mid-modal-container p:nth-child(2) {
        font-size: 14px
    }
}

@media (min-width:1000px) {
    .contact-captivate-author {
        max-width: 900px
    }

    .contact-captive-author-text {
        padding: 18px .625rem;
        font-size: 16px
    }

    .contact-captive-author-img {
        width: 8%;
        height: 116px
    }

    .contact-captivate-swipe-up-img {
        width: 43%;
        height: 68%;
        background-position-y: -30px
    }

    .contact-captivate-swipe-up-button {
        width: 18%
    }

    .contact-captivate-swipe-up-text {
        font-size: 18px;
        max-width: 37%
    }

    .listen-container {
        width: 50%
    }

    .sound audio {
        width: 50%
    }
}