@layer reset {
    *, *::before, *::after {
        box-sizing: border-box;
    }

    * {
        margin: 0;
        padding: 0;
    }

    body {
        line-height: 1.5;
        min-width: 375px;
    }

	a, a:visited{
		color:var(--primary-color);
	}

    img, picture, video, canvas, svg {
        display: block;
        max-inline-size: 100%;
    }

    input, button, textarea, select {
        font: inherit;
        letter-spacing: inherit;
        word-spacing: inherit;
        color: currentColor;
    }

    p, h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
    }
    h2, h3, h4{
        margin:.5rem 0;
    }
    ol, ul {
        list-style: none;
    }
    ul.wp-block-list, li.wp-block-list{
        list-style: disc;
        margin-left: 1rem;
    }

    :not([class]) {
        h1&, h2&, h3&, h4&, h5&, h6& {
            margin-block: 0.75em;
            line-height: 1.25;
            text-wrap: balance;
            letter-spacing: -0.05ch;
        }

        p&, ol&, ul& {
            margin-block: 1em;
        }

        ol&, ul& {
            padding-inline-start: 1.5em;
            list-style: none;
        }

        li& {
            margin-block: 0.5em;
        }
    }
}

@layer base {
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

    :root {
        --primary-color: #274168;
        --secondary-color: #4C80CF;
        --bg-color: #f0f0f0;
        --footer-bg-color: rgba(135, 116, 85, 1);
        --ff-primary: "Poppins", sans-serif;
        --ff-titles: "DM Serif Text", serif;

        --size-xxs: 0.5rem;
        --size-xs: 0.75rem;
        --size-sm: 1rem;
        --size-md: 1.5rem;
        --size-lg: 2rem;
        --size-xl: 3rem;
        --size-xxl: 4rem;

    }

    body {
        /*display: grid;*/
        grid-template-areas:"header header"
                            "main main"
                            "footer footer";
        width: 100vw;
        overflow-x: hidden;
        max-width: 100vw;
        /* color: var(--primary-color); */
       /* background-color: var(--bg-color);*/
        font-size: 1em;
        font-family: var(--ff-primary);
        font-display: swap;
        -webkit-font-smoothing: antialiased;
        
    }

    header{
        grid-area: header;
        
    }

    main {
        grid-area: main;
        padding: 0;
        overflow-y: auto;
    }

    footer {
        grid-area: footer;
    }

    .wrapper{
        max-width: 100vw;
        min-width: 375px;
        overflow-y: auto;
    }

    .title {
        font-family: var(--ff-titles);
		padding:1rem 0;
    }

    .label {
        font-size: 16px;
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0 0 15px;
    }

    .btn {
        display: inline-flex;
        gap: 8px;
        padding: 8px 20px;
        /* max-height: 36px; */
        height: auto;
        width: fit-content;
        max-width: 100%;
        font-size: 16px;
        font-weight: 400;
        color: white;
        text-overflow: ellipsis;
        overflow: hidden;
        cursor: pointer;
        border-radius: 4px;
        border: none;
        position: relative;
    }

    a.btn {
        text-decoration: none;
    }

    .btn.btn-primary {
        background-color: color-mix(in srgb, var(--secondary-color) 85%, white 15%);
    }

    .btn.btn-secondary {
        color: currentColor;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-height: 44px;
        background-color: transparent;
        border: 1px solid currentColor;
    }

    .btn.btn-primary::before, .btn.btn-secondary::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .2;
        transform: scaleX(0);
        background-color: black;
        transition: transform .2s ease-out;
    }

    .btn.btn-secondary::before {
        background: currentColor;
    }

    .btn:hover::before,
    .btn:focus::before,
    .btn:active::before {
        transform: scaleX(1);
        transition: transform .2s ease-out;
    }

    .btn.carousel-btn:hover::before,
    .btn.carousel-btn:focus::before,
    .btn.carousel-btn:hover::before,
    .btn.carousel-btn:focus::before {
        transform: scaleX(0);
    }

    .btn.carousel-btn{
        opacity: .5;
    }


    .carousel {
        position: relative;
        overflow: hidden;
        width: calc(100vw - 64px);
        height: auto;
    }

    .carousel-track {
        display: flex;
        gap: 1rem; 
        /* align-items: center; */
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        transition: transform 0.5s ease-in-out;
    }

   

    .carousel-item {
        display: flex;
        min-width: 100%;
        text-align: center;
        font-size: 24px;
    }


    .carousel-item img {
        margin-inline: auto;
		height: 365px;
    }

    .container-controls {
        display: flex;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin: 32px 0;
    }

    .container-controls.control-carousel-2 {
        width: calc(100% - 64px);
        justify-content: left;
    }

    .container-controls .carousel-btn,
    .container-controls .carousel-btn-area {
        opacity: .6;
    }

    .container-controls .carousel-btn:hover,
    .container-controls .carousel-btn-are:hover {
        opacity: 1;
    }

    .carousel-item {
        display: flex;
        flex-direction: column;
    }

    footer{
        width: 100%; /* Toma el resto del espacio */
        max-width: 100vw; /* Ajusta al ancho de la ventana */
        background-color: var(--footer-bg-color); /* Color de fondo */
        color: white;
        padding: 2rem 1rem;
    }

    

    @media (max-width: 1200px) {
        .btn.btn-full {
            width: 100%;
            margin-bottom: 3rem;
        }
    }

    @media (min-width: 1201px) {

       body{
        grid-template-areas: "header main"
                             "header main"
                             "header footer";
       }

        .carousel{
            padding: 0;
            user-select: none;
            -webkit-user-drag: none; /* Evita el arrastre de imágenes en navegadores WebKit */
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory; /* Activa el ajuste obligatorio en el eje X */
        }

        .carousel img{
            user-select: none;
            -webkit-user-drag: none; /* Evita el arrastre de imágenes en navegadores WebKit */
        }

        .carousel a{
            user-select: none;
            -webkit-user-drag: none; /* Evita el arrastre de imágenes en navegadores WebKit */
            text-decoration: none;
        }

        .carousel-track {
            gap: 32px;
            /* scroll-behavior: smooth; */
        }

        .carousel-item {
            max-width: calc(50% - 16px);
            min-width: calc(50% - 16px);
        }

        .carousel-item h3 {
            min-height: 50px;
        }

        .carousel-item img {
            margin: 0;
        }

        .container-controls {
            justify-content: start;
        }
    }

}

@layer header {

    body:has(#toggle-menu:checked) {
        overflow: hidden;
    }

    body:has(#toggle-menu:checked) main {
        pointer-events: none;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 6px 12px;
        position: relative;
        border-bottom: 1px solid #e4e4e5;
        background-color: #fff;
    }

    .header:has(#toggle:checked) {
        position: sticky;
        z-index: 10000;
    }

    header label {
        cursor: pointer;
    }

    #toggle-menu:checked+label #menu-open {
        display: none;
    }

    #toggle-menu:not(:checked)+label #menu-close {
        display: none;
    }

    #toggle-menu:checked+label #menu-close,
    #toggle-menu:not(:checked)+label #menu-open {
        display: block;
    }

    .header__container-logo {
        height: 65px;
        width: 65px;
    }

    .header__container-logo img {
        width: auto;
        height: 100%;
        max-width: 100px;
    }

    .header__nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: end;
        padding: 2rem;
        height: calc(100vh - 70px);
        width: calc(90vw - 1px);
        max-width: calc(90vw - 1px);
        position: absolute;
        top: 70px;
        right: 0;
        opacity: 0;
        background-color: #fff;
        border-left: 1px solid #e4e4e5;
        transform: scaleX(0);
        transform-origin: right;
        transition: opacity 0.1s ease-in-out, transform 0.2s ease-in-out;
        will-change: transform;
        pointer-events: none;
        z-index: 9999;
    }

    .header:has(#toggle-menu:checked)>.header__nav {
        transform: scaleX(1);
        transform-origin: right;
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.1s ease-in-out, transform 0.2s ease-in-out;
        z-index: 9999;
    }

    .header:has(#toggle-menu:checked)::after {
        content: "";
        position: absolute;
        height: calc(100vh - 70px);
        width: 100%;
        background-color: rgb(27, 26, 26);
        opacity: .3;
        top: 70px;
        right: 0;
        z-index: 9998;
        transition: width .2s ease-in;
    }


    .header__nav li {
        display: flex;
        justify-content: end;
        min-height: 35px;
        font-weight: 700;
        text-align: right;
    }

    .header__nav li a {
        text-decoration: none;
        color: var(--primary-color);
        position: relative;
    }

    .header__nav li a:active,
    .header__nav li:hover a {
        text-decoration: underline;
        text-decoration-color: var(--primary-color);
    }

    .item-nav a.active::before {
        content: "";
        position: absolute;
        height: 4px;
        width: 16px;
        background-color: var(--primary-color);
        left: -2rem;
        top: 8px;

    }

    @media (min-width: 1200px) {

        
        html{
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body{
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
    


        main  {
            /* flex: 1; */
            width: calc(100% - 18% + 2rem);
            /* min-height: 100vh; */
            margin-left: calc(18% - 2rem);
            /* max-width: 100px; */
            /* background-color: var(--bg-color); */
            /* max-width: 100vw; */
        }


        /* Footer */
        footer {
            /* overflow-y: hidden; */
            width: calc(100% - 18% + 2rem);
            margin-left: calc(18% - 2rem); 
            
        }


        .header #toggle-menu,
        .header #toggle-menu+label {
            display: none;
        }

        .header {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            height: 100vh;
            width: calc(18% - 2rem);
            padding: 1rem;
            background-color: #fff;
            position: fixed;
            left: 0;
            top: 0;
            overflow: hidden;
            /* overflow-y: auto; */
        }

        .header__nav {
            display: block;
            height: auto;
            width: 100%;
            padding: 0 12px 0 24px;
            transform: scaleX(1);
            opacity: 1;
            position: static;
            margin-top: 48px;
            pointer-events: all;
            border: none;
        }

        .header__container-logo {
            height: 141px;
            width: 100%;
        }

        .header__container-logo {
            width: 100%;
            max-width: 141px;
            height: auto;
            margin-inline: auto;
        }


        .header__nav .item-nav,
		.header__nav .menu-item{
            font-size: 18px;
            justify-content: start;
            margin-bottom: 28px;
        }

        .list-secondary {
            margin-top: 64px;
        }

        .item-nav a.active::before,
		.menu-item a.active::before{
            top: 12px;
        }

    }

}

@layer components {
    .hero {
        position: relative;
        width: 100%;
        height: calc(100vh - 10px);
    }

    .hero::before,
    .hero-page::before {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(253, 253, 253, 0.7) 4.57%, rgba(246, 246, 246, 0.7) 9.14%, rgba(234, 234, 234, 0.7) 13.7%, rgba(217, 217, 217, 0.7) 18.27%, rgba(196, 196, 196, 0.7) 22.84%, rgba(170, 170, 170, 0.7) 27.41%, rgba(142, 142, 142, 0.7) 31.98%, rgba(113, 113, 113, 0.7) 36.54%, rgba(85, 85, 85, 0.7) 41.11%, rgba(59, 59, 59, 0.7) 45.68%, rgba(38, 38, 38, 0.7) 50.25%, rgba(21, 21, 21, 0.7) 54.81%, rgba(9, 9, 9, 0.7) 59.38%, rgba(2, 2, 2, 0.7) 63.95%, rgba(0, 0, 0, 0.7) 68.52%);
        mix-blend-mode: multiply;
        z-index: 1;
    }

    .hero picture,
    .hero img,
    .hero-page picture,
    .hero-page img{
        width: 100%;
        height: 100%;
        object-fit: cover;
		/* max-height: 500px; */
    }

    .hero__overlay {
        margin: 0 32px;
        padding-top: 60px;
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 64px);
        height: 100%;
        color: white;
        z-index: 2;
		display: flex;
		flex-flow: column;
		justify-content: center;
    }

    .hero__label {
        margin-bottom: 20px;
    }

    .hero .title {
        font-size: calc(32px + 2.3vw);
        line-height: 56px;
    }

    .hero__description {
        margin: 20px 0;
    }

    /* Location */
    .location {
        background-color: rgb(73, 117, 186);
    }

    .location-stats {
        padding: 64px 32px;
        color: white;
        background: url(/wp-content/uploads/2024/12/world-map.svg) center center / cover no-repeat #83a3d3;

    }

    .location-stats .label {
        padding: 1rem 0;
    }

    .location .title {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 2rem;
        margin-bottom: 2rem;
    }

    .location .container-stats {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
    }

    .item-stat {
        display: block;
        text-align: center;
    }

    .item-stat:not(:last-of-type):after {
        content: "";
        display: block;
        margin: 0px auto 2rem;
        width: 2rem;
        height: 0px;
        border-bottom: 2px solid rgb(39, 65, 104);
        padding-bottom: 2.5rem;
    }

    .item-stat strong {
        display: block;
        width: 100%;
        font-size: 72px;
        font-family: var(--ff-titles);
        line-height: 1;
    }

    .item-stat strong>span {
        font-size: 40%;
    }


    .item-stat span {
        font-size: 20px;
        margin: 0;
    }

    /* About Us */
    .about-us {
        padding: 56px 16px;
        background-color: var(--primary-color);
    }

    .about-us>* {
        max-width: 744px;
        padding: 0 16px;
        margin-inline: auto;
    }

    .about-us__nav {
        padding: 0;
    }

    .about-us__nav ul {
        margin: 0;
        padding: 0 16px;
    }

    .about-us__nav__item {
        width: 100%;
        padding: 20px 0;
        font-family: var(--ff-titles);
        font-size: 24px;
        font-weight: 600;

    }

    .about-us__nav__item:not(:last-of-type) {
        border-bottom: 1px solid rgb(23, 40, 63);
    }

    .about-us__nav__item .nav_link {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;

    }

    .about-us__nav__item a {
        color: #cccccc;
        text-decoration: none;
    }

    .about-us__nav__item a:hover {
        color: white;
        transition: color .2s linear;
    }

    .about-us__nav__item a svg {
        transition: transform 0.2s linear;
    }

    .about-us__nav__item a:hover svg {
        transform: translateX(2px);
    }

    /* Leaders */
    .leaders {
        display: flex;
        flex-direction: column;
        padding: 64px 32px;
        background-color: white;
        color: #000;
    }

    .member.carousel-item h3 {
        display: flex;
        justify-content: center;
        align-items: end;
        ;
        min-height: 55px;
        max-height: 55px;
        width: auto;
        max-width: 320px;
        min-width: 320px;
        margin: 0 auto;
        text-align: center;
        overflow: hidden;
        line-clamp: 2;
        text-overflow: ellipsis;
        font-size: 20px;
    }

    .member.carousel-item p {
        width: auto;
        max-width: 280px;
        min-width: 280px;
        margin: 8px auto 8px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        color: #3A619C;
    }

    .practices-areas {
        background-color: var(--primary-color);
        padding: 64px 32px;
        color: #fff;
    }

    .practices-areas .title {
        font-size: 32px;
        line-height: 40px;
    }

    .practices-areas .subtitle {
        font-size: 16px;
        margin-top: 16px;
    }

    .practices-areas .subtitle+p {
        font-size: 14px;
        margin-top: 8;
    }

    .container-highlights {
        display: flex;
        flex-direction: column;
        /* display: grid; */
        /* grid-template-columns: repeat(4,1fr); */
        gap: 18px;
        margin-bottom: 72px;
    }

    .highlight-value {
        font-family: var(--ff-titles);
        font-size: 32px;
        font-weight: 700;
        color: #BF9017;
    }

    .carousel-areas {
        width: 100%;
        margin-top: 32px;
    }

    .carousel-track.carousel-areas-track {
        display: flex;
        max-width: calc(118vw - 2rem - 64px);
        gap: 12px;
    }

    .carousel-item.item-area {
        flex: 0 0 auto;
        width: 235px;
        min-width: auto;
        height: 275px;
        padding: 20px;
        background-color: #fff;
        color: #000;
        border-top-left-radius: 12px;
        text-align: left;
    }

    .item-area .title {
        font-size: 28px;
        line-height: 36px;
    }

    .item-area .description {
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .item-area a {
        color: #000;
        text-decoration: none;
    }

    .item-area svg.arrow-top-right {
       transform: rotate(45deg); 
    }

    .stories {
        display: flex;
        width: 100%;
        height: auto;
        padding: 0;
        height: auto;
        min-height: 320px;
        flex-direction: column;
        /* border-top: 1px solid white; */
    }

    .stories .container-img {
        height: auto;
        min-width: calc(100% - 64px);
    }

    .stories .stories-content {
        display: flex;
        flex-direction: column;
        padding: 65px 32px;
        color: white;
        background-color: #BAA075;
    }

    .stories .container-img img {
        min-width: 100vw;
    }

    .stories .description {
        font-size: 24px;
        font-weight: 500;
    }

    .stories .btn {
        margin-top: 32px;
        margin-bottom: 0;
    }

    /* General Styles */
    .press-releases-news {
        padding: 0 2rem;
        height: auto;
        min-height: 700px;
        background-color: white;
        color: #000;
    }

    .press-releases-news a {
        color: #000;
        text-decoration: none;
    }

    .press-releases-news .title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .press-releases-news .label {
        color: #BAA075;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 0;
    }


    .container-releases a,
    .container-news a {
        display: inline-flex;
        color: #BAA075;
        align-items: center;
        gap: 6px;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .container-news svg,
    .container-releases svg{
        color: #BAA075;
        margin-bottom: .25rem;
    }


    /* Containers */
    .container-releases-news {
        display: flex;
        flex-direction: column;
        padding: 4rem 0;
    }

   
    .container-releases-news>.container-releases {
        margin-bottom: 3rem;
    }

    /* Item Releases */
    .item-release {
        padding: 1.5rem 1rem;
        transition: transform 0.2s ease-in-out;
    }

    .item-release:not(:last-of-type) {
        border-bottom: 1px solid rgb(222, 222, 222);
    }

    .item-release a {
        display: flex;
        gap: 1.5rem;
    }

    .item-release:has(a:hover) {
        transform: translateX(10px);
    }

    .item-release time,
    .item-news time {
        font-size: 0.75rem;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    .item-release time br {
        display: none;
    }

    .item-release p {
        width: 100%;
        /* Responsive by default */
    }

    /* Item News */
    .item-news {
        margin: 1.5rem 0;
        padding: 1rem 1.25rem;
        background-color: rgba(0, 0, 0, 0.1);
        max-width: 100%;
        /* Responsive by default */
    }

    .item-news p {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5rem;
        margin: 0.75rem 0 0 0;
    }

    .item-news a:hover {
        filter: contrast(0.6);
        transition: filter 0.2s ease-in;
    }

    .press-releases-news {
        padding: 0 2rem;
        height: auto;
        min-height: 700px;
        background-color: white;
        color: #000;
    }


    .press-releases-news a {
        color: #000;
        text-decoration: none;
    }


    .press-releases-news .title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .press-releases-news .label {
        color: #BAA075;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
    }

    .container-releases-news {
        display: flex;
        flex-direction: column;
        padding: 4rem 0;
    }

    .container-releases-news>.container-releases {
        margin-bottom: 3rem;
    }

    .item-release {
        padding: 1.5rem 1rem;
    }

    .item-release:not(:last-of-type) {
        border-bottom: 1px solid rgb(222 222 222);
    }


    .item-release time,
    .item-news time {
        font-size: .75rem;
        font-weight: 500;
        margin-top: .5rem;
    }

    .item-release time br {
        display: none;
    }

    .item-news {
        margin: 1.5rem 0px;
        padding: 1rem 1.25rem;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .item-news p {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5rem;
        margin: .75rem 0 0 0;
    }

    .hero-member{
        min-height: 480px;
    }

    .content-hero-member{
        display: flex;
        flex-direction: column  ;
    }

    .content-hero-member .container-img-member{
        background: hsla(280, 37%, 97%, 1);
        background: radial-gradient(circle, hsla(280, 37%, 97%, 1) 0%, hsla(0, 0%, 20%, 1) 100%);
        background: -moz-radial-gradient(circle, hsla(280, 37%, 97%, 1) 0%, hsla(0, 0%, 20%, 1) 100%);
        background: -webkit-radial-gradient(circle, hsla(280, 37%, 97%, 1) 0%, hsla(0, 0%, 20%, 1) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F8F4FA", endColorstr="#333333", GradientType=1 );
    }

    .content-hero-member .container-img-member img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content-hero-member .profile-card{
        padding: 32px 16px;
        background-color: #4E525A;
        color: #fff;
    }

    .content-hero-member .profile-card .profile-role{
        margin: 8px 0;
    }

    .content-hero-member .profile-card .contact-info{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 0 0 1rem;
        margin: 20px 0 50px;
        background: transparent;
        border-left: 2px solid #877455;
    }

    .content-hero-member .profile-card .contact-info a{
        color: #fff;
        text-decoration: none;
    }

    .content-hero-member .profile-card .contact-info abbr{
        text-decoration: none;
    }

    .content-hero-member  blockquote p{
        padding: 0 1rem 0 3rem;
        font-size: 1rem;
    }

    .content-hero-member  blockquote p::before{
        content: "“";
        font-family: var(--ff-titles);
        font-size: 48px;
        font-weight: 700;
        position: absolute;
        margin-left: -3rem;
        line-height: 1;
    }

    .content-hero-member footer{
        padding: 0;
        background-color: transparent;
    }

    .content-hero-member cite{
        display: flex;
        justify-content: flex-end;
        font-style: normal;
    }

    .content-hero-member cite::before{
        content: "";
        display: inline-block;
        background: #ffffff;
        height: 1px;
        width: 50px;
        margin-right: 20px;
        margin-top: 10px;        
    }


    


    .contact-section {
        width: 100%;
        background-color: white;
        color: #000
    }

    .contact-info, .contact-form {
        background-color: var(--primary-color);
        color: #fff;
        padding: 3rem 2rem;
        margin: 0;
		
    }

    .contact-form {
        background-color: transparent;
        color: #000;
    }
	
	.wpcf7-form,
	.wpcf7-form p{
		margin:0;
	}

    .contact-info .title {
        font-size: 2rem
    }

    .contact-info .description {
        margin: 1.5rem 0;
        font-size: 1rem;
        font-weight: 400;
    }

    .item-contact a {
        display: inline-flex;
        gap: 2rem;
        align-items: center;
        color: #fff;
        text-decoration: none;
        margin: 1.5rem 0;
    }


    .item-contact.contact-info-adress a {
        align-items: flex-start;
    }

    .contact-info-adress address {
        font-style: normal;

    }

    .social-links {
        display: flex;
        gap: 2rem;
        width: auto;
        margin-top: 1rem;
        justify-content: center;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 2rem;
        width: 2rem;
        aspect-ratio: 1 / 1;
        color: #fff;
        border-radius: 50%;
        background-color: rgba(76, 128, 207, 1);
    }

    .contact-form .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin: 2rem 0;
    }

    .contact-form fieldset {
        border: none;
    }

    .contact-form label,
    .subject-option label {
        font-size: 1rem;
        font-weight: bold;
        color: #000;
    }

	
	
	.contact-form input,
    .contact-form textarea,
    .contact-form select {
        border: none;
        border-bottom: 1px solid #aaa;
        font-size: 1rem;
        color: #777;
        outline: none;
        padding: 0.2rem 0;
    }
	
	.contact-form textarea{
		height: 64px;
		min-height: 64px;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}

    .contact-form input::placeholder {
        color: #777;
    }

    .contact-form input.valid {
        color: #000;
    }

    .contact-form input.invalid {
        color: red;
        border-bottom: 1px solid red;
    }

    .contact-form input:focus {
        border-bottom: 1px solid #000;
    }

    .contact-form .btn.btn-full {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-height: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    /* Estilo general del fieldset */
    .subject-selector {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border: none;
        margin: 2rem 0;
    }

    .subject-selector legend {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #000;
    }

    /* Estilo para las opciones */
    .subject-option {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .subject-option label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        font-size: 1rem;
        font-weight: normal;
        color: #000;
    }

    /* Ocultar el radio button original */
    .subject-option input[type="radio"] {
        display: none;
    }

    /* Custom radio button */
    .custom-radio {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 1rem;
        height: 1rem;
        border: 2px solid #aaa;
        background-color: #aaa;
        border-radius: 50%;
        position: relative;
    }

    .subject-option input[type="radio"]:checked+label .custom-radio {
        border-color: rgba(1, 28, 42, 1);
        background-color: rgba(1, 28, 42, 1);
    }

    .subject-option input[type="radio"]:checked+label .custom-radio::after {
        content: "";
        display: inline-block;
        margin-top: .75rem;
        width: 1.5rem;
        height: 1.5rem;
        background-image: url('/wp-content/uploads/2025/01/icon-check.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }

    .options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .page-services,
    .page-team {
        background-color: #fff;
        color: #000;
    }

    .page-services .hero,
    .page-team .hero,
    .hero-page{
        height: auto;
        min-height: auto;
        color: #fff;
        position: relative;
    }

    .hero-page{
        padding: 0;
		max-height: 400px;
    }

    .page-services .hero::before,
    .page-team .hero::before,
    .hero-page::before {
        background: linear-gradient(to left,
                rgba(255, 255, 255, 0.7),
                rgba(170, 170, 170, 0.7),
                rgba(85, 85, 85, 0.7),
                rgba(0, 0, 0, 0.7))
    }

    .hero header,
    .hero-page header {
        display: flex;
        width: 100%;
        height: 65px;
        position: absolute;
        top: 0;
        z-index: 1;
        padding-left: 30px;
        padding-top: 30px;
    }

    .hero h1 {
        margin-bottom: 0.625rem;
        font-size: calc(3rem + .5vw);
        letter-spacing: .05vw;
    }

    .content-hero {
        position: absolute;
        top: 12%;
        margin-left: 12%;
        z-index: 1;
        max-width: 800px;
    }

    .page-services .hero .content-hero a,
    .page-team .hero .content-hero a,
    .hero-page .content-hero a {
        text-decoration: underline;
    }

    .hero-page a {
        display: inline-flex;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
    }

    .block-text {
        padding: 2rem;
        /* background-color: #fff; */
    }

    .block-text .block-text-header {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding-bottom: 1rem;
    }

    .block-text .block-title.tab {
        font-size: 1rem;
        padding-bottom: .25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        position: relative;
        width: fit-content;
    }

    .block-text .block-title.tab::after {
        content: "";
        position: absolute;
        bottom: calc( -.25rem + 2px );
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
    }


    .block-text-content,
    .practice-areas  {
        padding: 32px;
    }

    .block-text-content{
        padding-inline: 0;
    }


    .block-text-content:not(:first-of-type),
    .header-areas {
        margin: 30px 0 30px 0;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .block-text-content,
    .section-text-alternative{
        margin: 0;
    }

    .block-text-content header,
    .header-areas h2 {
        font-size: 32px;
        line-height: 1.2;
        color: #000;
    }

    .block-text-content header,
    .block-text-content .text-description:first-of-type{
        margin-top: 20px;
        margin-bottom: 20px;
        color: #000;
    }

    .block-text-content.secondary .text-description{
        font-size: 1.25rem;
        color: var(--secondary-color);
    }


    .practice-group{
        border-top: 1px solid rgba(0, 0, 0, 0.2);;
    }

    .practice-group{
        padding-top: 20px;
    }

    .practice-group header .title{
        font-size: 1.3rem;
        font-family: var(--ff-primary);
        margin: 1rem 0;
    }

    .block-text-content .text-description,
    .practice-group header .description{
        max-width: 100%;
        margin-bottom: 40px;
    }

    .block-text-content i,
    .block-text-content a{
        text-transform: none;
        font-style: normal;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .block-text-content a{
        color: #000;
        font-weight: 700;
    }

    .practice-group .item-area {
        display: block;
        margin-bottom: 75px;
    }

    .practice-group .item-area svg.arrow{
        margin-top: 8px;
        transform: rotate(0);
    }

    .practice-group .arrow{
        color: #4C80CF;
    }


    .practice-group .arrow.nomobile{
        display: none;
    }

    .practice-group .item-area a{
        font-family: var(--ff-titles);
        font-size: 1.5rem;
    }   

    .practice-group .item-area span{
        display: inline-flex;
        width: 50%;
    }

    section.team {
        margin-top: 6.66%;
        padding: 2rem; 
    }

    .team > header p {
        font-size: calc(1.5rem + 0.5vw);
        font-family: var(--ff-primary); 
        font-weight: 700;
    }

    .team > header .label {
        color: #000;
    }

    .team-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: start  ;
        gap: 1rem;
        margin-top: 2rem;
    }

    .team-member {
        display: flex;
        flex-direction: column;
        justify-content: left; 
        max-width: 315px;       
    }

    a.team-member {
        text-decoration: none;
        color: #000;
    }

    a.team-member:hover h3,
    a.team-member:hover p {
        transform: scale(1.01);
        transform-origin: left top;
        text-decoration: underline;
        text-decoration-color: var(--secondary-color);
    }

    a.team-member:hover  img {
        transform: scale(1.1); /* Aplica el zoom (20% más grande) */
        transition: transform 0.3s ease; /* Suaviza el efecto de zoom */
    }

    .team-member-image{
        width: 100%;
        height: calc(200px + 20vw);	
        overflow: hidden;
        border-radius: 20px 0 0 0;
        position: relative;
    }

    .team-member-image img{
        border-radius: 20px 0 0 0;
        width: 100%; 
        height: 100%; 
        object-fit: cover;
  
        position: absolute;
        left: 0; 
        top: 0; 
        transition: transform 0.3s ease; 
        
    }

    .team-member-info h3{ 
        font-family: var(--ff-titles);
        font-size: 1.5rem;
        margin: 5px 0 8px 0;
    }

    



    .footer{
        padding: 75px 32px 32px 32px; 
    }

    .footer a{
        text-decoration: none;
        color:white;
    }

    .footer h3{
        margin-bottom: 1.5rem;
    }

    .footer .footer-content{
        border-bottom: 1px solid white;
        margin-bottom: 2rem;
    }

    .footer .footer-content > div{
        margin-bottom: 3rem;
    }

    .footer-content ul{
        padding: 0;
    }

    .footer .content-contact-us{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer address{
        font-style: normal;
        line-height: 1.25rem;
    }

    .footer-bottom{
        display: flex;
        flex-direction: column-reverse;
        font-weight: 400;
        font-size: .8rem;
    }

    .footer .footer-privacy{
        display: inline-flex;
        gap: 1rem;
        font-size: 1rem;
    }

    .footer .social-links{
        gap: 1rem;
        justify-content: start;
    }

    .footer .social-links a{
        transform: scale(1.2);
        background-color: transparent;
    }

    .page-plantilla-persona,
	.page-template-equipo-plantilla{
        background-color: #fff;
    }
	
	.page-template-equipo-plantilla main{
		background:#fff;
	}

    .content-member{
        display: flex;
        flex-direction: column;
        padding: 0 2rem;
        background-color: #fff;
    }

    .content-member .title{
        color: #000;
        font-size: 2rem;
    }

    .content-member .mobile-hidden{
        display: none;
    }

    .actions-v-card{
        background-color: #fff;
    }

    .actions-v-card ul{
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
        list-style: none;
        padding: 0;
    }

    .actions-v-card ul li{
        border-radius: 50%;
        background-color: #f5f5f5;
        padding: .5rem;
        border: 1px solid #274168 ;
    }

    .actions-v-card ul li a{
        color: #274168;
    }

    .content-member .about-section{
        color: #000;
        margin-bottom: 2rem;
    }

    .qualifications-section{
        color: #000;
        background-color: #EFEFEF;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 2rem 1rem 2rem 12.25%;
    }

    .qualifications-section ul li{
        margin-left: 1rem;
        position: relative;
    }

    .qualifications-section ul li::before{
        content: "";
        display: block;
        width: 1rem;
        height: 2px;
        background-color: #274168;
        position: absolute;
        left: -2rem;
        top: calc(50% - 1px);
    }

    .content-member .side-section{
        display: flex;
        flex-direction: column;
        gap: .5rem;
        padding: 4rem 0;
        color: #000;
    }

    .content-member .side-section ul{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .content-member .side-section ul li{
        margin: 0;
        
    }

    .content-member .contact p.subtitle{
        font-size: 1.5rem;
        font-weight: bold;
        margin-top: 1.5rem;
    }

    .content-member .contact p{
        margin: 0;
    }

    .content-member .contact a{
        color: #000;
        text-decoration: none;
    }

    .section-posts-relationated{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 2rem;
        gap: 1rem;
        color: #000;
		background: #fff;
    }

    .section-posts-relationated header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 1.5rem;
    }

	.container-title-mid.title-entradas{
		padding-inline:32px;
	}
	
	.container-title-mid .breadcrumbs{
		display: inline-flex;
		align-content: center;
		gap: 8px;
	}
	
	
	.container-title-mid .breadcrumbs a{
		color: #000;
		text-decoration: none;
		display: inline-flex;
	}
	
	.container-title-mid .breadcrumbs a:hover{
		text-decoration: underline;
	}
	
	.container-title-mid .breadcrumbs a svg{
		margin-left: 8px;
		transform: translatey(25%) translatex(0);
		color: var(--primary-color);
		transition: all .2s ease-in;
	}
	
	.container-title-mid .breadcrumbs a:hover svg{
		transform: translatey(25%) translatex(100%);
		transition: all .2s ease-in;
	}
	
	
    .section-posts-relationated header .view-more-link{
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        padding-right: 0;
        color: var(--primary-color);
    }


    .container-posts .post:hover .arrow,
    .section-posts-relationated header .view-more-link .arrow{
        margin-bottom: .25rem;
        transition: transform 0.3s;
    }

    
    .section-posts-relationated header .view-more-link:hover{
        text-decoration: underline;
    }

    .container-posts .post:hover .arrow,
    .section-posts-relationated header .view-more-link:hover .arrow{
        transform: translateX(5px);
        transition: transform 0.3s;
    }

    .section-posts-relationated .container-posts,
	.blog-grid-container
	{
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .section-posts-relationated .container-posts .post,
	.blog-grid-containe .blog-entry{
        flex: 1;
        margin: 2rem 0;
    }

    .section-posts-relationated .container-posts .post a{
        text-decoration: none;
        color: #000;
    }

    .section-posts-relationated .container-posts .post .label{
        color: #000;
    }

    .section-posts-relationated .container-posts .post h3{
        font-size: 1.5rem;
        font-weight: 500;
        margin: 0;
    }

    .section-posts-relationated .container-posts .post .meta{
        margin-bottom: 1rem;
    }

	.blog-entry .arrow,
    .section-posts-relationated .container-posts .post .arrow{
        color: var(--primary-color);
    }

	.blog-entry .arrow.mobileonly,
    .section-posts-relationated .container-posts .post .arrow.mobileonly{
        display: block;
    }

	.blog-entry .arrow.nomobile,
    .section-posts-relationated .container-posts .post .arrow.nomobile{
        display: none;
    }

    .section-posts-relationated .container-posts .post:hover{
        text-decoration: underline;
    }

    .section-faqs{
        background-color: white;
        color: black;
        padding: 3.5rem 3rem ;
    }

    .section-faqs header {
        font-weight: 700;
        text-align: center;
        margin-bottom: 4.5rem;
    }

    .section-faqs h2{
        font-family: var(--font-primary);
        font-size: 2.3rem;
    }

   /*  .section-faqs .faqs-header-description{
        font-size: 1.8rem;
    } */

    .section-faqs .container-faqs{
        display: grid; /* Cambiamos flexbox a grid */
        grid-template-columns: 1fr; /* Dos columnas iguales */
        /* display: flex;
        flex-wrap: wrap; */
        column-gap:3.5rem;
        
    }

    .section-faqs .container-faqs details{
        /* width: calc(50% - 1.75rem ); */
        border-top: 1.5px solid rgba(0, 0, 0, .25);
        overflow: hidden; /* Oculta contenido que se sale del contenedor */
        transition: max-height 0.3s ease; /* Animación fluida */
        
    }

    .section-faqs .container-faqs details[open]{
        max-height: 100rem;
     
    }

    .section-faqs .container-faqs details summary{
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        list-style: none;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        font-family: var(--ff-titles);
    }

    .section-faqs .container-faqs details:not([open]) summary .icon-closed,
    .section-faqs .container-faqs details[open] summary .icon-open{
        display: block;
    }

    .section-faqs .container-faqs details[open] summary .icon-closed,
    .section-faqs .container-faqs details:not([open]) summary .icon-open{
        display: none;
    }

    .section-contact-form {
        /* background: rgba(0, 0, 0, 0.7);
        padding: 2px 2rem 1rem ;  */
        text-align: center;
    }

    .header-section-contact-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 3rem;
        align-items: center;
        background-color: var(--primary-color);
        /* border: 3px dashed var(--secondary-color); */
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
        text-align: left;
    }

    .header-section-contact-form h2 {
        width: 100%;
        font-size: clamp(2.3rem, 7vw, 64px);
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .header-section-contact-form span,
    .header-section-contact-form a {
        width: 100%;
        color: #fff;
        font-size: .8rem;
        margin-bottom: 1rem;
    }

    .container-rating {
        display: flex;
        flex-direction: column;
        align-items: left;
        width: 100%;
        margin-bottom: 1rem;
    }

    .container-icons-rating {
        display: flex;
        justify-content: flex-start;
        gap: .5rem;
        align-items: center;
        color: yellow;
    }

    .container-form{
        padding: 1rem;
        width: 100%;
        max-width: 100vw;
        background-color: #fff;
    }

    .section-contact-form .contact-form{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0;
    }

    .section-contact-form .form-group{
        margin: .25rem 0;
        width: calc(50% - .5rem);
    }

    .section-contact-form .form-group-full{
        width: 100%;
        margin: .7rem 0;
    }

    .section-contact-form .form-group label{
        font-size: .8rem;
        text-align: left;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.5);
    }

    .section-contact-form .form-group:has(input:valid) label,
    .section-contact-form .form-group:has(input:focus) label,
    .section-contact-form .form-group:has(input:not(:placeholder-shown)) label,
    .section-contact-form .form-group input:focus,
    .section-contact-form .form-group input:valid
    .section-contact-form .form-group input:not(:placeholder-shown),
    .section-contact-form .form-group textarea:focus,
    .section-contact-form .form-group textarea:valid,
    .section-contact-form .form-group:has(textarea:focus) label{
        color: rgba(0, 0, 0, 1);
    }

    .section-contact-form .form-group:has(input:valid) input,
    .section-contact-form .form-group:has(input:focus) input{
        border-color: rgba(0, 0, 0, 1);
    }


    .section-contact-form .form-group:has(select:focus) label,
    .section-contact-form .form-group select:focus{
        border-color: rgba(0, 0, 0, 1);
        color: rgba(0, 0, 0, 1);;
    }

    .section-contact-form .form-group textarea{
        resize: none;
        height: 5rem;
    }

    .section-contact-form .form-group input[type="checkbox"]{
        height: 1.5rem;
        width: 1.5rem;
        cursor: pointer;
    }

    .form-group.form-group-full.form-group-checkbox{
        flex-direction: row;
        align-items: start;
    }





    .form-group.form-group-full.form-group-checkbox p{
        margin-top: 0;
        text-align: left;
        font-size: .7rem;
    }

    .section-contact-form .contact-form .btn{
        /* margin-left: auto;
        margin-inline:auto ; */
        background-color: #d9a21b;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
    }

                /* How it Works Section */
.how-it-works {
    background-color: #373b3c; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .how-it-works-header .label {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .how-it-works-header .title {
    font-size: 2rem;
    font-family: 'Poopins', sans-serif;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .how-it-works-header .description {
    font-size: clamp(0.875rem, 1vw ,1rem);
    color: #fff; /* Texto sutil */
    margin-bottom: 2rem;
  }
  
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .step {
    max-width: 300px;
    text-align: center;
    color: #fff; /* Texto oscuro */
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-2px);
    transition: transform .2s ease-in-out;
  }
  
  .step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: #373b3c;
    color: #fff; /* Amarillo para los números */
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffb400; /* Amarillo anaranjado */
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    font-size: clamp(0.875rem, 1vw ,1rem);
    color: #fff; /* Texto oscuro */
    line-height: 1.5;
  }

    /* Responsive */
    
    .local-success {
        width: 100%;
        background-color: #fff;
        padding: 5em 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100%; /* Asegura que el contenedor tenga una altura mínima */
      
      }
      
      .local-success-container {
        display: flex;    
        flex-direction: column-reverse;
        gap: 4rem;
        max-width: 1200px;
        width: 100%;
        height: 100%;
      }
      
      .local-success-map {
          flex: 1;
          height: 100%;
          width: 100%;
          aspect-ratio: 3/2;
      }
      
      
      
      .local-success-map iframe {
          flex: 1;
        width: 100%;
        height: 100%;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }
      
      .local-success-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #000;
      }
      
      .local-success-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #000;
      }
      
      .local-success-description {
        font-size: 1rem;
        color: #555;
        margin-bottom: .5rem;
      }
      
      .local-success-info {
        background-color: #fff;
        border: 1px solid #e5e5e5;
        padding: 1.5rem;
      }
      
      .local-success-location {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
      }
      
      .local-success-address,
      .local-success-phone,
      .local-success-hours {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #555;
      }
      
      .local-success-directions, .local-success-phone a {
        color: #877455;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        /* margin-inline-start: 1.5rem; */
        text-decoration: none;
        font-weight: bold;
      }
      
      .local-success-phone a {
        margin-inline-start: 0;
      }
      
      .local-success-directions:hover {
          text-decoration: underline;
          transform: translateX(2px);
          transition: transform 0.2s;
      }
      
      .local-success-info .item-info {
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        color: #555;
        font-size: 1rem;
      }
      
      
      
      .local-success-address{
          display: flex;
          flex-wrap: wrap;
      }
      
      .local-success-phone a{
          margin-bottom: 0;
      }
      
      .local-success-address span{
          width: calc(100% - 2rem);
      }
      
      .local-success-info .item-info .icon-info {
          filter: contrast(0.2);
      }
	  
	  .item-info img{
	          width: 23px;	
	  }
      
      .local-succes-info-content{
          display: flex;
          flex-direction: column;
          gap: .5rem;
          margin-top: 1rem;
      }
      
      .local-success-hours.item-info{
          margin-top: .5rem;
      }
      
      .hero-location-specific {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        background-color: #fff;
        width: 100%;
        /* max-width: 100vw; */
      }
      
      .hero-location-specific .breadcrumb {
        width: 100%;
        max-width: 720px;
        font-size: 0.85rem;
        color: #000;
        margin-bottom: 1.8rem;
      }
      
      .hero-location-specific .breadcrumb ul {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding-inline-start: 0;
      }
      
      .hero-location-specific .breadcrumb a{
        text-decoration: none;
        color: #000;
      }
      
      .hero-location-specific .hero-based{
        margin-bottom: .5rem;
        width: 100%;
      }
      
      .hero-location-specific .hero-based a{
        text-decoration: none;
        color: #000;
        font-size: 0.85rem;	
        
      }
      
      .hero-location-specific h1 {
        font-size: 3rem;
        font-weight: bold;
        color: #000;
        text-align: left;
        margin-top:0;
        margin-bottom: 1rem;
        line-height:1;
      }
      
      .hero-location-specific .description {
        font-size: 1rem;
        color: #000;
        text-align: left;
        margin-bottom: 1rem;
      }
      
      
      .hero-location-specific .hero-container-ctas {
        display: flex;
        gap: 1rem;
        margin-top: 2.5rem;
        margin-bottom: 3rem;
      }
      
      .hero-location-specific .hero-container-ctas .btn-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #d9a41d;
        color: #000;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1;
        padding: .8rem 1rem;
      }
      
      .hero-location-specific .hero-container-ctas .btn-transparent {
        display: flex;
        background-color: transparent;
        padding-inline: 0;
        align-items: center;
        gap: .5rem;
      }
      
      .hero-location-specific .hero-container-ctas .btn-transparent span {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        background-color: #d9a41d;
        border-radius: 50%;
        padding: .33rem;
      }
      
      .hero-container-image{
        display: flex;
        width: 100%;
        max-width: calc(720px - 3.2rem);
        height: auto;
        aspect-ratio: 1;
        position: relative;
        overflow: hidden;
      }
      
      .hero-container-image img.background-image{
        max-width: 100%;
        height: auto;
        max-height: 100%;
        aspect-ratio: 1;
        object-fit: cover; 
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        border-radius: 20px;
      }
      
      .hero-location-address{
        display: flex;
        flex-direction: column;
        width: calc(100% - 3.2rem);
        max-width: calc(520px - 3.2rem);
        height: 129px;
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        background-color: #fff;
        border-radius: .6rem;
        padding: 1rem;
      
      }
      
      .hero-location-address .thumbnail {
        height: 40px; /* Tamaño específico */
        width: 40px ;  /* Tamaño específico */
        border-radius: 50%;
        margin-inline-end: 1rem;
      }
      
      
      .hero-location-address .location{
        display: flex;
        align-items: center;
        background-color: transparent;
      
      }
      
      .hero-location-address .location p{
        margin: 0;
        font-size: .9rem;
      }

      .hero-location-address .telephone{
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;

      }
      
      .hero-location-address .telephone a{
        display: flex;
        width: 100%;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
        text-decoration: none;
        font-size: .9rem;
        font-weight: 700;
        color: var(--primary-color);
      }
      
      .hero-location-address .location a{
        font-size: .9rem;
        font-weight: 500;
        color: #000;
      }
      
      .hero-location-address .telephone .icon{
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        background-color: var(--secondary-color);
        padding: .25rem;
        border-radius: 50%;
      }
      
      .hero-location-specific .hero-location-footer{
        background-color: transparent;
        color: #000;
        margin-top: 2rem;
        font-size: .833rem;
      }

      .blog-post {
        display: block;
        background-color: #fff;
        border-left: 1px solid #e0e0e0;
    }

    .blog-post article {
        display: flex;
        flex-direction: column;
        /* grid-gap: 2rem; */
        border-right: 1px solid #e0e0e0;
    }

    .blog-post header{
        height: auto;
        min-height: 190px;
        
        border-bottom: 1px solid #e0e0e0;
        margin-inline: 1rem;   
    }

    .blog-post .title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
        color: #000;
        
        margin-bottom: 3rem;
    }

    .blog-post .breadcrumbs {
        font-weight: 700;
        margin-top: 1rem;
    }

    .blog-post .breadcrumbs ul {
        list-style: none;
        padding: 0;
        
    }

    .blog-post .breadcrumbs ul a {
        text-decoration: none;
        color: #000;
    }

    .blog-post header .label {
        color: #000;
        font-size: .8rem;
        font-weight: 500;
    }

    .blog-post header .label a {
        color: var(--secondary-color);
        text-decoration: none;
    }

    .blog-post .article-content {
        color: #1c1c1c;
        font-display: swap;
        grid-column: 1 / 3;
        margin-inline: 1rem;
    }

    .blog-post .article-content h2,
    .blog-post .article-content p {
        font-size: 16px;
    }

    .blog-post .article-content p {
        line-height: 1.6;
        color: #333;
    }

    .blog-post aside {
        padding: 1rem;	
        /* grid-column: 3 / 4; */
        background-color: #fff;
    }

    .blog-post aside .profile-card {
        background-color: #fff;
        color: #000;
    }


    

    .blog-post .content-aside  {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-color: #fff;
    }

    .blog-post .content-aside .profile-card  {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #e0e0e0;
    }

    .blog-post .profile-card .card-title,
    .blog-post .content-aside .related-articles .card-title {
        width: 100%;
        font-size: 1rem;
        font-weight: 700;
        color: #000;
        margin: 1rem 0 1rem 0rem;
    }

    .blog-post .profile-card .profile-card-image{
        width: 153px;
        height: 153px;
        border-top-left-radius: 20px;
    }

    .blog-post .profile-card .profile-card-content{
        width: calc(100% - 153px - 2rem);
        height: auto;
        margin: .5rem 1rem 1rem 1rem;
    }

    .blog-post .profile-card .profile-card-image img{
        width: 100%;
        height: 100%;
        aspect-ratio: 153 / 153;
        border-top-left-radius: 20px;
        object-fit: cover;
    }

    .blog-post .content-aside .label {
        width: 100%;
        height: auto;
    }


    .blog-post .content-aside .profile-card .author {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--secondary-color);
        margin: 0;
    }

    .blog-post .content-aside .profile-card .profile-role {
        width: 100%;
        font-size: .9rem;
        font-weight: 500;
        margin-top: .5rem;
        margin-bottom: .5rem;
        color: #000;
    }

    .blog-post .content-aside .profile-card .profile-bio {
        font-size: .9rem;
        font-weight: 400;
        color: #000;
        border-top: 1px solid #e0e0e0;
    }

    .blog-post .content-aside .profile-card .link-more {
        color: #000;
        text-decoration: none;
    }

    .blog-post .content-aside .related-articles {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        /* margin: 1rem 0 1rem 0; */
        margin: 2rem 0 75px 0;
        
    }

    .blog-post .content-aside .related-articles-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        color: #000;
        transition: transform .3s;
    }

    .blog-post .content-aside .related-articles-list a span {
        font-family: var(--ff-titles);
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--secondary-color);
        
    }

    

    .blog-post .content-aside .related-articles-list a svg {
        width: auto;
        height: 1rem;
    }


	.blog-entry a:hover,
    .blog-post .content-aside .related-articles-list a:hover  {
        text-decoration: underline;
        text-decoration-color: var(--secondary-color);
        transform: translateX(2px);
        transition: transform .3s;
            }
	
	.blog-entry a svg{
		transform: translateX(0);
		transition: transform .3s;
	}
	
	.blog-entry a:hover svg{
		transform: translateX(100%);
        transition: transform .3s;
	}

	.blog-entry-meta:not(:has(.blog-entry-category)){
		margin-bottom: 2rem;
	}

            .split-text-image {
                display: flex;
                flex-direction: column;
                padding: 2rem 1rem;
                background-color: #fff;
                color: #fff;
                width: 100%;
              }
            
              .split-text-image .split-text-container{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 2rem 1rem;
                background-color: var(--primary-color);
                min-height: 420px;
                border-top-left-radius: 20px;
            
              }
            
              .split-text-image .split-text-title{
                font-size: clamp(3rem, 3vw, 2.8rem);
                font-weight: 500;
                line-height: 1.2;
                font-family: var(--ff-titles);
                color: #fff;
              }
            
              .split-text-image .split-image-container{
                width: 100%;                
              }

			/*Páginas de entrada*/	
	
	         .container-title-mid.title-entradas{
					width:100%;
				    margin: 3rem 0px;
			  }
	
	.container-title-mid.title-entradas h1{
		font-size: 36px;
		font-family: var(--ff-primary);
		line-height: 1.2;
		color: #000;
		/* margin-bottom: 4px; */
	}
	
		.blog-grid-container{
			display: grid;
			grid-template-columns: 1fr;
			row-gap: 72px;
			margin-top: 2rem;
			padding-inline: 32px;
		}
		
	
	.blog-entry-category{
		font-size: 14px;
		font-weight: 700;
		margin-bottom: 6px;
	}
	
	.blog-entry-date-author{
		/* margin-top: 16px; */
	}

    .blog-entry-title.title{
        padding: .25rem 0;
    }

	.blog-entry a{
			text-decoration: none;
			color: #000;
			font-weight: normal;
		}
		
		.blog-entry .blog-entry-thumbnail{
			aspect-ratio: 2 / 1;
			/* background: linear-gradient(135deg, #f2f2f2 0%, #a0c3ff 100%); */
			background: #abb8c3;
		}
		
		.blog-entry .blog-entry-thumbnail img{
			height: 100%;
			width: 100%;
			aspect-ratio: 2 / 1;	
			object-fit: cover;
		}
	
	.blog-entry .title{
		font-weight: 500;
	}
	
    .section-contact{
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 2rem;
        background-color: #fff;
        color: #000;
    }

    .numbered-list{
        list-style: decimal;
        padding-inline-start: 2rem;
    }

    .cta.cta-arrow{
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    a.cta.cta-arrow{
        text-decoration: none;
        color: var(--primary-color);
        font-size: 1rem;
        font-weight: 700;    
    }

    a.cta.cta-arrow svg{
        transform: scale(.5) translate(-50%,-8px);
        transition: transform .3s;
    }

    a.cta.cta-arrow:hover {
        text-decoration: underline;
    }

    a.cta.cta-arrow:hover svg{
        transform: scale(.5) translate(5px, -8px);
        transition: transform .3s;
    }
    
    .numbered-list li::marker{
        unicode-bidi: isolate;
        font-variant-numeric: tabular-nums;
        text-transform: none;
        text-indent: 0;
        text-align: start;
        text-align-last: start;
    }

    .item-aside{
        margin-top: 2rem;
    }
    
    a.link-in-text{
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 700;
    }

    a.link-in-text:hover{
        text-decoration: underline;
    }

    .section-contact .form-contact{
        width: 100%;
    }

    .section-contact .form-contact fieldset {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        border: none;
        padding: 0;
        margin: 0;
    }

    .section-contact .form-contact fieldset legend{
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1rem;
    }

    .form-group.double{
        display: flex;
        gap: 1rem;
    }

    .form-item{
        flex: 1;
    }

    .form-item input, .form-item textarea{
        width: 100%;
        padding: 14px 28px;
    }
	
	.form-item textarea{
		height: 96px;
		min-height: 32px;
		min-width: 100%;
		max-width: 100%;
	}
	
	.form-item > p{
		margin: 6px;
		margin-left: 0;
		margin-left: 0;
	}

    .info-section-items{
        /* background-color: #f0f0f0 ; */
        color: #000;
		padding: clamp(20px, 5vw, 50px);
		margin-top: 4rem;
    	margin-bottom: 4rem;
      }
      /* .info-section-items > header{
        background-color: transparent;
      } */
      .info-list{
        display:grid;
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 2rem;
        place-items: center;
      }
      .info-content > header{
        margin: 16px 0;
      }
      .info-call-to-action{
        background-color: transparent;
        margin: 0;
        margin-top: 12px;
        padding: 0;
      }


    @media (min-width: 768px){

        .hero-member{
            min-height: auto;
            background-color: #4E525A;
        }

        .content-hero-member{
            flex-direction: row;
            height: auto;
            max-width: 1170px;
            margin: 0 auto;
        }

        .content-hero-member  .container-img-member{
            display: flex;
            flex: 1 1 50%;
            padding: 24px 20px 0 0;
            background: transparent;
        }

        .content-hero-member .container-img-member img {
            width: 100%;
        }

        .profile-card{
            flex: 1 1 50%;
        }

        .content-hero-member  blockquote p{
            position: relative;
            font-size: 1.5rem;
        }

        .section-posts-relationated .container-posts{
            flex-direction: row;
            gap: 2rem;
        }
		
		.blog-grid-container{
			grid-template-columns: 1fr 1fr 1fr;
			
		}

        .section-posts-relationated .container-posts .post .meta{
            margin-bottom: 2rem;
        }

		.blog-entry .arrow.mobileonly,
        .section-posts-relationated .container-posts .post .arrow.mobileonly{
            display: none;
        }

		.blog-entry .arrow.nomobile,
        .section-posts-relationated .container-posts .post .arrow.nomobile{
            display: block;
        }

        .section-posts-relationated .view-more-link{
            padding-right: 4rem;
        }

        .section-faqs .container-faqs{
            grid-template-columns: 1fr;
            max-width: 800px;
            margin: 0 auto;
        }
        

        .section-faqs .container-faqs details:not([open]){
        max-height:5rem;
        /* min-height:5rem; */
        /* overflow: hidden; */
        }

        .section-faqs .container-faqs details:not([open]) summary{
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }

        .section-contact-form {
            display: flex;
            gap: 1rem;
            padding: 0;
            background-color: #fff;
        }

        .header-section-contact-form {
            width: 40%;
            padding: 7rem 3rem;
            font-size: 1.5rem;
            border: none;
            border-top-right-radius: 2rem;
            /* border: 1px solid red; */
            margin-bottom: 0;
        }

        .container-form{
            width: 60%;
            margin-left: 1rem;	
            padding: 2rem 4rem;
        }


        .header-section-contact-form h1 {
            width: 75%;
            font-size: clamp(3.33rem, 10vw, 50px) ;
            align-self: self-start;
            margin-bottom: 3rem;
            
        }

        .header-section-contact-form span,
        .header-section-contact-form a {
            width: 100%;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .container-rating {
            display: flex;
            flex-direction: column;
            align-items: left;
            width: 100%;
            margin-bottom: 1rem;
        }

        .container-icons-rating {
            display: flex;
            justify-content: flex-start;
            gap: .5rem;
            align-items: center;
            color: yellow;
        }

       
  .hero-location-specific{
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    align-items: start;
    padding: 0;
    background-color: transparent;
    min-height: 720px;
    background-image: url('/assets/hero-locations-specific.webp');
  }

  .hero-location-specific .breadcrumb {
    width: auto;
    max-width: calc(50vw - 4rem);
    margin-bottom: 0;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255,255,255,0.75);
    border-radius: 5px;
    padding: 0 .5rem;
    font-weight: 700;
    z-index: 1;
  }


  .hero-location-specific .breadcrumb li:has(a:hover){
    transform: translateY(-1px);
  }

  .hero-location-specific .description{
    width: 75%;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }


  .hero-location-specific a{
    cursor: pointer;
  }
  
  .hero-location-specific img.background-image{
    border-radius: 0;
    min-height: 720px;
    max-height: 720px;
    object-fit: cover;
  }
 
  .hero-location-specific .hero-container-image{
    width: 50%;
    max-width: 50vw;
    min-height: 720px;
  }


  .hero-location-specific h1{
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .hero-location-specific .hero-based a,
  .hero-location-specific h1,
  .hero-location-specific .description{
    color: #fff;
  }

  .hero-location-specific .hero-container-ctas .btn-cta.btn-transparent{
    color: #fff;
  }
  

  .hero-location-specific .hero-location-footer{
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .hero-location-specific .hero-content{
    width: 100%;
    max-width: 50vw;
    height: 100%;
    max-height: 720px;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    background-color: var(--primary-color);
    padding: 6rem 3.5rem 0 5rem;
    color: #fff;;
    margin: 0;
    border-top-left-radius: 32px;
  }

  .hero-location-specific .hero-based{
    color: #fff;
  }


  .hero-location-specific .hero-location-footer{
    width: 50vw;
    position: absolute;
    /* left: 50%; */
    padding: 0 6rem;

    bottom: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  .hero-location-specific .location{
    min-height: auto;
  }

  .hero-location-specific .hero-location-address{
    display: flex;
    flex-direction: row;
    max-width: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .hero-location-specific .hero-location-address > *{
    width: 100%;
    align-items: center;
    justify-content: space-around;
  }

  .hero-location-specific .telephone a{
    margin-top: 0;
  }

    .section-contact{
        display: grid;
        /* grid-template-columns: 1fr 1fr; */
        /* column-gap: 42px; */
    }

    
    .section-contact .header-section{
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .section-contact .first-column{
        grid-column: 1 / 2;
    }

    .section-contact .second-column{
        grid-column: 2 / 3;
    }

    .aside-contact{
        grid-row: 2 / 4;
    }
    
    .section-contact .form-section{
        grid-column: 1 / 3;
        margin-top: 72px;
    }

    .info-list{
        display:grid;
        grid-template-columns: repeat(3,1fr);
        grid-column: 56px;
        }
    }

    @media (min-width: 768px) and (max-width: 1200px) {
        
        .practice-group .list-areas {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
        
        .team-container {
            grid-template-columns: repeat(3, 1fr);
        }

        .team-member-image{
            height: 350px;	
        }

        .header-section-contact-form {
            padding: 2rem 1.5rem;
        }

        .container-form{
            padding: 2rem 1rem;
            margin-inline-start: 0;
        }


        .header-section-contact-form h2{
            line-height: 1.2;
            margin-top: -3rem;
            margin-bottom: 2rem;
        }
        

        .hero-location-specific .hero-content{
            padding: 3rem 1.5rem 0 1.5rem ;
        }

        .hero-location-specific .hero-location-footer{
            padding: 0 1.5rem 0 3rem;
            width: 50%;
        }

        .split-text-image .split-text-container{
            max-height: 320px;
            min-height: 320px;
        }

    }

    @media (min-width: 1200px) {
		
		.page-template-equipo-plantilla main{
			background:#fff;
		}
		
        .hero:not(.hero-page) {
            height: calc(100vh - 100px);
            /* min-height: 620px; */
			max-height: 900px;
            height: 90vh;
        }

        .hero__overlay {
            max-width: 1280px;
            padding: 16vh 44px;
            width: 80%;
        }

        .hero .title {
            font-size: 3rem;
            line-height: 3.5rem;
        }

        .hero__description {
            width: 85%;
            line-height: 1.5;
        }


        .location {
            position: relative;
            background-color: #83a3d3;
            min-height: 600px;
        }

        .about-us, .stories-content {
            position: absolute;
            top: -45px;
            right: 0px;
            width: 45%;
            padding: 55px;
            z-index: 10;
        }

        .location-stats {
            margin-inline: auto;
            min-height: 700px;
            background-position: center center;
            background-size: 100% 120%;
        }

        .location-stats h3.title {
            width: 40%;
            font-size: 36px;
            line-height: 42px;
        }

        .about-us {
            border-top-left-radius: 40px;
        }

        .location .container-stats {
            flex-direction: row;
            justify-content: space-evenly;
            max-width: 1200px;
            margin: 125px auto 0 auto;
        }

        .item-stat {
            position: relative;
            width: 100%;
        }

        .item-stat:not(:last-of-type):after {
            content: "";
            margin: 0;
            padding: 0;
            position: absolute;
            top: 0;
            right: 0;
            width: 2rem;
            height: 2rem;
            border-bottom: none;
            border-right: 2px solid rgb(39, 65, 104);
            transform: translate(0, 100%);
        }

        .leaders {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding-top: 140px;
        }

        .leaders .description h2 {
            font-size: 36px;
            padding-right: 1rem;
        }

        .leaders .description p {
            margin-top: 0;
            max-width: 350px;
            font-size: 20px;

        }

        .carousel {
            width: 100%;
            
        }

        .container-leaders {
            width: 60%;
        }

        .member.carousel-item h3 {
            display: table-cell;
            vertical-align: bottom;
            max-width: 200px;
            min-width: 200px;
            margin: 0 auto;
            text-align: left;
            line-height: 1.5;
            margin: auto auto 0 0;
        }

        .member.carousel-item p {
            text-align: left;
            margin: 8px auto 8px 0;
        }

        .practices-areas {
            padding: 88px 32px 84px 250px;
        }


        .practices-areas .description {
            width: 52.63%;
        }

        .practices-areas .title {
            font-size: 28px;
            line-height: 33.87px;
            padding: 0;
        }

        .practices-areas .container-highlights {
            display: flex;
            flex-direction: row;
            gap: 52px;
            margin-top: 42px;
        }

        .highlight-value {
            font-size: 32px;
        }

        .item-area .description {
            width: 100%;
        }

        .stories {
            width: 100%;
            /* max-height: 375px; */
            position: relative;
        }

        .stories .container-img {
            height: 100%;
        }

        .stories .container-img img {
            min-width: auto;
            object-fit: cover;
            object-position: top;
        }

        .stories .stories-content {
            display: flex;
            justify-content: center;
            position: absolute;
            border-top-left-radius: 40px;
            padding: 40px;
            min-height: 375px;
        }

        .stories .description {
            font-size: 36px;
            font-weight: 600;
            line-height: 42px;
        }

        .stories .stories-content .btn {
            max-width: max-content;
        }

        .press-releases-news {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5% 10%;
        }

        /* Containers */
        .container-releases-news {
            flex-direction: row;
            padding: 0;
            gap: 5rem;
        }

        .container-releases-news .container-releases,
        .container-releases-news .container-news {
            margin-bottom: 0;
        }

        .container-releases-news div:has(>.title) {
            margin-bottom: 2.5rem;
        }

        .container-releases-news div>.title {
            font-size: 36px;
        }

        .container-releases-news .title+a:hover {
            margin-left: 5px;
            transition: all 0.2s ease-in-out;
        }

        /* Item Releases */
        .item-release p {
            width: 370px;
        }

        .item-release:not(:last-of-type) {
            border: none;
        }

        .item-release time {
            min-width: 100px;
        }

        .item-release time br {
            display: block;
        }

        /* Item News */
        .item-news {
            max-width: 400px;
        }

        .contact-section {
            display: flex;
            /* max-height: 720px; */
        }

        .contact-section .contact-info {
            max-width: 47%;
            min-width: 47%;
            padding: 4rem 10% 1rem 3rem;
            border-top-right-radius: 28px;
        }

        .contact-section .contact-info .title {
            font-size: 3rem;
        }

        .contact-info .description {
            width: 50%;
            min-width: 400px;
        }

        .contact-section .social-links {
            justify-content: start;
        }

        .contact-section .contact-form {
            display: flex;
            /* justify-content: center; */
            align-items: center;
            flex-wrap: wrap;
            column-gap: 2rem;
            height: auto;
            padding: 7.5% 3rem 10% 3rem;
        }


        .contact-section .contact-form>.form-group:nth-child(-n+4) {
            width: calc(50% - 1rem);
            margin: 1.5rem 0;
        }

        .contact-form .form-group.subject-selector, .contact-form .form-group.contact-form-message {
            display: flex;
            width: 100%;
            margin: 1rem 0;
        }

        .form-group.subject-selector .options {
            display: flex;
            flex-direction: row;
            gap: 2rem;
        }

       
        .content-hero {
            top: 33%;
        }

        .press-releases-news {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5% 10%;
        }

        .container-releases-news {
            flex-direction: row;
            padding: 0;
            gap: 5rem;
        }

        .container-releases-news .container-releases,
        .container-releases-news .container-news {
            margin-bottom: 0;
        }

        .container-releases-news div:has(>.title) {
            margin-bottom: 2.5rem;
        }

        .container-releases-news div>.title {
            font-size: 36px;
        }

        .container-releases-news .title+a:hover {
            margin-left: 5px;
            transition: all .2s ease-in-out;
        }

        .item-release {
            transition: transform .2s ease-in-out;
        }

        .item-release a {
            display: flex;
            gap: 1.5rem;
        }


        .item-release:has(a:hover) {
            transform: translateX(10px);
            transition: transform .2s ease-in-out;
        }

        .item-release p {
            width: 370px;
        }

        .item-release:not(:last-of-type) {
            border: none;
        }

        .item-release time {
            min-width: 100px;
        }

        .item-release time br {
            display: block;
        }

        .item-news {
            max-width: 400px;
        }

        .item-news a:hover {
            filter: contrast(0.6);
            transition: filter .2s ease-in;
        }


        .practice-group .arrow.nomobile{
            display: block;
        }

        .practice-group .arrow.mobileonly{
            display: none;
        }

        .practice-group .list-areas{
        display: grid;
        column-gap: 40px;
        grid-template-columns: repeat(3, 1fr);
        }


        .practice-group .list-areas .item-area a svg,
        .practice-group .list-areas .item-area a svg{
            transform: translateX(0px);
            transition: transform .3s ease-in;
        }


        .practice-group .list-areas .item-area a:hover span,
        .practice-group .list-areas .item-area a:active span{
            text-decoration: underline;
            text-underline-offset: 3px;
        }


        .practice-group .list-areas .item-area a:hover svg,
        .practice-group .list-areas .item-area a:active svg{
            transform: translateX(30px);
            transition: transform .3s ease-in;
        }


        .footer{
            padding: 120px 70px;
        }

        .footer-container .footer-content{
            display: flex;
            flex-direction: row;
            border: none;
        }

        .footer .footer-section {
            width: 25%;
            justify-content: center;
            
        }

        .footer .footer-section li{
            margin: 1rem 0;
        }

        .footer .footer-bottom{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .footer .footer-bottom .rights{
            width: 100%;
            /* border: 1px solid red; */
        }

        .footer .footer-bottom .rights p{
            width: 50%;
        }

        .footer .footer-privacy-social{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .footer .social-links a{
            transform: scale(1.7);
        }
        footer .social-links picture img{
            width: 16px;
        }

        .vertical-line.footer-section{
            width: 15%;
            position: relative;
        }
        

        .vertical-line::after {
            content: "";
            width: 1px; /* Grosor de la línea */
            height: 100%;
            top: 0;
            left: 50%;
            position: absolute;
            background-color: white;
            align-self: stretch; /* Asegura que la línea ocupe todo el espacio vertical */
        }

        .team-container {
            gap: 1.5rem;
            grid-template-columns: repeat(4, 1fr);
        }

        .team-member-image{
            height: 330px;	
        }

        .content-member{
            min-height: 720px;
            margin-top: 4rem;
            margin-bottom: 4rem;
            position: relative;
            height: auto;
            overflow: hidden;
        }

        .content-member .about-section{
            padding-right: calc(350px + 2rem);
        }

        .content-member .qualifications-section{
          width: calc(100% - calc(350px - 2rem));
          margin-left: 0;
          padding: 3.5rem 2rem;

        }

        .content-member ul{
            margin-left: 1rem;
        }

        .lg-hidden{
            display: none;
        }

        .content-member .mobile-hidden{
            display: block;
        }
        
        .content-member .side-section{
            width: 350px;
            min-width: 350px;
            max-width: 350px;
            max-height: 525px;
            background-color: #fff;
            border-left: 5px solid #274168;
            padding-left: 1rem;
            padding-top: 0;
            right: 0;
            position: absolute;
            top: 0;
            overflow: hidden;
        }

        .side-section.fixed {
            position: fixed;
            top: 1rem;
            z-index: 10;
            transition: all 0.3s;
            
        }

        .side-section.stopped {
            position: static;
            top: auto; /* Deja de estar fijo */
            right: 0; /* Se queda al final del contenedor */
            bottom: 0; /* Se queda al final del contenedor */
            transition: all 0.3s;
        }        

         
    .local-success{
        min-height: 560px;
    }
    
    

    .local-success-container {
        flex-direction: row;
        height: 100%;
        min-height: 450px;
        align-items: center;
    }

    .local-success-address.item-info{
        width: 100%;
    }

    .local-success-map{
        height: 100%;
        aspect-ratio: 583 / 688; /* Mantiene la proporción */
    }
    


    .local-success-map iframe {
        height: 100%;
    }
    

    .local-success-description {
        width: 80%;
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .local-success-content {
        width: 50%;
        padding-top: 2rem;
    }

    .local-success-info{
        width: 80%;
        /* margin-top: 2rem; */
    }

    .blog-post{
        padding-bottom: 75px;
    }

    .blog-post article {
        display: grid;
        grid-template-columns: 1fr 1fr 1.3fr;
        grid-gap: 2rem;
        border-right: 1px solid #e0e0e0;
        }
        
        .blog-post aside {
            position: sticky;
            top: 75px;
            height: max-content;
         
        }

        .blog-post header{
            grid-column: 1 / 5;
            grid-row: 1;
        }

        .blog-post .related-articles{
            margin: 1rem 0 1rem 0;
        }
        

        .blog-post .title{
            margin-right: 35%;
            font-size: clamp(1.5rem, 3vw, 3rem);
        }

        .split-text-image{
            flex-direction: row;
          }

          .split-text-image .split-text-container{
            width: 33.333%;
            padding-inline:32px;
          }

          .split-text-image .split-text-container .split-text-title{
            font-size: 3rem;
            line-height: 1;
          }

          .split-text-image .split-image-container{
            min-height: 100%;
            width: 66.666%;
            overflow: clip ;
          }
          
          .split-text-image .split-image-container img{
            height: 100%;
            min-height: 420px;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            object-position: left;

    }

    @media (min-width: 1920px) {
        .hero-location-specific{
            height: 720px;
        }

        .hero-location-specific .hero-container-image{
            height: 720px;
        }

        .hero-location-specific .hero-container-image img.background-image{
            width: 100%;
        }
    }


  }
    /* Scroll Reveal */
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navigation.pagination{
	display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem;	
}
a.page-numbers{
	color:var(--primary-color);
	text-decoration: none;
}
.nav-links .page-numbers{
	border: 1px solid var(--wp--preset--color--black);
    padding: .45rem;
}


/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#comments{
	width:100%;
	padding:1rem;
	max-width: 600px;
}
.comment-form p{
	display: flex;
    flex-flow: column;
}

.comment-form-cookies-consent{
	display: flex;
    flex-flow: row;
}

.container-contact{
	width: 1440px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
	padding: 60px 60px 40px;
}
.container-nap{
	display:grid;
	grid-template-columns:repeat(2,1fr);
}
@media (max-width:680px){
	.container-nap{
		grid-template-columns:repeat(1,1fr);
}
}

.hero-background picture img{
    max-height: 400px;
}

.wpcf7{
	width:100%;
}

.wpcf7 .form-group p{
	display:flex;
	flex-direction: column;
    gap: 0.5rem;
}

.wpcf7-form-control-wrap input{
	width: 100%;
}

@media (min-width: 1200px){
	.contact-section  .wpcf7-form>.form-group:nth-child(-n+5){
        width: calc(50% - 1rem);
        margin: 1.5rem 0;
	}
}

.wp-block-separator{
    border-top: 1px solid #dddddd;
    margin: 1.5rem 0;
}

.wp-block-image img{
    width: 100%;
    max-width: 1200px;
}


/* Grid Reconocimiento */
.grid-container-icons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* gap: 20px; */
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
}

.grid-container-icons img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.grid-container-icons img:first-child {
    grid-row: 1 / 3;
}

@media (max-width: 768px) {
    .grid-container-icons {
        grid-template-columns: 1fr;
    }
    
    .grid-container-icons img:first-child {
        grid-row: auto;
    }
}


/* Estilos para la sección de comentarios */
.comments-area {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-family: var(--ff-titles);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.comment-reply-title small a {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

.comment-form p {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comment-form label {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
    min-height: 120px;
}

.comment-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.form-submit .submit {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.form-submit .submit:hover {
    background-color: color-mix(in srgb,var(--primary-color) 85%, #fff 15%);
}

.logged-in-as {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1rem;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}


.grid-container-icons {
    display: grid;
    /* grid-template-columns: 200px 100px;
    grid-template-rows: 40px 40px; */
    grid-template-areas:
      "img1 img3"
      "img2 img3"; 
    gap: 10px; 
  }
  
  .rectangular:nth-child(1) { /* Primera imagen */
    grid-area: img1;
  }
  .rectangular:nth-child(2) { /* Segunda imagen */
    grid-area: img2;
  }
  
  .square {
    grid-area: img3;
  }
  
  /* Ajustes internos de cada contenedor */
  .item {
    display: flex;           /* Para centrar la imagen si deseas */
    align-items: center;
    justify-content: center;
  }
  
  /* Evita que las imágenes se recorten y mantiene su proporción */
  .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* No se recorta; si sobra espacio, habrá “barras” */
  }
  
  .info-list-item{
    width: 100%;
    gap: 34px;
  }

  .container-info-logo img{
    height: auto;
    max-height: 220px;
    width: 100%;
    border-top-left-radius: 20px;
  }

