/*
Theme Name:   Bio D
Theme URI:    https://www.legger.co/
Description:  Tema personalizado para Bio D
Author:       Legger
Author URI:   https://legger.co/
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
*/

@charset "UTF-8";

/* --------------- SELECTORES --------------- */

html {
    min-height: 100%;
    position: relative;
}

body,
html {
    font-family: 'Greed TRIAL', sans-serif;
    margin: 0;
    padding: 0;
    font-style: normal;
    font-size: var(--jvm--font-size-4);
    background-color: var(--jvm-background-primary);
    color: var(--jvm-color-text-primary);
}

html {
    position: relative;
}

body a {
    font-family: 'Greed TRIAL', sans-serif;
    text-decoration: none;
    cursor: pointer;
    color: var(--jvm-background-secundary);
    font-weight: 400;
    font-size: var(--jvm--font-size-4);
    transition: 0.5s;
}

body a:hover {
    text-decoration: none;
}

body.active {
    overflow: hidden;
}

h1 {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-primary);
    margin: 0;
}

h2 {
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-9);
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-primary);
}

h3 {
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-7);
    font-weight: 700;
    line-height: 29.26px;
    color: var(--jvm-color-text-primary);
}

h4 {
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-4);
    line-height: normal;
    color: var(--jvm-color-text-primary);
}

p {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 400;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-primary);
    font-style: normal;
    line-height: 22.4px;
}

ul {
    padding-left: 1rem;
}

ul li {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 400;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-primary);
    font-style: normal;
    line-height: 22.4px;
}

ol li {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 400;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-primary);
    font-style: normal;
    line-height: 22.4px;
}

strong {
    font-weight: 600;
}

.textUppercase {
    text-transform: uppercase;
}

.visibleMobile {
    display: none;
}

.visibleMobileTwo {
    display: none !important;
}

.btn-primary {
    color: var(--jvm-color-text-1);
    background-color: transparent;
    border-color: transparent;
}

.btn:hover {
    color: initial;
    background-color: inherit;
    border-color: transparent;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}

btn-check:focus+.btn,
.btn:focus {
    background-color: transparent;
    border-color: transparent;
}

.btn-check:active+.btn,
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:active {
    background-color: transparent;
    border-color: transparent;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    transition: 0.5s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: var(--jvm--container);
}

/* --------------- FIN SELECTORES --------------- */


/* --------------- OTROS ESTILOS GENERALES --------------- */

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: var(--jvm--container);
        ;
    }
}

.btn-check:active+.btn:focus,
.btn-check:checked+.btn:focus,
.btn.active:focus,
.btn.show:focus,
.btn:active:focus,
.btn:focus,
.input:active:focus,
.input:focus {
    box-shadow: none;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control:focus {
    color: var(--jvm-color-text-7);
    background-color: transparent;
    border-color: transparent;
    border: 1px solid var(--jvm-borde-8);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}

label {
    font-weight: 600;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-black);
    position: relative;
    left: 1rem;
}

input[type="text"],
input[type="email"] {
    width: var(--jvm--width);
    height: 56px !important;
    background-color: var(--jvm-background-1);
    border: 1px solid var(--jvm-borde-8);
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-4);
    font-weight: 400;
    line-height: normal;
    color: var(--jvm-color-text-7) !important;
    padding: 0 2rem;
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;

}

textarea {
    width: var(--jvm--width);
    background-color: var(--jvm-background-1);
    border: 1px solid var(--jvm-borde-8);
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-4);
    font-weight: 400;
    line-height: normal;
    color: var(--jvm-color-text-7) !important;
    padding: 1rem 2rem;
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
}

select {
    width: var(--jvm--width);
    height: 56px !important;
    background-color: var(--jvm-background-1) !important;
    border: 1px solid var(--jvm-borde-8) !important;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-4) !important;
    font-weight: 400 !important;
    line-height: normal !important;
    color: var(--jvm-color-text-7) !important;
    padding: 0 2rem !important;
    background: url(./assets/images/icons/icoSelect.svg) no-repeat 94% center;
    background-size: 24px;
    border-radius: 6px 6px 6px 6px !important;
    -moz-border-radius: 6px 6px 6px 6px !important;
    -webkit-border-radius: 6px 6px 6px 6px !important;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
select::placeholder,
textarea::placeholder {
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-4) !important;
    color: var(--jvm-color-text-7);
    text-align: left;
}

/* ------------------------------ */

.formBio .form-group .input-file [type=file] {
    width: 100%;
    height: 42px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.formBio .form-group .input-file {
    width: var(--jvm--width) !important;
    height: 56px;
    font-weight: 700 !important;
    background-color: transparent;
    font-size: var(--jvm--font-size-4) !important;
    color: var(--jvm-color-text-secundary);
    border: 1px dashed var(--jvm-color-text-2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0 !important;
    box-shadow: 0px 4px 4px 0px rgba(25, 97, 172, 0.15);
    border-radius: 6px 6px 6px 6px !important;
    -moz-border-radius: 6px 6px 6px 6px !important;
    -webkit-border-radius: 6px 6px 6px 6px !important;
}

.formBio .form-group .input-file label {
    width: 100%;
    max-width: 100%;
    font-weight: 700 !important;
    font-size: var(--jvm--font-size-4) !important;
    color: var(--jvm-color-text-secundary);
    line-height: normal;
    position: relative;
    cursor: pointer;
    left: 0;
}

/* ------------------------------ */

.check_legal {
    position: relative;
    top: 0.2rem;
    left: 0.6rem;
}

.form-check {
    background-color: var(--jvm-background-1);
    padding-left: 0;
    border-radius: 12px 12px 12px 12px;
    -moz-border-radius: 12px 12px 12px 12px;
    -webkit-border-radius: 12px 12px 12px 12px;
}

.form-check-input[type=checkbox] {
    width: 24px;
    height: 20px;
    border: 1px solid var(--jvm-color-border-blue);
    border-radius: 3px;
}

.form-check-input:checked[type=checkbox] {
    background-size: 20px;
    background-color: var(--jvm-background-secundary);
    border: 1px solid var(--jvm-borde-3);
    text-decoration: none;
}

.form-check-inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.1rem;
}

.form-check-input {
    width: 24px;
    height: 24px;
    border: 1px solid var(--jvm-borde-8);
}

.form-check .form-check-input {
    margin-left: inherit;
    margin-top: 0;
    cursor: pointer;
}

.form-check label {
    font-family: 'Greed TRIAL', sans-serif;
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: var(--jvm--font-size-2);
    color: var(--jvm-color-text-primary);
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    left: 0.5rem;
    top: 2px !important;
    margin: 0;
}

.form-check label a {
    font-family: 'Greed TRIAL', sans-serif;
    font-size: var(--jvm--font-size-2);
    color: var(--jvm-color-text-secundary);
}

.form-check-input:checked {
    background-color: var(--jvm-background-1);
    border-color: var(--jvm-borde-blue);
}

.form-check-input:checked[type=radio] {
    background-image: url(./assets/images/icons/check.svg) !important;
}

.form-check-input:focus {
    border: 1px solid var(--jvm-borde-8);
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}

.form-check-input[type=checkbox] {
    width: 24px;
    height: 22px;
    border: 1px solid var(--jvm-borde-8);
    border-radius: 3px;
}

.form-check-input:checked[type=checkbox] {
    background-size: 20px;
    background-color: var(--jvm-background-secundary);
    border: 1px solid var(--jvm-borde-3);
    text-decoration: none;
}

.form-check.tyc {
    margin-top: 1.5rem;
}

.form-check.tyc label {
    display: block;
    top: 0;
}

.form-check label a {
    font-weight: 400;
    font-size: var(--jvm--font-size-xls);
    line-height: 18px;
}

.form-check label a:hover {
    text-decoration: underline;
}

.slick-prev:before {
    content: '';
}

.slick-prev.slick-arrow[type="button"] {
    width: 48px;
    height: 48px;
    z-index: 2;
    border: 2px solid var(--jvm-borde-white);
    background: var(--jvm-background-1) url(./assets/images/icons/icoArrowCardsNext-1.svg) no-repeat center;
    background-size: 24px;
    filter: drop-shadow(0px 4px 4px rgba(25, 97, 172, 0.20));
    border-radius: 50%;
    transform: rotate(180deg);
}

.slick-next.slick-arrow[type="button"] {
    width: 48px;
    height: 48px;
    z-index: 2;
    border: 2px solid var(--jvm-borde-white);
    background: var(--jvm-background-1) url(./assets/images/icons/icoArrowCardsNext-1.svg) no-repeat center;
    background-size: 24px;
    filter: drop-shadow(0px 4px 4px rgba(25, 97, 172, 0.20));
    border-radius: 50%;
}

.slick-next {
    right: -3.5%;
}

.slick-prev {
    left: -3.5%;
}

.slick-prev,
.slick-next {
    top: 40%;
}

.slick-next:before {
    font-size: 0;
}

.slick-dots li {
    width: auto;
    height: auto;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 0px;
}

.slick-dots li button {
    width: 6px;
    height: 6px;
    background-color: var(--jvm-background-13);
    border-radius: 30px;
    opacity: 1;
    padding: 0;
}

.slick-dots li.slick-active button {
    width: 12px;
    height: 12px;
    background-color: var(--jvm-background-secundary);
    border-radius: 30px;
    opacity: 1;
}

.positionRelative {
    position: relative;
}

.height100 {
    height: var(--jvm--height);
}

.titleCenter {
    text-align: center;
}

.textCenter {
    text-align: center;
}

.alignItemsNone {
    align-items: inherit !important;
}

.bgContentGray {
    background-color: var(--jvm-background-14);
    padding: 4rem 0;
    position: relative;
}

.bgContentGrayTwo {
    background-color: var(--jvm-background-25);
    padding: 4rem 0;
    position: relative;
}

.bgWhite {
    background-color: var(--jvm-background-1);
}

.bgGreen {
    background-color: var(--jvm-background-5);
}

.bgGreenDark {
    background-color: var(--jvm-background-7);
}

.bgGrayOne {
    background-color: var(--jvm-background-11);
}

.bgGray {
    background-color: var(--jvm-background-14);
}

.bgBlue {
    background-color: var(--jvm-background-3);
}

.bgBlueTwo {
    background-color: var(--jvm-background-4);
}

.bgBlueTwo .btn:hover {
    border-color: #fff !important;
}

.bgBlueDark {
    background-color: var(--jvm-background-2);
}

.bgYellowOne {
    background-color: var(--jvm-background-15);
}

.bgYellowTwo {
    background-color: var(--jvm-background-16);
}

.bgYellowThree {
    background-color: var(--jvm-background-17);
}

.bgBlueOne {
    background-color: var(--jvm-background-18);
}

.bgBlueTwo-v2 {
    background-color: var(--jvm-background-19);
}

.bgBlueThree {
    background-color: var(--jvm-background-20);
}

.bgBlueFour {
    background-color: var(--jvm-background-21);
}

.textWhite {
    color: var(--jvm-color-text-1) !important;
}

.textBlue {
    color: var(--jvm-borde-9) !important;
}

.columnTwo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.columnTwoPro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.columnTwoPro .column {
    width: 100%;
}

.columnTwo .column {
    width: min(100%, 50%);
    position: relative;
}

.columnThreePro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.columnTwoPro-Two {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.columnTwoPro-Two .column {
    width: min(100%, 50%);
    position: relative;
}

.twoColumn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.twoColumnLeft {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.twoColumnRight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
}

.threeColumn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.threeColumnFlex {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.threeColumnFlex .column {
    max-width: calc(33% - 25px);
}

.fourColumnFlex {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.fourColumnFlex .column {
    max-width: calc(25% - 25px);
}

.fourColumnFlex .column .image img {
    min-height: 200px;
    object-fit: cover;
}

.fourColumn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.gapZero {
    gap: 0;
}

.gapOne {
    gap: 1rem;
}

.gapTwo {
    gap: 2rem;
}

.gapThree {
    gap: 1.125rem;
}

.gapFour {
    gap: 5.625rem;
}

.gapFive {
    gap: 4.688rem;
}

.gapSix {
    gap: 3rem;
}

.hideComponent {
    display: none;
}

.borderRadius0 {
    border-radius: 0 !important;
}

.borderRadius50 {
    border-radius: 50% !important;
}

.imgBorder1,
.border1 {
    border-radius: 60px 0px 0px 0px;
    -moz-border-radius: 60px 0px 0px 0px;
    -webkit-border-radius: 60px 0px 0px 0px;
}

.imgBorder2,
.border2 {
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.imgBorder3,
.border3 {
    border-radius: 0px 0px 0px 60px;
    -moz-border-radius: 0px 0px 0px 60px;
    -webkit-border-radius: 0px 0px 0px 60px;
}

.imgBorder4,
.border4 {
    border-radius: 0px 60px 0px 0px;
    -moz-border-radius: 0px 60px 0px 0px;
    -webkit-border-radius: 0px 60px 0px 0px;
}

.mrgtp0 {
    margin-top: var(--jvm--mrgt0) !important;
}

.mrgt0 {
    margin-bottom: var(--jvm--mrgt0) !important;
}

.mrgt1 {
    margin-top: var(--jvm--mrgt1) !important;
}

.mrgt1-5 {
    margin-top: var(--jvm--mrgt1-5);
}

.mrgt2 {
    margin-top: var(--jvm--mrgt2);
}

.mrgt2-5 {
    margin-top: var(--jvm--mrgt2-5);
}

.mrgb0 {
    margin-bottom: var(--jvm--mrgb0);
}

.mrgb1 {
    margin-bottom: var(--jvm--mrgb1);
}

.mrgb1-5 {
    margin-bottom: var(--jvm--mrgb1-5);
}

.mrgb2 {
    margin-bottom: var(--jvm--mrgb2);
}

.mrgb2-5 {
    margin-bottom: var(--jvm--mrgb2-5);
}

.withoutShadow {
    box-shadow: none !important;
}

.clear {
    clear: both;
}

.centerItem {
    display: grid;
    place-items: center;
}

/* --------------- FIN OTROS ESTILOS GENERALES --------------- */


/* --------------- SEPARADORES --------------- */

.separadorProZero {
    padding: 0;
}

.separadorProOne {
    padding: 5px;
}

.separadorProTwo {
    padding: 10px;
}

.separadorProThree {
    padding: 15px;
}

.separadorProFour {
    padding: 20px;
}

.separadorProFive {
    padding: 25px;
}

.separadorProSix {
    padding: 30px;
}

.separadorProSeven {
    padding: 35px;
}

.separadorProEight {
    padding: 40px;
}

.separadorProNine {
    padding: 45px;
}

.separadorProTen {
    padding: 50px;
}

.separadorProEleven {
    padding: 55px;
}

.separadorProTwelve {
    padding: 60px;
}

/* --------------- FIN SEPARADORES --------------- */

.btnProOne,
.btnProTwo {
    margin-top: 2rem;
}

.btnProOne.visibleMobile,
.btnProTwo.visibleMobile {
    margin-top: 4.5rem;
}

.btnProOne .cta,
.btnProTwo .cta {
    width: 100%;
    max-width: fit-content;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: var(--jvm--font-size-4);
    padding-inline: 2rem;
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
}

.btnProTwo button.cta {
    padding-inline: 4rem;
}

.btnImgArrow {
    position: absolute;
    bottom: 2.438rem;
    margin-top: inherit;
}

.btnImgArrow .cta,
.btnImgArrow .cta {
    height: 36px;
    padding-inline: 1rem;
}

.btnImgArrow .cta>.btnImgArrow .cta .ico:is(:hover, :active, :focus) {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(46deg) brightness(100%) contrast(103%);
}

.btnImgArrow .cta .ico {
    width: 24px;
}

.btnProOne .cta {
    color: var(--jvm-color-text-secundary);
    background-color: var(--jvm-background-1);
    border-color: var(--jvm-borde-1)
}

.btnProOne .cta:is(:hover, :active, :focus) {
    background-color: var(--jvm-background-2);
    border: 1px solid var(--jvm-borde-3);
    color: var(--jvm-color-text-1);
}

.btnProOne .cta:is(:hover, :active, :focus) img {
    filter: brightness(10);
}

.btnProTwo .cta {
    background-color: var(--jvm-background-2);
    border: 1px solid var(--jvm-borde-3);
    color: var(--jvm-color-text-1);
}

.btnProTwo .cta:is(:hover, :active, :focus) {
    background-color: var(--jvm-background-1);
    border: 1px solid var(--jvm-borde-3);
    color: var(--jvm-color-text-2);
}

.btnProTwo .cta:is(:hover, :active, :focus) img {
    filter: brightness(10);
}

/* --------------- HEADER --------------- */

header {
    width: var(--jvm--width);
    background-color: var(--jvm-background-transparent);
    transition: 0.7s;
    margin: auto;
    z-index: 9999;
    background-color: #F7F7F7;
}

@media (min-width: 768px) {
    header {
        position: fixed;
    }
}

header .header {
    width: var(--jvm--width);
    min-height: 84px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    header .header {
        max-width: 1180px;
    }
}

@media (min-width: 1400px) {
    header .header {
        max-width: 1270px;
    }
}

header .header .logo {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    header .header .logo {
        width: fit-content;
    }
}

header .header .logo img {
    width: 178px;
    position: relative;
    height: auto;
}

header .header .menuBio-d {
    width: 75%;
}

header .header .btnMultilanguage {
    width: 12%;
    padding-left: 1rem;
}

header .header .btnMultilanguage .btn-group {
    width: 80px;
    height: 24px;
    position: relative;
    align-items: center;
    border: 1px solid var(--jvm-borde-1);
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;

}

header.scrollBioD {
    background-color: var(--jvm-background-1);
}

/* header:not(.scrollBioD) img {
    filter: brightness(0) invert(1);
} */

header .header .btnMultilanguage label {
    left: 0;
}

header .header .btnMultilanguage .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    left: 0;
}

header .header .btnMultilanguage .btn-group>.btn-check:checked+.btn {
    width: 35px;
    height: 24px;
}

header .header .btnMultilanguage .btn-group>.btn {
    width: 35px;
    height: 24px;
    font-weight: 700;
    font-size: var(--jvm--font-size-3);
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--jvm-background-transparent);
    color: var(--jvm-color-text-1);
    border: none;
    padding: 0;
}

header .header .btnMultilanguage .btn-check:checked+.btn:is(:hover, :active, :focus),
header .header .btnMultilanguage .btn-check:checked+.btn {
    background-color: var(--jvm-background-1);
    color: var(--jvm-color-text-4);
    --bs-btn-border-radius: 1.875rem;
    box-shadow: none;
    padding: 0;
}

header .header .btnMultilanguage [type="radio"] {
    appearance: none;
}

header.scrollBioD .header .btnMultilanguage .btn-group {
    border: 1px solid var(--jvm-borde-6);
}

header.scrollBioD .header .btnMultilanguage .btn-group>.btn {
    background-color: var(--jvm-background-transparent);
    color: var(--jvm-color-text-4);
    --bs-btn-border-radius: 1.875rem;
}

header.scrollBioD .header .btnMultilanguage .btn-check:checked+.btn:is(:hover, :active, :focus),
header.scrollBioD .header .btnMultilanguage .btn-check:checked+.btn {
    background-color: var(--jvm-background-10);
    color: var(--jvm-color-text-1);
}

/* --------------- FIN HEADER --------------- */

/* --------------- BANNER HOME --------------- */

.bannerBio-d {
    position: relative;
    z-index: 1;
}

.bannerBio-d img {
    min-height: auto;
    border-radius: 0;
}

.bannerBio-d video {
    width: var(--jvm--width);
}

.bannerBio-d .carousel-caption {
    width: var(--jvm--content-caption);
    height: fit-content;
    background-color: var(--jvm-background-8);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    right: 0;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 3.125rem 2.375rem 2.5rem;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.bannerBio-d .carousel-caption::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: url(./assets/images/others/lineBoxbannerHome.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bannerBio-d .contenAligntInfoBanner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerBio-d .container {
    position: absolute;
    min-height: 100%;
    top: 0;
    width: var(--jvm--container);
}

.bannerBio-d .minBannerOne {
    min-height: 210px;
}

.bannerBio-d .minBannerTwo {
    justify-content: space-between;
}

.bannerBio-d .carousel-caption .logobannerBio-d {
    width: min(100%, 215px);
    min-height: auto;
    margin-bottom: 2.188rem;
}

.bannerBio-d .carousel-caption h1,
.bannerBio-d .carousel-caption h2 {
    font-size: var(--jvm--font-size-11);
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.bannerBio-d .carousel-caption p {
    color: var(--jvm-background-1);
    margin-bottom: 0;
}

.bannerNosotros .carousel-caption h1,
.bannerNosotros .carousel-caption h2 {
    margin-bottom: 0;
}

.bannerNosotros .carousel-caption p.textBanner {
    font-family: 'fonts-400';
    font-size: var(--jvm--font-size-4);
    margin-bottom: 1rem;
}

.bannerNosotros .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerNosotros .carousel-indicators {
    display: none;
}

.bannerContacto .carousel-caption h1,
.bannerContacto .carousel-caption h2 {
    margin-bottom: 1rem;
}

.bannerContacto .carousel-caption p.textBanner {
    font-family: 'fonts-400';
    font-size: var(--jvm--font-size-4);
    margin-bottom: 0;
}

.bannerContacto .carousel-caption {
    width: min(100%, 596px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerContacto .carousel-indicators {
    display: none;
}

.bannerBio-d .carousel-caption .btnBannerBio-d {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.bannerBio-d .carousel-caption .btnBannerBio-d .cta {
    width: 100%;
    max-width: fit-content;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: var(--jvm--font-size-4);
    padding-inline: 2rem;
    border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
}

.bannerBio-d .carousel-caption .btnBannerBio-d .cta {
    background-color: var(--jvm-background-1);
    border: 1px solid var(--jvm-borde-1);
    color: var(--jvm-color-text-2);
}

.bannerBio-d .carousel-caption .btnBannerBio-d .cta:is(:hover, :active, :focus) {
    background-color: var(--jvm-background-2);
    border: 1px solid var(--jvm-borde-3);
    color: var(--jvm-color-text-1);
}

.bannerBio-d .carousel-control-prev {
    left: 0;
}

.bannerBio-d .carousel-control-next {
    right: 0;
}

.bannerBio-d .carousel-control-next,
.bannerBio-d .carousel-control-prev {
    opacity: 1;
}

.bannerBio-d .carousel-indicators {
    width: min(100%, 100px);
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    bottom: 9rem;
    margin-left: 10.6%;
}

.bannerBio-d .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    background-color: var(--jvm-background-9);
    border: 1px solid var(--jvm-borde-4);
    opacity: 1;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.bannerBio-d .carousel-indicators .active {
    width: 12px;
    height: 12px;
    background-color: var(--jvm-background-1);
    border: 1px solid var(--jvm-borde-1);
}

.bannerBio-d .carousel-control-next-icon,
.bannerBio-d .carousel-control-prev-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.bannerBio-d .carousel-control-next-icon {
    background: var(--jvm-background-transparent) url(./assets/images/icons/icoArrowBanner.svg) no-repeat center;
    background-size: 24px;
}

.bannerBio-d .carousel-control-prev-icon {
    background: var(--jvm-background-transparent) url(./assets/images/icons/icoArrowBanner.svg) no-repeat center;
    background-size: 24px;
    transform: rotate(180deg);
}

.bannerBio-d .carousel-control-prev {
    width: 42px;
    height: 42px;
    left: 45%;
    top: 74.4%;
}

.bannerBio-d .carousel-control-next {
    width: 42px;
    height: 42px;
    right: 48%;
    top: 74.4%;
}

.bannerBio-d .carousel-control-next,
.bannerBio-d .carousel-control-prev {
    opacity: 1;
}

/* --------------- FIN BANNER HOME --------------- */

/* --------------- CONTENIDO PAGINA --------------- */

.textSmall-upp {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 500;
    font-size: var(--jvm--font-size-2);
    color: var(--jvm-color-text-3);
    line-height: normal;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.moduloA1 .textCard .textSmall-upp {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 500;
    font-size: var(--jvm--font-size-2);
    color: var(--jvm-color-text-3);
    line-height: normal;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2.5rem;
}

.moduloA1 .textCard h2 {
    margin-bottom: 2.25rem;
}

.moduloA1 .pro-Card h2 {
    margin-bottom: 1rem;
}

.moduloA1 .pro-Card .textSmall-upp {
    margin-bottom: 1.5rem;
}

.moduloA1 .textCard h3 {
    font-size: var(--jvm--font-size-7);
    line-height: normal;
}

.moduloA1 .infoText .logo {
    width: 177px;
}

.moduloA1 .pdInfo {
    padding: 0 3rem;
}

.moduloA1 .textCard .titleH2M {
    margin-bottom: 0.7rem;
}



.moduloA2 .cardBio-d {
    width: var(--jvm--width);
    min-height: 466px;
}

.moduloA2 .cardBio-d .image img {
    border-radius: 24px 0px 0px 0px;
    -moz-border-radius: 24px 0px 0px 0px;
    -webkit-border-radius: 24px 0px 0px 0px;
}

.moduloA2 .cardBio-d .body {
    min-height: 295px;
    position: relative;
    padding: 1.875rem 1.625rem 2.438rem;
}

.moduloA2 .cardBio-d .body h3 {
    color: var(--jvm-color-text-1);
}

.moduloA2 .cardBio-d .body p {
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.moduloA3 .bgEarthOne {
    width: var(--jvm--width);
    height: 369px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin: 7rem 0;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloA3 .bgEquipo {
    width: var(--jvm--width);
    height: 369px;
    background-image: url(./assets/images/background/bgEquipo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin: 7rem 0;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloA3 .bgEarthOne .container {
    height: 369px;
    position: relative;
}

.moduloA3 .bgEarthOne .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.moduloA3 .bgEarthOne .image {
    position: relative;
    top: -3rem;
}

.moduloA3 .bgEarthOne .image img {
    width: 655px;
}

.moduloA3 .textCard h2 {
    color: var(--jvm-color-text-1);
    margin-bottom: 1rem;
}

.moduloA3 .textCard p {
    color: var(--jvm-color-text-1);
}

.moduloA4 .cardBio-d {
    width: min(100%, 95%);
    min-height: 393px;
    margin: auto;
}

.moduloA4 .cardBio-d .image img {
    border-radius: 24px 0px 24px 0px;
    -moz-border-radius: 24px 0px 24px 0px;
    -webkit-border-radius: 24px 0px 24px 0px;
}

.moduloA4 .cardBio-d .body {
    min-height: 215px;
    position: relative;
    padding: 1.25rem 0;
}

.moduloA4 .cardBio-d .body h3 {
    font-size: var(--jvm--font-size-6);
    line-height: normal;
}

.moduloA4 .cardBio-d .body p {
    margin-bottom: 0;
}

.moduloA4 .cardBio-d .body .textLink {
    font-weight: 700;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-secundary);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.2rem;
    position: absolute;
    bottom: 0;
}

.moduloA4 .cardBio-d .body .textLink .ico {
    width: 24px;
}

.moduloA5 .imgSocialMedia {
    width: var(--jvm--width);
    margin: 1.688rem 0 1.875rem;
}

.moduloA5 .socialmedia {
    width: var(--jvm--width);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    z-index: 100;
    position: relative;
}

.moduloA5 .socialmedia img {
    width: 42px;
}

.moduloA5 .btnFollowUs {
    position: relative;
    bottom: inherit;
}

.moduloA6 .logos .ico {
    width: 145px;
    aspect-ratio: 3/2;
    object-fit: contain;
    height: 165px;
}

.moduloA6 .logos .ico-large {
    width: 290px;
    aspect-ratio: 3/2;
    object-fit: contain;
    height: 165px;
}

.textCertifications {
    margin-bottom: 0;
}

.textLinkBlue {
    font-family: 'Greed TRIAL', sans-serif;
    font-weight: 600;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-secundary);
    line-height: normal;
}

.textLinkBlue:hover {
    text-decoration-line: underline;
}

/* ------------------------------ */

.bannerinterna .carousel-caption {
    width: min(100%, 438px);
    height: fit-content;
    top: 65%;
    padding: 2.75rem 2.125rem 2.5rem;
    border-radius: 0px 60px 0px 0px;
    -moz-border-radius: 0px 60px 0px 0px;
    -webkit-border-radius: 0px 60px 0px 0px;
}

.bannerinterna .carousel-caption::after {
    top: initial;
    left: 0;
    bottom: 0;
}

/* ------------------------------ */

.moduloA7 .cardBox {
    width: min(100%, 95%);
    height: 295px;
    overflow: visible;
    margin: auto;
    padding: 3.313rem 1.5rem 1rem;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloA7 .slick-list {
    padding-top: 4.5rem;
}

.moduloA7 .cardBox .imgCard {
    width: 102px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin: -7.5rem auto 0;
}

.moduloA7 .cardBox h3 {
    font-weight: 700;
    font-size: var(--jvm--font-size-6);
    line-height: normal;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: inherit;
}

.moduloA7 .cardBox ul {
    padding-left: 1rem;
}

.moduloA7 .cardBox ul li {
    margin-bottom: 1rem;
}

.moduloA7 .cardBox ul li:last-child {
    margin-bottom: 0;
}

.moduloA8 .textCard .infoText {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 3rem;
}

.moduloA8 .textCard .infoText h3 {
    font-size: var(--jvm--font-size-5);
    line-height: normal;
    letter-spacing: inherit;
}

.moduloA8 .textCard .infoText ul {
    padding-left: 1.5rem;
}

.moduloA8 .textCard .image {
    position: relative;
}

.moduloA8 .textCard .image .imgCardInfo {
    width: var(--jvm--width);
    height: 102px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(6px);
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.moduloA8 .textCard .image .imgCardInfo .textIco {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
}

.moduloA8 .textCard .image .imgCardInfo .textIco h3 {
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.moduloA8 .textCard .image .imgCardInfo .textIco .ico {
    width: 24px;
}

.moduloA8 .textCard .image .imgCardInfo .text p {
    font-weight: 700;
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.moduloA8 .textCard .image .imgCard1 {
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloA8 .textCard .image .imgCard2 {
    border-radius: 0px 0px 0px 60px;
    -moz-border-radius: 0px 0px 0px 60px;
    -webkit-border-radius: 0px 0px 0px 60px;
}

.moduloA9 .cardBoxinfo {
    width: var(--jvm--width);
    height: 306px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 1.5rem;
}

.moduloA9 .cardBoxinfo.bgImgBr1 {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    border-radius: 60px 0px 0px 0px;
    -moz-border-radius: 60px 0px 0px 0px;
    -webkit-border-radius: 60px 0px 0px 0px;
}

.moduloA9 .cardBoxinfo.bgImgBr2 {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 286px;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
    overflow: visible;
}

.moduloA9 .cardBoxinfo .boxInfo {
    width: min(100%, 300px);
    height: 192px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.moduloA9 .cardBoxinfo .boxInfo.boxSizeMin {
    width: min(100%, 240px);
}

.moduloA9 .cardBoxinfo .boxInfo h3 {
    margin-bottom: 0;
}

.moduloA9 .cardBoxinfo .boxInfo p {
    margin-bottom: 0;
}

.moduloA9 .cardBoxinfo .boxInfo .btnProTwo {
    margin-top: 0;
}

.moduloA9 .cardBoxinfo .boxInfo .btnProTwo .cta {
    width: 189px;
    max-width: 189px;
}

.moduloA9 .cardBoxinfo .boxInfo .btnProTwo .cta:is(:hover, :active, :focus) {
    background-color: var(--jvm-background-transparent);
}

.moduloB1 .bgEquipo {
    width: var(--jvm--width);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin: 7rem 0 2rem;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloB1 .bgEquipo:not(.has-shortcode) {
    height: 306px;
}

.moduloB1 .bgEquipo:not(.has-shortcode) .container {
    height: 306px;
    position: relative;
}

.moduloB1 .info.textCard {
    width: min(100%, 438px);
}

.moduloB1 .bgEquipo .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.moduloB1 .bgEquipo:not(.has-shortcode) .content {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.moduloB1 .bgEquipo.has-shortcode {
    padding: 40px 0 0 25px;
}

.moduloB1 .bgEquipo.has-shortcode .content {
    align-items: flex-end;
}

.moduloB1 .bgEquipo.has-shortcode textarea {
    height: 70px;
}

.moduloB1 .bgEquipo.has-shortcode .form-group {
    margin-bottom: .95rem;
}

.moduloB1 .bgEquipo.has-shortcode .form-group.m-0 p {
    margin: 0;
}

.moduloB1 .bgEquipo.has-shortcode input[type="text"],
.moduloB1 .bgEquipo.has-shortcode input[type="number"],
.moduloB1 .bgEquipo.has-shortcode input[type="email"] {
    height: 45px !important;
}

.moduloB1 .bgEquipo.has-shortcode .wpcf7-not-valid-tip {
    position: absolute;
    bottom: 4px;
    right: 5px;
    font-size: 0.85rem;
}

.moduloB1 .bgEquipo.has-shortcode .wpcf7-spinner {
    position: absolute;
}

.moduloB1 .bgEquipo.has-shortcode .btnProTwo {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.moduloB1 .bgEquipo.has-shortcode .form-control:focus {
    background-color: #ffffff;
}

.moduloB1 .bgEquipo.has-shortcode .form-check {
    background-color: transparent;
}

.moduloB1 .bgEquipo.has-shortcode .text-white .wpcf7-list-item-label,
.moduloB1 .bgEquipo.has-shortcode .text-white a {
    color: #ffffff !important;
}

.moduloB1 .bgEquipo.has-shortcode .image img {
    width: 600px;
}

.moduloB1 .bgEquipo.has-shortcode .btnProTwo .cta {
    background-color: #ffffff;
    color: #2b6ed6;
    padding-inline: 4rem;
}

.moduloB1 .bgEquipo.has-shortcode .btnProTwo .cta:hover {
    background-color: #2b6ed6;
    color: #ffffff;
}

.moduloB1 .bgEquipo .image {
    position: relative;
    height: 306px;
}

.moduloB1 .bgEquipo .image img {
    width: 655px;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .moduloB1 .bgEquipo.has-shortcode {
        height: 950px;
        border-radius: 0px 0px 0px 60px;
        -moz-border-radius: 0px 0px 0px 60px;
        -webkit-border-radius: 0px 0px 0px 60px;
    }

    .moduloB1 .bgEquipo.has-shortcode .form-check {
        margin-bottom: 20px;
    }

    .negocioContacto .bgEquipo.has-shortcode:before {
        width: 80%;
    }

    .moduloB1 .bgEquipo.has-shortcode .info.textCard {
        width: auto;
    }

    .moduloB1 .bgEquipo.has-shortcode .textCard p {
        width: 100%;
    }

    .moduloB1 .bgEquipo.has-shortcode {
        padding: 30px 10px;
    }

    .moduloB1 .bgEquipo.has-shortcode .content {
        flex-direction: column;
    }
}

.moduloB1 .textCard h2 {
    color: var(--jvm-color-text-1);
    margin-bottom: 1rem;
}

.moduloB1 .textCard p {
    color: var(--jvm-color-text-1);
}

/* ------------------------------ */

/* ------------------------------ */

.moduloB2 .plainBanner {
    position: relative;
}

.moduloB2 .plainBanner .info {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.moduloB2 .plainBanner .info h2 {
    margin-bottom: 1rem;
}

.moduloB2 .plainBanner .info .textPlainBanner {
    width: min(100%, 650px);
    font-weight: 700;
    font-size: var(--jvm--font-size-12);
    font-style: normal;
    line-height: normal;
    margin: auto;
}

.moduloB2 .plainBanner .info .textGreen,
.moduloB2 .plainBanner .info strong {
    color: var(--jvm-color-text-5);
}

.moduloB2 .plainBanner .info.textBlue strong {
    color: var(--jvm-color-text-8);
}

.titleH3Samll1 {
    font-size: var(--jvm--font-size-5);
}

.moduloB3 .multiInfo {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--jvm-background-1);
    border: 1px solid var(--background-color-line);
    margin-top: 2.5REM;
}

.moduloB3 .multiInfo label {
    font-family: 'Greed TRIAL', sans-serif;
    padding: 0 20px;
    height: 48px;
    background-color: var(--jvm-background-1);
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    border-bottom: 5px solid var(--jvm-background-transparent);
    font-size: var(--jvm--font-size-4);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-6);
}

.moduloB3 .tab-content {
    border-top: 1px solid var(--jvm-borde-8);
    padding: 3rem 1rem 1rem;
    background-color: var(--background-color-body);
}

.tab-content>.tab-pane {
    display: block !important;
    height: 0px;
    overflow: hidden;
}

.tab-pane.active {
    height: auto;
    overflow: inherit;
}

.input-file label {
    display: flex;
    justify-content: center;
}

.moduloB3 .multiInfo .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 3rem 1rem 1rem;
    background-color: var(--background-color-body);
    border-top: 1px solid var(--jvm-borde-8);
}

.moduloB3 .multiInfo input[type="radio"] {
    display: none;
}

.moduloB3 .multiInfo .active {
    height: 48px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-blue-color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.2rem;
    cursor: pointer;
    background-color: var(--jvm-background-22);
    transition: background ease 0.2s;
    border-bottom: 5px solid var(--jvm-background-2);
    font-size: var(--jvm--font-size-4);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-secundary);
}

.moduloB3 .multiInfo input[type="radio"]:checked+label+.tab {
    display: block;
}

.moduloB3 .multiInfo .cardSedes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(294px, 1fr));
    gap: 15px;
}

.moduloB3 .multiInfo .cardSedes .cardSede {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    border: 1px solid var(--background-color-line);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.4rem;
}

.moduloB3 .multiInfo .cardSedes .cardSede:hover {
    box-shadow: 0 3px 13px rgb(226, 232, 238);
}

.moduloB3 .multiInfo .cardSedes .cardSede .image img {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    top: auto;
    z-index: 9;
}

.moduloB3 .multiInfo .cardSedes .cardSede .body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 25px 0;
}

.moduloB3 .multiInfo .cardSedes .cardSede .body h3 {
    margin-bottom: 0;
}

.moduloB3 .multiInfo .cardSedes .cardSede .body h3 .textTitle {
    font-size: 16px;
}

.moduloB3 .multiInfo .cardSedes .cardSede .body p {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

.moduloB3 .multiInfo .cardSedes .cardSede .body .textLink {
    color: var(--text-blue-color-blue);
    font-weight: 400;
    position: absolute;
    bottom: 20px;
}

.moduloB3 .slick-slide img {
    width: 240px;
    max-width: 240px;
}

.textSamll1 {
    width: min(100%, 742px);
    margin: auto;
    font-weight: 700;
    font-size: var(--jvm--font-size-5);
    line-height: normal;
}

.moduloB3 .formBio {
    width: min(100%, 892px);
    margin: auto;
}

.moduloB4 .bgHistory {
    width: var(--jvm--width);
    height: 560px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 3rem 0 2rem;
    padding: 4.5rem 0 4.063rem;
    border-radius: 0px 0px 60px 0px;
    -moz-border-radius: 0px 0px 60px 0px;
    -webkit-border-radius: 0px 0px 60px 0px;
}

.moduloB4 .boxCard {
    width: min(100%, 95%);
    height: 240px;
    background: var(--jvm-background-23);
    backdrop-filter: blur(12px);
    padding: 1.875rem 1.125rem;
}

.moduloB4 .boxCard p {
    font-size: var(--jvm--font-size-3);
    color: var(--jvm-color-text-1);
    line-height: normal;
    margin-bottom: 0;
}

.moduloB4 .bgHistory .slick-dots {
    bottom: -58px;
}

.moduloB4 .bgHistory .slick-dots li button {
    background-color: var(--jvm-background-9);
}

.moduloB4 .bgHistory .slick-dots li.slick-active button {
    background-color: var(--jvm-background-1);
}


.moduloB4 .time {
    position: relative;
}

.moduloB4 .time p {
    font-weight: 700;
    font-size: var(--jvm--font-size-7);
    line-height: normal;
}

.moduloB4 .time .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.moduloB4 .time .content .line {
    width: var(--jvm--width);
    height: 3px;
    background-color: var(--jvm-background-24);
}

.moduloB4 .time .content .circle {
    width: 12px;
    height: 12px;
    background-color: var(--jvm-background-1);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-top: -0.5rem;
}

/* ------------------------------ */

.moduloB5 .bgOurPolicy {
    width: var(--jvm--width);
    height: 636.866px;
    background: url(./assets/images/background/bgNuestraPolitica.png) no-repeat center;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 3rem;
}

.moduloB5 .bgOurPolicy .info {
    width: min(100%, 485px);
    position: relative;
    margin-top: 5rem;
}

.moduloB5 .bgOurPolicy .info .textOurPolicy1 {
    font-size: var(--jvm--font-size-6);
}

.moduloB5 .bgOurPolicy .info .ps-info {
    width: min(100%, 200px);
    position: absolute;
    right: 7rem;
    top: 11.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5.4rem;
}

.moduloB5 .bgOurPolicy .info .ps-info .textOurPolicy2 {
    font-weight: 700;
    margin-bottom: 0;
}

.moduloB5 .bgOurPolicy .info .ps-info .textOurPolicy3 {
    font-weight: 700;
    margin-bottom: 0;
}

.moduloB5 .title_preContent {
    width: min(100%, 894px);
    margin: auto;
}

.moduloB5 .icoInfoText .imgCircle {
    width: 102px;
    height: 102px;
    background-color: var(--jvm-background-11);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.moduloB5 .icoInfoText .imgCircle .ico {
    width: 59.997px;
}

.moduloB5 .icoInfoText .info p {
    margin-bottom: 0;
}

.moduloB6 .bgSectionCardsOne {
    background: url(./assets/images/background/bgNeutralidad.jpg) no-repeat center;
    background-size: cover;
    padding: 4.375rem 0 12.5rem;
}

.moduloB6 .imgCard {
    position: relative;
}

.moduloB6 .icoInfo {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.moduloB6 .icoInfo .ico {
    width: 65.996px;
    margin-bottom: 1.5rem;
}

.moduloB6 .icoInfo h3 {
    font-size: var(--jvm--font-size-11);
    color: var(--jvm-color-text-1);
}

.moduloB6 .icoInfo p {
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.moduloB7 .columnThreePro .column1 {
    width: 28%;
}

.moduloB7 .columnSection {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.moduloB7 .columnThreePro .column1 .image {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
}

.moduloB7 .columnThreePro .column1 .image .imgCard {
    width: 223px;
}

.moduloB7 .columnThreePro .column1 .image .circle {
    width: 100px;
    height: 100px;
    background-color: var(--jvm-background-5);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.moduloB7 .columnThreePro .column1 .image .circle .number {
    font-weight: 700;
    font-size: var(--jvm--font-size-11);
    color: var(--jvm-color-text-1);
}

.moduloB7 .columnThreePro .column2 {
    width: 74%;
}

.moduloB7 .columnThreePro .column1 .image .imgCardTwo {
    width: var(--jvm--width);
}

.moduloB7 .columnThreePro .column2 .textLink {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.3rem;
    font-weight: 700;
}

.moduloB7 .columnThreePro .column2 .textLink:hover {
    text-decoration: underline;
}

.moduloB7 .columnThreePro .column2 .textLink .ico {
    width: 24px;
    transform: rotate(-90deg);
}

.moduloB8 .bginfoTextThree {
    width: var(--jvm--width);
    height: 265px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 2rem 0 1rem;
    padding: 0 3.5rem;
    border-radius: 60px 0px 0px 0px;
    -moz-border-radius: 60px 0px 0px 0px;
    -webkit-border-radius: 60px 0px 0px 0px;
}

.moduloB8 .bginfoTextThree .info {
    width: min(100%, 473px);
}

.moduloB8 .bginfoTextThree .info h2 {
    font-size: var(--jvm--font-size-7);
}

.moduloB8 .bginfoTextThree .info .btnProTwo {
    margin-top: 1rem;
}

.selectBlue select.form-control {
    height: 60px !important;
    background-color: var(--jvm-background-20) !important;
    font-weight: 700 !important;
    font-size: var(--jvm--font-size-3) !important;
    color: var(--jvm-color-text-2) !important;
    border: var(--jvm-background-transparent) !important;
    margin-top: 2rem;
    border-radius: 12px 12px 12px 12px !important;
    -moz-border-radius: 12px 12px 12px 12px !important;
    -webkit-border-radius: 12px 12px 12px 12px !important;
}

/* ------------------------------ */

.formContacto .btnProTwo {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.formContacto .btnProTwo .cta {
    padding-inline: 5.5rem;
}

/* ------------------------------ */

.moduloB9 .content {
    width: min(100%, 894px);
    margin: auto;
}

.moduloB9 .boxDocuments {
    width: var(--jvm--width);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    row-gap: 1.5rem;
}

.moduloB9 .boxDocuments .item .box {
    width: 250px;
    height: 158px;
    background-color: var(--jvm-background-14);
    padding: 2rem 1.125rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.moduloB9 .boxDocuments .item .box h3 {
    font-size: var(--jvm--font-size-5);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.moduloB9 .boxDocuments .item .box .textLink {
    color: var(--jvm-color-text-2);
    font-size: var(--jvm--font-size-4);
    font-weight: 700;
    line-height: normal;
}

.moduloB9 .boxDocuments .item .box .textLink .ico {
    width: 24px;
}

/* ACORDEON */

.moduloB9 .acordeonBioD {
    margin: 2.5rem 0 0;
}

.moduloB9 .acordeonBioD ul.menu {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 1.25rem auto;
    clear: both;
    display: table;
}

.moduloB9 .acordeonBioD ul.menu .list {
    height: 60px;
    font-size: 1rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    vertical-align: sub;
    background-color: var(--jvm-background-22);
    clear: both;
    margin-bottom: 1rem;
    border-radius: 12px 12px 12px 12px;
    -moz-border-radius: 12px 12px 12px 12px;
    -webkit-border-radius: 12px 12px 12px 12px;
}

.moduloB9 .acordeonBioD ul.menu .list:after {
    content: "\f107";
    font-family: FontAwesome;
    color: var(--jvm-background-2);
    font-size: 1rem;
    position: absolute;
    right: 17px;
    top: 17px;
    padding: 0px 0.313rem;
}

.moduloB9 .acordeonBioD ul.menu .list a {
    height: 100%;
    font-weight: 700;
    font-size: var(--jvm--font-size-3);
    color: var(--jvm-color-text-secundary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    padding: 1.063rem 0 1.063rem 1.875rem;
}

.moduloB9 .acordeonBioD ul.menu .list a:hover {
    background-color: transparent;
    transition: 300ms all;
    font-weight: 700;
    font-size: var(--jvm--font-size-3);
    color: var(--jvm-color-text-secundary);
}

.moduloB9 .acordeonBioD ul.menu .list .items {
    height: 0px;
    overflow: hidden;
}

.moduloB9 .acordeonBioD ul.menu .list .items a {
    padding: 0.5rem 0;
}

.moduloB9 .acordeonBioD ul.menu .list:last-child {
    border-bottom: none;
}

.moduloB9 .acordeonBioD ul.menu .active:after {
    content: "\f106";
    font-family: FontAwesome;
    position: absolute;
    right: 17px;
    top: 17px;
    padding: 0px 5px;
    color: var(--jvm-background-2);
}

.moduloB9 .acordeonBioD ul.menu .active>.items {
    display: block;
    background-color: var(--jvm-background-1);
    padding: 0px;
    height: auto;
    color: rgb(36, 19, 74);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 200ms;
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 1rem;
}

.moduloB9 .acordeonBioD ul.menu .active>.items li {
    padding: 2rem 2.5rem;
    list-style: none;
}

.moduloB9 .acordeonBioD ul.menu .active>.items li:last-child {
    border-color: transparent;
    /* padding-bottom: 0px; */
}

.moduloB9 .acordeonBioD ul.menu .active>.items .active>.items {
    background-color: rgb(36, 19, 74)7;
}

.moduloB9 .acordeonBioD ul.menu .active>a {
    color: var(--jvm-color-text-secundary);
    border-bottom: none;
}

.acordeonPro ul.menu .active .list {
    background-color: var(--jvm-background-1);
}

.moduloB9 .acordeonBioD ul.menu .active .list a {
    padding: 17px 0px 17px 45px;
}

/* FIN ACORDEON */


/* ------------------------------ */


.bgBodyGray {
    background-color: var(--jvm-background-11);
}

.bannerInternaPro .carousel-caption {
    top: 45%;
}

.moduloB10.mrtop {
    position: relative;
    z-index: 1;
    margin-top: -5rem;
}

.moduloB10 .imgText {
    position: relative;
}

.moduloB10 .imgText .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.moduloB10 .imgText .content h3 {
    font-weight: 700;
    font-size: var(--jvm--font-size-7);
    color: var(--jvm-color-text-1);
}

.moduloB10 .imgText .content p {
    color: var(--jvm-color-text-1);
    margin-bottom: 0;
}

.moduloB10 a .imgText:not(.disabled):is(:hover, :active, :focus) {
    outline: 6px solid var(--jvm-borde-3);
    box-shadow: 0px 0px 18px 0px var(--jvm-background-2);
}

.moduloB10Two .imgText .content {
    align-items: self-start;
    padding-inline: 2rem;
}

.moduloB11 .tab-content>.tab-pane {
    padding: 3rem 0 2rem;
}

.moduloB11 .infoProgress .contentInfo {
    width: var(--jvm--width);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.moduloB11 .infoProgress .contentInfo .item {
    width: 50%;
}

.moduloB11 .infoProgress .contentInfo .item .progressRanger {
    position: relative;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--jvm-background-transparent);
    box-shadow: 0px 0px 18px 0px var(--jvm-borde-3);
}

.moduloB11 .nav-tabs {
    justify-content: space-between;
}

.moduloB11 .nav-tabs .nav-link {
    width: 510px;
    height: 122px;
    border: 2px solid var(--jvm-borde-3);
    font-size: var(--jvm--font-size-7);
    font-weight: 700;
    line-height: normal;
    color: var(--jvm-color-text-2);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.moduloB11 .contentInfo .item .pText {
    width: var(--jvm--width);
    height: 102px !important;
    background-color: transparent;
    border: 1px solid var(--jvm-borde-8);
    border-radius: 0;
}

.moduloB11 .resultBoxes {
    width: var(--jvm--width);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.moduloB11 .resultBoxes .box {
    width: 50%;
    height: 157px;
    background-color: var(--jvm-background-27);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 42px 0px 42px 0px;
    -moz-border-radius: 42px 0px 42px 0px;
    -webkit-border-radius: 42px 0px 42px 0px;
}

.moduloB11 .resultBoxes .box h3 {
    font-size: var(--jvm--font-size-4);
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.moduloB11 .resultBoxes .box h4 {
    font-size: var(--jvm--font-size-7);
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.moduloB11 .progressRanger {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.moduloB11 .progressRanger .percentageText {
    color: var(--jvm-color-text-secundary);
    font-size: var(--jvm--font-size-5);
    font-weight: 700;
}

.moduloB11 .progressRanger .range-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.moduloB11 .progressRanger .range-slider_input {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    opacity: 0;
    margin: 0;
}

.moduloB11 .progressRanger .range-slider_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.moduloB11 .progressRanger .range-slider_input::-moz-range-thumb {
    width: 14vmin;
    height: 14vmin;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0;
}

.moduloB11 .progressRanger .range-slider_thumb {
    width: 42px;
    height: 42px;
    border: 1px solid var(--jvm-borde-3);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--jvm-background-1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--jvm-color-text-secundary);
    z-index: 2;
    font-size: var(--jvm--font-size-5);
    font-weight: 700;
    filter: drop-shadow(0px 0px 18px var(--jvm-background-2));
}

.moduloB11 .progressRanger .range-slider_line {
    height: 12px;
    width: 100%;
    background-color: var(--jvm-background-28);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    z-index: 1;
    border-radius: 0px 30px 30px 0px;
    -moz-border-radius: 0px 30px 30px 0px;
    -webkit-border-radius: 0px 30px 30px 0px;
}

.moduloB11 .progressRanger .range-slider_line-fill {
    position: absolute;
    height: 12px;
    width: 0;
    background-color: var(--jvm-background-secundary);
    border-radius: 30px 0px 0px 30px;
    -moz-border-radius: 30px 0px 0px 30px;
    -webkit-border-radius: 30px 0px 0px 30px;
}

/* ------------------------------ */

.moduloC1 .columnThreePro {
    align-items: start;
}


.moduloC1 .columnThreePro .column1 {
    width: 70%;
}

.moduloC1 .columnThreePro .column2 {
    width: 30%;
}

.moduloC1 .columnThreePro .column2 .textLink .ico {
    width: 24px;
    transform: rotate(0deg);
}

.moduloC1 .boxDocuments .item .box .textLink {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.moduloA4 .imgCard {
    border-radius: 0px 60px 0px 60px;
    -moz-border-radius: 0px 60px 0px 60px;
    -webkit-border-radius: 0px 60px 0px 60px;
}

.moduloA4 .slick-prev.slick-arrow[type="button"],
.moduloA4 .slick-next.slick-arrow[type="button"] {
    background: url(./assets/images/icons/icoArrowCardsNext-1.svg) no-repeat center;
    width: 20px;
    height: 20px;
}

.moduloA4 .slick-prev.slick-arrow[type="button"] {
    top: inherit;
    bottom: -2rem;
    left: 42rem;
}

.moduloA4 .slick-next.slick-arrow[type="button"] {
    top: inherit;
    bottom: -2.61rem;
    right: 0%;
}

.moduloA4 .slick-dots {
    text-align: left;
}

@media (min-width:1400px) {

    header .header .menuBio-d {
        width: 80%;
    }

    header .header .btnMultilanguage {
        width: 20%;
    }

    .bannerBio-d .carousel-caption {
        justify-content: space-between;
    }

    .bannerProyectoInterna .imageLogo img {
        width: 150px;
    }

    .bannerBio-d .carousel-indicators {
        margin-left: 11.6%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1279px) {

    .bannerBio-d .carousel-caption {
        max-width: 555px;
        min-height: auto;
    }

    .bannerBio-d .carousel-indicators {
        bottom: 8rem;
        margin-left: 7.6%;
    }

}

@media screen and (min-width: 800px) and (max-width: 1100px) {
    .bannerBio-d .carousel-caption {
        max-width: 500px;
        height: 280px;
        left: 7%;
    }

    .bannerBio-d .carousel-control-next {
        top: 71%;
    }

    .bannerBio-d .carousel-control-prev {
        top: 71%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1279px) {

    .bannerBio-d .carousel-caption h1,
    .bannerBio-d .carousel-caption h2 {
        margin-bottom: 0;
    }

    .bannerBio-d .carousel-caption h1,
    .bannerBio-d .carousel-caption h2 {
        font-size: var(--jvm--font-size-9);
    }

    .bannerBio-d .carousel-caption {
        max-width: 500px;
        height: 240px;
        padding: 1.5rem 2.375rem;
    }

    .bannerBio-d .carousel-indicators {
        bottom: 8rem;
        margin-left: 7.6%;
    }

    .bannerBio-d .carousel-caption .logobannerBio-d {
        width: min(100%, 215px);
        min-height: auto;
        margin-bottom: 1rem;
    }

    .bannerBio-d .carousel-caption p {
        margin-bottom: 0;
    }

}


@media screen and (min-width: 800px) and (max-width: 991px) {

    h1 {
        font-size: 2.3em;
        line-height: 38px;
    }

    h2 {
        font-size: 2rem;
        line-height: 36px;
    }

    p {
        font-size: 0.75rem;
        line-height: 14px;
    }

    .separadorProSix {
        padding: 20px;
    }

    .threeColumn {
        gap: 15px;
    }

    .fourColumn {
        gap: 15px;
    }

    .moduloB9 .boxDocuments {
        justify-content: space-evenly;
    }

}

@media screen and (min-width: 769px) and (max-width: 799px) {

    .moduloB9 .boxDocuments {
        justify-content: space-evenly;
    }

}


@media screen and (min-width: 769px) and (max-width: 799px) {

    h1 {
        font-size: 1.5em;
        line-height: 28px;
    }

    h2 {
        font-size: 1.5em;
        line-height: 28px;
    }

    p {
        font-size: 0.75rem;
        line-height: 14px;
    }

    .separadorProSix {
        padding: 10px;
    }

    .threeColumn {
        gap: 10px;
    }

    .fourColumn {
        gap: 10px;
    }

}

@media screen and (max-width: 900px) {

    .bannerBio-d .visibleDesktop video {
        width: 1000px;
        min-width: 1000px;
    }

}


@media screen and (max-width: 768px) {

    .visibleDesktop {
        display: none !important;
    }

    .visibleMobile {
        display: block;
    }

    .visibleDesktopTwo {
        display: none !important;
    }

    .visibleMobileTwo {
        display: block !important;
    }

    h1 {
        font-size: var(--jvm--font-size-9);
        line-height: normal;
    }

    h2 {
        font-size: var(--jvm--font-size-9);
        line-height: normal;
        text-align: center;
    }

    p {
        font-size: var(--jvm--font-size-4);
        line-height: normal;
    }

    ul li {
        font-size: var(--jvm--font-size-4);
        line-height: normal;
    }

    ol li {
        font-size: var(--jvm--font-size-4);
        line-height: normal;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }

    .container {
        max-width: 96%;
    }

    .containerZeroMobile {
        max-width: 100%;
        padding: 0;
    }

    .bgGrayContent {
        padding: 3rem 0;
        margin: 4rem 0 3rem;
    }

    .slick-next.slick-arrow[type="button"] {
        display: none !important;
    }

    .titleLeftMobile {
        text-align: left;
    }

    .textLeftMobile {
        text-align: left;
    }

    .columnTwo {
        width: min(100%, 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .columnThreePro {
        width: min(100%, 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .columnTwoPro {
        width: min(100%, 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .columnTwoPro-Two {
        width: min(100%, 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .columnTwoPro-Two .column {
        width: min(100%, 100%);
    }

    .twoColumn {
        grid-template-columns: auto;
        grid-template-rows: 1fr;
        gap: 20px;
    }

    .twoColumnRight {
        grid-template-columns: auto;
        grid-template-rows: 1fr;
        gap: 20px;
    }

    .threeColumn {
        grid-template-columns: auto;
        grid-template-rows: 1fr;
        gap: 20px;
    }

    .threeColumnFlex {
        flex-direction: column;
    }

    .threeColumnFlex .column {
        max-width: 100%;
    }

    .fourColumnFlex {
        flex-direction: column;
    }

    .fourColumnFlex .column {
        max-width: 100%;
    }

    .fourColumn {
        grid-template-columns: auto;
        grid-template-rows: 1fr;
        gap: 20px;
    }

    .gap1MNobile {
        gap: 2rem;
    }

    header .header {
        gap: 2rem;
    }

    header .btnHeader .btnWhatsapp {
        padding: 0 0.2rem;
    }

    header .btnHeader {
        width: 25%;
    }

    header .header .logo img {
        z-index: 9999;
    }

    .reverseMobile {
        flex-direction: column-reverse;
    }

    .moduloA1,
    .moduloA2,
    .moduloA3,
    .moduloA4,
    .moduloA5,
    .moduloA6 {
        margin-top: 1rem;
    }

    .btnProOne .cta,
    .btnProTwo .cta {
        max-width: 100%;
    }

    #talento-biod #trabaja-con-nosotros .btnProTwo .cta {
        width: fit-content;
    }

    .btnMobileProOne .cta {
        max-width: fit-content;
    }

    .bannerBio-d .carousel-caption {
        max-width: 100%;
        height: 297px;
        position: absolute;
        justify-content: space-between;
        align-items: flex-start;
        top: inherit;
        -ms-transform: inherit;
        -webkit-transform: inherit;
        transform: inherit;
        padding: 1rem 0;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        bottom: 0;
        padding: 1rem 1.5rem 2rem;
    }

    .bannerBio-d .container {
        width: 100% !important;
        max-width: 100%;
        position: relative;
        min-height: inherit;
        top: initial;
    }

    .bannerBio-d .contenAligntInfoBanner {
        display: block;
        justify-content: inherit;
        align-items: inherit;
    }

    .bannerBio-d .carousel-control-next-icon {
        display: none;
    }

    .bannerBio-d .carousel-caption .btnBannerBio-d .cta {
        max-width: 100%;
    }

    .bannerBio-d .carousel-caption h1,
    .bannerBio-d .carousel-caption h2 {
        font-size: var(--jvm--font-size-9);
        font-weight: 700;
        line-height: normal;
        color: var(--jvm-color-text-1);
        margin-bottom: 0;
    }

    .bannerBio-d .carousel-indicators {
        width: var(--jvm--width);
        bottom: -3.5rem;
        justify-content: center;
        margin-left: 0;
    }

    .bannerBio-d .carousel-indicators [data-bs-target] {
        background-color: var(--jvm-background-12);
        border: 1px solid var(--jvm-borde-7);
    }

    .bannerBio-d .carousel-indicators .active {
        background-color: var(--jvm-background-10);
        border: 1px solid var(--jvm-borde-6);
    }

    .bannerBio-d .carousel-control-prev,
    .bannerBio-d .carousel-control-next {
        display: none;
    }

    .moduloA3 .bgEarthOne {
        background-position: bottom;
    }

    .moduloA3 .bgEarthOne .content {
        flex-direction: column;
        align-items: center;
        position: relative;
        right: inherit;
        left: inherit;
        top: inherit;
        -ms-transform: inherit;
        -webkit-transform: inherit;
        transform: inherit;
    }

    .moduloA3 .bgEarthOne .image img {
        width: 100%;
    }

    .moduloA3 .bgEarthOne .container {
        height: 505px;
    }

    .moduloA3 .bgEarthOne {
        height: 580px;
        margin: 14rem 0 4rem;
    }

    .moduloA3 .bgEarthOne .image {
        position: inherit;
        top: inherit;
        margin-top: -12.7rem;
    }

    .moduloA3 .info.textCard {
        margin-top: 2rem;
    }

    .moduloA5 .imgSocialMedia {
        margin: 0.5rem 0 1.875rem;
    }

    .moduloA6 .logos .ico {
        width: 100px;
        aspect-ratio: 3/2;
        object-fit: contain;
        height: 140px;
    }

    .textCertifications {
        margin-top: 2rem;
    }

    /* ------------------------------ */

    .bannerinterna .carousel-caption {
        max-width: 90%;
        bottom: 4rem;
        margin: auto;
        padding: 2.75rem 2.125rem 2.5rem;
        border-radius: 0px 60px 0px 0px;
        -moz-border-radius: 0px 60px 0px 0px;
        -webkit-border-radius: 0px 60px 0px 0px;
        height: fit-content;
    }

    /* ------------------------------ */

    .moduloA8 .columnTwoPro {
        gap: 1rem;
    }

    .moduloA8 .textCard .infoText {
        padding: 3rem 1rem;
    }

    .moduloA1 .pdInfo {
        padding: 2rem 1rem 1rem;
    }

    .moduloA9 .cardBoxinfo.bgImgBr1 {
        background-position: bottom right;
        background-size: 170px;
    }

    .moduloA9 .cardBoxinfo .boxInfo.boxSizeMinMobile {
        width: min(100%, 250px);
    }

    .moduloA9 .cardBoxinfo.bgImgBr2 {
        background-position: 10rem center;
    }

    .moduloB1 .bgEquipo {
        height: 375px;
        background-position: right bottom;
        background-size: 303px;
        margin: 2rem 0;
    }

    .moduloB1 .info.textCard {
        width: min(100%, 95%);
    }

    .moduloB1 .textCard h2 {
        font-size: 1.75rem;
    }

    .moduloB1 .btnProOne .cta {
        max-width: 185px;
    }

    .moduloB1 .textCard p {
        width: min(100%, 163px);
    }

    .moduloA7 .slick-list {
        padding: 4.5rem 2.5rem !important;
    }

    .moduloA7 .cardBox {
        padding: 3rem 1rem 1rem;
    }

    .moduloA7 .cardBox {
        width: min(100%, 95%);
        height: 350px;
    }

    .moduloB2 .plainBanner .info .titleCenter {
        font-size: var(--jvm--font-size-9);
        width: min(100%, 85%);
        margin: auto;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .moduloB2 .plainBanner .info .textPlainBanner {
        width: min(100%, 85%);
        font-weight: 700;
        font-size: var(--jvm--font-size-11);
        line-height: 1;
    }

    /* .moduloB2 .plainBanner .info .textOutlineMobile,
    .moduloB2 .plainBanner .info strong {
        -webkit-text-stroke: 0.8px var(--jvm-color-text-primary);
        color: transparent!important;
    } */

    .moduloB4 .bgHistory {
        width: var(--jvm--width);
        height: 500px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin: 2rem 0;
        padding: 2rem 0;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

    .moduloB4 .bgHistory .container {
        max-width: 100%;
        padding: 0;
        margin: 2rem 0;
    }

    .moduloB4 .bgHistory .boxCard p {
        font-size: var(--jvm--font-size-4);
    }

    .moduloA1 .textCard .textSmall-upp {
        margin-bottom: 1rem;
    }

    .textSmall-upp {
        text-align: center;
    }

    /* ------------------------------ */

    .moduloB5 .bgOurPolicy {
        height: 666.909px;
        background: url(./assets/images/background/bgNuestraPoliticaMobile.png) no-repeat center;
        background-size: contain;
        flex-direction: column;
        position: relative;
        margin-top: 2rem;
    }

    .moduloB5 .bgOurPolicy .info {
        width: var(--jvm--width);
        height: 666.909px;
        width: var(--jvm--width);
        position: relative;
        margin-top: 0;
    }

    .moduloB5 .textOurPolicy1 {
        font-size: var(--jvm--font-size-4);
        line-height: normal;
        margin-top: 1rem;
    }

    .moduloB5 .bgOurPolicy .info .ps-info {
        width: min(100%, 60%);
        top: inherit;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5.4rem;
        bottom: 1rem;
        left: 3rem;
        right: 0;
        margin: auto;
    }

    .moduloB6 .bgSectionCardsOne {
        background: url(./assets/images/background/bgNeutralidadMobile.png) no-repeat center;
        background-size: cover;
        padding: 4.375rem 0;

    }

    .moduloB6 .bgSectionCardsOne .btnProOne .cta {
        border: 1px solid var(--jvm-borde-3);
    }

    .moduloB7 .columnThreePro .column1 {
        width: 100%;
    }

    .moduloB7 .columnThreePro .column2 {
        width: 100%;
    }

    .moduloB7 .columnThreePro .column1 .image .imgCard {
        width: 85%;
    }

    .moduloB8 .bginfoTextThree {
        height: 300px;
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: 120px;
        margin: 1rem 0;
        padding: 0 1rem
    }

    .moduloB8 .bgCalculator p,
    .moduloB8 .bgCalculator .btnProTwo,
    .moduloB8 .bgAdditional p,
    .moduloB8 .bgAdditional .btnProTwo {
        width: 70%;
    }

    /* ------------------------------ */

    .selectBlue {
        margin-bottom: 0;
    }

    /* ------------------------------ */

    .moduloB7 .columnThreePro .column1 .image .imgCardTwo {
        width: 100%;
    }

    /* ------------------------------ */

    .moduloB9 .boxDocuments .item {
        width: var(--jvm--width);
    }

    .moduloB9 .boxDocuments .item .box {
        width: var(--jvm--width);
    }

    .moduloB9 .content {
        width: var(--jvm--width);
    }

    .moduloB9 .acordeonBioD ul.menu .active>.items li {
        padding: 1.5rem;
    }

    /* ------------------------------ */

    .moduloB10.mrtop {
        margin-top: 0;
    }

    .moduloB11 .nav-tabs .nav-link {
        width: var(--jvm--width);
    }

    .moduloB11 .nav-tabs {
        flex-direction: column;
        gap: 1rem;
    }

    .moduloB11 .infoProgress .contentInfo {
        flex-direction: column;
        gap: 2rem;
    }

    .moduloB11 .infoProgress .contentInfo .item {
        width: 100%;
    }

    .moduloB11 .resultBoxes {
        flex-direction: column;
        gap: 2rem;
    }

    .moduloB11 .resultBoxes .box {
        width: var(--jvm--width);
        height: 190px;
        flex-direction: column;
        padding: 1.5rem;
        justify-content: space-evenly;
    }

    .moduloA4 .slick-dots {
        text-align: center;
    }

    /* ------------------------------ */

    footer .footer {
        height: fit-content;
        background: var(--jvm-background-10) url(./assets/images/background/bgFooterMobile_new.png) no-repeat top left;
        background-size: 236px;
    }

    footer .footer .textLinkInfo .item .textLink1 {
        gap: 2.625rem;
    }

    footer .footer .textLinkInfo {
        height: fit-content;
        flex-direction: column;
        gap: 3.5rem;
        padding: 2.5rem 0 3rem;
    }

    footer .footer .textLinkInfo .item .textLink1,
    footer .footer .textLinkInfo .item .textLink2 {
        flex-direction: column;
    }

    footer .footer .textLinkInfo::after {
        top: 58.6%;
    }

    footer .footer .socialmedia {
        width: var(--jvm--width);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        z-index: 100;
        position: relative;
    }

    footer .footer .socialmedia img {
        width: 30px;
    }

    footer .copy {
        height: 88px;
    }

    .filosofiaMobile {
        flex-direction: column-reverse;
        gap: 2rem;
    }

}


/* ------------------------------ */
.lg-float-button {
    position: fixed;
    bottom: 30px;
    left: 50px;
    width: 60px;
    height: 60px;
    z-index: 10000;
}

.lg-float-button__button {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(149, 194, 61);
    background: radial-gradient(circle, rgba(149, 194, 61, 1) 0%, rgba(213, 219, 71, 1) 35%, rgba(149, 194, 61, 1) 100%);
    border-radius: 50%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}

.lg-float-button__button img {
    width: 35px;
    height: auto;
}

.lg-float-button__box {
    position: absolute;
    bottom: -5px;
    left: -5px;
    background: #fff;
    width: 400px;
    border-radius: 20px 20px 20px 0;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateY(5px);
}

.lg-float-button:hover .lg-float-button__box {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    transform: translateY(-5px);
    z-index: 1000;
}

.lg-float-button__box_title {
    font-size: 18px;
    font-weight: bold;
    background-color: var(--jvm-background-5);
    color: var(--jvm-color-text-1);
    padding: 15px 25px;
    text-align: center;
}

.lg-float-button__box_content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lg-float-button__box_content p {
    margin: 0;
}

.lg-float-button__box_content_link {
    padding: 10px 30px;
    border-radius: 18px 18px 18px 0;
    background-color: var(--jvm-background-secundary);
    color: var(--jvm-color-text-1);
    display: flex;
    width: fit-content;
}

.lg-float-button__box_content_link:hover {
    background-color: var(--jvm-background-secundary);
    color: var(--jvm-color-text-1);
    filter: brightness(1.3);
}

@media screen and (max-width: 768px) {
    .lg-float-button {
        bottom: 6px;
        left: 6px;
    }
}

.bannerinterna.bannerGradient {
    height: 595px;
    background: rgb(149, 194, 61);
    background: linear-gradient(90deg, rgba(149, 194, 61, 1) 0%, rgba(213, 219, 71, 1) 100%);
}

.bannerinterna.bannerGradient .contenAligntInfoBanner,
.bannerinterna.bannerGradient .container {
    height: 100%;
}

@media screen and (max-width: 768px) {
    .bannerinterna.bannerGradient {
        height: 565px;
    }
}

.wpcf7-not-valid {
    border-color: red !important;
}

.input-file .wpcf7-not-valid-tip {
    position: absolute;
    top: 30px;
    width: 260px;
    left: 0;
    font-family: 'Greed TRIAL', sans-serif;
}

.accordionQuestions {
    font-family: 'Greed TRIAL', sans-serif;
}

.accordionQuestions .accordion-item {
    border: none;
}

.accordionQuestions .accordion-item:not(:first-child) {
    margin-top: 10px;
}

.accordionQuestions .accordion-button {
    border-radius: 6px !important;
    font-weight: 700;
    font-size: var(--jvm--font-size-4);
    color: var(--jvm-color-text-secundary);
    padding: 20px 30px;
    background-color: var(--jvm-background-22);
    line-height: 25px;
}

/* ------------------------------ */

/* --------------- BANNER BIOGLOBAL --------------- */
.bannerBioglobal {
    position: relative;
}

.bannerBioglobal .bannerBioglobal__gradient {
    position: relative;
}

.bannerBioglobal .bannerBioglobal__gradient::after {
    content: '';
    opacity: 0.7;
    background: linear-gradient(153deg, #000 13.01%, rgba(0, 0, 0, 0.00) 69.73%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.bannerBioglobal .bannerBioglobal__caption {
    position: absolute;
    bottom: 36px;
}

.bannerBioglobal .bannerBioglobal__logo {
    max-width: 262px;
}

.bannerBioglobal .bannerBioglobal__title {
    color: #FFF;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .bannerBioglobal .bannerBioglobal__gradient::after {
        background: linear-gradient(45deg, #000 0.05%, rgba(0, 0, 0, 0.00) 41.52%), linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    }
}

/* --------------- FIN BANNER BIOGLOBAL --------------- */

/* --------------- SECCION SUBTITULO BIOGLOBAL --------------- */
.sectionBioglobal__subtitle {
    background: linear-gradient(180deg, rgba(214, 224, 255, 0.50) -0.02%, rgba(255, 255, 255, 0.50) 99.98%);
}

.sectionBioglobal__subtitle .container {
    margin: 0 auto;
    padding: 42px 0;
    max-width: 888px;
}

.sectionBioglobal__subtitle p {
    color: #4A5466;
    text-align: center;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 37px;
    font-style: normal;
    font-weight: 500;
    line-height: 43px;
}

.sectionBioglobal__subtitle p strong {
    font-weight: 700;
}

.sectionBioglobal__subtitle p:last-child {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .sectionBioglobal__subtitle .container {
        padding: 42px 18px;
    }

    .sectionBioglobal__subtitle p {
        font-size: 33px;
        line-height: 38px;
    }
}

/* --------------- FIN SECCION SUBTITULO BIOGLOBAL --------------- */

/* --------------- SECCION TEXTO - IMAGEN BIOGLOBAL --------------- */
.sectionBioglobal__textimage {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 370px 1fr;
    max-width: 986px;
    margin: 0 auto;
    row-gap: 42px;
    column-gap: 70px;
    align-items: center;
    padding-bottom: 20px;
}

.sectionBioglobal__textimage .sectionBioglobal__textimage_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sectionBioglobal__textimage .sectionBioglobal__textimage_title {
    margin: 0;
    color: #4A4F54;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.sectionBioglobal__textimage .sectionBioglobal__textimage_text {
    color: #4A4F54;
    text-align: justify;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.18px;
}

@media screen and (max-width: 768px) {
    .sectionBioglobal__textimage {
        grid-template-columns: 1fr;
        padding: 18px 18px 42px;
    }
}

/* --------------- FIN SECCION TEXTO - IMAGEN BIOGLOBAL --------------- */

/* --------------- SECCION NUESTROS NEGOCIOS BIOGLOBAL --------------- */
.sectionBioglobal__ourBusiness {
    background: rgba(240, 245, 255, 0.50);
    padding: 42px 0 94px;
}

.sectionBioglobal__ourBusiness~.separadorProEight,
.sectionBioglobal__ourBusiness~.separadorProSix {
    display: none;
}

.sectionBioglobal__ourBusiness .container {
    padding: 0;
    max-width: 1076px;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_title {
    color: #4A4F54;
    text-align: center;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 42px;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
    column-gap: 17.5px;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item {
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item:hover .sectionBioglobal__ourBusiness_item_image img {
    transform: scale(1.1);
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_title {
    color: #4A4F54;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    border-bottom: 1px solid #4A4F54;
    padding-bottom: 3px;
    margin-bottom: 12px;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_logo {
    margin-bottom: 24px;
    align-self: flex-start;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_text {
    color: #4A4F54;
    text-align: justify;
    font-family: 'Greed TRIAL', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 24px;
    flex-grow: 1;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_text p {
    margin-bottom: 0;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_image {
    margin-bottom: 24px;
    overflow: hidden;
}

.sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item_image img {
    transition: all ease .3s;
}

.sectionBioglobal__ourBusiness .btnProTwo {
    min-height: 48px;
}

@media screen and (max-width: 768px) {
    .sectionBioglobal__ourBusiness {
        padding: 42px 18px 72px;
    }

    .sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_title {
        text-align: left;
        margin-bottom: 30px;
    }

    .sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_items {
        grid-template-columns: 1fr;
    }

    .sectionBioglobal__ourBusiness .sectionBioglobal__ourBusiness_item {
        padding-inline: 6px;
    }

    .sectionBioglobal__ourBusiness .btnProTwo {
        min-height: auto;
    }
}

/* --------------- FIN SECCION NUESTROS NEGOCIOS BIOGLOBAL --------------- */

/* --------------- SECCION PREFOOTER --------------- */
.sectionBioglobal__prefooter {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/images/background/bgProx.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.sectionBioglobal__prefooter p,
.sectionBioglobal__prefooter a {
    color: #4A5466;
    font-size: 22px;
    font-style: normal;
    line-height: 28px;
    text-align: center;
    font-family: 'Greed TRIAL', sans-serif;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
}

.sectionBioglobal__prefooter a {
    font-weight: 700;
}

.sectionBioglobal__prefooter a:hover {
    text-decoration: underline;
}

.sectionBioglobal__prefooter p:last-child {
    margin-bottom: 0;
}

.sectionBioglobal__prefooter .container {
    max-width: 898px;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .sectionBioglobal__prefooter {
        padding: 42px 18px;
        background-image: url(./assets/images/background/bgProxMobile.webp);
        min-height: 170px;
    }

    .sectionBioglobal__prefooter p,
    .sectionBioglobal__prefooter a {
        font-size: 30px;
        line-height: 36px;
    }
}

/* --------------- FIN SECCION PREFOOTER --------------- */

/* --------------- HOME: SECCION ESTRATEGIA --------------- */
.bio-imagen-texto__container {
    padding: 1.125rem 1.5rem 2.625rem;
    max-width: 79.5rem;
    margin: 0 auto;
    display: flex;
    gap: 4.0625rem;
    align-items: center;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .bio-imagen-texto__container {
        padding: 4.0625rem 6.8125rem 3.625rem;
        gap: 3.75rem;
        flex-direction: row;
    }
}

@media (min-width: 1400px) {
    .bio-imagen-texto__container::after {
        left: 0;
    }
}

.bio-imagen-texto__image-column {
    width: 100%;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .bio-imagen-texto__image-column {
        flex: 0 0 38.75rem;
        max-width: 38.75rem;
    }
}

.bio-imagen-texto__content-column {
    width: 100%;
    flex: 1;
}

.bio-imagen-texto__image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.bio-imagen-texto__title {
    color: var(--jvm-color-text-primary);
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 450;
    line-height: 3.125rem;
    letter-spacing: -0.022rem;
    margin-bottom: 0.75rem;
}

.bio-imagen-texto__title strong {
    font-weight: 800;
}

.bio-imagen-texto__title img {
    width: 2rem !important;
    height: 2rem !important;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .bio-imagen-texto__title img {
        height: 2.5rem !important;
        width: auto !important;
    }
}

.bio-imagen-texto__description {
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .bio-imagen-texto--image-right .bio-imagen-texto__container {
        flex-direction: row-reverse;
    }
}

.bio-imagen-texto--full {
    width: 100%;
}

.bio-imagen-texto--wide {
    max-width: 87.5rem;
    margin: 0 auto;
}

/* --------------- FIN HOME: SECCION ESTRATEGIA --------------- */

/* --------------- NEGOCIOS: NUEVO UX NEGOCIOS --------------- */
.bio-button,
.bio-btn {
    position: relative;
    display: flex;
    justify-content: center;
    column-gap: 0.375rem;
    align-items: center;
    width: 100%;
    min-width: 100%;
    padding: 0.5625rem 1.125rem;
    border: none;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.0225rem;
    border-radius: 7.5rem;
    line-height: normal;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

@media (min-width: 768px) {

    .bio-button,
    .bio-btn {
        min-width: fit-content;
        width: fit-content;
    }
}

.bio-button.loading,
.bio-btn.loading {
    position: relative;
    padding-inline: 2.5rem;
}

.bio-button.loading::after,
.bio-btn.loading::after {
    content: "";
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.125rem solid white;
    border-top-color: #4A5466;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.bio-button:before,
.bio-btn:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.6s ease;
}

.bio-button:disabled,
.bio-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bio-button--mw,
.bio-btn--mw {
    min-width: 11.5rem;
}

.bio-button--carbon,
.bio-btn--carbon {
    color: #FFFFFF;
    background-color: var(--jvm-color-text-primary);
    border: 1px solid var(--jvm-color-text-primary);
}

.bio-button--carbon:hover:not(:disabled),
.bio-btn--carbon:hover:not(:disabled) {
    color: var(--jvm-color-text-primary);
    background-color: transparent;
    transform: translateY(-0.25rem);
}

.bio-button--carbon-transparent,
.bio-btn--carbon-transparent {
    color: var(--jvm-color-text-primary);
    background-color: transparent;
    border: 1px solid var(--jvm-color-text-primary);
}

.bio-button--carbon-transparent:hover,
.bio-btn--carbon-transparent:hover {
    background-color: var(--jvm-color-text-primary);
    color: #FFFFFF;
    transform: translateY(-0.25rem);
}

.bio-button--indigo,
.bio-btn--indigo {
    color: #ffffff;
    background-color: #006eda;
    border: 1px solid #006eda;
}

.bio-button--indigo:hover:not(:disabled),
.bio-btn--indigo:hover:not(:disabled) {
    border: 1px solid var(--jvm-color-text-primary);
    background-color: transparent;
    transform: translateY(-0.25rem);
    color: inherit;
}

.bio-button--indigo:hover:not(:disabled) svg path,
.bio-btn--indigo:hover:not(:disabled) svg path {
    fill: var(--jvm-color-text-primary);
}

.bio-button--indigo-transparent,
.bio-btn--indigo-transparent {
    color: #006eda;
    background-color: transparent;
    border: 1px solid #006eda;
}

.bio-button--indigo-transparent:hover,
.bio-btn--indigo-transparent:hover {
    background-color: #006eda;
    color: #FFFFFF;
    transform: translateY(-0.25rem);
}

.bio-button--white,
.bio-btn--white {
    color: var(--jvm-color-text-primary);
    background-color: #FFFFFF;
}

.bio-button--white:hover:not(:disabled),
.bio-btn--white:hover:not(:disabled) {
    color: #FFFFFF;
    background-color: var(--jvm-color-text-primary);
    transform: translateY(-0.25rem);
}

.bio-button--white-transparent,
.bio-btn--white-transparent {
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
}

.bio-button--white-transparent:hover,
.bio-btn--white-transparent:hover {
    background-color: #FFFFFF;
    color: var(--jvm-color-text-primary);
    transform: translateY(-0.25rem);
}

.bio-button--primary,
.bio-btn--primary {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.bio-button--primary:hover:not(:disabled),
.bio-btn--primary:hover:not(:disabled) {
    color: var(--color-primary);
    background-color: transparent;
}

.bio-button--secondary,
.bio-btn--secondary {
    color: var(--color-white);
    background-color: var(--color-secondary);
}

.bio-button--secondary:hover,
.bio-btn--secondary:hover {
    color: var(--color-black);
    background-color: var(--color-white);
}

.bio-button--form,
.bio-btn--form {
    padding-inline: 2.875rem;
    margin-top: 0.375rem;
}

.bio-productos-listing {
    position: relative;
}

.bio-productos-listing__container {
    margin: 0 auto;
}

.bio-productos-listing__segments-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem;
    justify-content: center;
    display: flex;
}

@media (min-width: 768px) {
    .bio-productos-listing__segments-nav {
        top: 5rem;
    }
}

.bio-productos-listing__segments-nav-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 3.75rem;
    background: #c4c4c4;
    box-shadow: 0 4px 8px 0 rgba(145, 125, 92, 0.25), 0 20px 21.7px 0 rgba(145, 125, 92, 0.29);
}

@media (min-width: 768px) {
    .bio-productos-listing__segments-nav-inner {
        width: fit-content;
    }
}

.bio-productos-listing__segment-nav-button {
    color: var(--jvm-color-text-primary);
    text-align: center;
    background-color: transparent;
    padding: 0.625rem;
    border-radius: 3.75rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.0225rem;
    flex: 1;
    border: 0;
}

.bio-productos-listing__segment-nav-button:hover {
    background-color: rgba(159, 138, 255, 0.1);
    border-color: #006eda;
}

.bio-productos-listing__segment-nav-button.is-active {
    background-color: #006eda;
    border-color: #006eda;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .bio-productos-listing__segment-nav-button {
        min-width: 26.1875rem;
    }
}

.bio-productos-listing__segment {
    margin-bottom: 0;
    scroll-margin-top: 6.25rem;
}

.bio-productos-listing__segment:nth-child(odd) {
    background: rgba(0, 185, 255, 0.31);
}

.bio-productos-listing__segment-inner {
    max-width: 79.5rem;
    margin: 0 auto;
    padding: 2.25rem 0;
}

@media (min-width: 768px) {
    .bio-productos-listing__segment-inner {
        padding: 2.625rem 0;
    }
}

.bio-productos-listing__segment-header {
    text-align: center;
    margin: 0 auto 3rem;
    padding-inline: 1.5rem;
    max-width: 52.375rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__segment-header {
        padding: 0;
    }
}

.bio-productos-listing__segment-badge {
    display: inline-block;
    background-color: rgba(159, 138, 255, 0.15);
    color: var(--jvm-color-text-primary);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 1.25rem;
    margin-bottom: 0.75rem;
}

.bio-productos-listing__segment-title {
    color: var(--jvm-color-text-primary);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 450;
    line-height: 3.125rem;
    letter-spacing: -0.02rem;
    margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__segment-title {
        font-size: 2.75rem;
        line-height: 3.125rem;
        letter-spacing: -0.022rem;
    }
}

.bio-productos-listing__segment-title strong {
    font-weight: 800;
}

.bio-productos-listing__segment-title img {
    width: 2rem !important;
    height: 2rem !important;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__segment-title img {
        height: 2.5rem !important;
        width: auto !important;
    }
}

.bio-productos-listing__segment-description {
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
}

.bio-productos-listing__products-slider {
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__products-slider {
        padding: 0 6.75rem;
    }
}

.bio-productos-listing__products-grid-wrapper {
    padding: 0 1.5rem 2.625rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__products-grid-wrapper {
        padding: 0;
    }
}

.bio-productos-listing__products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bio-productos-listing__products-grid .bio-productos-listing__product-card {
    flex-direction: column;
}

@media (min-width: 768px) {
    .bio-productos-listing__products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.875rem;
    }
}

.bio-productos-listing__load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__load-more-wrapper {
        margin-top: 3rem;
    }
}

.bio-productos-listing__load-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: #006eda;
    color: var(--jvm-color-text-primary);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 3.75rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(248, 183, 53, 0.3);
}

.bio-productos-listing__load-more-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease-in-out;
}

.bio-productos-listing__load-more-button:hover {
    background-color: rgb(125.5230769231, 97.2, 255);
    transform: translateY(-0.125rem);
    box-shadow: 0 6px 16px rgba(248, 183, 53, 0.4);
}

.bio-productos-listing__load-more-button:hover svg {
    transform: scale(1.1);
}

.bio-productos-listing__load-more-button:active {
    transform: translateY(0);
}

.bio-productos-listing__product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.875rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__product-card {
        flex-direction: row;
    }
}

.bio-productos-listing__product-image {
    position: relative;
    width: 100%;
    height: 18.625rem;
    overflow: hidden;
    background-color: #F7F7F7;
}

@media (min-width: 768px) {
    .bio-productos-listing__product-image {
        height: 18rem;
        max-width: 25.25rem;
        min-width: 25.25rem;
    }
}

.bio-productos-listing__product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.bio-productos-listing__product-card:hover .bio-productos-listing__product-img {
    transform: scale(1.05);
}

.bio-productos-listing__product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bio-productos-listing__product-content-wrapper {
    border-left: 1px solid var(--jvm-color-text-primary);
    padding-left: 0.75rem;
    margin-bottom: 1.875rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bio-productos-listing__product-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    width: fit-content;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.125rem;
    color: var(--jvm-color-text-primary);
    padding: 0.1875rem 0.875rem;
    border-radius: 0.75rem;
    border: 1px solid var(--jvm-color-text-primary);
}

.bio-productos-listing__product-title {
    color: var(--jvm-color-text-primary);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: 2.25rem;
    letter-spacing: -0.015rem;
    margin-bottom: 0.375rem;
}

.bio-productos-listing__product-description {
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
    margin-bottom: 1.125rem;
    flex-grow: 1;
}

.bio-productos-listing__product-link {
    display: flex;
    gap: 0.375rem;
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.0225rem;
}

.bio-productos-listing__product-link svg {
    transition: all ease 0.3s;
}

.bio-productos-listing__product-link:hover {
    text-decoration: underline;
    color: inherit;
}

.bio-productos-listing__product-link:hover svg {
    transform: translateX(0.375rem);
}

.bio-productos-listing__navigation {
    display: flex;
    gap: 1.125rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__navigation {
        margin-top: 2.625rem;
    }
}

.bio-productos-listing__nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: transparent;
    border: none;
    padding: 0;
}

.bio-productos-listing__nav-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bio-productos-listing__pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bio-productos-listing__pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.bio-productos-listing__pagination .swiper-pagination-bullet-active {
    background-color: #006eda;
    width: 1.5rem;
    border-radius: 0.25rem;
}

.bio-productos-listing__testimonials-slider .swiper {
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__testimonials-slider .swiper {
        padding: 0 3.75rem;
    }
}

@media (min-width: 1200px) {
    .bio-productos-listing__testimonials-slider .swiper {
        padding: 0;
    }
}

.bio-productos-listing__testimonials-slider .swiper-slide {
    height: auto;
}

.bio-productos-listing__testimonials {
    padding: 0;
}

@media (min-width: 768px) {
    .bio-productos-listing__testimonials {
        padding: 2.625rem 0 0;
    }
}

.bio-productos-listing__testimonials-header {
    text-align: center;
    margin-bottom: 2.625rem;
    max-width: 52.375rem;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__testimonials-header {
        padding: 0;
    }
}

.bio-productos-listing__testimonials-title {
    color: var(--jvm-color-text-primary);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 450;
    line-height: 3.125rem;
    letter-spacing: -0.02rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__testimonials-title {
        font-size: 2.75rem;
        line-height: 3.125rem;
        letter-spacing: -0.022rem;
    }
}

.bio-productos-listing__testimonials-title strong {
    font-weight: 800;
}

.bio-productos-listing__testimonials-title img {
    width: 2rem !important;
    height: 2rem !important;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .bio-productos-listing__testimonials-title img {
        height: 2.5rem !important;
        width: auto !important;
    }
}

.bio-productos-listing__testimonials-subtitle {
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
}

.bio-productos-listing__testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.bio-productos-listing__testimonial-avatar {
    width: 11.5625rem;
    height: 6.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.bio-productos-listing__testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-productos-listing__testimonial-quote {
    margin-bottom: 0.75rem;
}

.bio-productos-listing__testimonial-quote svg {
    width: auto;
    height: 2.5rem;
}

.bio-productos-listing__testimonial-quote svg path {
    fill: #5dc000;
    opacity: .4;
}

.bio-productos-listing__testimonial-author {
    color: var(--jvm-color-text-primary);
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.75rem;
    letter-spacing: -0.011rem;
    margin-bottom: 0.75rem;
}

.bio-productos-listing__testimonial-text {
    color: var(--jvm-color-text-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
}

.bio-productos-listing--full {
    width: 100%;
}

.bio-productos-listing--wide {
    max-width: 87.5rem;
    margin: 0 auto;
}

@keyframes fadeInProduct {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-product {
    animation: fadeInProduct 0.5s ease-out;
}

.swiper .swiper-pagination {
    all: initial !important;
    display: flex !important;
}

.swiper .swiper-pagination-bullet {
    width: 1.125rem;
    border-radius: 0;
    height: 0.25rem;
    background: #006eda;
    transition: all ease 0.3s;
    opacity: 0.5;
}

.swiper .swiper-pagination-bullet-active {
    width: 3.75rem;
    opacity: 1;
}

/* --------------- FIN NEGOCIOS: NUEVO UX NEGOCIOS --------------- */

/* --------------- NEGOCIOS: FORMULARIO DE CONTACTO --------------- */
.bio-formulario-atencion {
    background-color: rgb(175 200 8 / 80%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 323'%3E%3Cpath fill='rgba(66%2C71%2C75%2C.1)' d='M164.48 72.566c25.721 18.072 55.63 63.568 88.053 48.931 46.135-20.82 29.211-79.579-13.321-103.199C176.824-16.287 109.856 .12 76.093 50.98c32.618-2.827 64.426 4.888 88.387 21.586Z'/%3E%3Cpath fill='rgba(66%2C71%2C75%2C.1)' d='M185.51 249.611c-25.72-18.072-55.63-63.568-88.052-48.931-46.135 20.82-29.211 79.579 13.321 103.199 62.36 34.585 129.355 18.178 163.119-32.656-32.619 2.827-64.427-4.888-88.388-21.585Z'/%3E%3Cpath fill='rgba(66%2C71%2C75%2C.1)' d='M271.189 151.406c-19.632 23.673-69.062 51.204-53.172 81.059 22.621 42.484 86.461 26.896 112.097-12.259 37.59-57.413 19.745-119.079-35.494-150.149 3.072 30.014-5.306 59.314-23.459 81.349Z'/%3E%3Cpath fill='rgba(66%2C71%2C75%2C.1)' d='M78.831 170.77c19.632-23.672 69.062-51.203 53.172-81.058-22.62-42.485-86.461-26.896-112.097 12.259-37.617 57.439-19.772 119.078 35.467 150.149-3.072-30.014 5.306-59.288 23.458-81.35Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right -2.5rem;
}

@media (min-width: 768px) {
    .bio-formulario-atencion {
        background-position: top -7.5rem right -6.25rem;
    }
}

.bio-formulario-atencion__container {
    max-width: 66rem;
    margin: 0 auto;
    padding: 2.625rem 1.5rem;
}

@media (min-width: 768px) {
    .bio-formulario-atencion__container {
        padding: 2.625rem 1.5rem;
    }
}

@media (min-width: 1200px) {
    .bio-formulario-atencion__container {
        padding: 2.625rem 0;
    }
}

.bio-formulario-atencion__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

@media (min-width: 768px) {
    .bio-formulario-atencion__content {
        flex-direction: row;
    }
}

.bio-formulario-atencion__content_text {
    color: #27282A;
}

.bio-formulario-atencion__title {
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 450;
    line-height: 3.125rem;
    letter-spacing: -0.022rem;
    margin-bottom: 0.375rem;
}

.bio-formulario-atencion__title strong {
    font-weight: 800;
}

.bio-formulario-atencion__title img {
    width: auto !important;
    height: 2.5rem !important;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .bio-formulario-atencion__title img {
        height: 2.875rem !important;
        width: auto !important;
    }
}

.bio-formulario-atencion__description {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
}

.bio-formulario-atencion__placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    color: #666;
}

@media (min-width: 768px) {
    .bio-formulario-atencion__placeholder {
        min-height: 250px;
    }
}

.bio-formulario-atencion__error {
    margin-top: 32px;
}

.bio-formulario-atencion__error p {
    margin: 0;
}

/* --------------- FIN NEGOCIOS: FORMULARIO DE CONTACTO --------------- */

.bio-form form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.bio-form form span.js-validation-tip {
    display: none;
}

.bio-form form .wpcf7-acceptance {
    margin: 0;
}

.bio-form form .wpcf7-acceptance label {
    color: #27282A;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3125rem;
}

.bio-form form .wpcf7-acceptance a:hover {
    text-decoration: underline;
}

.bio-form form .wpcf7-acceptance .wpcf7-list-item label input+span:before {
    top: 3px;
}

.bio-form form .form-section {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-top: 0.375rem;
}

.bio-form form .form-section-title {
    color: #27282A;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.75rem;
    letter-spacing: -0.011rem;
    border-bottom: 1px solid #9F8AFF;
    padding-bottom: 0.625rem;
}

.bio-form form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media only screen and (min-width: 768px) {
    .bio-form form .form-row {
        flex-direction: row;
    }
}

.bio-form form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.bio-form form .form-field label {
    color: #27282A;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem;
}

.bio-form form .form-textarea {
    padding: 0.75rem;
    width: 100%;
    height: 7rem;
    border-radius: 0.75rem;
    border: none;
    background: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 450;
    line-height: 1.5rem;
    color: #4A4F54;
}

.bio-form form .form-buttons {
    display: flex;
    gap: 0.75rem;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .bio-form form .form-buttons {
        flex-direction: row;
    }
}

.bio-form .wpcf7 .wpcf7-spinner {
    position: absolute;
    margin: 0.625rem 0 0 0;
    right: 0.625rem;
    bottom: 0.625rem;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .bio-form .wpcf7 .wpcf7-spinner {
        left: 1.25rem;
        right: auto;
    }
}

.bio-form .wpcf7 .wpcf7-response-output {
    display: none;
}

.bio-form .wpcf7 label {
    color: #27282A;
    font-size: 0.8125rem;
    font-weight: 450;
    line-height: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.bio-form .wpcf7 .wpcf7-not-valid-tip {
    font-size: 0.75rem !important;
    color: #dc3232 !important;
    position: absolute;
    padding-right: 0.75rem;
    bottom: -1rem;
    right: 0;
}

.bio-form .wpcf7 .wpcf7-acceptance {
    display: flex;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    flex-direction: row;
    position: relative;
    color: #27282A;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.5rem;
    gap: 0.6875rem;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input {
    width: 1.125rem;
    height: 1.125rem;
    margin: 0;
    opacity: 0;
    min-height: auto;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input+span:before {
    content: "";
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.1875rem;
    z-index: 1;
    background-color: var(--color-white);
    cursor: pointer;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:checked+span:before {
    border: 0;
    background: #9F8AFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27%3E%3Cpath d=%27M3.57109 7.50091L0.246094 4.17591L1.07734 3.34466L3.57109 5.83841L8.92318 0.486328L9.75443 1.31758L3.57109 7.50091Z%27 fill=%27%23D9D9D9%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.bio-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    flex-grow: 1;
}

.bio-form .wpcf7 input:not(.bio-button),
.bio-form .wpcf7 select:not(.bio-button) {
    border-radius: 0.75rem;
    border: none;
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 450;
    line-height: 1.5rem;
    height: auto !important;
}

.bio-form .wpcf7 input:not(.bio-button).wpcf7-not-valid,
.bio-form .wpcf7 select:not(.bio-button).wpcf7-not-valid {
    border: 1px solid #dc3232;
}

.bio-form .wpcf7 input:not(.bio-button):focus-visible,
.bio-form .wpcf7 select:not(.bio-button):focus-visible {
    outline: #27282A auto 1px;
}

.bio-form .wpcf7 input::placeholder,
.bio-form .wpcf7 select::placeholder {
    color: #27282A;
}

.bio-form .upload-area {
    border: 1px dashed #27282A;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1875rem;
    position: relative;
    flex-direction: column;
    background-color: #FFFFFF;
    min-height: 6rem;
}

.bio-form .upload-area .text-primary {
    color: #87818D;
    font-size: 18px;
    font-style: normal;
    font-weight: 450;
    line-height: 24px;
}

.bio-form .upload-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bio-form .upload-wrapper .cvFile .wpcf7-not-valid-tip {
    bottom: 2px;
    font-size: 0.875rem;
    left: 0.3125rem;
}

.bio-form .upload-label {
    color: #27282A;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.125rem;
    margin-top: 0.375rem;
}

.bio-form .file-name {
    flex: 1;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bio-form .cvFile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bio-form .cvFile .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.bio-form .cvFile .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
}

.bio-form .upload-wrapper {
    position: relative;
}

.bio-form #cvFile,
.bio-form .cvFileInput {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.bio-form .file-preview {
    padding: 20px 15px;
    background: #fff;
    border-radius: 6px;
}

.bio-form .file-preview-items {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bio-form .file-preview button {
    appearance: none;
    background-color: #27282A;
    padding: 0.375rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    border: none;
}

.bio-form .icono {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.bio-form .icono-upload {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMjEuMzM0NiAyMS4zMzMzTDE2LjAwMTMgMTZMMTAuNjY4IDIxLjMzMzMiIHN0cm9rZT0iIzJFMkUyRSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgogIDxwYXRoIGQ9Ik0xNS45OTg3IDE2VjI4IiBzdHJva2U9IiMyRTJFMkUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KICA8cGF0aCBkPSJNMjcuMTg0OCAyNC41MkMyOS44NiAyMy4wNjE1IDMxLjIwNiAxOS45NzUgMzAuNDU0NCAxNy4wMjIyQzI5LjcwMjkgMTQuMDY5NCAyNy4wNDUxIDEyLjAwMiAyMy45OTgxIDEySDE5LjYxODEgQzIxLjIxMjkgNy43MjUwNCAxNy41ODgxIDQuNTcyOTggMTMuMjAxMSA0LjA3MjA4QzguODE0MTIgMy41NzExOCA0LjU3MjAxIDUuODI0OTkgMi41MzE1OSA5Ljc0MDc0QzAuNDkxNjEgMTMuNjU2NSAxLjA3NDI1IDE4LjQyNDYgMy45OTgxNSAyMS43MzMzIiBzdHJva2U9IiMyRTJFMkUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KICA8cGF0aCBkPSJNMjEuMzM0NiAyMS4zMzMzTDE2LjAwMTMgMTZMMTAuNjY4IDIxLjMzMzMiIHN0cm9rZT0iIzJFMkUyRSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
}

.bio-form .icono-cerrar {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJN MTAuNTkwNyA4Ljk5OTdMMTcuNjcwNCAxLjkyMTAzQzE4LjEwOTggMS40ODE1NiAxOC4xMDk4IDAuNzY5MDM4IDE3LjY3MDQgMC4zMjk2MDNDMTcuMjMwOSAtMC4xMDk4NjggMTYuNTE4NCAtMC4xMDk4NjggMTYuMDc5IDAuMzI5NjAzTDguOTk5NyA3LjQwOTI5TDEuOTIxMDMgMC4zMjk2MDNDMS40ODE1NiAtMC4xMDk4NjggMC43NjkwMyAtMC4xMDk4NjggMC4zMjk2MDMgMC4zMjk2MDNDLTAuMTA5ODMyIDAuNzY5MDczIC0wLjEwOTg2OCAxLjQ4MTU5IDAuMzI5NjAzIDEuOTIxMDNMNy40MDkyOSA4Ljk5OTdMMC4zMjk2MDMgMTYuMDc5Qy0wLjEwOTg2OCAxNi41MTg0IC0wLjEwOTg2OCAxNy4yMzA5IDAuMzI5NjAzIDE3LjY3MDRDMC43NjkwNzMgMTguMTA5OCAxLjQ4MTU5IDE4LjEwOTggMS45MjEwMyAxNy42NzA0TDguOTk5NyAxMC41OTA3TDE2LjA3ODkgMTcuNjcwNEMxNi41MTg0IDE4LjEwOTggMTcuMjMwOSAxOC4xMDk4IDE3LjY3MDMgMTcuNjcwNEMxOC4xMDk4IDE3LjIzMDkgMTguMTA5OCAxNi41MTg0IDE3LjY3MDMgMTYuMDc5TDEwLjU5MDcgOC45OTk3WiIgZmlsbD0iI0ZGRkZGRiIvPgo8L3N2Zz4=");
}