html {
    overflow-x: hidden
}

body {
    overflow: hidden
}

:root {
    --beige2: #fcfbfa
}

#participacion-intemares section {
    background-color: var(--azul)
}

#participacion-intemares section.sec_inte {
    width: 100%;
    overflow: hidden
}

#participacion-intemares section.sec_inte#sec1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 100vh;
    padding-top: 15rem;
    padding-bottom: 10rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative
}

#participacion-intemares section.sec_inte#sec1::before {
    content: "";
    display: block;
    height: 20rem;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(to top, #003b64, rgba(0, 59, 100, 0));
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

#participacion-intemares section.sec_inte#sec1 .container {
    display: flex;
    gap: 4rem 2rem;
    justify-content: stretch;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

#participacion-intemares section.sec_inte#sec1 .container .description {
    width: calc((100% - 18rem) * .8 + 14rem)
}

#participacion-intemares section.sec_inte#sec1 .container .description .tit {
    padding: 0;
    margin: 0;
    font-size: 4.2360679775rem;
    color: var(--beige);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 2rem
}

#participacion-intemares section.sec_inte#sec1 .container .description .excerpt {
    color: var(--beige);
    font-size: 1.6180339887rem;
    line-height: 1.2;
    font-weight: 400
}

#participacion-intemares section.sec_inte#sec1 .container .explorar {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: flex-end
}

#participacion-intemares section.sec_inte#sec2 {
    position: relative;
    z-index: 2;
    padding-top: 10rem;
    padding-bottom: 10rem;
    border-radius: 0 0 4rem 4rem
}

.explorar-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: .75rem;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    color: var(--beige)
}

.explorar-btn img,
.explorar-btn svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    color: var(--beige);
    fill: var(--beige);
    transition: .25s ease-out 0s
}

.explorar-btn .txt-btn {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit
}

.explorar-btn:hover img,
.explorar-btn:hover svg {
    transform: translateY(-.25rem);
    -webkit-animation-name: explore-arrow;
    animation-name: explore-arrow;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: .25s;
    animation-delay: .25s
}

.participacion-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max(50% - 1rem, 13rem)), 1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: 2rem
}

.participacion-posts .participacion-single-post a {
    display: block;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: 0;
    padding: 0 0 56.25%;
    border-radius: 1rem;
    overflow: hidden
}

.participacion-posts .participacion-single-post a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 50%;
    height: 0;
    padding: 0 0 50%;
    transform: translate(-50%, 50%);
    background-image: radial-gradient(#379f9e, rgba(55, 159, 158, 0) 75%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 3;
    opacity: .42
}

.participacion-posts .participacion-single-post a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50%;
    background-color: transparent;
    background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2
}

.participacion-posts .participacion-single-post a .info {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    align-items: flex-end;
    gap: 3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 1.5rem 1.5rem;
    z-index: 4;
    pointer-events: none
}

.participacion-posts .participacion-single-post a .info .title {
    font-size: 1.6180339887rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    color: #fff
}

.participacion-posts .participacion-single-post a .info svg {
    font-size: 1.5rem;
    height: 1em;
    width: 1em;
    fill: #fff
}

.participacion-posts .participacion-single-post a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1
}

.participacion-posts .participacion-single-post a .hover-post {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(1.5rem);
    backdrop-filter: blur(1.5rem);
    padding: 3rem;
    z-index: 5;
    opacity: 0;
    transition: 125ms cubic-bezier(.05, 0, 0, 1) 0s;
    pointer-events: none;
    border-radius: 1rem;
    overflow: hidden
}

.participacion-posts .participacion-single-post a .inner {
    border: 1px solid #fff;
    aspect-ratio: 1;
    width: max((100% + 6rem) * 9 / 16 - 6rem, min(18rem, 100%));
    height: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.participacion-posts .participacion-single-post a .inner span.label {
    margin-top: -.1em
}

.participacion-posts .participacion-single-post a:hover .hover-post {
    transition: .6s cubic-bezier(.25, 1, .5, 1) 0s;
    opacity: 1
}

.titAnim .word {
    display: inline-flex;
    flex-wrap: nowrap
}

@media only screen and (max-width:1201px) {
    .participacion-posts .participacion-single-post a {
        padding: 0 0 133.3333333333%
    }

    .participacion-posts .participacion-single-post a .info {
        padding: 0 1.5rem 1.5rem;
        gap: 1.5rem
    }
}

@media only screen and (max-width:992px) {
    #participacion-intemares section.sec_inte#sec1 {
        padding-top: 8rem;
        padding-bottom: 4rem
    }

    #participacion-intemares section.sec_inte#sec1::after {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, .15);
        pointer-events: none;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 0
    }

    #participacion-intemares section.sec_inte#sec1 .container {
        flex-wrap: wrap
    }

    #participacion-intemares section.sec_inte#sec1 .container .description {
        width: 100%
    }

    #participacion-intemares section.sec_inte#sec1 .container .description .tit {
        font-size: 3rem;
        width: 100%
    }

    #participacion-intemares section.sec_inte#sec1 .container .explorar {
        justify-content: flex-start
    }

    #participacion-intemares section.sec_inte#sec2 {
        padding-top: 4rem;
        padding-bottom: 4rem
    }
}

@media only screen and (max-width:481px) {
    html {
        font-size: 14px
    }
}








@-webkit-keyframes explore-arrow {
    from {
        transform: translateY(-.25rem)
    }

    to {
        transform: translateY(.25rem)
    }
}

@keyframes explore-arrow {
    from {
        transform: translateY(-.25rem)
    }

    to {
        transform: translateY(.25rem)
    }
}