/* Para solucionar el conflicto con las animaciones de Reveal y Bootstrap */

[hidden] {
    display: inherit !important;
}

/* Estilos Personalizados */

/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');*/

body {
    margin: 0px;
    cursor: url(../../images/arrow-cursor.png), auto;
    cursor: -webkit-image-set(url(../../images/arrow-cursor.png) 1x, url(../../images/arrow-cursor.png) 2x), auto;
    color: #000;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 15px;
}

:root {
    --first-color: #788392;
    --second-color: #00889E;
    --third-color: #AF8845;
    --fourth-color: #000000;
    --fifth-color: #EB576F;
    --text-color: #000;
    --tit-color: #fff;
    --swiper-theme-color: #788392 !important;
}

@font-face {
    font-family: 'monument_extendedregular';
    src: url('../../fonts/monumentextended-regular-webfont.woff2') format('woff2'), url('../../fonts/monumentextended-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'monument_extendedultrabold';
    src: url('../../fonts/monumentextended-ultrabold-webfont.woff2') format('woff2'), url('../../fonts/monumentextended-ultrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/poppins-light-webfont.woff2') format('woff2'), url('../../fonts/poppins-light-webfont.woff') format('woff'), url('../../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/poppins-medium-webfont.woff2') format('woff2'), url('../../fonts/poppins-medium-webfont.woff') format('woff'), url('../../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/poppins-regular-webfont.woff2') format('woff2'), url('../../fonts/poppins-regular-webfont.woff') format('woff'), url('../../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/poppins-semibold-webfont.woff2') format('woff2'), url('../../fonts/poppins-semibold-webfont.woff') format('woff'), url('../../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span li,
ul {
    margin: 0px;
    font-family: 'Poppins';
}

p,
li,
ol {
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
}

ul {
    padding-left: 20px;
}

a {
    text-decoration: none;
}

.card-productos {
    flex: 1 150px;
    margin-right: 15px;
    margin-bottom: 15px;
    color: black;
}

strong {
    font-weight: 600;
}

.contain-log-mag {
    position: relative;
}


/*---------------- ANIMACIONES -------------*/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
        transition: all ease;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
        ;
        transition: all ease;
    }
}

@keyframes fadeInInner {
    from {
        transform: translateY(50px);
        transition: all ease;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
        ;
        transition: all ease;
    }
}

@keyframes fadeInCols {
    from {
        opacity: 0;
        transform: translateY(50px);
        transition: all ease;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
        transition: all ease;
    }
}

@keyframes slidein {
    from {
        transform: scaleX(0);
        transform-origin: bottom left;
        transition: all ease;
    }
    to {
        transform: scaleX(1);
        transform-origin: bottom left;
        transition: all ease;
    }
}

@keyframes overlayAnimacion {
    0% {
        left: -100%;
    }
    50% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

@keyframes overlayAnimacionright {
    0% {
        right: -100%;
    }
    50% {
        right: 0%;
    }
    100% {
        right: 100%;
    }
}

@keyframes animateLog {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-110px);
    }
}

.log-mag {
    position: fixed;
    top: 50px;
    left: 50px;
    z-index: 99;
    text-transform: uppercase;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--fourth-color);
    transition: all ease 0.4s;
}

.log-mag.scroll {
    /*animation: animateLog;*/
    animation-duration: 1s;
    transition: all ease 0.4s;
    transform: translateY(-150px);
}

.log-mag-tit {
    z-index: 2;
    font-family: 'monument_extendedregular';
}

.animate {
    animation-duration: 1s;
    animation-name: slidein;
}

.fadeInElement {
    animation-duration: 2s;
    animation-name: fadeIn;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.js-ani,
.first-ani {
    animation: none;
}

.fadeInElementInner {
    animation-duration: 1s;
    animation-name: fadeInInner;
    /*animation-delay: 0.5s;*/
    animation-fill-mode: forwards;
}

.first-ani.fadeInElementInner {
    animation-delay: 1s;
}

#home.present .fadeInElementInner-execute {
    animation-delay: 10s;
}

.fadeInElementCols {
    animation-duration: 2s;
    animation-name: fadeInCols;
    animation-fill-mode: forwards;
}

.n1.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.n2.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.n3.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.n4.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.n5.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.n6.fadeInElementCols-execute {
    animation-delay: 5.5s;
}

.fondo-tit {
    content: '';
    position: absolute;
    height: 60px;
    background-color: #fff;
    min-width: 190px;
    right: -20px;
    z-index: 1;
    animation-duration: 1s;
    animation-name: slidein;
}


/*---------------- 00 FOOTER -------------*/

.footer {
    position: static;
    margin: auto;
    border-top: 1px solid var(--first-color);
    background: white;
}

.footer a {
    color: #666;
}


/*.footer {
    position: fixed;
    bottom: -130px;
    z-index: 98;
    display: block;
    margin: auto;
    margin-top: 10px;
    border-top: 1px solid var(--first-color);
    min-height: 70px;
    right: 15%;
    left: 15%;
    padding: 15px 30px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: #FFF;
    animation: aniFooter 1s forwards;
    animation-delay: 3s;
    margin-left: 40px;
    margin-right: 40px;
}*/

.footer-mv {
    display: none;
}

#home .footer {
    animation-delay: 6s;
}

@keyframes aniFooter {
    0% {
        bottom: -100px;
    }
    100% {
        bottom: 0px;
    }
}

.contain-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    align-items: center;
    width: 70%;
    margin: auto;
}

.footer .let-peq,
.footer .let-peq-gen {
    width: 70%;
    margin: auto;
}

.log-footer {
    /*min-width: 80px;
    max-width: 120px;
    height: auto;*/
    max-width: 100%;
    height: auto;
}

.footer > div > div > a > img.logo-bqdc {
    width: 100%;
    max-width: 250px;
}

.logo-clinica {
    width: 25%;
    margin-right: 10px;
}

.footer .contain-log-footer > a:nth-child(2) .logo-bqdc {
    width: 28%;
}

.text-footer {
    color: var(--first-color);
    font-size: 18px;
}

.text-footer:hover {
    cursor: pointer;
}

.p-top {
    padding-top: 80px;
}


/*---------------- 00 HOME -------------*/

.f_wrapper {
    display: block;
    height: 100vh;
    width: 100%;
    /*overflow: hidden;*/
    position: relative;
}

.full_wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bloq-h {
    display: block;
    height: 55%;
    margin: 50px;
    opacity: 0;
    animation: animHome 1s forwards;
    animation-delay: 5s;
    max-width: 2560px;
    margin: 50px auto;
}

@keyframes animHome {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bloq-h .contain-bloq-h {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    margin: 0 50px;
}

.col-right-h {
    display: block;
    height: 100%;
}

.col-right-h {
    flex: 0 0 32%;
}

.col-left-h {
    flex: 0 0 63%;
    /*background-image: url(../../images/portada.jpg);
    background-position: center right;
    background-size: cover;
    background-blend-mode: saturation;
    background-repeat: no-repeat;
    background-position: center;*/
    background-color: rgb(255, 255, 255);
    justify-content: flex-start;
    /*align-items: center;*/
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    display: flex;
    transition: all 0.4s ease;
}

.col-left-h:hover {
    transition: all 0.4s ease;
    /*background-color: rgba(0, 0, 0, 0);
    background-blend-mode: none;
    background-size: 150%;*/
}

.col-left-h:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--first-color);
    animation: overlayAnimacion 1s forwards;
    animation-delay: 5s;
}

.col-left-h .link-col {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.col-left-h .bloq-txt {
    z-index: 2;
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    margin-left: 50px;
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.col-left-h .img-home {
    position: absolute;
    z-index: 1;
    /*width: 100%;*/
    width: 110%;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.col-left-h:hover .img-home {
    transition: all 0.4s ease;
    width: 115%;
    opacity: 1;
}

.contin-col-right {
    height: 100%;
}

.contain-tit-slide {
    flex: 0 0 100%;
}

.col-left-h .tit-slide {
    font-size: 2.2em;
    color: var(--fourth-color);
    line-height: 1.3em;
    text-align: left;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    opacity: 0;
    margin: 0px;
}

.col-left-h:hover .bloq-txt {
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

a:hover {
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--first-color);
    cursor: url(../../images/arrow-cursor-hover.png), auto !important;
    cursor: -webkit-image-set(url(../../images/arrow-cursor-hover.png) 1x, url(../../images/arrow-cursor-hover.png) 2x), auto !important;
}

.bloq-not {
    display: block;
    margin: 80px auto 0;
    /*width: 70%;*/
    width: 80%;
    height: calc(30% - 90px);
}

/*.bloq-not .container-not {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}*/

.col-not {
    padding: 10px;
    border-top: solid 1px var(--fourth-color);
    text-align: left;
    opacity: 0;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 0 0 22%;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
    overflow: hidden;
    position: relative;
}

.col-not:hover {
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-size: 110%;
    background-color: rgba(255, 255, 255, 0);
}

.col-img {
    width: 100%;
    height: auto;
    border: none;
    position: relative;
    margin-bottom: 20px;
}

.subtit {
    font-size: 30px;
    font-weight: 600;
    min-height: 35px;
    color: var(--fourth-color);
}

.col-not .subtit {
    /*font-size: 1.2em;*/
    font-size: 1em;
    line-height: 1.2em;
    /*flex: 0 0 80%;*/
    flex: 0 0 90%;
    min-height: 0px;
    margin: 0px;
    padding: 5px 15px;
    transition: all 0.4s ease;
}

.col-not:hover .subtit {
    transition: all 0.4s ease;
    background-color: #fff;
}

.subtit.fadeInElement {
    opacity: 0;
}

.col-right-h .col-img {
    margin-top: 0px;
    z-index: 98;
    height: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.col-right-h:hover .col-img {
    transform: scale(1.05);
    opacity: 1;
    transition: all 0.4s ease;
}

.col-right-h .subtit {
    display: block;
    text-align: left;
    margin: 0px;
}

.circle-link {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000000;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: block;
    position: absolute;
    right: 7px;
    top: 11px;
    transition: transform .58s cubic-bezier(.25, 1, .5, 1);
}

/*.col-not:hover .circle-link {
    background-color: var(--first-color);
    color: #fff;
    transition: transform .58s cubic-bezier(.25, 1, .5, 1);
    transform: scale(2);
    transition-duration: 1s;
}*/

.circle-link .txt-link {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 20px;
}

.flecha {
    width: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.flecha-right {
    width: 15px;
    z-index: 20;
    position: absolute;
    top: 0px;
    left: 45px;
    transition: all 0.4s ease;
}

.scroll-bottom {
    position: fixed;
    bottom: 50px;
    width: 100px;
    height: 100px;
    display: block;
    right: 50px;
    animation: aniScroll 4s infinite;
    transition: all 0.4s ease;
    z-index: 1;
}

.flecha-bottom {
    width: 50px;
    z-index: 20;
    position: absolute;
    bottom: 25px;
    right: 25px;
    transition: all 0.4s ease;
    transform: rotate(90deg);
}

@keyframes aniScroll {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.btn-rrss {
    position: fixed;
    bottom: 30px !important;
    width: 60px;
    height: 60px;
    display: block;
    background: #FFFFFF;
    border: 3px solid #000;
    left: 30px;
    border-radius: 100px;
    /*animation: aniScroll 4s infinite;*/
    transition: all 0.4s ease;
    animation: aniShare 2s forwards;
    animation-delay: 1s;
    transform: scale(0.6);
    opacity: 0.5;
    z-index: 1;
}

#home .btn-rrss {
    animation-delay: 7s;
    z-index: 9999;
}

.btn-rrss:hover {
    transform: scale(0.8) translateY(10px);
    transition: all 0.4s ease;
    opacity: 1;
    cursor: url(../../images/arrow-cursor-hover.png), auto !important;
    cursor: -webkit-image-set(url(../../images/arrow-cursor-hover.png) 1x, url(../../images/arrow-cursor-hover.png) 2x), auto !important;
}

@keyframes aniShare {
    0% {
        bottom: -120px;
    }
    100% {
        bottom: 75px;
    }
}

.icon-share {
    width: 30px;
    height: 33px;
    fill: #000;
    position: absolute;
    top: 15px;
    left: 13px;
}

.container-rrss {
    position: fixed;
    display: none;
    flex-wrap: wrap;
    max-width: 65px;
    justify-content: space-between;
    align-items: flex-end;
    bottom: 65px;
    left: 105px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.container-rrss.show-rrss {
    opacity: 1;
    transition: all 0.4s ease;
    display: flex;
}

.container-rrss {
    flex: 0 0 48%;
}


/*.container-rrss .link-rrss.fb{
    transform: scale(0.6);
    position: relative;
}*/

.link-rrss .imgRrss {
    transition: all 0.4s ease;
    opacity: 0.3;
    max-width: 30px;
}

.link-rrss:hover .imgRrss {
    transition: all 0.4s ease;
    opacity: 1;
}

.link.l-arrow:hover .flecha-right {
    transition: transform .58s cubic-bezier(.25, 1, .5, 1);
    left: 60px;
    transition: all 0.4s ease;
}

.link.l-arrow:hover:before {
    transform: scaleX(1.1);
}

.l-arrow {
    display: block;
    float: left;
}

.col-not:hover .flecha path {
    fill: #fff !important;
}

#home.fadeInElement {
    animation-delay: 5.1s;
}


/*---------------- 01 INTERNAS -------------*/

.animsition-overlay-slide {
    background-color: var(--second-color) !important;
}

#home .container {
    overflow: hidden;
    padding-bottom: 150px;
}


/*.container {
    padding-bottom: 30px;
}*/

.s_wrapper.b-slide .c-wrapper .c-inner-tit {
    max-width: 800px;
}

.c-inner-tit {
    padding: 20px;
    /* max-width: 800px;
    width: 100%; */
}

.inner-tit-contain {
    padding-left: 50px;
    max-width: 50%;
}

.page-content {
    line-height: 1.4rem;
    padding: 2rem;
}

.inner-tit {
    font-size: 3em;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    color: var(--tit-color);
    text-align: left;
    padding-bottom: 15px;
}

.inner-tit.tit-n {
    color: var(--text-color);
}

.b-slide .inner-tit {
    padding-bottom: 0px;
}

.inner-subtit {
    font-size: 1.9em;
    font-weight: normal;
    line-height: 1.3;
    color: var(--text-color);
    text-align: left;
    opacity: 0;
    padding-bottom: 30px;
    font-weight: 600;
}

.inner-text {
    text-align: justify;
    opacity: 0;
}

.justify-l {
    text-align: left;
}

.s_wrapper.b-slide .c-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
   width: 100%;
    margin: 0;
}

.c-wrapper {
    display: block;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0px;
}

.inner-text.testimonio {
    padding: 30px;
    font-style: italic;
    background-color: #f9f9f9;
    border-left: solid 1px var(--first-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.master-separator {
    height: 1px;
    display: block;
    background: #000;
    transform-origin: 0 100%;
    width: 0%;
}

.ani-line {
    animation: animationLine 0.8s forwards;
}

.img-middle {
    opacity: 0;
    width: 100%;
}

.inner-img {
    display: block;
    width: 100%;
    height: auto;
}

.inner-img.w_50 {
    max-width: 50%;
    float: none;
}

.contain-btns {
    opacity: 0;
}

.cols-3col .inner-img {
    padding-bottom: 20px;
}

.p-extra {
    padding-bottom: 40px !important;
}

@keyframes animationLine {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.bg-g {
    background-color: #efefef;
}

.bloq-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bloq-cols.bloq-mitos {
    align-items: center;
}

.bloq-cols.bloq-mitos .cols-2col:first-child {
    align-self: flex-start;
}

.bloq-cols .cols-1col {
    flex: 0 0 100%;
}

.bloq-cols .cols-2col {
    flex: 0 0 48%;
}

.bloq-cols .cols-3col {
    flex: 0 0 32%;
}

.bloq-cols .cols-3col-2 {
    flex: 0 0 64%;
}

.white {
    color: #fff !important;
}

.inner-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    opacity: 0;
    max-width: 400px;
}

.inner-menu .inner-menu-link {
    padding: 20px 0px;
    border-bottom: solid 1px #000;
    color: var(--text-color);
    transition: all 0.4s ease;
}

.inner-menu .inner-menu-link:hover {
    color: var(--fifth-color);
    transition: all 0.4s ease;
}

.inner-menu .inner-menu-link:last-child {
    border-bottom: none;
}

.inner-img {
    opacity: 0;
    float: left;
    position: relative;
}

.col-2col-img {
    position: relative;
    overflow: hidden;
}

.col-2col-img:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--first-color);
    z-index: 99;
    animation: overlayAnimacionright 1s forwards;
    animation-delay: 5s;
}

.leyend-article {
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    border-right: 1px solid var(--first-color);
    padding-right: 30px;
    text-align: right !important;
}

.txt-leyend {
    font-style: italic;
    font-weight: 300;
    text-align: right;
    font-size: 1.5em;
    flex: 0 0 100%;
}

.txt-leyend-photo {
    font-style: italic;
    font-weight: 300;
    text-align: center;
    font-size: 1em;
}

.txt-fuente {
    font-style: italic;
    font-weight: 300;
    text-align: left;
    font-size: 1em;
    margin-top: 10px;
}

.txt-leyend-photo a {
    color: #000;
}

.b-bottom {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--first-color);
}

.tit-leyend {
    font-weight: 600;
    text-align: right;
    font-size: 20px;
    flex: 0 0 100%;
}

.img-doc {
    max-width: 150px;
    height: auto;
    width: 100%;
}

.s_wrapper {
    min-height: 600px;
    background-color: #fff;
    display: flex;
    margin: 50px;
    overflow: hidden;
    position: relative;
}

.s_wrapper.b-slide {
    justify-content: center;
}

.over-vid {
    position: absolute;
}

.video-container {
    display: grid;
    justify-items: center;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.video-text {
    z-index: 2;
    text-align: center;
}

.s_wrapper.b-slide {
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    background-size: cover;
    min-height: 600px;
    background-position: center;
}

.t-center {
    text-align: center;
}

.inner-separator {
    height: 30px;
}

.b-slide.date-clinic-cab {
    background-color: #f3f3f3;
    min-height: 450px;
}

.b-slide.date-clinic-cab .bloq-cols {
    align-items: center;
}


/*----------------------------------------- BOTONES -----------------------------------------*/

.link {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    content: '';
    display: inline-block;
    font-size: 1.15em;
    line-height: 30px;
    color: var(--first-color);
    text-decoration: none !important;
    background: none;
    border: none;
    touch-action: manipulation;
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 60px;
}

.link.white {
    color: #fff !important;
}

.link.fadeInElement {
    opacity: 0;
}

.link:hover {
    transition: all 0.4s ease;
    color: var(--fourth-color);
}

.link:before,
.link:after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0px;
    right: 0px;
    height: 2px;
    overflow: hidden;
    background: var(--first-color);
    transform-origin: bottom left;
    transition: all 0.4s ease;
    z-index: 0;
}


/*.col-left-h .link:after {
    background-color: #fff;
}*/

.link:after {
    bottom: -3px;
}

.link:before {
    background: var(--fifth-color);
    transform: scaleX(0);
    bottom: 4px;
    top: 12px;
    height: auto;
    opacity: 0.3;
}

.link:hover:after,
.link-col.principal .col-left:hover .link:after,
.link-col.secundario:hover .col-right .bloq-txt .link:after {
    transform: scaleX(0);
    transform-origin: bottom right;
    transition-duration: 400ms;
}

.link:hover:before,
.link-col.principal .col-left:hover .link:before,
.link-col.secundario:hover .col-right .bloq-txt .link:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.link .txt-link {
    position: relative;
    z-index: 10;
    font-size: 20px;
    line-height: 30px;
}

.btn-read {
    margin-top: 20px;
}

.card-productos h4 {
    color: black;
}

.card-productos h6 {
    color: black;
}

.card-productos p {
    font-size: 12px !important;
}

.encabezado-pagina {
    background-color: rgba(255, 255, 255, 0.3) !important;
}


/*---------------- MENU -------------*/

#menuIndice {
    top: 50px;
    z-index: 99;
    position: absolute;
    right: 0px;
    width: 100%;
}

#labelMenu {
    position: fixed;
    top: 50px;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--first-color);
    transition: all 0.4s ease;
}

#labelMenu:hover {
    background-color: var(--fourth-color);
    transition: all 0.4s ease;
}

.btnMenu {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    display: block;
    cursor: url(../../images/arrow-cursor-hover.png), auto;
    cursor: -webkit-image-set(url(../../images/arrow-cursor-hover.png) 1x, url(../../images/arrow-cursor-hover.png) 2x), auto;
    z-index: 999;
}

.btnMenu .line {
    display: block;
    background: #fff;
    width: 30px;
    height: 3px;
    left: 20%;
    position: absolute;
    border-radius: 1.5px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
}

.btnMenu .line.line-1 {
    top: 30%;
}

.btnMenu .line.line-2 {
    top: 50%;
}

.btnMenu .line.line-3 {
    top: 70%;
}

input#MenuBtn {
    display: none;
}

nav#containMenu {
    min-width: 400px;
    max-width: 450px;
    position: fixed;
    background-color: #fff;
    border: solid 1px #000;
    top: 100px;
    padding: 20px;
    right: -650px;
    transition: right 0.5s ease;
}

.container-link {
    color: #000;
    border-bottom: 1px solid #000;
    padding: 10px 0px;
    display: flex;
    align-items: center;
}

.container-link:last-child {
    border-bottom: none;
}

.container-link .imgMenu {
    max-width: 65px;
}

.container-link .link-menu {
    font-size: 15px;
    font-weight: 600;
    color: var(--fourth-color);
    transition: all 0.4s ease;
    padding-left: 20px;
}

.container-link .link-menu:hover {
    color: var(--fifth-color) !important;
    transition: all 0.4s ease;
}

input#MenuBtn:checked~nav#containMenu {
    right: 0;
    transition: right 0.5s ease;
}

#labelMenu .tit-ind {
    transition: all 0.4s ease;
    float: left;
    position: absolute;
    right: 50px;
    min-width: 200px;
    font-size: 18px;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid;
    text-align: center;
    margin: 0px;
    line-height: 48px;
    padding: 0px 20px;
    opacity: 0;
}

#labelMenu:hover .tit-ind {
    transition: all 0.4s ease;
    display: block;
    opacity: 1;
}


/*---------------- PRECARGA REVISTA -------------*/

@keyframes loadMagazine {
    0% {
        opacity: 1;
        top: 0;
    }
    75% {
        opacity: 1;
        top: 0;
    }
    95% {
        opacity: 1;
    }
    99% {
        z-index: 99999;
    }
    100% {
        opacity: 0;
        top: -100%;
        z-index: -100;
    }
}

@keyframes animeLog {
    0% {
        opacity: 0;
        left: -250px;
    }
    100% {
        opacity: 1;
        left: -200px;
    }
}

@keyframes animeTxt {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.preloader {
    background: no-repeat center var(--second-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9000;
    animation: loadMagazine 5s forwards;
}

.preloader .contain-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bloq-log-preload {
    position: relative;
    display: block;
    min-height: 100px;
}

.log-mag-tit.preload {
    font-size: 50px;
    text-transform: uppercase;
    opacity: 0;
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    left: -200px;
    animation: animeLog 1s forwards;
    animation-iteration-count: 1;
    animation-delay: 0.4s;
}

.preloader .fondo-tit {
    top: 6px;
    z-index: 3;
    right: -150px;
}

.preloader .tit-preload {
    color: #fff;
    text-align: center;
    font-size: 3vh;
    line-height: 1.2em;
    font-weight: 500;
    opacity: 0;
    padding: 0.5em 0px;
    animation: animeTxt 1s forwards;
    animation-iteration-count: 1;
    animation-delay: 1s;
}

.log-pre {
    max-width: 300px;
    opacity: 0;
    animation: animeTxt 1s forwards;
    animation-delay: 1.4s;
    display: inline-block;
    margin:  0 10px;
}

.bloq-logos .log-pre:first-child {
    max-width: 250px;
}

.hideme {
    opacity: 0;
}


/*---------------- PLAY VIDEOS -------------*/

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.bloq-video {
    position: relative;
    opacity: 0;
}

.bloq-list {
    position: relative;
    opacity: 0;
}

.bloq-list #text1 {
    z-index: 99;
}

.bloq-list .img-middle {
    transition: all 0.4s ease;
}

.bloq-list:hover .img-middle {
    transition: all 0.4s ease;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.bloq-list .link-list {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.yt-video {
    width: 80%;
    display: block;
    min-height: 549px;
    margin: auto;
    border: 5px solid #000;
}

.cols-3col-2 .yt-video {
    width: 100%;
    min-height: 450px;
}

.yt-video:hover iframe {
    cursor: url(../../images/arrow-cursor.png), auto !important;
    cursor: -webkit-image-set(url(../../images/arrow-cursor.png) 1x, url(../../images/arrow-cursor.png) 2x), auto !important;
}

#text1,
#text,
.circle-vid {
    position: absolute;
    bottom: -105px;
    right: 120px;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #000;
    font-weight: 500;
    animation: animate 20s infinite linear;
    text-transform: uppercase;
    z-index: -1;
}

.cols-3col-2 #text2,
.cols-3col-2 #text1 {
    bottom: -140px;
    right: -10px;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #000;
    font-weight: 500;
    animation: animate 20s infinite linear;
    text-transform: uppercase;
}

.cols-2col .bloq-list #text1 {
    bottom: 50%;
    right: 0px;
    position: absolute;
}

.c-wrapper .bloq-not.inner-not {
    max-width: 100%;
    width: 100%;
    padding-bottom: 50px;
}

.inner-not .col-not {
    flex: 0 0 47%;
    min-height: 250px;
    animation-delay: 0s;
    opacity: 0;
}

.p-bottom {
    padding-bottom: 40px !important;
}


/*---------------- BEFORE AFTER -------------*
.ba-slider {
    opacity: 0;
    border: 5px solid #000000;
}

.case-clinic {
    width: 70%;
    display: block;
    margin: auto;
}

/*---------------- GALERIAS -------------*/

.swiper-container {
    width: 100%;
    min-height: 400px;
}

.swiper-container.js-ani {
    opacity: 0;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #fff !important;
    height: 60px !important;
    width: 60px !important;
    border: 3px solid #000 !important;
}

.swiper-slide img {
    display: block !important;
    margin: auto !important;
    width: 80%;
}


/*---------------- ANIMACIÓN WAVE EN EL FONDO -------------*/

.wave-top {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100vh;
    opacity: 0;
    animation: animHome 2s forwards;
    animation-delay: 6s;
}


/*---------------- PROGRESS BAR -------------*/


/* horizontal scroll bar */

.scrollBar {
    position: fixed;
    bottom: 0;
    height: 5px;
    width: 0%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: width 200ms ease;
    transition: width 200ms ease;
    text-align: right;
    z-index: 105;
}

.scrollBar span {
    position: absolute;
    top: -23px;
    right: 15px;
    font-size: 0.7em;
    font-weight: 500;
    display: block;
    text-align: center;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-40 {
    padding-bottom: 40px;
}

.banner-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-top: solid 1px var(--fourth-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.banner-contact .btn-cnt,
.btn-cnt {
    padding: 20px 40px;
    background-color: var(--first-color);
    color: #fff;
    transition: all 0.4s ease;
    display: block;
    margin: auto;
    /*max-width: 250px;*/
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#contact .inner-text {
    text-align: center;
}

#contact i {
    font-size: 2.5em;
}

.map {
    width: 100%;
    min-height: 350px;
    height: auto;
    opacity: 0;
    border: 3px solid var(--first-color);
}

.banner-contact .btn-cnt:hover,
.btn-cnt:hover {
    background-color: var(--fourth-color);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    color: #fff;
}

.banner-contact .inner-subtit,
.banner-contact .inner-text {
    text-align: center;
}

.contain-reply {
    margin-top: 20px;
}

.contain-reply .txt-reply {
    background-color: #f9f9f9;
    padding: 20px;
}

.contain-reply .replyFalse,
.contain-reply .replyTrue {
    display: none;
}

.contain-reply .replyFalse.show,
.contain-reply .replyTrue.show {
    display: inline;
}

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

.bnt-mitos {
    padding: 20px;
    background-color: var(--first-color);
    color: #fff;
    transition: all 0.4s ease;
    flex: 0 0 40%;
    text-align: center;
}

.bnt-mitos:hover {
    background-color: var(--fourth-color);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: url(../../images/arrow-cursor-hover.png), auto !important;
    cursor: -webkit-image-set(url(../../images/arrow-cursor-hover.png) 1x, url(../../images/arrow-cursor-hover.png) 2x), auto !important;
}

.bnt-mitos.active {
    background-color: var(--fourth-color);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.bnt-mitos.true-1.active,
.bnt-mitos.false-2.active,
.bnt-mitos.false-3.active,
.bnt-mitos.true-4.active,
.bnt-mitos.false-5.active,
.bnt-mitos.false-6.active {
    background-color: #f44336;
}

.bnt-mitos.false-1.active,
.bnt-mitos.true-2.active,
.bnt-mitos.true-3.active,
.bnt-mitos.false-4.active,
.bnt-mitos.true-5.active,
.bnt-mitos.true-6.active {
    background-color: #4caf50;
}

.contain-reply .replyFalse,
.contain-reply .replyTrue {
    padding: 20px;
    margin-top: 20px;
}

.highlight {
    padding: 30px;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.highlight .inner-text {
    color: var(--fourth-color);
    font-size: 1.5em;
    text-align: center;
    font-style: italic;
}


/* - - - ESTILOS CONTACTO - - - */

.contacto i {
    width: 25px;
}

.contacto a {
    color: #000;
}

.contacto a:hover {
    color: #788392;
}

.contactoredes {
    margin-top: 20px;
}

.contactoredes a {
    color: #000;
}

.contactoredes a:hover {
    color: #788392;
}

.yt-video {
    border: 5px solid #000 !important;
}

.fotoequipo {
    width: 100%;
    height: auto;
}


/* - - - ESTILOS PERIO - - - */

.popup-caso {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1000px;
    z-index: 9999999999999999999999999999999999999999 !important;
}

.popup-caso .contenedor-interior {
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden !important;
    position: relative;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.19);
    padding: 50px;
    flex-direction: column;
}

.contenido-popup span {
    text-align: left !important;
}

.popup-caso ul {
    list-style-type: initial !important;
    padding-left: 20px;
}

.popup-caso .cerrar {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.contenido-popup .nombre {
    font-size: 27px;
    line-height: 27px;
    padding-bottom: 10px;
    font-weight: 600 !important;
}

.contenido-popup .puesto {
    color: #7d7d7d !important;
    font-size: 20px;
    font-style: italic;
    display: block;
    line-height: 28px;
}

.contenido-popup .descripcion {
    font-size: 16px;
    padding-right: 60px;
    line-height: 26px;
}

.popup-caso .imagen {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.popup-caso .imagen img {
    width: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blur-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f4f4;
    opacity: 0.8;
    filter: blur(10px);
    z-index: 1;
}

.abrir-popup {
    cursor: pointer;
    transition: 0.4s;
}

.abrir-popup:hover {
    margin-top: -20px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.contenido-popup p,
.contenido-popup li {
    font-size: 1em;
}

.contenido-popup .tit-pop {
    font-size: 1.5em !important;
    font-weight: 800;
    margin-bottom: 10px !important;
}

.contenido-popup .subtit-pop {
    font-weight: 600;
    margin-top: 10px !important;
    font-size: 1.2em !important;
}

.img-case {
    width: 100%;
}

.c-case {
    border: 1px solid var(--first-color);
    opacity: 0;
}

.abrir-popup .btn-case-p {
    font-weight: 600;
    font-size: 1.2em;
    line-height: 1.2em;
    padding: 20px;
    transition: all 0.4s ease;
    color: var(--first-color);
    background-color: #fff;
    text-align: center;
}

.abrir-popup:hover .btn-case-p {
    transition: all 0.4s ease;
    color: #fff;
    background-color: var(--first-color);
}


/* FIN ESTILOS PERIO */

p.let-peq {
    font-size: 10px;
    color: #929292;
    padding: 0;
    line-height: 20px;
    text-align: right;
    height: 30px;
}

p.let-peq a {
    color: #929292;
    transition: all 0.4s ease;
    height: 30px;
}

p.let-peq a:hover {
    color: #000;
    transition: all 0.4s ease;
    cursor: url('../../images/arrow-cursor-hover.png'), auto !important;
    /*cursor: pointer !important;*/
}

.tabla {
    border: 1px solid var(--first-color);
}

.img-middle.s_mv {
    display: none;
}

.img-middle.s_deskt {
    display: block;
}

.col-grey .h_list {
    padding: 20px;
    margin-bottom: 2px;
    background-color: #9ea8b1;
    color: #fff;
}

.col-grey .b_list {
    padding: 20px;
    background-color: #f2f4f5;
}


/*-- estilos test --*/

.list_desc {
    opacity: 0;
}

.test-item {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    clear: both;
}

.test-item p,
.test-item input,
.test-item label {
    padding-top: 0px !important;
    /*float: left;*/
    display: inline;
    font-size: 1.3em;
    line-height: 1.3em;
}

.bloq-answ {
    margin: 30px 0px;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.bloq-answ.r_nothing {
    background-color: rgb(239 239 239);
}

.bloq-answ.r_high {
    background-color: #f2dede;
}

.bloq-answ.r_high h2 {
    color: #CC0000;
}

.bloq-answ.r_medium {
    background-color: #d9edf7;
    background-color: #fff6db;
}

.bloq-answ.r_medium h2 {
    color: #E3B93A;
}

.bloq-answ.r_low {
    background-color: #dff0d8;
}

.bloq-answ.r_low h2 {
    color: #6AA84F;
}

.bloq_button {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.btn_test {
    margin: 10px;
    padding: 20px;
    transition: all 0.4s ease;
    text-align: center;
    font-family: 'Poppins';
    text-transform: uppercase;
    min-width: 250px;
    border-radius: 0px;
    font-size: 1.3em;
    line-height: 1em;
}

.btn_test:hover {
    background-color: var(--fourth-color);
    box-shadow: 0 20px 30px rgb(0 0 0 / 15%);
    transition: all 0.4s ease;
    cursor: url(../images/arrow-cursor-hover.png), auto !important;
    cursor: -webkit-image-set(url(../images/arrow-cursor-hover.png) 1x, url(../images/arrow-cursor-hover.png) 2x), auto !important;
}

.btn_test.b_test {
    background-color: var(--first-color);
    color: #fff;
    border: 1px solid var(--first-color);
}

.btn_test.s_btn {
    background-color: #fff;
    color: var(--first-color);
    border: 1px solid var(--first-color);
}

.btn_test.s_btn:hover,
.btn_test.b_test:hover {
    background-color: var(--fourth-color);
    color: #fff;
    border: 1px solid var(--fourth-color);
}