/* ======================= Tipografias ============================ */

/* Oleo Script */
@font-face {
    font-family: "Oleo Script";
    src: url(../fonts/Fasthand\,Oleo_Script\,Open_Sans/Oleo_Script/OleoScript-Regular.ttf) format('truetype');
}

/* Ubuntu */
@font-face {
    font-family: Ubuntu;
    src: url(../fonts/Ubuntu/Ubuntu-Regular.ttf) format('truetype');
}

/* NT Wagner */
@font-face {
    font-family: "NTWagner";
    src: url(../fonts/nt_wagner/NTWagner.otf);
}

/* Poppins */
/* Poppins Light */
@font-face {
    font-family: "PoppinsLight";
    src: url(../fonts/Poppins/Poppins-Light.ttf);
}
/* Poppins Bold */
@font-face {
    font-family: "PoppinsBold";
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

/* Roboto Light */
@font-face {
    font-family: "Roboto";
    src: url(../fonts/Roboto/Roboto-Light.ttf);
}
/* Roboto Bold */
@font-face {
    font-family: "RobotoBold";
    src: url(../fonts/Roboto/Roboto-Bold.ttf);
}
/* Roboto Thin */
@font-face {
    font-family: "RobotoThin";
    src: url(../fonts/Roboto/Roboto-Thin.ttf);
}

/* ======================= Paleta de colores, letras, tamaños ============================ */

:root {
    --VerdeClaro1: #46B79A;
    --VerdeClaro2: #7EC6AF;
    --VerdeFuerte1: #0F6930;
    --VerdeFuerte2: #047B3B;
    --ColorOscuro: #1A1D25;
    --ColorBlanco: #F6F6F6;
    --ColorBlancoOscuro: #E6E6E6;
    --colorClose: #b54444;
    --OleoScript: "Oleo Script";
    --Ubuntu: Ubuntu;
    --NTWagner: "NTWagner";
    --PoppinsLight: "PoppinsLight";
    --PoppinsBold: "PoppinsBold";
    --RobotoLight: "Roboto";
    --RobotoBold: "RobotoBold";
    --RobotoThin: "RobotoThin";
    --lowText_font_size: 16px;
    --text_size_title: 40px;
    --text_title_card: 24px;
    --text_title_cardv2: 20px;
    --text_paragraph: 16px;
    --boxSadow: 0px 10px 20px rgba(43, 52, 69, 0.1);
    --CardColor: #1A1D25;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Poppins-Regular, sans-serif;
}
html,body{
    /* scroll es para hacer las animaciones de ir de marcador en marcador */
    scroll-behavior: smooth;
    background-color: #F4F4F4;
}
img {
    margin: auto;
    max-width: 100%;
    display: block;
}
/* ======================= Inicio/Navbar ============================ */

.header {
    width: 100%;
    height: 100px;
    /* Para fijar el header */
    position: fixed;
    z-index: 1000;
    transition: all 300ms;
}
.contenedor {
    /* max-width para pc */
    max-width: 1200px;
    /* Para telefono */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/* Contenedor del logo */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.logo img {
    width: 200px;
}

/* Portada de inicio */
.container__cover {
    padding-top: 100px;
    /* background: rgba(126, 198, 175, 0.49); */
    height: 100vh;
}
@media(max-width: 820px){
    .container__cover{
        padding-top: 30px;
        height: 60vh;
    }
}

/* Subclase de container__cover */
.cover {
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 55px 20px;
}

.text__cover {
    width: 100%;
    /* padding-right: 50px; */
}

/* Texto de Bienvenido a */
.h1 {
    font-size: 80px;
    color: var(--VerdeFuerte2);
    font-family: var(--OleoScript);
}

/* Texto de Consultorios */
.h2 {
    font-size: 40px;
    font-family: var(--NTWagner);
}

/* Fiel Amigo */
.h4 {
    font-size: 55px;
    color: var(--VerdeClaro1);
    font-family: var(--OleoScript);
}
/* Diseño de parrafo */
.paragraph__cover {
    margin: 30px 10px;
    width: 85%;
    padding: 30px 30px;
    background-color: var(--CardColor);
    color: var(--ColorBlanco);
    border-radius: 10px;
    font-size: 15px;

}
/* Imagen principal */
.img__cover {
    width: 100%;
}

/* La imagen que esta dentr0 del cotenedor */
.img__cover img {
    width: 550px;
}

/* ======================= Subrayado and scrollbar ============================ */
::selection {
    color: var(--ColorBlanco);
    background-color: var(--VerdeClaro1);
}

::-webkit-scrollbar {
    width: 9px;
}
::-webkit-scrollbar-thumb{
    background: var(--VerdeClaro1);
    border-radius: 50px;
    transition: all 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: #3ea58c;
}

/* ======================= Acerca de ============================ */

/* Estilos CARDS --- Acerca de */
.container__card-primary {
    padding: 40px 0 50px 0;
}
/* subclase de la clase padre */
.card__primary {
    max-width: 1200px;
    margin: auto;
    /* Centramos el texto */
    text-align: center;
    padding: 0px 20px;
}
.text__card-primary {
    max-width: 800px;
    margin: auto;
}
/* Color del titulo Acerca de */
.text__card-primary {
    color: var(--VerdeClaro1);
    letter-spacing: 4px;
    font-size: 1.1em;
    font-weight: 500;
}
.about__title {
    font-family: var(--OleoScript);
}
/* Estilos de cartas */
.container__box-card-primary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
/* Efecto en las cartas */
.box__card-primary {
    /* Para distanciar las cards de una de la otra */
    max-width: 270px;
    padding: 30px 20px;
    border: 1px solid var(--ColorBlancoOscuro);
    border-radius: 20px;
    margin: 10px;
    transition: all 300ms;
}
/* Animacion de la card */
.box__card-primary:hover {
    border: 1px solid transparent;
    box-shadow: var(--boxSadow);
}
.box__card-primary h3 {
    font-size: 20px;
    margin-top: 40px;
    font-weight: 700;
}
.paragraph {
    margin-top: 20px;
}
.tetxFA {
    font-family: var(--OleoScript);
    font-weight: 500;
    font-size: 18px;
}
/* Iconos de Servicios */
.card__about i {
    font-size: 35px;
    color: #46B79A;
}
@media(max-width: 380px){
    .box__card-primary h3{
        font-size: 18px;
    }
    .paragraph{
        font-size: 14.5px;
    }
    .text__offices{
        text-align: center;
    }
}

/* ======================= Consultorios ============================ */
.container__offices {
    padding: 30px 0px;
    background-color: var(--CardColor);
    margin-top: 50px;
    justify-content: center;
    box-shadow: 2px 2px 8px var(--CardColor);
    border-radius: 10px;
}
/* Caja */
.offices {
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
}
.text__offices {
    width: 100%;
    padding-right: 40px;
}
.offices__title {
    color: var(--VerdeClaro1);
    font-weight: 700;
    font-family: var(--NTWagner);
}
.paragraph__offices {
    font-size: 15px;
    color: var(--ColorBlanco);
    margin-top: 40px;
}
.image__about {
    width: 30%;
    display: flex;
}
/* Botones de Consultorios */
.btn__text-offices {
    display: inline-block;
    width: 150px;
    margin-top: 40px;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid;
    border-image-source: linear-gradient(134.4deg, rgba(255, 255, 255, 0.2) 7.51%, rgba(0, 0, 0, 0.2) 56.43%, rgba(0, 0, 0, 0.2) 65.43%);
    background: linear-gradient(169.98deg, #353F54 27.98%, #222834 81.2%),
    linear-gradient(134.4deg, rgba(255, 255, 255, 0.2) 7.51%, rgba(0, 0, 0, 0.2) 56.43%, rgba(0, 0, 0, 0.2) 65.43%);    
    color: var(--ColorBlanco);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 300ms;
    box-shadow: 0px -20px 30px 0px #2B344580;

}
.btn-text {
    text-align: center;
}
.btn__text-offices:hover {
    border: 2px solid var(--VerdeClaro2);
    color: var(--VerdeClaro2);
    box-shadow: 0px 20px 30px 0px #10141C;
    box-shadow: 0px -20px 30px 0px #2B344580;
}
.image__cover {
    width: 500px;
    margin: auto;
}

/* ====================== Modos Responsivos ======================== */
@media (max-width: 820px){
    .container__header,
    main{
        padding: 20px;
    }
    .logo {
        width: 45%;
    }
    .h1 {
        font-size: 30px;
    }
    .h2 {
        font-size: 20px;
    }
    .h4 {
        font-size: 30px; 
    }
    .image__cover {
        width: 300px;
    }
    .container__box-su{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .box-su .h4-su{
        font-size: 13px;
    }
    .pie-pagina .grupo-1 .box figure img{
        width: 170px;
    }
} 
@media (max-width: 730px) {
    .image__cover {
        display: none;
    }
    .paragraph__cover {
        width: 95%;
        font-size: 13px;
    }
    .offices__title{
        font-size: 26px;
    }
    .text__offices{
        width: 100%;
        font-size: 13px;
        padding-right: 0px;
        align-items: center;
    }
    .paragraph__offices {
        font-size: 14px;
    }
    .image__about {
        display: none;
    }
    .swiper-hero img {
        width: 100%;
        object-fit: cover;
    }
    .p_fo{
        font-size: 14;
    }
    .red-social{
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 400px){
    .swiper-hero{
        width: 100%;
        object-fit: cover;
    }
    .swiper-hero .swiper-button-prev,
    .swiper-hero .swiper-button-next {
        display: none;
    }
}
@media (max-width: 360px) {
    .container__box-su{
        width: 100%;
        text-align: center;
    }
}
/* News FAQs */
.container-faqs {
    padding-top: 70px;
}
.contaier-fluids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 3rem;
}
.subtitle__questions {
    color: var(--VerdeClaro1);
}
.h2-faqs {
    color: var(--VerdeFuerte1);
    position: relative;
    width: 23rem;
    font-family: var(--OleoScript);
    font-size: 30px;
    letter-spacing: 0.10em;
    margin: 20px 0;
}
.h2-faqs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 67px;
    height: 2px;
    background-color: var(--VerdeFuerte1);
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.3);
}
.accordiones {
    padding: 20px;
}
.h2-acc {
    color: var(--VerdeClaro1);
    margin-bottom: 30px;
    font-size: 30px;
    font-family: var(--NTWagner);
}
.accordion {
    width: 100%;
    padding: 10px 5px;
    border: 1px solid var(--VerdeClaro1);
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    margin: 10px 0;
    align-items: center;
}
.icon-faqs {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(/Assets/images/uploads/toggle-bg.png) no-repeat 8px 7px var(--VerdeClaro2);
    border-radius: 50%;
    float: left;
    transition: all .3s ease-in;
}
.h5-faqs {
    font-size: 16px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: var(--ColorOscuro);
    font-family: var(--RobotoLight);
    transition: all 0.25s ease-in;
}
.active .icon-faqs {
    background: url(/Assets/images/uploads/toggle-bg.png) no-repeat 8px -25px var(--ColorBlanco);
}
.active{
    background-color: var(--VerdeClaro2);
    color: var(--ColorBlanco);
}
.active .h5-faqs {
    color: var(--ColorBlanco);
    font-family: var(--RobotoBold);
}
.panel {
    padding: 0 15px;
    border-left: 1px solid var(--VerdeClaro2);
    margin-left: 25px;
    font-size: 14px;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: all .25s ease-in;
}
@media(max-width: 820px) {
    .contaier-fluids {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .h2-faqs{
        width: 100%;
    }
    .h5-faqs{
        width: 100%;
        font-size: 13px;
    }
    .icon-faqs {
        width: 22px;
        height: 20px;
        background: url(/Assets/images/uploads/toggle-bg.png) no-repeat 5px 5px var(--VerdeClaro2);
        background-size: 10px;
        float: left;
    }
    .active .icon-faqs {
        background: url(/Assets/images/uploads/toggle-bg.png) no-repeat 4px -17px var(--ColorBlanco);
        background-size: 10px;
    }
    
}
/*======== Newsletter =========*/
.newsletter{
    padding-top: 100px;
}
.logo-content-nw{
    width: 50px;
}
.newsletter .section-description {
    font-family: var(--RobotoLight);
    font-size: 15px;
    color: var(--ColorOscuro);
}
.newsletter-container{
    display: grid;
    justify-items: center;
    text-align: center;
    row-gap: 3rem;
}
.newsletter-inputBox {
    position: relative;
    height: 3rem;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}
.newsletter-input {
    height: 100%;
    width: 100%;
    border-radius: 3rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 0 7rem 0 2rem;
}
.newsletter-button {
    color: var(--ColorBlanco);
    padding: 15px;
    background-color: var(--VerdeClaro1);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 10rem 10rem 0;
}

/* ======================= Footer ============================ */
.footer {
    margin-top: 100px;
    padding: 30px;
    background-color: #DBEEE7;
}
.footer .content-description,
.footer .map-icon,
.footer .location-text {
    color: #333;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 5rem;
    align-items: center;
}
.footer-content {
    display: grid;
    row-gap: 2.5rem;
}
.flex {
    display: flex;
    align-items: center;
}
.footer .content-description,
.footer .location-text{
    text-align: left;
    font-size: 15px;
}
.location-text {
    margin-left: 20px;
}
.content-description {
    margin-left: 15px;
}
.logo-content img {
    width: 170px;
}
.footer-redes {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}
.redes {
    font-size: 15px;
    padding: 8px;
    background-color: #1a1d2595;
    color: var(--ColorBlanco);
    transition: all 300ms;
    border-radius: 4px;
}
.redes:hover {
    background-color: #1A1D25;
}
.footer .map-icon {
    font-size: 1.5rem;
    margin-left: 1rem;
}
.footer-links {
    row-gap: 1rem;
    display: grid;
    font-weight: 500;
    color: var(--ColorOscuro);
}
.footer-link {
    font-size: 15px;
    color: rgb(51, 51, 51);
    transition: all 300ms;
}
.footerLinks-title {
    color: var(--VerdeFuerte1);
    font-size: 22px;
    font-family: var(--NTWagner);
}
.footer-link:hover {
    color: rgba(51, 51, 51, 0.7);
}
.footer-linkContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: end;
}
/* =========== Footer/Responsivo ============ */
@media (max-width:820px){
    .footer-container{
        column-gap: 1.5rem;
    }
    .footer{
        margin-top: 50px;
    }
}
@media (max-width: 660px){
    .footer-container{
        grid-template-columns: 1fr;
        row-gap: 3.5rem;
    }
    .footer-content{
        justify-items: center;
    }
    .footer-linkContent{
        justify-items: center;
    }
    .logo-content{
        width: 130px;
    }
}
@media (max-width: 512px){
    .footer-linkContent{
        grid-template-columns: 2fr 1fr;
        column-gap: 50px;
    }
    .footerLinks-title{
        font-size: 20px;
    }
}
/* ============ Carrusel de Promociones (Swiper Js) ============= */
.swiper-hero {
    width: 100%;
    /* height: 400px; */
    max-width: 1200px;
    margin: 80px;
    z-index: 1;
}
@media(max-width: 820px){
    .swiper-hero{
        margin: 50px;
    }
}
.swiper-hero img {
    /* height: 340px; */
    width: 100%;
    object-fit: cover;
}
.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next{
    background-color: var(--ColorBlanco);
    color: var(--VerdeFuerte1);
    --swiper-navigation-size: 25px;
    height: 50px;
    width: 40px;
    margin-top: -35px;

    opacity: 0;
    transition: opacity 0.3s;
}
.swiper-hero .swiper-button-prev{
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
    border-radius: 40%;
}
.swiper-hero .swiper-button-next {
    border-radius: 40%;
    box-shadow: -7px 6px 6px rgba(0, 0, 0, 0.25);
}
.swiper-hero:hover .swiper-button-prev,
.swiper-hero:hover .swiper-button-next {
    opacity: 1;
}
.swiper-hero .swiper-pagination {
    --swiper-pagination-color: #F6F6F6;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-inactive-color: #1A1D25;
    --swiper-pagination-bullet-inactive-opacity: 0.25;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 2px;
}
.swiper-hero .swiper-pagination-bullet {
    box-shadow: inset 0 0 0 1px var(--ColorBlanco);
}
.swiper-hero .swiper-pagination-bullet-active {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.swiper-slide img{
    object-fit: cover;   
}
/* Modos responsivos de sliders */
@media(max-width: 920px){
    .swiper-slide{
        object-fit: contain;   
    }
}
/* =============== Vista | Sucursal ================== */
/* Grid de imagenes de sucursal */
.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: var(--VerdeClaro1);
    border-radius: 5px;
    /* transition: transform 0.3s ease-in-out; */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.grid-item:hover {
    filter: opacity(0.9);
    /* transform: scale(1.01); */
}
/* Galeria de imagenes e informacion */
.grid-container{
    /* padding-top: 100px; */
    display: grid;
    /* Sirve para dar el tamaño y posicion del grid */
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 20px; 
    /* dense evita que hayan espacios en blancos que se generan en grid */
    grid-auto-flow: dense;
}
.item1 {
    grid-column: 1 / span 2;
}
.wide {
    grid-column: span 2;
}
.tall {
    grid-row: span 2;
}
@media (max-width: 820px) {
    .wide {
        grid-column: span 3;
    }
    .tall {
        grid-row: span 2;
    }
    .grid-container {
        padding-top: 0px;
    } 
}
@media (max-width: 540px) {
    .wide {
        grid-column: span 2;
    }
    .tall {
        grid-row: span 2;
    }
}
/* Portada de inicio */
.container__cover-su {
    padding-top: 50px;
    /* background: rgba(126, 198, 175, 0.49); */
}
/* Titulo sobre la sucursal */
/* Subclase de container__cover */
.cover-su {
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.text__cover-su {
    width: 100%;
    /* padding-right: 50px; */
}

/* Texto de Bienvenido a */
.h1-su {
    font-size: 50px;
    color: var(--VerdeFuerte2);
    font-family: var(--OleoScript);
}

/* Texto de Consultorios */
.h2-su {
    font-size: 30px;
    font-family: var(--NTWagner);
}

/* Fiel Amigo */
.h4-su {
    font-size: 14px;
    color: var(--VerdeFuerte2);
    font-family: var(--PoppinsLight);
}
/* Diseño de parrafo */
.paragraph__cover-su {
    margin: auto;
    width: 100%;
    padding: 20px 0px;
    color: var(--ColorOscuro);
    font-size: 15px;
}
/* Linea separadora: hr */
hr {
    color: #709571;
    border: solid 1px;
    width: 40%;
    margin: 0 40px;
}
.h1-services {
    font-size: 40px;
    font-family: var(--NTWagner);
    color: var(--VerdeFuerte2);
}
@media (max-width: 820px) {
    hr {
        margin: auto;
        width: 100%;
    }
}
/* Servicios Sucursales */
.cartas {
    padding: 50px 0;
}
.h3-ser {
    color: var(--VerdeFuerte1);
    font-size: 35px;
    font-family: var(--NTWagner);
}
.grid-services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 2rem;
    padding: 40px 0;
}
.cards-ser {
    padding: 20px;
    border-left: 20px solid var(--VerdeClaro1);
    text-align: center;
    border-radius: 4px;
    width: 100%;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}
.cards-ser:hover {
    box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.20);
}
.grid-ser {
    padding: 10px 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid-components {
    text-align: left;
    font-size: 14px;
    font-family: var(--RobotoLight);
    font-weight: 700;
}
.circle-line {
    color: var(--VerdeFuerte1);
    font-size: 4px;
    padding-right: 3px;
}
.title-services {
    font-size: 20px;
    padding: 20px 0;
    color: var(--VerdeClaro1);
    font-family: var(--OleoScript);
    font-weight: 100;
}
@media (max-width: 820px){
    .grid-services-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-components {
        font-size: 12px;
    }
    .cards-ser {
        padding: 8px;
        border-left: 13px solid var(--VerdeClaro1);
    }
    .grid-ser{
        gap: 20px;
    }
}
/* Accordiones de Sucursales */
.accordion-sucursal{
    margin: 100px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    background-color: #C7D3C5;
    padding: 50px 60px 50px 60px;
    width: 100%;
    justify-content: space-between;
}
.accordion-sucursal,
.image-box{
    width: 83%;
    height: 300px;
}
.accordion-sucursal,
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.accordion-text-s {
    width: 80%;
}
.title-ass-s {
    color: #467E4F;
    font-size: 35px;
    font-family: var(--OleoScript);
    font-weight: 100;
}
.faq-text-s {
    margin-top: 40px;
    height: 300px;
    overflow-y: auto;
}
.faq-text-s::-webkit-scrollbar{
    display: none;
}
.accordion-sucursal .accordion-text-s li {
    list-style: none;
    cursor: pointer;
}
.questions-arrow {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.line {
    display: block;
    height: 2px;
    width: 100%;
    margin: 10px 0;
    background-color: #98AF96;
}
.arrow-down {
    color: #709571;
    transition: all 300ms; 
}
.questions-s {
    color: #709571;
    font-family: var(--RobotoBold);
    font-size: 17px;
}
.questions-s:hover,
.arrow-down:hover {
    color: #547155;
} 
.p-questions-services {
    padding: 0 25px;
    margin-left: 25px;
    border-left: 2px solid #709571;
    width: 92%;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--RobotoLight);
    color: var(--ColorOscuro);
    display: none;
}
li.showAnswer .p-questions-services {
    display: block;
}
li.showAnswer .questions-arrow .questions-s,
li.showAnswer .questions-arrow .arrow-down{
    color: #547155;
}
li.showAnswer .questions-arrow .arrow-down {
    transform: rotate(-180deg);
}
@media(max-width: 820px){
    .accordion-sucursal{
        grid-template-columns: repeat(1, 1fr);
        padding: 10px 35px;
    }
    .image-box{
    width: 100%;
    height: 300px;
    }
    .accordion-text-s{
        width: 100%;
    }
}
/* Imagen y formulario de mensaje */
.circle {
    position: absolute;
    z-index: 1;
    margin: 0;
    content: "";
}
.message {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2.5rem;
    padding: 10px 0;
}
.h3-message {
    color: var(--VerdeFuerte1);
    font-size: 30px;
    font-family: var(--NTWagner);
    margin-bottom: 30px;
}
.message-image {
    text-align: center;
    background-size: cover;
    background-position: center center;
}
.message-form .form-mes {
    position: relative;
}
.grupo-1-form {
    width: 90%;
    padding-top: 14px;
}
.label-message {
    font-family: var(--RobotoThin);
    font-weight: 700;
    color: var(--ColorOscuro);
    margin-bottom: 5px;
}
.input-message,
.textArea-message {
    width: 100%;
    padding: 9px;
    background-color: var(--ColorBlancoOscuro);
    color: var(--ColorOscuro);
    border: 2px solid transparent;
    font-family: var(--RobotoLight);
    font-weight: 700;
    outline: none;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.05);
}
.input-message:hover,
.textArea-message:hover {
    border: 2px solid var(--VerdeClaro2);
}
.textArea-message textarea {
    resize: none;
    height: 240px;
}
.submit-message {
    margin: 20px 0;
    padding: 10px 8px;
    border-radius: 3px; 
    display: inline-block;
    font-size: 16px;
    background: var(--VerdeFuerte2);
    color: var(--ColorBlanco);
    width: 160px;
    transition: all 0.2s;
    cursor: pointer;
}
.submit-message:hover {
    background-color: #0F6930;
    transform: translate3d(0, -1px, -0);

}
@media(max-width: 820px){
    .message {
        padding-top: 70px;
        grid-template-columns: none;
        align-items: center;
    }
    .circle {
        display: none;
    }
    .label-message {
        font-size: 14px;
    }
    .form-mes {
        width: 100%;
    }
    .submit-message{
        padding: 8px;
        font-size: 14px;
    }
    .h3-message {
        font-size: 25px;
    }
}

/* Servicios Sucursales */
.cartas {
    padding: 50px 0;
}
.h3-ser {
    color: var(--VerdeFuerte1);
    font-size: 35px;
    font-family: var(--NTWagner);
}
.grid-services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 2rem;
    padding: 40px 0;
}
.cards-ser {
    padding: 20px;
    border-left: 20px solid var(--VerdeClaro1);
    text-align: center;
    border-radius: 4px;
    width: 100%;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}
.cards-ser:hover {
    box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.20);
}
.grid-ser {
    padding: 10px 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.figure-icon {
    font-size: 20px;
    color: #709571;
}
.grid-components {
    text-align: left;
    font-size: 14px;
    font-family: var(--RobotoLight);
    font-weight: 700;
}
.title-services {
    font-size: 20px;
    padding: 20px 0;
    color: var(--VerdeClaro1);
    font-family: var(--OleoScript);
    font-weight: 100;
}
@media (max-width: 820px){
    .grid-services-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-components {
        font-size: 12px;
    }
    .cards-ser {
        padding: 8px;
        border-left: 13px solid var(--VerdeClaro1);
    }
}
/* Imagen y formulario de mensaje */
.circle {
    position: absolute;
    z-index: 1;
    margin: 0;
    content: "";
}
.message {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2.5rem;
    padding: 10px 0;
}
.h3-message {
    color: var(--VerdeFuerte1);
    font-size: 30px;
    font-family: var(--NTWagner);
    margin-bottom: 30px;
}
.message-image {
    text-align: center;
    background-size: cover;
    background-position: center center;
}
.message-form .form-mes {
    position: relative;
}
.grupo-1-form {
    width: 90%;
    padding-top: 14px;
}
.label-message {
    font-family: var(--RobotoThin);
    font-weight: 700;
    color: var(--ColorOscuro);
    margin-bottom: 5px;
}
.input-message,
.textArea-message {
   width: 100%;
   padding: 9px;
   background-color: var(--ColorBlancoOscuro);
   color: var(--ColorOscuro);
   border: 2px solid transparent;
   font-family: var(--RobotoLight);
   font-weight: 700;
   outline: none;
   font-size: 15px;
   border-radius: 4px;
   transition: all 0.3s ease;
   box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.05);
}
.input-message:hover,
.textArea-message:hover {
    border: 2px solid var(--VerdeClaro2);
}
.textArea-message textarea {
   resize: none;
   height: 240px;
}
.submit-message {
    margin: 20px 0;
    padding: 10px 8px;
    border-radius: 3px; 
    display: inline-block;
    font-size: 16px;
    background: var(--VerdeFuerte2);
    color: var(--ColorBlanco);
    width: 160px;
    transition: all 0.2s;
    cursor: pointer;
}
.submit-message:hover {
    background-color: #0F6930;
    transform: translate3d(0, -1px, -0);

}
@media(max-width: 820px){
    .message {
        padding-top: 70px;
        grid-template-columns: none;
        align-items: center;
    }
    .circle {
        display: none;
    }
    .label-message {
        font-size: 14px;
    }
    .form-mes {
        width: 100%;
    }
    .submit-message{
        padding: 8px;
        font-size: 14px;
    }
    .h3-message {
        font-size: 25px;
    }
}
 /*=========== Espacio de Ubicación ===========*/
 .h2-lo {
    color: var(--VerdeFuerte1);
    font-family: var(--OleoScript);
    font-weight: 100;
    font-size: 35px;
    margin-top: 30px;
 }

 /* ======================================= Rediseños =============================================== */
 .container {max-width: 1380px;}

@media (max-width: 1600px) {
  .container {max-width: 1200px;}
}
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
    height: auto;
    width: 100%;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .header-v2 .container-menu-desktop {
    height: 84px;
  }
  
  .header-v3 .container-menu-desktop {
    height: auto;
  }
  
  .header-v4 .container-menu-desktop {
    height: 124px;
  }
  
  /*---------------------------------------------*/
  .topbar-mobile li {
    padding: 8px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background-color: var(--ColorOscuro);
  }
  
  /*==================================================================
  [ Menu ]*/

  .wrap-menu-desktop {
    position: fixed;
    z-index: 1100;
    background-color: #F4F4F4;
    width: 100%;
    height: 70px;
    top: 40px;
    left: 0px; 
  
    -webkit-transition: height 0.3s, background-color 0.3s;
    -o-transition: height 0.3s, background-color 0.3s;
    -moz-transition: height 0.3s, background-color 0.3s;
    transition: height 0.3s, background-color 0.3s;
  }
  
  .header-v2 .wrap-menu-desktop {
    background-color: var(--ColorBlanco);
    top: 0;
  }
  
  .header-v3 .wrap-menu-desktop {
    background-color: transparent;
    top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .header-v4 .wrap-menu-desktop {
    background-color: var(--ColorBlanco);
  }
  
  
  /*---------------------------------------------*/
  .limiter-menu-desktop {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /*------------------------------------------------------------------
  [ Menu ]*/
  
  .menu-desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .main-menu {
    list-style-type: none;
    margin: 0;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  
  .main-menu > li {
    display: block;
    position: relative;
    padding: 20px 10px 20px 0px;
    margin: 0px 4px 0px 14px;
  }
  
  .main-menu > li > a {
    font-family: var(--PoppinsLight);
    font-weight: 700;
    font-size: 14px;
    color: var(--ColorOscuro);
    padding: 5px 0px;
    transition: all 300ms;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  .header-v3 .main-menu > li > a {
    color: #fff;
  }
  
  /*---------------------------------------------*/
  .sub-menu {
    list-style-type: none;
    position: absolute;
    top:0;
    left:100%;
    min-width: 178px;
    max-width: 225px;
    background-color: #fff;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    padding: 5px 0;
  
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  
    visibility: hidden;
    opacity: 0; 
  }
  
  .sub-menu li {
    position: relative;
    background-color: transparent;
  
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  .main-menu > li > .sub-menu {
    top:100%;
    left: 0;
  }
  
  .sub-menu a {
    font-family: var(--PoppinsLight);
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  
    display: block;
    padding: 8px 20px; 
    width: 100%;
  
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  /*---------------------------------------------*/
  .main-menu > li:hover > a {
    text-decoration: none;
    color: var(--VerdeFuerte1);
  }
  
  .main-menu > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  }
  
  .sub-menu li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  } 
  
  .sub-menu li:hover {
    background-color: transparent;
  }
  
  .sub-menu > li:hover > a {
    color: var(--VerdeFuerte2);
    text-decoration: none;
  }
  
  @media (max-width: 1300px) {
    .main-menu > .respon-sub-menu .sub-menu {
      right: 100%;
      left: auto;
    }
  
    .main-menu > .respon-sub-menu > .sub-menu {
      right: 0px;
      left: auto;
    }
  }
  
  /*------------------------------------------------------------------
  [ Icon header ]*/
  
  .wrap-icon-header {
    flex-grow: 1;
  }
  
  .icon-header-item {
    position: relative;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }  
  /*---------------------------------------------*/
  .wrap-header-mobile .wrap-icon-header {
    flex-grow: unset;
  }
  /*==================================================================
[ Fixed menu desktop ]*/

.fix-menu-desktop .wrap-menu-desktop {
    height: 70px;
    background-color: rgba(255,255,255,1);
    box-shadow: 1px 1px 10px 0px #00000070;
    -moz-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  }
  
  .header-v2 .fix-menu-desktop.container-menu-desktop {
    height: 70px;
  }
  
  .header-v3 .fix-menu-desktop .wrap-menu-desktop {
    background-color: #222;
    border-color: #222;
  }
  
  .header-v4 .fix-menu-desktop.container-menu-desktop {
    height: 110px;
  }
  /*---------------------------------------------*/
  .main-menu > li.active-menu > a {
    color: var(--VerdeFuerte2);
  }
  /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 70px;
    background-color: #fff;
    padding: 15px;
    display: none;
    z-index: 1000;
  
    box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 0px 3px 0px rgba(0,0,0,0.2);
  }
  
  /*------------------------------------------------------------------
  [ Logo mobile ]*/
  .logo-mobile {
    display: block;
    position: relative;
    height: 80%;
    padding-right: 25px;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    flex-grow: 1;
  }
  
  .logo-mobile img {
    max-width: calc(100% - 20px);
    max-height: 150%;
    position:absolute;
    top: 0; 
    left: 0; 
    bottom: 0;
    margin: auto;
  }
  
  
  
  /*------------------------------------------------------------------
  [ btn show menu ]*/
  .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  
  .hamburger:hover {
    opacity: 1;
  }
  
  /*---------------------------------------------*/
  @media (max-width: 991px){
    .wrap-header-mobile {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
    }
    .container-menu-desktop {display: none;}
  }
  
  /*==================================================================
  [ Menu mobile ]*/
  .menu-mobile {
    width: 100%;
    background-color: white;
    display: none;
  }
  
  .main-menu-m {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--VerdeClaro1);
  }
  
  .main-menu-m > li > a {
    font-family: var(--PoppinsLight);
    font-size: 14px;
    color: var(--ColorBlanco);
    line-height: 2.8;
    padding: 8px 20px 8px 20px;
    
    transition: all 300ms;
  }
  .main-menu-m > li > a:hover {
    color: var(--VerdeFuerte1);
  }
  .main-menu-m > li {
    color: var(--ColorBlanco);
    position: relative;
  }
  
  .arrow-main-menu-m {
    font-size: 14px;
    color: var(--ColorBlanco);
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 2px;
    padding: 10px;
    cursor: pointer;
  }
  
  .arrow-main-menu-m i {
    transform-origin: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .turn-arrow-main-menu-m i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  /*---------------------------------------------*/
  .sub-menu-m {
    background-color: #fff;
    padding: 10px 15px 10px 32px;
    display: none;
  }
  
  .sub-menu-m a {
    font-family: var(--PoppinsLight);
    font-size: 14px;
    color: #666;
    line-height: 2.5;
    padding: 5px 0 5px 0;
  }
  
  .sub-menu-m a:hover {
    text-decoration: none;
    color: #555555;
  }
  
  @media (min-width: 992px){
    .menu-mobile {
      display: none;
    }
    .grid-container {
        padding-top: 100px;
    }
  }
.h2-lo {
    font-size: 35px;
    font-family: var(--NTWagner);
    color: var(--VerdeFuerte2);
}
@media (max-width: 400px){
    .h2-lo {
        font-size: 30px;
    }
    .h1-services {
        font-size: 30px;
    }
    .p_fo {
        font-size: 14px;
    }
}
@media (max-width: 350px){
    .container__box-su{
        width: 100%;
        text-align: center;
        right: 20px;
        /* display: flex; */
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .h2-lo {
        font-size: 25px;
    }
    .h1-services {
        font-size: 25px;
    }
    .pie-pagina .grupo-1 .box figure img{
        width: 170px;
    }
}
.top-bar {
    height: 40px;
    background-color: #222;
  }
  
  /*---------------------------------------------*/
  .left-top-bar {
    font-family: var(--PoppinsLight);
    font-size: 12px;
    line-height: 1.8;
    color: var(--ColorBlanco);
  }
  .right-top-bar a {
    font-family: var(--PoppinsLight);
    font-size: 12px;
    line-height: 1.8;
  
    height: 100%;
    color: var(--ColorBlanco);
    border-right: 1px solid rgba(255,255,255,0.3);
}

.right-top-bar a:first-child {
    border-left: 1px solid rgba(255,255,255,0.3);
}
.right-top-bar a:hover {
    color: var(--VerdeClaro2);
  }

  /*========== Vista - Agendar Cita ==========*/
/* ================= Página de Agendar Cita (error 404) ================= */
.error-404 {
    min-height: calc(100vh - 50px);
    padding-top: 120px;
    background-color: var(--ColorBlanco);
}
.app-cite {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-height: calc(100vh - 110px);
    margin-bottom: 0;
}
.title-error404 {
    color: var(--VerdeClaro1);
}
.btn-cite {
    padding: 10px 10px;
    color: var(--ColorBlanco);
    background-color: var(--VerdeClaro1);
    border-radius: 3px;
    margin: 20px;
    overflow: hidden;
    outline: none;
    cursor: pointer;

    transition: all 300ms;
}
.btn-cite:hover {
    background-color: #348974;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -1px, -0);
}
.a {
    color: var(--ColorBlanco);
}
@media (max-width: 820px){
    .error-404 {
        padding-top: 80px;
    }
    .app-cite {
        text-align: center;
        padding: 15px;
    }
    .title-error404 {
        font-size: 30px;
    }
    .p-cite {
        font-size: var(--text_paragraph);
    }
}
/* Botón de ir hacía arriba */
/*//////////////////////////////////////////////////////////////////
[ BUTTON BACK TO TOP ]*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 38px;
    bottom: 0px;
    right: 40px;
    background-color: var(--VerdeFuerte1);
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
.symbol-btn-back-to-top {
    font-size: 25px;
    color: var(--ColorBlanco);
    line-height: 1em;
  }
  
.btn-back-to-top:hover {
    opacity: 1;
    background-color: var(--VerdeClaro1);
  }
.icono-up {
    text-align: center;
    font-size: 17px;
}
  
@media (max-width: 575px) {
    .btn-back-to-top {
      bottom: 0px;
      right: 15px;
    }
  }
  
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
    margin-left: 15px;
}
.mtext-111 {
    font-family: var(--OleoScript);
    font-size: 25px;
    font-weight: 100;
    line-height: 1.2;
}
.mtext-110 {
    font-family: var(--RobotoLight);
    font-size: 18px;
    line-height: 1.2;
}
.cl2 {
    color: var(--VerdeFuerte1);
}
.stext-113 {
    font-family: var(--RobotoLight);
    font-size: 14px;
    line-height: 1.7857;
}
@media (max-width: 992px){
    .col-lg-8{
        flex: 0 0 66.6%;
        max-width: 66.6%;
    }
}
@media (max-width: 768px) {
    .col-md-7 {
        flex: 0 0 58.3%;
        max-width: 58.3;
    }
}
/* Página de Contactanos */
.bg0 {
    padding-top: 116px;
    background-color: var(--ColorBlanco);
}
@media (max-width: 820px){
    .bg0{
        padding-top: 40px;
    }
}
.container-sec {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}
@media(max-width: 991px) {
    .p-lr15-lg{
        padding-left: 15px;
        padding-right: 15px;
    }
}
.bor10 {
    border: 1px solid #e6e6e6;
}
.mtext-105 {
    font-family: var(--OleoScript);
    font-size: 25px;
    line-height: 1.5;
    font-weight: 100;
}
.cl2 {
    text-align: center;
}
.how-pos4-parent {
    position: relative;
}
.bor8 {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}
.size-116 {
    width: 100%;
    height: 50px;
}
.stext-111 {
    font-family: var(--RobotoLight);
    font-size: 13px;
    line-height: 1.6;
}
.how-pos4 {
    position: absolute;
    top: calc(50% - 9px);
    left: 20px;
}
.size-120 {
    width: 100%;
    min-height: 199px;
}
textarea {
    overflow: auto;
    resize: vertical;
}
.bor1 {
    border-radius: 23px;
}
.bg3 {
    background-color: var(--VerdeFuerte1);
}
.size-121 {
    width: 100%;
    height: 46px;
}
.stext-101 {
    color: var(--ColorBlanco);
    font-family: var(--RobotoLight);
    font-size: 15px;
    line-height: 1.4;
}
@media(max-width: 991px) {
    .p-lr-15-lg{
        padding-left: 15px;
        padding-right: 15px;
    }
}
.size-210 {
    padding: 0 70px;
    width: 50%;
}
.size-211 {
    width: 60px;
}
.cl5 {
    color: #222;
}
.size212 {
    width: calc(100% - 60px);
}
.size-213 {
    max-width: 245px;
}
.stext-115 {
    font-family: var(--RobotoLight);
    font-size: 15px;
    line-height: 1.6;
}
.input-send-con {
    background-color: var(--VerdeFuerte2);
    padding: 10px 20px;
    color: var(--ColorBlanco);
    border-radius: 3px;
    transition: all 300ms ease;
    cursor: pointer;
    font-family: var(--RobotoLight);
    font-weight: 700;
}
.input-send-con:hover {
    background-color: #0a4a0a;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -1px, -0);
}
@media (max-width: 767px){
    .w-full-md {
        width: 100%;
    }
    .size-210 {
        padding: 0 20px;
    }
}
.h1-suc {
    padding: 40px 0;
    font-size: 40px;
    font-family: var(--NTWagner);
    color: var(--VerdeFuerte2);
}
.map iframe {
    padding-bottom: 30px;
}
/* Diseños de Nosotros */
.conocenos-container {
    padding: 80px 0;
}
.img {
    background-image: url(/Assets/images/uploads/chi-fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 350px;
}
.img2 {
    background-image: url(/Assets/images/uploads/perrofondogris.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 350px;
}
.h1-conocenos {
    font-size: 50px;
    padding-top: 200px;
    color: var(--ColorBlanco);
    font-family: var(--NTWagner);
}
.p-conocenos {
    color: var(--ColorBlanco);
    font-size: 17px;
    font-family: var(--RobotoBold);
}
.conocenos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.we-img .cruz{
    background-size: cover;
    width: 300px;
}
.h2-we {
    padding-top: 20px;
    font-family: var(--NTWagner);
    font-size: 45px;
    color: var(--VerdeFuerte1);
}
.we-p {
    padding-top: 30px;
    font-size: 15px;
    font-family: var(--RobotoLight);
    color: var(--ColorOscuro);
}
.grid__card-we {
    gap: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cards-we {
    padding: 30px 0;
    text-align: center;
}
.icon-we {
    font-size: 30px;
    padding-right: 20px;
    color: var(--VerdeClaro1);
}
.consultorios-we {
    justify-content: center;
    width: 70%;
    align-items: center;
    padding: 15px;
    display: flex;
    border: 1px solid var(--ColorBlanco);
    border-radius: 5px;
    box-shadow: 2px 2px 14px var(--ColorBlancoOscuro);
    border-radius: 20px;
    transition: all 300ms;
}
.consultorios-we:hover {
    box-shadow: 3px 3px 16px var(--ColorBlancoOscuro);
}
.offices-we {
    color: var(--ColorOscuro);
    font-size: 15px;
}
@media (max-width: 1045px){
    .consultorios-we {
        width: 100%;
    }
}
@media (max-width: 820px){
    .h2-we {
        font-size: 33px;
    }
    .we-p {
        font-size: 14px;
    }
    .icon-we{
        font-size: 30px;
    }
    .offices-we{
        font-size: 14px;
    }
}
@media (max-width: 820px){
    .conocenos-container {
        gap: 2rem;
    }
}
@media(max-width: 620px){
    .we-img .cruz {
        width: 200px;
    }
    .conocenos-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .grid__card-we {
        padding-top: 20px;
        gap: 1rem;
    }
    .cards-we{
        padding: 10px 0;
    }
    .consultorios-we{
        justify-content: center;
        display: grid;
    }
    .icon-we {
        padding: 0;
        font-size: 20px;
    }
    .offices-we{
        font-size: 13px;
    }
    .conocenos-container{
        padding: 20px 0;
    }
}
/* Fisiología de Fiel Amigo */
.subtitle-su {
    color: var(--VerdeFuerte1);
    font-size: 2rem;
    margin-bottom: 35px;
    font-family: var(--NTWagner);
}
.about-services {
    padding-top: 30px;
    padding-bottom: 40px;
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    justify-items: center;
    align-items: center;
}

.about__ser-img {
    text-align: center;
}
.about__ser-img--left {
    text-align: left;
}
.about__picture {
    max-width: 80%;
}
.paragraph__c {
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}
.about__texts {
    margin: auto;
}
.how-bor1 {
    position: relative;
    z-index: 1;
} 
.how-bor1::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 3px solid #ccc;
}
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 35vh;
	font-size: 36px;
	text-transform: uppercase;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 100px auto;
	display: flex;
	flex-direction: column;
	position: relative;
}

.container::after {
	content: "";
	width: 2px;
	height: 100%;
	background: #71C8AF;
	position: absolute;
	top: 0;
	left: calc(50% - 3px);
	z-index: 1;
}

.evento {
	display: flex;
	justify-content: space-between;
	margin-bottom: 150px;
	position: relative;
}

.evento::after {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 100px;
	background: var(--ColorBlancoOscuro);
	border: 2px solid #71C8AF;
	position: absolute;
	z-index: 2;
	top: calc(50% - 9px);
	left: calc(50% - 9px);
}

.text-evento {
	display: flex;
	align-items: center;
	justify-content: start;
	width: calc(42% + 20px);
	font-size: 16px;
    font-family: var(--RobotoLight);
}

.foto {
	width: 42%;
	border: 10px solid var(--ColorBlanco);
	position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.foto::after {
	content: "";
	display: block;
	border: 20px solid transparent;
	border-left: 20px solid var(--ColorBlanco);
	position: absolute;
	right: -50px;
	top: calc(50% - 20px);
}

.foto img {
	width: 60%;
	vertical-align: top;
}

.evento:nth-child(even) {
	flex-direction: row-reverse;
}

.evento:nth-child(even) .fecha {
	justify-content: end;
}

.evento:nth-child(even) .foto::after {
	content: "";
	border: 20px solid transparent;
	border-right: 20px solid var(--ColorBlanco);
	right: initial;
	left: -50px;
}
@media (max-width: 820px) {
    .about-services {
        padding-top: 40px;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .about__ser-img--left{
        text-align: center;
    }
    .about__texts:last-child {
        grid-row: 3/4;
    }
    .subtitle-su {
        font-size: 1.5rem;
    }
    .paragraph__c{
        font-size: 14px;
    }
    .h1-suc {
        font-size: 28px;
    }
    .about__title{
        font-size: 28px;
    }
    .text__about{
        font-size: 14px;
    }
}