@font-face {
    font-family: Muli;
    src: url('../fonts/GOTHIC.TTF') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Century Gothic, sans-serif;
    font-size: 18px;
}

:root {
    scroll-behavior: smooth;
}

.cita {
    background-color: rgba(228, 0, 125, 1);
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
}

.cita:hover {
    background-color: rgba(228, 0, 125, 0.822);
}

.img-slider {
    width: 100%;
    height: 95vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.menu-navegacion {
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 30vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease-in-out;
    transform: translate(110%);
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
    background-color: rgba(25, 154, 240, 1);
    z-index: 300;
}

.menu-navegacion li {
    list-style: none;
    text-align: center;
    margin: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    transform: translateX(200px);
    transition-delay: calc(.2s * var(--i));
}

.menu-navegacion a {
    color: #fff;
    font-size: 1.5em;
    letter-spacing: 4px;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    padding: 4px 10px;
    display: inline-block;
}

.menu-navegacion.spread li {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.menu-navegacion.spread a:hover {
    letter-spacing: 8px;
    text-transform: lowercase;
    background-color: rgba(25, 154, 240, .8);
    color: #fff;
}

.inicio {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 300;
    top: 10px;
    overflow: hidden;
}

.inicio .logo {
    max-width: 250px;
}

.aparecer {
    background-color: rgba(25, 154, 240, 0.8);
    padding: 5px 10px;
    color: #fff;
    display: flex;
    position: fixed;
    align-items: center;
    right: 15px;
    z-index: 100;
}

.aparecer img {
    width: 15px;
    margin-right: 5px;
    cursor: pointer;
}

.aparecer a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.spread {
    transform: translate(0);
}

.img-slider .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: circle(0% at 0 50%);
    z-index: 1;
}

.img-slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.img-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.img-slider .slide .info {
    position: absolute;
    top: 35%;
    text-transform: uppercase;
    color: #fff;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.img-slider .slide .info h3 {
    background-color: rgb(25, 154, 240);
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
    width: 100%;
}

.img-slider .slide .info h4 {
    background-color: rgb(1, 253, 240);
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 15px;
    width: 95%;
}

.img-slider .slide .info a {
    font-size: .7em;
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
    padding: 3px 10px;
    background-color: rgba(228, 0, 125, 1);
    display: block;
}

.img-slider .slide .info a:hover {
    background-color: rgba(228, 0, 125, 0.822);
}

.img-slider .slide .info img {
    width: 12px;
    height: 12px;
}

.img-slider .navigation {
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.img-slider .navigation .btn {
    background: rgb(211, 204, 204);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.img-slider .navigation .btn.active {
    background-color: #096beccb;
    box-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.acerca {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    justify-content: space-around;
    align-items: center;
}

.frase {
    text-decoration: none;
    display: inline-block;
    padding: 5px 20px;
    color: #000;
    font-size: .8em;
    position: absolute;
    top: 10px;
    left: 0;
    background: rgb(1, 253, 240);
    text-transform: uppercase;
    font-weight: 600;
    width: 30%;
    animation: linea 1s linear;
    text-align: left;
    transform: translate(-100%);
    transition: 1s;
}

.transicion {
    transform: translate(0);
}

.acerca .textos {
    width: 40%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

h2 {
    font-size: 3.5em;
    width: 100%;
    font-weight: 500;
    margin: 0;
    line-height: .9em;
    margin-bottom: 20px;
    color: rgb(32, 32, 32);
}

h2 span {
    font-size: 1.2em;
    font-weight: 700;
}

.acerca .textos .texto p {
    margin-bottom: 10px;
    font-size: 1em;
}

.acerca .imagen {
    width: 40%;
    text-align: center;
    transition: 3s;
}

.moverdentista {
    transform: translate(80px);
}

.acerca .imagen img {
    width: 40%;
}

.bubbles img {
    width: 55px;
    animation: bubble 7s linear infinite;
}

.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -70px;
}

@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateY(-80vh);
        opacity: 0;
    }
}

.bubbles img:nth-child(1) {
    animation-delay: 2s;
    width: 40px;
}

.bubbles img:nth-child(2) {
    animation-delay: 1s;
}

.bubbles img:nth-child(3) {
    animation-delay: 3s;
    width: 40px;
}

.bubbles img:nth-child(4) {
    animation-delay: 4.5s;
    width: 35px;
}

.bubbles img:nth-child(5) {
    animation-delay: 3s;
}

.bubbles img:nth-child(6) {
    animation-delay: 6s;
    width: 45px;
}

.bubbles img:nth-child(7) {
    animation-delay: 7s;
    width: 55px;
}

.eficacia {
    width: 100%;
    background-attachment: fixed;
    background-color: rgb(31, 111, 231);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transition: 2s;
}

.moverimagen {
    opacity: 1;
}

.eficacia .imagen {
    width: 45%;
    height: 110%;
    position: absolute;
    top: -5%;
    left: 50%;
    z-index: 1;
    background-image: url(../img/pexels.jpg);
    background-size: cover;
    background-position: center;
}

.eficacia h2 {
    font-size: 2.5em;
    color: #fff;
    width: 50%;
    padding: 0 20px;
}

.tratamientos {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 0;
}

.tratamientos h2 {
    text-align: center;
}

.tratamientos .tratamiento {
    position: relative;
    max-width: 48%;
    height: 350px;
    background-color: #fff;
    margin-top: 80px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 202px rgba(0, 0, 0, .5);
    transition: .3s ease-in-out;
}

#tratamiento1:hover .imagen img {
    content: url("../img/1.2.png");
}

#tratamiento2:hover .imagen img {
    content: url("../img/2.2.png");
}

#tratamiento3:hover .imagen img {
    content: url("../img/3.2.png");
}

#tratamiento4:hover .imagen img {
    content: url("../img/4.2.png");
}

#tratamiento5:hover .imagen img {
    content: url("../img/5.2.png");
}

#tratamiento6:hover .imagen img {
    content: url("../img/6.2.png");
}

#tratamiento7:hover .imagen img {
    content: url("../img/7.2.png");
}

#tratamiento8:hover .imagen img {
    content: url("../img/8.2.png");
}

#tratamiento9:hover .imagen img {
    content: url("../img/9.2.png");
}

#tratamiento10:hover .imagen img {
    content: url("../img/10.2.png");
}

#tratamiento11:hover .imagen img {
    content: url("../img/11.2.png");
}

#tratamiento12:hover .imagen img {
    content: url("../img/12.2.png");
}

.tratamientos .tratamiento:hover {
    cursor: pointer;
}

.tratamiento.alto {
    height: 500px;
}

.tratamiento.alto1 {
    height: 1250px;
}

.tratamiento.alto2 {
    height: 1180px;
}

.tratamiento.alto3 {
    height: 1080px;
}

.tratamiento.alto4 {
    height: 900px;
}

.tratamiento.alto5 {
    height: 1050px;
}

.tratamiento.alto6 {
    height: 1400px;
}

.tratamiento.alto7 {
    height: 1330px;
}

.tratamiento.alto8 {
    height: 830px;
}

.tratamiento.alto9 {
    height: 1000px;
}

.tratamiento.alto10 {
    height: 1650px;
}

.tratamiento.alto11 {
    height: 1120px;
}

.tratamiento.alto12 {
    height: 700px;
}

.tratamientos .tratamiento .imagen {
    position: relative;
    width: 100%;
    height: 350px;
    top: -60px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .5);
    text-align: center;
}

.tratamientos .tratamiento .imagen img {
    width: 100%;
    margin-bottom: 20px;
    height: 270px;
    object-fit: cover;
}

.tratamientos .tratamiento .imagen h2 {
    font-size: 1.3em;
    font-weight: 600;
    color: rgb(53, 53, 53);
}

.tratamientos .tratamiento .contenido {
    position: relative;
    margin-top: -140px;
    padding: 10px 0px;
    text-align: left;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
    font-size: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: hidden;
}

.tratamientos .tratamiento .contenido p {
    line-height: 1em;
}

.tratamientos .tratamiento .contenido img {
    width: 90%;
    margin: 15px 0;
    max-height: 300px;
    object-fit: cover;
}

.tratamientos .tratamiento .contenido.visible {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: .3s;
}

.covid {
    background-attachment: fixed;
    width: 100%;
    background: #026dfa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.covid .linea {
    width: 80%;
    height: 23px;
    position: absolute;
    background-color: rgba(228, 0, 125, 0.863);
    padding: 0 20px;
    color: #fff;
}

.derecha {
    bottom: 10px;
    right: 0;
    text-align: right;
}

.izquierda {
    top: 10px;
    left: 0;
}

.covid .primerseccion {
    width: 40%;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 20px;
}

.covid .primerseccion .textos h2 {
    font-size: 2.5em;
    color: #fff;
}

.covid .primerseccion .textos p {
    font-size: 1.5em;
    font-weight: 300;
}

.covid .primerseccion .line {
    width: 7px;
    height: 200px;
    background-color: #1ee0c6;
    margin: 0 13px;
}

.covid .segundaseccion {
    width: 60%;
    color: white;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    text-align: justify;
}

.covid .segundaseccion p {
    margin-bottom: 10px;
}

.covid .segundaseccion a {
    color: #fff;
}

.obten {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    justify-content: space-around;
    padding: 60px 0;
}

.obten video {
    width: 50%;
}

.obten .textos {
    width: 30%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.obten .textos .texto p {
    font-size: 1em;
}

.container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 0;
}

.container .box {
    position: relative;
    width: 24%;
    height: 320px;
    background-color: #fff;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, .5);
    overflow: hidden;
}

.container .box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s;
    transform: scale(1) translateY(0);
}

.container .box:hover .imgBx {
    transform: scale(1) translateY(-100%);
}

.container .box .imgBx img {
    max-width: 70px;
    margin-bottom: 10px;
}

.container .box .imgBx h3 {
    text-align: center
}

.container .box .content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s;
    background: rgb(228, 0, 125);
    text-align: center;
    transform: scale(1) translateY(97%);
    color: #fff;
}

.container .box:hover .content {
    transform: scale(1);
}

.container .box:nth-child(2) .content {
    background-color: rgb(25, 154, 240);
}

.container .box:nth-child(3) .content {
    background-color: rgb(31, 111, 231);
}

.container .box .content .icon img {
    max-width: 70px;
    filter: invert(1);
}

.container .box .content .icon p {
    color: #fff;
    font-size: 1em;
}

.galeria {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: space-around;
}

.galeria h2 {
    text-align: center;
}

.wrapper,
.wrapper1 {
    height: 300px;
    width: 40vw;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.wrapper .images,
.wrapper1 .images1 {
    height: 100%;
    width: 100%;
    display: flex;
}

.wrapper .images .img-1 {
    height: 100%;
    width: 100%;
    background: url(../img/imagen1.jpg) no-repeat;
    object-fit: cover;
    background-size: cover;
}

.wrapper1 .images1 .img-3 {
    height: 100%;
    width: 100%;
    background: url(../img/imagengaleriaantes.jpg) no-repeat;
    object-fit: cover;
    background-size: cover;
}

.wrapper .images .img-2 {
    position: absolute;
    height: 100%;
    width: 50%;
    background: url(../img/imagen2.jpg) no-repeat;
    object-fit: cover;
    background-size: cover;
}

.wrapper1 .images1 .img-4 {
    position: absolute;
    height: 100%;
    width: 50%;
    background: url(../img/imagengaleriadespues.jpg) no-repeat;
    object-fit: cover;
    background-size: cover;
}

.wrapper .slider,
.wrapper1 .slider1 {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

.wrapper .slider input,
.wrapper1 .slider1 input {
    width: 100%;
    outline: none;
    background: none;
    appearance: none;
}

.slider input::-webkit-slider-thumb,
.slider1 input::-webkit-slider-thumb {
    height: 300px;
    width: 3px;
    background: none;
    appearance: none;
    cursor: col-resize;
}

.slider .drag-line,
.slider1 .drag-line1 {
    width: 3px;
    height: 300px;
    position: absolute;
    left: 49.85%;
    pointer-events: none;
}

.slider .drag-line::before,
.slider .drag-line::after,
.slider1 .drag-line1::before,
.slider1 .drag-line1::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 222px;
    background: #fff;
}

.slider .drag-line::before,
.slider1 .drag-line1::before {
    top: 0;
}

.slider .drag-line::after,
.slider1 .drag-line1::after {
    bottom: 0;
}

.slider .drag-line span,
.slider1 .drag-line1 span {
    height: 42px;
    width: 42px;
    border: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.slider .drag-line span::before,
.slider .drag-line span::after,
.slider1 .drag-line1 span::before,
.slider1 .drag-line1 span::after {
    position: absolute;
    content: "";
    top: 50%;
    border: 10px solid transparent;
    border-bottom-width: 0px;
    border-right-width: 0px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.slider .drag-line span::before,
.slider1 .drag-line1 span::before {
    left: 40%;
    border-left-color: #fff;
}

.slider .drag-line span::after,
.slider1 .drag-line1 span::after {
    left: 60%;
    border-top-color: #fff;
}

.mapa {
    width: 100%;
    height: 350px;
}

.mapa iframe {
    width: 100%;
    height: 100%;
}

.pagos {
    width: 100%;
    position: relative;
    background-color: rgb(25, 154, 240);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    padding: 20px 20px;
}

.pagos h2 {
    width: 40%;
    color: #fff;
}

.pagos .factura {
    font-size: 1.2em;
    font-weight: 600;
}

.pagos p {
    font-size: 1em;
    display: inline-block;
    width: 30%;
}

.pagos .facturo {
    width: 20%;
    max-width: 120px;
    margin-top: 10px;
}

.pagos .imagenes .imagen img {
    max-width: 80px;
    margin-bottom: 20px;
}

.pagos .imagenes .imagen {
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.pagos .imagenes {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: rgb(248, 248, 248);
    position: absolute;
    top: -5%;
    right: 0;
    height: 105%;
    width: 70%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    text-align: center;
    padding-left: 50px;
    z-index: 2;
}

.appWhatsapp {
    position: fixed;
    right: 0;
    bottom: 15px;
    width: 150px;
    z-index: 100;
    text-decoration: none;
    text-align: center;
}

.appWhatsapp p {
    color: rgb(15, 125, 228);
    background-color: rgba(255, 255, 255, 0.808);
    font-weight: 700;
    margin-bottom: 10px;
}

.appWhatsapp img {
    width: 70px;
    height: auto;
}

footer {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    background-color: rgb(88, 86, 86);
    color: #fff;
    justify-content: space-around;
    align-items: center;
}

footer .textos {
    width: 90%;
    display: flex;
    padding: 20px 0;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer .line {
    width: 15%;
    height: 3px;
    background-color: #fff;
    margin: 15px 0;
}

footer .derechos {
    padding: 5px 0;
    text-align: center;
}

footer .textos h3 {
    font-size: 1em;
}

footer .textos .links,
footer .textos .contacto {
    width: 25%;
}

footer .textos .horarios {
    width: 50%;
    display: flex;
    align-items: center;
}

footer .textos .horarios .contenido {
    width: 80%;
    text-align: center;
}

footer .textos .horarios .contenido img {
    width: 50%;
    margin-bottom: 10px;
}

footer .texto img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

footer .texto {
    display: flex;
}

footer .links {
    display: flex;
    flex-direction: column;
}

.facebook {
    display: flex;
}

.facebook img {
    width: 20px;
    height: 20px;
}

.facebook a p {
    font-size: 1em;
}

.textos a {
    margin-bottom: 8px;
    text-decoration: none;
    color: #fff;
    font-size: .9em;
}

.textos p {
    margin-bottom: 10px;
    font-size: .8em;
}

@media screen and (max-width: 1050px) {
    .acerca {
        padding-top: 80px;
    }
    .tratamientos {
        padding-top: 80px;
    }
    .covid {
        padding-top: 80px;
    }
    .obten {
        padding-top: 80px;
    }
    .galeria {
        padding-top: 80px;
    }
}

@media screen and (max-width: 900px) {
    h2 {
        text-align: center;
    }
    .frase {
        width: 50%;
        text-align: center;
    }
    .acerca .textos {
        width: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
    }
    .menu-navegacion {
        width: 50%;
    }
    .acerca .imagen {
        width: 100%;
    }
    .tratamientos .tratamiento {
        max-width: 49%;
    }
    .tratamiento.alto1 {
        height: 1370px;
    }
    .tratamiento.alto2 {
        height: 1300px;
    }
    .tratamiento.alto3 {
        height: 1150px;
    }
    .tratamiento.alto6 {
        height: 1570px;
    }
    .tratamiento.alto7 {
        height: 1450px;
    }
    .tratamiento.alto10 {
        height: 1950px;
    }
    .tratamiento.alto11 {
        height: 1150px;
    }
    .covid .primerseccion {
        width: 90%;
        margin-bottom: 25px;
    }
    .covid .segundaseccion {
        width: 90%;
        text-align: left;
    }
    .obten video {
        width: 90%;
        margin: 0 auto;
    }
    .obten .textos {
        width: 90%;
        margin-bottom: 20px;
    }
    .container .box {
        width: 40%;
        margin-top: 20px;
    }
    .wrapper,
    .wrapper1 {
        width: 70vw;
        margin-bottom: 20px;
    }
    footer .textos .horarios,
    footer .textos .links,
    footer .textos .contacto {
        width: 33%;
    }
    footer .textos .horarios .contenido img {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    * {
        font-size: 16px;
    }
    h2 {
        font-size: 3em;
    }
    .pagos {
        padding: 20px 20px;
    }
    .frase {
        width: 80%;
        top: 20px;
    }
    .inicio .logo {
        max-width: 170px;
    }
    .acerca .textos .texto h2 {
        font-size: 3em;
    }
    .menu-navegacion {
        width: 75%;
    }
    .tratamientos .tratamiento {
        max-width: 90%;
    }
    .tratamientos .tratamiento .contenido img {
        /* max-width: 90%;
        margin: 15px 0;
        max-height: 270px; */
        max-height: 300px;
        object-fit: cover;
    }
    .tratamiento.alto1 {
        height: 1280px;
    }
    .tratamiento.alto2 {
        height: 1230px;
    }
    .tratamiento.alto3 {
        height: 1085px;
    }
    .tratamiento.alto4 {
        height: 870px;
    }
    .tratamiento.alto5 {
        height: 970px;
    }
    .tratamiento.alto6 {
        height: 1440px;
    }
    .tratamiento.alto7 {
        height: 1400px;
    }
    .tratamiento.alto8 {
        height: 770px;
    }
    .tratamiento.alto9 {
        height: 970px;
    }
    .tratamiento.alto10 {
        height: 1750px;
    }
    .tratamiento.alto11 {
        height: 1090px;
    }
    .tratamiento.alto12 {
        height: 700px;
    }
    .img-slider .slide .info {
        width: 95%;
    }
    .img-slider .slide .info h3 {
        font-weight: 500;
        font-size: 2.5em;
    }
    .obten .textos {
        width: 100%;
    }
    .container .box {
        width: 80%;
    }
    .covid .primerseccion {
        padding: 0;
    }
    .covid .segundaseccion {
        padding: 0;
    }
    .covid .linea {
        width: 100%;
        text-align: center;
    }
    .pagos {
        padding: 20px 10px;
    }
    .pagos h2 {
        width: 50%;
    }
    .pagos p {
        width: 50%;
    }
    .pagos .imagenes {
        width: 50%;
        padding-left: 20px;
    }
    .pagos .imagenes .imagen {
        width: 100%;
    }
    .pagos .imagenes .imagen img {
        max-width: 50px;
    }
    .wrapper,
    .wrapper1 {
        width: 90vw;
        margin-bottom: 20px;
    }
    footer .textos .horarios,
    footer .textos .links,
    footer .textos .contacto {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 25px;
    }
    footer .textos .horarios .contenido img {
        width: 60%;
    }
    footer .texto {
        justify-content: center;
    }
    footer .line {
        margin: 15px auto;
    }
    .facebook {
        justify-content: center;
    }
}

@media screen and (max-width: 355px) {
    .derecha {
        display: none;
    }
}