@font-face {
    font-family: 'Sora';
    src: url("./fonts/Sora-VariableFont_wght.ttf") format("opentype");
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-Medium.ttf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-Regular.ttf") format("opentype");
    font-weight: 400;
}

:root {
    --white: #fff;
    --black: #000000;
    --blue: #0E202A;
    --grey: #BEBDBD;
    --grey2: #646464;
    --orange: #ff4612;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-size: 100%;
    font-family: 'Sora';
    list-style-type: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    width: 100vw !important;
    overflow-x: hidden !important;
    color: #0E202A;
}

h1 {
    font-size: 42px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 43px;
}

h3 {
    font-size: 30px;
    line-height: 38px;
}

h4 {
    font-size: 25px;
    line-height: 33px;
}

h5 {
    font-size: 20px;
    line-height: 28px;
}

a {
    text-decoration: none;
}

.fw-500{
    font-weight: 500;
}

.fw-700 {
    font-weight: 700 !important;
}

.text-grey {
    color: var(--grey);
}

.text-grey2 {
    color: var(--grey2);
}

.text-blue {
    color: var(--blue);
}

.centrar-x {
    display: flex;
    justify-content: center;
    align-items: center;
}

.espaciado-x {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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


.between-y {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imagen-fondo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.recusos .imagen-fondo {
    transform: scaleX(-1);
    top: 20%;
}

.imagen-dark {
    filter: brightness(0.55);
}

.mw-1000 {
    max-width: 1000px;
}

/* Nav */

nav ul {
    list-style: none;
}

.close {
    display: none;
}

.offcanvas-body{
    width: 100%;
}

.menu {
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
    color: var(--white);
    cursor: pointer;
}

.navbar {
    font-size: 16px;
    line-height: 25px;
    padding-inline: 25px;
}

.navbar .container.line {
    padding-bottom: 8px;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 50px;
}

.categorias li {
    margin-left: 1.5rem;
    transition: 0.2s all ease;
    margin-bottom: 0;
    font-weight: 500;
}

.categorias li a {
    color: var(--dark);
    position: relative;
}

.categorias li a::after {
    position: absolute;
    content: "";
    display: block;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--black);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.categorias li a:hover::after, .categorias li a:focus::after,
.categorias li.active a::after {
    width: 100%;
}

/*Footer*/

footer {
    display: block;
    font-size: 14px;
    background: var(--blue);
    font-weight: 400;
    padding-top: 120px;
    font-family: 'Roboto';
}

.footer {
    padding-top: 50px;
}

.divisor {
    width: 100%;
    height: 3px;
    background: #696969;
}

.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-right: 2rem;
}

.redes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 160px;
}

.redes a{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes a:hover{
    opacity: 0.05;
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
    color: var(--white);
}

footer hr {
    margin-top: 1rem;
    border: 1px solid;
    color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    position: relative;
    color: var(--white);
    line-height: normal;
}

.footer-bottom ul {
    display: flex;
    text-wrap: nowrap;
}

.footer a {
    color: #BEBDBD;
}

.footer a:hover {
    color: var(--white);
}

.footer h5 {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--white);
}

.footer .col {
    margin: 0 1rem;
}

footer .list-unstyled li{
    margin-top: 0.5rem;
}

.form-suscripcion {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    height: 70px;
    width: 92%;
    margin-left: 0.7rem;
    border-radius: 12px;
    padding-inline: 2rem 1rem;
    margin-bottom: 70px;
}

.form-suscripcion input[type="email"] {
    border: none;
    width: 100%;
    height: 35px;
    background-color: transparent;
    color: var(--white);
    padding-right: 2rem;
}

.form-suscripcion input::placeholder{
    color: var(--white);
}


.form-suscripcion input[type="text"]:focus{
    border: none;
    outline: none;
    box-shadow: none;
}

.form-suscripcion button {
    background-color: transparent;
    color: var(--white);
    font-weight: 500;
}

/*Main*/

.banner {
    height: 60vh;
    color: var(--white);
}

.banner-categoria {
    height: 45vh;
    color: var(--white);
}

.titulos {
    width: 50%;
}

.titulos h2 {
    font-size: 35px;
    margin-top: 25%;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.titulos p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

.slick-arrow {
    cursor: pointer !important;
    position: absolute;
    top: 50%;
    z-index: 10;
}

.prev {
    left: 1.5%;
}

.next {
    right: 2%;
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    height: 35px !important;
}

.slick-dots li button{
    font-size: 22px !important;
}

.slick-dots li button:before {
    font-size: 14px;
    color: white;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
    font-size: 18px;
}

.transicion {
    transition: opacity 1.5s ease;
}

.efecto {
    opacity: 0;
}

.beneficion-section {
    padding: 80px 0;
    background-color: #F0F7FD;
}

.beneficion-section .slick-arrow {
    width: 20px;
}

.beneficion-section .prev {
    left: 15px;
}

.beneficion-section .netx {
    right: 0;
}

.carrusel-beneficios {
    padding-inline: 50px;
    display: flex;
}

.beneficion-section .slick-track {
    display: flex;
    height: 100%;
}

.beneficio {
    border-radius: 10px;
    display: flex;
    padding: 25px 55px 40px 45px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    background-color: white;
}

.beneficio p {
    color: #646464;
    font-size: 16px;
    line-height: 25px; /* 156.25% */
}

.info-section {
    padding: 80px 0;
}

.areas-section {
    min-height: 750px;
    color: var(--white);
}

.areas-section .container {
    padding: 80px 0 50px 0;
}

.areas-section p {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 35px 0 50px 0;
}

.areas-section .areas div {
    margin-bottom: 24px;
}

.areas-section .comida .img-fluid {
    margin-bottom: 12px;
    width: 100%;
}

.areas-section .slick-arrow {
    top: 112%;
    width: 16px;
    height: 20px;
}

.areas-section .prev {
    left: calc(50% - 30px);
}

.areas-section .next {
    right: calc(50% - 30px);
}

.area {
    border-radius: 33px;
    background: rgba(255, 255, 255, 0.11);
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10px;
    height: 485px;
}

.circulo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 100px;
    background: linear-gradient(180deg, rgba(227, 205, 204, 0.41) -65.73%, rgba(4, 66, 79, 0.41) 100%), rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulo.active {
    background: linear-gradient(180deg, #E0BEBE -65.73%, #0E202A 100%), rgba(255, 255, 255, 0.20);
}

.area:hover .circulo {
    background: linear-gradient(180deg, #E0BEBE -65.73%, #0E202A 100%), rgba(255, 255, 255, 0.20);
}

.area h4 {
    font-weight: 300;
    height: 40px;
    text-align: center;
}

.btn-base {
    max-width: 143px;
    width: 90%;
    height: 39px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--white);
    color: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.5s ease;
}

.btn-base:hover {
    background-color: #284357;
}

.btn-area .fa-arrow-right {
    transform: rotate(-45deg);
}

.socios-section {
    margin: 80px 0;
}

.socios-section .socio {
    overflow: hidden;
}

.socios-section .socio img{
    transition: all 0.5s ease;
}

.socios-section .col-lg-3 .socio:hover .img-fluid {
    transform: scale(1.1);
}

.noticias-section {
    color: var(--white);
    padding: 50px 0;
}

.noticias-section .img-fluid {
    border-radius: 16px;
    margin-bottom: 32px;
}

.tag {
    font-weight: 400;
    font-size: 11px;
    min-width: 80px;
    height: 30px;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    margin-right: 10px;
    padding-inline: 10px;
    text-transform: uppercase;
    margin-bottom: 10PX;
}

.tag:hover {
    filter: saturate(2);
}

.tag.style1 {
    background-color: #BEC3D5;
}
.tag.style2 {
    background-color: #96B5A7;
}
.tag.style3 {
    background-color: #907699;
}
.tag.style4 {
    background-color: #B4B596;
}
.tag.style5 {
    background-color: #C39A8D;
}
.tag.style6 {
    background-color: #A8CEDB;
}


.noticias-section h5{
    margin: 24px 0;
}

.noticias-section span {
    font-size: 12px;
}

.section-contacto {
    margin: 80px 0;
}

.section-contacto .img-fluid {
    border-radius: 33px 0px 0px 33px;
}

.form-contacto input, .form-comentario input:not(input[type="checkbox"]) {
    display: flex;
    height: 62px;
    padding: 0px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 9px;
    border: 1px solid #BBB;
    color: #646464;
    margin-bottom: 32px !important;
}

.form-contacto textarea {
    height: 150px;
    flex-shrink: 0;
    resize: none;
}

.form-contacto button, .form-comentario button {
    display: flex;
    width: 190px;
    height: 62px;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #0E202A;
    color: #0E202A;
    transition: all 0.5s ease;
}

.form-comentario button {
    max-width: 260px;
}

.form-contacto button:hover, .form-comentario button:hover {
    background-color: #0E202A;
    color: var(--white);
}


.comillas {
    position: absolute;
    left: 0;
}
.comillas-1 {
    position: absolute;
    left: 800px;
}

.mision-section {
    padding: 80px 0;
    background-color:#fcfcfd;
}

.mision-section h2 {
    font-weight: 400;
    margin-bottom: 70px;
}

.mision-section p{
    max-width: 960px;
    margin-inline: auto;
    color: #0E202A;
    text-align: center;
    font-size: 25px;
    line-height: 35px;
}

.historia-section {
    margin: 80px 0;
}

.historia-section p {
    color: #646464;
    text-align: center;
    font-size: 18px;
    line-height: 35px;
}

.section-vision {
    padding: 100px 0;
}

.section-vision .row .col-6 {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    color: var(--white);
}

.section-vision .row .col-6 div {
    width: 50%;
}

.img-vision {
    position: absolute;
    right: 0;
    width: 550px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item {
    border: none;
    background-color: transparent;
    width: 100% !important;
    color: var(--black);
    border-radius: 0 !important;
}

.accordion-item:first-child {
    border-top: 1px solid #CCC;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid #CCC;
}

.accordion-header .accordion-button {
    color: var(--black);
    box-shadow: none;
    height: 80px;
    border-radius: 0;
}

.accordion-button {
    background-color: transparent !important;
    font-size: 18px;
}

.accordion-body {
    color: #494949;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px; /* 194.444% */
}

/* .accordion-button[aria-expanded="true"] span{
  font-weight: 600;
} */

/*configuracion inicial*/
.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon);
    filter: invert(100%);
}


/*cuando no esta activo*/
.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon);
}

/*cuando esta activo*/
.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.equipo {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.equipo .img-fluid {
    filter: drop-shadow(3px 3px 2px black);
}

.equipo img {
    margin-bottom: 24px;
}

.equipo-section {
    padding: 80px 0;
    /* background: #F0F7FD; */
}

.equipo .nombre {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0px;
}

.equipo .cargo {
    color: #494949;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 8px;
}

.equipo p {
    color: #494949;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.paraguay-section p {
    font-size: 18px;
    line-height: 38px;
    color: #0E202A;
}

.paraguay-section {
    padding-bottom: 80px;
}

.noticia-interna-section {
    color: #0E202A;
    padding-top: 0;
}

.noticia-interna-section .noticia p {
    color: #646464;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.noticia a h3 {
    color: #0E202A;
}


.noticia-interna-section .noticia .row {
    margin-bottom: 50px;
}

.comentario-notica {
    padding: 50px 60px;
    background: url("../images/banners/10.png") no-repeat center center;
    background-size: cover;
    margin: 80px 0;
}

.comentario-notica p {
    color: #0E202A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 18px;
}

.comentario-notica span {
    color: #0E202A;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    text-transform: uppercase;
}

.submenu {
    margin-bottom: 50px;
}

.submenu, .submenu a {
    color: #959494;
    font-size: 11px;
    line-height: 25px;
    text-transform: uppercase;
}

.submenu a:hover {
    color: var(--black);
    font-weight: 500;
}

.paginacion {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 80px;
}

.paginacion a{
    color: #0E202A;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    line-height: 25px;
    letter-spacing: 2.6px;
    margin-inline: 30px;
    padding: 0px 10px 5px 10px;
}

.paginacion a.active {
    font-weight: 500;
    border-bottom: 1px solid #0E202A;
}

.paginacion a:hover {
    font-weight: 500;
    border-bottom: 1px solid #0E202A;
}

.btn-siguiente {
    border-radius: 9px;
    border: 1px solid #0E202A;
    display: flex;
    width: 78px;
    height: 62px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.btn-siguiente:hover {
    color: var(--white);
    background-color:#0E202A;
    display: flex;
    width: 78px;
    height: 62px;
    justify-content: center;
    align-items: center;
}

.comentario-noticia2 {
    display: flex;
    align-items: start;
    padding: 20px 0 20px 30px;
    margin: 30px 0;
    border-left: 4px solid #D7E7F0;
}

.comentario-noticia2 span {
    color: #0E202A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 670px;
}

.pie-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 50px;
    border-bottom: 1px solid #DCDCDC;
}

.paginacion2 span {
    color: #0E202A;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.117px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.paginacion2 p {
    color: #0E202A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.paginacion2 .line {
    border-right: 1px solid #DCDCDC;
}

.paginacion2 .col-6 a {
    max-width: 80%;
}

.paginacion2 .col-6:not(.line) {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.paginacion2 .col-6:not(.line) span {
    width: 80%;
}

.autora {
    border-radius: 9px;
    background: #F0F8FD;
    position: relative;
    padding: 30px 50px;
    margin: 80px 0 100px 0;
}

.autora .contacto-autora {
    display: inline-flex;
    width: 100px;
    height: 47px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 0px 9px;
    background: radial-gradient(113.45% 55.7% at 50% 50%, #DEC9C9 50%, #96BEC7 100%);
    position: absolute;
    top: 0;
    right: 0;
}

.comentarios, .formulario-comentario, .publicaciones-relacionadas {
    padding-top: 25px;
    border-top: 1px solid #DCDCDC;
    margin-bottom: 50px;
}

.comentario .circulo-coment {
    border-radius: 50%;
    background: #E0BEBE;
    width: 4px;
    height: 4px;
    margin-top: 4px;
    margin-right: 10px;
}

.comentario .datos-usuario {
    display: flex;
    align-items: center;
    min-width: 250px;
    justify-content: space-between;
}

.comentario .nombre {
    color: #0E202A;
    font-size: 20px;
    line-height: 25px;
}

.comentario .fecha {
    color: #0E202A;
    font-size: 13px;
    line-height: 13px;
    display: flex;
}

.comentario button {
    border: none;
    color: #0E202A;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.comentario button:hover {
    font-weight: 500;
}

.comentario p {
    color: #646464;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    margin-top: 12px;
}

.form-comentario textarea {
    height: 250px;
    flex-shrink: 0;
    resize: none;
}

.section-encabezado .titulos h2 {
    font-size: 42px;
    margin-top: 25%;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-encabezado .titulos.accion p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.section-encabezado .titulos p {
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
    max-width: 600px;
}

.section-contacto {
    margin-bottom: 40px;
}

.section-contacto a {
    color: var(--grey2);
}

.section-encabezado {
    margin-bottom: 80px;
}

.menu-info {
    display: flex;
    padding-left: 0;
}

.menu-info li {
    color: #646464;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    max-width: 250px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 15px 15px 0 0;
    border: 1px solid #646464;
    background-color: #F1F1F1;
    margin-left: 10px;
    position: relative;
    box-sizing: content-box;
    cursor: pointer;
}

.menu-info li:first-child:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -11px;
    width: 11px;
    height: 1px;
    background-color: #646464;
}

.info-seleccionada {
    background:#F5F6F6;
}

.menu-info li:not(.seleccionado)::after {
    bottom: -1px;
}

.menu-info li.seleccionado {
    background-color: var(--white);
    border-bottom: none;
}

.section-ubicacion {
    color: var(--Black-2, #3F3F3F);
    font-size: 15px;
    font-weight: 400;
    line-height: 180%;
}

.section-ubicacion .titulo {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.tarjeta {
    margin: 50px 0;
}

.tarjeta .info {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.tarjeta p, .tarjeta a, .tarjeta span{
    color: #646464;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 12px;
}

.recusos .titulos p {
    font-size: 18px;
}


.section-videos h3 {
    color: #000;
    font-size: 21px;
    font-weight: 700;
    line-height: 26px;
    padding: 16px 0;
}

.section-videos {
    padding-top: 140px;
}

.section-videos .ct-video h3 {
    padding: 0;
}

.section-videos .video-principal:not(:first-child) {
    display: none;
}

.section-videos .video-principal span{
    font-weight: 700;
    color: #0075FF;
}

.section-videos .video-principal h4 {
    margin: 18px 0;
}

.section-videos .ct-video {
    display: flex;
    padding-inline: 25px;
    height: 300px;
    flex-direction: column;
    justify-content: center;
    gap: 19.8px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.section-videos .ct-video p {
    font-size: 16px;
}

.section-videos .ct-video .btn-area{
    color: #0E202A;
    font-size: 13px;
    transition: all 0.5s ease;
}

.section-videos .ct-video .btn-area:hover{
    color: #0E202A;
    font-size: 13px;
    font-weight: 600;
}

.contenedor-recurso {
    display: flex;
    padding-bottom: 36px;
    border-bottom: 1px solid #D8D8D8;
    height: 100%;
    padding-top: 36px;
}

.section-libreria {
    padding-bottom: 150px;
}

.section-libreria .col-lg-6 .contenedor-recurso .mx-1 div,
.section-eventos .mx-1 {
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px !important;
}

.section-libreria .col-lg-6 .contenedor-recurso .mx-1:hover .img-fluid,
.section-eventos .mx-1:hover .img-fluid {
    transform: scale(1.05);
    transition: transform 0.5s;
}

.section-libreria .btn-base-2 {
    margin: 20px auto;
    padding-inline: 50px;
}

.target {
    padding: 5px 20px 5px 20px;
    border-radius: 5px !important;
    color: var(--white);
    font-weight: 500;
}

.contenedor-recurso p{
    color: #000;
    font-size: 18px;
    line-height: 23px;
    max-width: 230px;
}

.img-contacto {
    min-height: 540px;
}

.form-recursos {
    display: flex;
    padding: 50px 0;
    margin-left: 10px;
}

#buscador, #tipo {
    height: 40px;
    width: 235px;
    border-radius: 0;
}

#tipo option {
    height: 40px !important;
    font-size: 16px;
    line-height: 40px !important;
}

.contenedor-recurso .contenedor-imagen .img-fluid {
    max-width: 250px;
    height: 150px;
    flex-shrink: 0;
}

.section-accion-terapeurica {
    padding-bottom: 300px;
}

.section-accion-terapeurica .area {
    height: 400px;
}


.img-accion1 {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-accion2 {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -300px;
    max-width: 320px;
}

.img-encabezado {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.catalogo-section {
    background: var(--blue);
    position: relative;
    padding-bottom: 50px;
}

.catalogo-section h2 {
    font-weight: 300;
}

.catalogo-section picture .img-fluid {
    position: absolute;
    right: 0;
    top: -100px;
}

.col-12  .img-fluid {
    width: 300px;
}

.productos-section {
    padding: 80px 0;
}


.btn-base2 {
    max-width: 143px;
    width: 90%;
    height: 39px;
    flex-shrink: 0;
    border-radius: 8px;
    justify-content: center;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    transition: all 0.5s ease;
    display: inline-flex;
    align-items: center;
    color: #000;
    text-transform: uppercase;
    border: 1px solid #050505;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-base2:hover {
    color: var(--white);
    background-color: #284357;
}

.productos .col-lg-4 {
    padding-inline: 0px;
}

.producto, .producto2 {
    text-align: center;
    padding: 2rem 1rem 3rem 1rem;
    border-bottom: 1px solid var(--black);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.producto:hover, .producto2:hover {
    font-weight: 600;
    color: var(--blue);
}

.producto img, .producto2 img {
    margin-bottom: 12px;
}

.producto2 {
    border-bottom: 0px;
}

.producto2 img {
    margin-inline: auto;
}

.bn-bottom {
    border-bottom: none !important;
}

.mw-250 {
    max-width: 250px;
    width: 100%;
}

.form-productos .form-control {
    border-radius: 0;
    max-width: 235px;
    width: 100%;
    height: 40px;
}

.form-productos .col-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.btn-base3 {
    display: flex;
    width: 208.3px;
    height: 44px;
    padding: 0px 30.8px 0px 31px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #0E202A;
    background: #0E202A;
    color: var(--white);
    transition: all 0.5s ease;
}

.btn-base3:hover {
    background: var(--white);
    color: #0E202A;
}

.carrusel-relacionados {
    padding-inline: 40px;
}

.carrusel-medicamento .slick-dots {
    position: absolute;
    bottom: -40px;
    height: 35px !important;
}

.carrusel-medicamento .slick-dots li button{
    font-size: 22px !important;
}

.carrusel-medicamento .slick-dots li button:before {
    font-size: 14px;
    color: var(--blue);
    opacity: 0.7;
}

.carrusel-medicamento .slick-dots li.slick-active button:before {
    opacity: 1;
    border-radius: 50%;
    font-size: 18px;
}

.carrusel-relacionados .slick-arrow {
    cursor: pointer !important;
    position: absolute;
    top: 40%;
    z-index: 10;
}

.btn-prospecto {
    border-radius: 15px;
    background: #E80002;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 117px;
    height: 43px;
    flex-shrink: 0;
    color: var(--white);
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.btn-prospecto:hover {
    background: #C60002;
}

.medicamento-section {
    margin-top: 40px;
    padding: 80px 0;
    border-top: 1px solid #616161;
}

.medicamento-section h5 {
    color: #626262;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

.sustancia {
    color: #626262;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}

.sustancia p {
    font-size: 14px;
    margin-bottom: 0;
}

.sustancia .nombre {
    font-style: italic;
}
.content-html figure img {
    max-width: 100%;
    margin: auto;
    display: block;
}
.content-html figure + p {
    text-align: center;
    font-weight: bold !important;
    font-size: .875em !important;
}
.form-suscripcion {
    min-height: 70px;
    height: auto;
}
.form-suscripcion input[type="email"] {
    flex: 1;
}
.img-fluid-d {
    max-width: 80%;
    height: auto;
    transform: rotate(55deg);
}
#videoModal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    margin: 2rem;
    z-index: 1;
    line-height: 1.5;
    width: 1.5em;
    text-align: center;
    height: 1.5em;
    border-radius: 50%;
}
