/* Icons */
@import url('../fonts/icomoon/style.css');

/*
    Fonts:
        - Josefin Sans
*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');



:root {
    --site-color: #de3983;
    --site-text-color: #716B6D;
    --bg-dark: #FAFAFA;
    --primary: #B262E0;
    --primary-alt: #af25e6;
    --secondary: #3EB9CB;
    --font-family: 'Josefin Sans', sans-serif;
    --font-family-icons: 'icomoon'
}

html,
body {
    padding: 0;
    margin: 0;
    background: var(--bg-dark);
    font-family: var(--font-family);
    color: var(--site-text-color)
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

strong {
    font-weight: 700
}

a,
button input[type=submit] {
    outline: none !important
}

a {
    color: var(--primary);
    outline: none !important;
    display: inline-block;
    transition: .2s
}

a:hover {
    color: var(--primary-alt)
}

p {
    line-height: 150%
}

iframe {
    border: none;
    border-radius: 5px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.container {
    margin: auto;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px
}

.simple-button {
    box-shadow: none;
    outline: none;
    border: none
}

.button {
    font-family: inherit;
    cursor: pointer;
    display: table;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 22px 35px 20px;
    margin: auto;
    background: var(--primary);
    color: white;
    text-align: center;
    border: 1px solid white;
    transition: all .2s;
    line-height: 120%;

    &:hover {
        background: white;
        border-color: var(--primary);
        color: var(--primary);
    }

    &.no-align {
        margin-left: 0;
        margin-right: 0
    }

    &.button-icon {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 13px 23px;
        margin: 0;

        i {
            font-size: 27px
        }

        span {
            transform: translate(0, 2px)
        }
    }
}

.hide {
    display: none
}

img {
    max-width: 100%
}

.slick,
.border-top {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to right, #F6ACD9 0, #E7E0CC 20%, #CBB6BE 40%, #A2FACC 60%, #96FCED 70%, #C99BE4 100%);
        height: 3px;
        width: 100%;
        z-index: 1
    }
}

.slick,
.border-bottom {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, #F6ACD9 0, #E7E0CC 20%, #CBB6BE 40%, #A2FACC 60%, #96FCED 70%, #C99BE4 100%);
        height: 3px;
        width: 100%;
        z-index: 1
    }
}

.slick,
.slick a,
.slick img {
    width: 100%
}

.slick-track {
    line-height: 0
}

.slick {
    display: none;
}

.slick.slick-initialized {
    display: block;
}

.page-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;

    .page-nav-button {
        padding: 5px 30px;
        font-size: 11px;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 10px;

        &:hover {
            span {
                text-decoration: underline
            }
        }

        &:first-child {
            border-right: 1px solid var(--site-text-color)
        }

        &::before,
        &::after {
            content: '';
            font-family: var(--font-family-icons);
            font-size: 10px;
            color: var(--primary)
        }

        &.page-nav-button__prev::before {
            content: '\e90a'
        }

        &.page-nav-button__next::after {
            content: '\e90b'
        }

        span {
            transform: translate(0, 1px)
        }
    }
}

.title {
    display: table;
    text-transform: uppercase;
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 4px;
    text-align: center;
    max-width: 565px;
    margin: 0 auto 20px;
    font-weight: normal;

    strong {
        text-transform: initial;
        margin-top: 10px;
        display: block;
        font-size: 30px;
        letter-spacing: 0;
        line-height: 110%
    }

    &.no-align {
        margin-left: 0;
        text-align: left
    }
}

.simple-title {
    color: #B262E0
}

.headline {
    text-align: center
}

.logo {
    max-width: 310px;

    h1 {
        line-height: 0
    }
}

.hash {
    font-size: 10px;
    color: #232323;
    text-transform: uppercase;
    float: right;
}

.hash span {
    display: inline-block;
    vertical-align: middle;
}

.hash_f {
    font-size: 16px;
    color: #232323;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10px !important
}

.hash_f span {
    display: inline-block;
    vertical-align: middle;
}

a.twitter {
    width: 25px;
    height: 26px;
    background: url(../images/redes_sociales.png) no-repeat 0 0;
    display: inline-block;
    vertical-align: middle;
}

a.twitter:hover {
    background-position: 0 -26px;
}

a.face {
    width: 25px;
    height: 26px;
    background: url(../images/redes_sociales.png) no-repeat -25px 0;
    display: inline-block;
    vertical-align: middle;
}

a.face:hover {
    background-position: -25px -26px;
}

a.insta {
    width: 25px;
    height: 26px;
    background: url(../images/redes_sociales.png) no-repeat -50px 0;
    display: inline-block;
    vertical-align: middle;
}

a.insta:hover {
    background-position: -50px -26px;
}

.hash_f a.youtube,
.hash a.youtube {
    width: 25px;
    height: 26px;
    background: url(../images/redes_sociales.png) no-repeat -75px 0;
    display: inline-block;
    vertical-align: middle
}

.hash_f a.youtube:hover,
.hash a.youtube:hover {
    background-position: -75px -26px
}

.btn_redes {
    margin-top: 10px
}

.btn_redes>a {
    width: 143px !important;
    float: none !important;
    display: inline-block !important
}

h1,
h2,
h3 {
    margin: 0
}

ul {
    margin: 0;
    padding: 0
}

p.head_r {
    text-transform: uppercase;
    color: #fa2c89;
    font-size: 38px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 0;
}

p.head_r span {
    display: block;
    color: #231f20;
}

p.transp {
    text-transform: uppercase;
    color: #fa2c89;
    font-size: 38px;
    margin-top: 0;
    background: url(../images/bg_transparency.png) repeat;
    display: table;
    line-height: 50px;
    padding: 5px;
    margin-bottom: 20px;
    text-align: left;
}

h2.curado {
    font-size: 15px;
    color: #231f20;
    text-align: left;
    letter-spacing: 1px;
}

.head_rosa,
.head_manif,
.head_sumate,
.head_como_cuidarlas,
.head_como_p {
    background: var(--bg-dark) url(../images/fondo_header.png) no-repeat center;
    padding: 29px 0;
}

.head_rosa h2,
.head_manif h2,
.head_sumate h2,
.head_como_cuidarlas h2,
.head_como_p h2 {
    color: #de3983;
    font-size: 28px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.head_manif {
    background: #f6f5f3 url(../images/fondo_header.png) no-repeat center;
    background-size: cover;
}

.head_sumate {
    background: #f6f5f3 url(../images/fondo_header_como_sumarse.png) no-repeat center;
    background-size: cover;
}

.head_como_cuidarlas {
    background: #f6f5f3 url(../images/fondo_header.png) no-repeat center;
    background-size: cover;
}

.head_como_p {
    background: #f6f5f3 url(../images/fondo_header.png) no-repeat center;
    background-size: cover;
}

h1.campania {
    font-size: 35px;
    color: #fff8b9;
    font-weight: 600;
    text-transform: uppercase;
}

h2.campania {
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

h1.manif {
    font-size: 35px;
    color: #dc1f74;
    font-weight: 600;
    text-transform: uppercase;
}

h2.manif {
    font-size: 15px;
    color: #171714;
    text-transform: uppercase;
}

.header,
.footer {
    background-color: white
}

.header,
.header-wrapper {
    position: relative
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;

    .social-links-label {
        display: none
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transition: top 0.2s
}

body {
    margin-top: 70px
}

.header-fixed .header {
    top: -110px;
}

.header-appear .header {
    top: 0;
}

.logo-container {
    position: relative
}

.logo-container img {
    max-width: 200px
}

.btn-menu {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    padding: 10px 0 10px 10px;
    background-size: auto;
    border: none;
    background-color: transparent;
    font-size: 20px
}

.btn-menu::after {
    content: '\e903';
    font-family: var(--font-family-icons);
    color: var(--primary)
}

.btn-menu span {
    display: none
}


/* MENU */

.nav-menu {
    padding: 0;
    text-align: right
}

.nav-menu li {
    list-style: none;
    text-transform: uppercase;
    color: #231f20;
    font-size: 14px;
    position: relative
}

.nav-menu li a {
    position: relative;
    color: var(--primary);
    text-decoration: none;
    display: block;
    font-weight: 600;
    padding: 16px 0 12px
}

.nav-menu li a:hover {
    color: var(--primary-alt) !important;
}

.nav-menu li a.active {
    color: var(--primary-alt);
}

.nav-menu li ul li {
    display: block
}

.nav-menu li ul li a {
    color: #231f20
}

.nav-menu li ul li:first-child {
    border-top: none !important
}

.nav-menu li ul li:last-child {
    border-bottom: none !important
}

.nav-menu li ul li a {
    padding: 10px 0;
    font-size: 15px;
    text-transform: initial;
    font-weight: normal;
    text-align: left;
    border: none
}

.header .nav-menu {
    display: none
}

.header .nav-menu li {
    display: inline-block;
    margin: 0 5px
}

.header .nav-menu li a {
    padding: 13px 5px 9px
}

.header .nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f1f2f6;
    display: none;
    padding: 10px 10px;
    width: 210px;
    z-index: 3
}

.header .nav-menu li:hover ul {
    display: block
}

.header .nav-menu li ul li {
    display: block;
    border-top: 1px solid white;
    border-bottom: 1px solid #bdbdbd
}

.header .nav-menu ul.nav-wide-submenu {
    width: 285px
}

.header .nav-menu .nav-menu-submenu {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3)
}

.menu_mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 4;
    overflow: auto
}

.menu_mobile_body a,
.menu_mobile h2 {
    font-size: 23px;
    color: #de3983;
}

.menu_mobile_head {
    position: relative;
    background: url('../images/borde.png') center bottom no-repeat;
    background-size: 100% 6px;
    padding: 20px 15px
}

.cerrar_menu {
    color: var(--primary);
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    position: absolute;
    font-size: 20px;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%)
}

.menu_mobile_body {
    padding: 20px
}

.menu_mobile_body a {
    font-weight: bold;
    text-decoration: none;
    display: block
}

.menu_mobile_body ul {
    list-style: none;
    padding-left: 30px
}

.menu_mobile_body .nav-menu ul {
    padding: 0
}

.menu_mobile_body .nav-menu ul > li > ul {
    display: none
}

.menu_mobile_body .nav-menu a {
    text-align: left
}

.menu_mobile_body .nav-menu .nav-menu__has-menu > a::after {
    content: '\e905';
    font-family: var(--font-family-icons);
    font-size: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    transition: all .2s
}

.menu_mobile_body .nav-menu .nav-menu__has-menu.active > a::after {
    transform: translate(0, -50%) rotate(180deg)
}

.menu_mobile_body .nav-menu .nav-menu-submenu {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px
}

.menu_mobile_body .nav-menu .nav-menu-submenu,
.menu_mobile_body .nav-menu > ul > li > a {
    border-bottom: 1px solid #bdbdbd
}

.btn_galeria {
    margin-top: 10px;
    margin-bottom: 15px
}

.btn_galeria a {
    background-color: #f38fbc;
    font-size: 25px;
    color: white;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 10px 0 5px;
}

.btn_galeria a p {
    position: relative;
    margin: 0;
    display: inline-block;
    line-height: 40px
}

.btn_galeria a p span {
    width: 30px;
    height: 38px;
    background: url('../images/flecha_abajo.png') center center no-repeat;
    position: absolute;
    left: -40px;
}

.btn_galeria a p span~span {
    right: -40px;
    left: initial
}

.rotativo {
    background-color: #FFFFFF;
    position: relative
}

.rotativo .linea_top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.rotativo .linea_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.head_r,
.transp,
.p_text {
    position: absolute;
    left: -100000px
}


/*Banda Gris*/

.banda_gris {
    min-height: 0 !important
}

.banda_gris.desktop {
    background-size: auto 100% !important
}

.slide_content .img_fondo {
    overflow: hidden
}

.hide {
    display: none
}

.slide_content img {
    width: 100% !important
}

.sumate {
    padding: 40px 0
}

.sumate .sumate-title {
    color: var(--primary);
    font-size: 25px;
    text-align: center;
    max-width: 610px;
    margin: 40px auto 15px;

    strong {
        color: var(--site-text-color)
    }
}

.sumate-content {
    display: flex;
    flex-direction: column;
    margin-top: 40px
}

.sumate .sumate-content-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 27px;
    font-weight: normal
}

.sumate .sumate-content-text {
    font-size: 15px;
    line-height: 26px
}


.form-contacto .body_form {
    display: flex;
    flex-wrap: wrap
}

.form-contacto .body_form .form-group {
    width: 100%
}

.form-contacto input[type=text],
.form-contacto textarea {
    display: block;
    width: 100%;
    background-color: #eeeeee;
    border: none;
    padding: 6px 5px;
    resize: none;
    margin-top: 4px
}

.form-contacto .textarea {
    margin: 0
}

.form-contacto .textarea>label {
    margin-bottom: 10px;
    padding: 0 !important
}

.form-contacto label {
    padding: 0;
    font-weight: normal
}

.form-contacto .error {
    display: block;
    color: var(--primary);
    font-size: 11px;
    font-weight: bold;
    margin-top: 5px;
    width: 100%
}

.form-contacto .head_form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 5px 0;
    min-height: 40px
}

.form-contacto .head_form label {
    width: 100%;
    font-size: 20px
}

.form-contacto .head_form span,
.form-contacto .body_form label {
    font-size: 15px
}

.form-contacto .head_form span {
    font-weight: bold
}

.form-contacto .head_form span.error {
    color: var(--primary);
    font-size: 11px;
}

.form-contacto .form-group {
    margin-bottom: 15px
}

.form-contacto .aviso {
    color: #868686;
    font-size: 12px
}

.form-contacto .form-content-controls-submit {
    width: 100%;
    margin-top: 15px;
    padding: 17px 20px 15px
}

.form-contacto .mensaje {
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 17px;
    margin-top: 20px;
    line-height: 120%
}

.form-contacto .form-contacto-controls {
    display: flex;
    flex-direction: column
}


.linea_top {
    width: 100%;
    display: block;
    height: 3px;
    background: url(../images/borde_2.png) repeat-x;
    overflow: hidden
}

.linea_bottom {
    width: 100%;
    display: block;
    height: 4px;
    background: url(../images/borde_2.png) repeat-x;
    overflow: hidden;
}

.linea_top_3 {
    width: 100%;
    display: block;
    height: 5px;
    background: url(../images/borde_2.png) repeat-x;
    background-size: 100% 6px;
    overflow: hidden
}


/*Footer*/

.back_bco {
    background: #fff;
    padding: 0 0 20px;
}

h3.empresas {
    font-size: 24px;
    color: #cd4683;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.cada_empresa {
    border-bottom: 2px solid #e9e9e9;
    padding: 6px 0;
    margin-bottom: 25px;
    background-color: white;
    height: 80px;
}

.loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: white
}

.loading img {
    width: 50px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sombra>.legislatura:after {
    width: 70% !important
}

.legislatura .bg_sombra,
.cada_empresa+.bg_sombra {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
    background: url('../images/sombra.png') center top no-repeat;
    background-size: auto 12px;
    z-index: 2
}

.cada_empresa+.bg_sombra {
    margin-top: -25px
}

.bg-shadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 14px;
    overflow: hidden;
    margin: 0;
    z-index: 1
}

.bg-shadow > div {
    position: relative;
    height: 100%;
}

.bg-shadow > div::after {
    content: "";
    bottom: 50%;
    left: -1px;
    transform: translate(0, 50%);
    box-shadow: -5px 5px 10px 6px rgba(40, 40, 40, 0.5);
    width: 2px;
    border-radius: 50%;
    height: 80%;
    position: absolute
}


.redes_mobile h3 {
    color: #4f4f4f;
    font-size: 18px;
    text-align: center
}

.redes_mobile ul {
    padding: 0;
    text-align: center;
    margin-top: 12px
}

.redes_mobile ul li {
    display: inline-block;
    margin: 0 6px
}

.redes_mobile li a {
    text-indent: -10000px;
    overflow: hidden;
    background: url('../images/redes_mobile_.png') no-repeat;
    width: 54px;
    height: 55px;
}

.redes_mobile li.facebook a {
    background-position: 0 0;
}

.redes_mobile li.twitter a {
    background-position: -64px 0
}

.redes_mobile li.instagram a {
    background-position: -125px 0
}

.redes_mobile li.youtube a {
    background-position: -184px 0
}

.legislatura {
    position: relative
}

.cada_empresa img {
    display: block;
    margin: 0 auto;
    line-height: 45px;
}

.cada_empresa:hover {
    border-bottom: 2px solid #fd79b5;
}

hr.gris {
    background: #eeeeee;
    height: 2px;
    border: none;
    margin-top: 10px;
}

.hash span.f {
    margin-left: 0;
}

a.id img {
    float: right;
}

a.id:hover img {
    opacity: 0.70;
    filter: alpha(opacity=70);
    /* For IE8 and earlier */
}

.cada_empresa_2 {
    background: #ffffff;
    width: 100%;
    display: block;
    padding: 18px 0;
    -webkit-box-shadow: -1px 4px 5px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: -1px 4px 5px 0 rgba(0, 0, 0, 0.14);
    box-shadow: -1px 4px 5px 0 rgba(0, 0, 0, 0.14);
    margin-bottom: 15px;
}

.cada_empresa_2 img {
    display: block;
    margin: 0 auto;
}



.dia {
    font-size: 18px;
    color: var(--primary-alt);
    text-align: center;
    text-transform: uppercase;
}

.detectado {
    font-size: 16px;
    color: #4a4244;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 7px
}

.detectado span {
    color: #231f20;
    font-weight: 700;
    font-size: 19px;
}

.como-cuidarlas {
    padding-top: 30px
}

.conoce-tu-cuerpo {
    background-color: var(--bg-dark);
    padding: 30px 0
}

.conoce-tu-cuerpo .conoce-tu-cuerpo-title {
    font-size: 28px;
    color: var(--primary);
    font-weight: bold;
}

.conoce-tu-cuerpo p {
    margin-bottom: 0
}

.conoce-tu-cuerpo .blog-box > div {
    margin: 10px 0
}

.conoce-tu-cuerpo .blog-box .blog-box-title {
    color: var(--primary);
    font-size: 18px
}

.conoce-tu-cuerpo .columns {
    display: flex;
    justify-content: space-between;
    gap: 20px 40px
}

.conoce-tu-cuerpo .blog-box {
    position: relative;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    flex: 1
}

.conoce-tu-cuerpo .blog-box .button {
    padding: 17px 35px 15px
}

.como-cuidarlas {
    padding: 30px 0
}

.como-cuidarlas p {
    font-size: 14px;
    line-height: 26px;
    margin-top: 20px
}

.como-cuidarlas .como-cuidarlas-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.como-cuidarlas .como-cuidarlas-text {
    order: 1
}

.como-cuidarlas .como-cuidarlas-video {
    text-align: center;
    line-height: 0
}

.detectar_mensaje {
    max-width: 900px;
    margin: 20px auto auto
}

.detectar_mensaje p {
    color: #4a4244;
    font-size: 20px;
    text-align: center
}

.detectar_mensaje p+p {
    color: var(--primary)
}

.filtro {
    margin-bottom: 38px
}

.filtro ul {
    padding: 0;
    text-align: center;
    display: flex;
    gap: 5px;
    align-content: center;
    justify-content: center;
    list-style: none
}

.filtro span {
    background-color: #d7d4f5;
    padding: 12px 23px 8px;
    margin: 3px 0
}

.filtro label {
    cursor: pointer
}

.filtro input[type="radio"] {
    display: none
}

.filtro label:hover span {
    background-color: #fefce5
}

.filtro input[type="radio"]:checked ~ span {
    background-color: #fffbc9
}

.filtro-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 5px
}

.filtro-wrapper span {
    color: #232323;
    font-size: 14px;
    display: block
}

.filtro-years {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    gap: 5px
}

.filter-select {
    font-family: var(--font-family), serif;
    font-size: 14px;
    max-width: 360px;
    background: #d7d4f5 url('../images/flecha_abajo_2.png') center right 20px no-repeat;
    background-size: 11px auto;
    padding: 12px 20px 8px;
    box-shadow: none;
    outline: none;
    border: none;
    margin: auto;
    width: 100%;
    appearance: none
}

.filtro .bootstrap-select {
    width: 100% !important
}

.filtro .bootstrap-select button {
    border-radius: 0;
    border: none;
    background-color: #D6D3F4;
    font-size: 18px;
    padding: 8px 12px
}

.filtro .bootstrap-select li {
    font-size: 20px
}

.filtro .bootstrap-select .bs-caret {
    display: none
}

.filtro .bootstrap-select>.dropdown-toggle {
    padding-right: 10px
}

.filtro .dropdown-menu {
    border-radius: 0
}

.como_sumarme {
    margin-bottom: 20px
}

.como_sumarme a {
    font-size: 20px;
    color: white;
    font-weight: bold;
    padding: 15px 0;
    background: url('../images/fondo_btn.png') repeat-x;
    background-size: contain;
    display: block;
    text-align: center;
    text-decoration: none
}

.como_sumarme a:hover {
    background-image: url('../images/fondo_btn_hover.png');
}


.video_campania iframe {
    width: 100%
}


.signals {
    background-color: var(--bg-dark);
    padding: 30px 0
}

.signals .signals-title {
    color: var(--primary);
    font-size: 18px;
}

.signals .headline {
    color: #4a4244;
    font-size: 20px;
    margin-top: 7px;
    text-align: left
}

.signals .signals-wrapper {
    display: flex;
    flex-wrap: wrap
}

.signals .signals-item {
    height: auto;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
    padding: 0 15px
}

.signals .signals-item::after {
    content: '';
    display: block;
    border-top: 3px solid var(--primary)
}

.signals .signals-author a {
    text-decoration: none
}

.descarga {
    background-color: #F0E0FA;
    border-bottom: 3px solid var(--primary);
    padding: 0
}

.descarga p {
    color: var(--primary);
    font-size: 20px;
    display: inline-block;
    margin: 20px 10px 5px 10px;
    text-align: center
}

.descarga a {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 23px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    border: none;
}

.descarga a::before {
    content: '\e90d';
    display: inline-block;
    font-family: var(--font-family-icons);
    margin-right: 10px;
    transform: translate(0, 2px)
}

.cargar_notas {
    text-align: center;
    margin-top: 40px
}

.cargar_notas a {
    color: #93398f;
    font-size: 18px;
    text-decoration: underline;
    font-weight: bold
}

.p_text {
    margin: 20px 0
}


/* ARTWORK */

.artwork {
    padding: 40px 0;
    background: var(--bg-dark);

    .button {
        margin-top: 45px
    }

    .sticky-button {
        position: sticky;
        bottom: 20px;
        left: 0;
        z-index: 1
    }
}

.artwork-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 15px
}

.artwork-full-column {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #232323
}

.artwork-column {
    flex-basis: 100%
}

.artwork-item {
    background-color: white;
    text-decoration: none !important;
    display: block;
    margin-bottom: 25px;
    box-shadow: 2px 2px 6px rgba(138, 138, 138, 0.3);
    transition: all .2s;

    &:hover {
        box-shadow: 2px 2px 10px rgba(138, 138, 138, 0.5);
        transform: translate(-1px, -1px)
    }
}

.artwork-item .artwork-item-link {
    width: 100%;
    padding: 8px
}

.artwork-item .picture {
    position: relative;
}

.artwork-item .picture img {
    width: 100%;
    height: auto;
}

.artwork-item .picture .pic_hover {
    display: none;
    transition: 2s all linear;
}

.artwork-item:hover .picture .pic_hover {
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 2;
}

.artwork-item:hover .picture .pic_hover p {
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin: 0;
    width: 100%;
}

.artwork-item .artwork-item-detail {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.artwork-item .artwork-item-detail-info {
    flex: 1
}

.artwork-item .artwork-item-author {
    width: 80%;
    color: #231f20;
    float: left;
    line-height: 16px;
    margin-bottom: 3px
}

.artwork-item .artwork-item-name {
    width: 80%;
    color: #b262e0;
    float: left;
}

.artwork-poster-item .share-bar-text {
    margin-top: 20px;
    margin-bottom: 10px
}

.artwork-info {
    display: flex;
    flex-direction: column;
    gap: 50px
}

.artwork-info .author-item-artworks {
    margin-top: 15px;
    font-size: 20px
}

.artwork-info .author-item-artworks a {
    background-color: transparent;
    padding: 0;

    &.active,
    &:hover {
        text-decoration: underline
    }

    &.active {
        color: var(--primary)
    }
}

.artwork-info .author-item-label {
    font-size: 17px
}

.artwork-info-image {
    margin: 0 -20px
}

.artwork-info-name {
    color: var(--primary);
    font-size: 26px
}

.artwork-info-text {
    font-size: 15px;
    text-align: center;
    margin-bottom: 50px
}

.artwork-info-text p {
    margin: 0
}

.artwork-info-author {
    font-size: 20px;
    line-height: 20px;
    margin: 15px 0 0;
    font-weight: 600;

    a {
        display: block;
        font-size: 11px;
        color: #701da0;
        text-decoration: none;
    }
}

.artwork-info-author-wrapper {
    margin-top: 15px
}

.artwork-info-description {
    font-size: 14px;
    margin-top: 30px
}

.artwork-info-link {
    margin-top: 30px;
    margin-bottom: 40px
}


.artwork-poster-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px auto 0;
    max-width: 1080px
}

.artwork-poster-item {
    border-bottom: 1px solid #716B6D;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center
}

.artwork-poster-item .artwork-poster-item-image {
    flex-basis: 47%
}

.artwork-poster-item .artwork-poster-item-image img {
    object-fit: contain;
    background: white
}

.artwork-poster-item .artwork-info-text {
    text-align: left;
    flex: 1;
    margin: 0
}

.artwork-poster-item .artwork-info-name {
    margin-top: 15px
}




.hover_detalle {
    padding: 0 20px;
    transition: all 0.2s
}

.hover_detalle_content {
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid #ECECEC;
    color: #b262e0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.hover_detalle_content span {
    text-decoration: none !important
}

.hover_detalle_content .btn-whatsapp,
.hover_detalle_content .btnFacebook {
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    outline: none;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    transition: all 0.2s
}

.hover_detalle_content .btn-whatsapp:hover,
.hover_detalle_content .btnFacebook:hover {
    opacity: 0.7
}

.hover_detalle_content .btn-whatsapp span,
.hover_detalle_content .btnFacebook span {
    display: none
}

.hover_detalle_content .btn-whatsapp {
    background-image: url('../images/whatsapp.svg')
}

.hover_detalle_content .btnFacebook {
    background-image: url('../images/facebook.svg')
}

.lupita {
    float: right;
    color: #B262E0;
    font-weight: bold;
    font-size: 14px;
    text-decoration: underline
}

a.btn_conoce {
    background: #fffbc9;
    position: fixed;
    width: 491px;
    height: 46px;
    bottom: 0;
    left: 50%;
    margin-left: -245px;
    text-align: center;
    z-index: 2;
    text-decoration: none
}

a.btn_conoce:hover {
    background: #faf4a9;
}

a.btn_conoce img {
    display: inline-block;
}

a.btn_conoce p {
    margin: 0 10px;
    font-size: 16px;
    color: #404040;
    text-align: center;
    display: inline-block;
    line-height: 50px;
    text-transform: uppercase;
}

.banda_nos_acomp {
    background: #fe85bc;
    padding: 15px 0;
}

.nos_a {
    color: #de3983;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px
}


/* Sobre la Campaña*/

.campana {
    padding: 40px 0
}

.campana .container {
    max-width: 900px
}

.campana .campana-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px
}

.campana .container strong {
    font-weight: 900
}

.campana p.bajada {
    color: #716B6D
}

.campana .bajada.rosa {
    font-size: 1.17em
}

.text-highlight {
    background: #F0E0FA;
    color: var(--primary);
    padding: 7px 10px;
    font-size: 20px;
    display: table
}

.highlight {
    background: #F0E0FA;
    color: var(--primary);
    padding: 7px 10px
}

h2.rosa {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px
}

p.bajada {
    font-size: 16px;
    color: #4a4244;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 40px
}

p.bajada a:hover {
    color: var(--primary);
}

p.bajada.rosa,
h3.bajada.rosa {
    color: var(--primary);
}

p.bajada span.rosa {
    color: var(--primary);
    font-weight: 600;
}

p.bajada span.negro {
    color: #121111;
    font-weight: 600;
}

p.bajada span.gris {
    color: #4a4244;
    font-weight: 600;
}

p.bajada a {
    color: #121111;
    text-decoration: underline;
    font-weight: 600;
}

p.bajada a.rosa {
    color: #cd4683;
    text-decoration: underline;
    font-weight: 600;
}

a.btn_comparti {
    display: table;
    padding: 6px 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    line-height: 28px;
    text-transform: uppercase;
    background: url(../images/bg_btn_comp.png) repeat-x;
    margin-bottom: 10px;
}

h3.bajada {
    font-size: 16px
}

a.btn_comparti:hover {
    background: url(../images/bg_btn_comp.png) repeat-x 0 -40px;
    color: #fff;
}

.app_face {
    margin-bottom: 20px;
    width: 320px;
}

.back_video {
    background: #f4f6eb;
    padding: 10px 20px 20px;
}

.linea_top_2 {
    width: 100%;
    display: block;
    height: 3px;
    background: url(../images/linea_top.jpg) repeat-x;
    overflow: hidden;
    margin: 0;
}

p.lila {
    color: #8d3a92;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.video {
    margin-bottom: 15px;
    width: 621px;
    height: 372px;
}

.bajada_r {
    color: #df3d86;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
}


/*Manifiesto*/

.bg_blanco {
    background: #fff url(../images/linea_manif.png) no-repeat top center;
    padding: 20px 13px 15px;
}

p.hash_manif {
    font-weight: 600;
    color: #e64f91;
    font-size: 31px;
    text-transform: uppercase;
    text-align: center;
}

p.hash_manif span {
    font-weight: 400;
}

p.lejos {
    font-size: 16px;
    color: #4a4244;
    /*text-align:center;*/
}

p.lejos a {
    color: #de3983;
    font-weight: 600;
}

p.manifiesto {
    font-size: 18px;
    color: #de3983;
    /*text-align:center;*/
}

h3.como_p {
    font-size: 22px;
    color: #de3983;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 10px;
}

.items_p {
    margin-bottom: 30px;
}

.items_p p {
    color: #df3d86;
    font-size: 18px;
    font-weight: 600;
}

.items_p p.desc {
    color: #4a4244;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.items_p p.desc span {
    font-size: 16px;
    color: #231f20;
    font-weight: 600;
}

.items_p p a {
    display: block;
    color: #df3d86;
    font-weight: 400;
    text-decoration: underline;
}

.app_twitter {
    margin-bottom: 20px;
}

.share-bar-wrapper .share-bar-text {
    margin-bottom: 17px;
    font-size: 18px
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}


.separadorbotones {
    margin-top: 20px
}

a.btn_comp_email {
    display: block;
    width: 143px;
    height: 38px;
    background: url(../images/btn_compartir_mail.jpg) no-repeat;
}

a.btn_comp_email:hover {
    width: 143px;
    height: 38px;
    background: url(../images/btn_compartir_mail.jpg) no-repeat 0 -38px;
}

a.desc_arch {
    display: block;
    width: 97%;
    background: url(../images/fondo_btn.png) repeat-x;
    background-size: contain;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    line-height: 35px;
    padding: 5px 0;
    transition: none;
    text-decoration: none
}

a.desc_arch:hover {
    background-image: url('../images/fondo_btn_hover.png');
}

a.cerrar {
    font-size: 16px;
    color: #363636;
    font-weight: 600;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 15px;
}

a.cerrar img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: -2px;
}

p.pasos {
    font-size: 16px;
    font-weight: 600;
    color: #df3d86;
}

p.baj_pas {
    font-size: 12px;
    color: #4a4244;
}

.legislatura {
    background: #f1f1ee;
    padding: 15px 0 7px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 15px;
}

p.declarado {
    display: inline-block;
    font-size: 18px;
    color: #231f20;
    line-height: 50px;
    text-align: center;
}


/*Agregado DRA*/

.back_dra {
    background: #fff8b9 url(../images/lineas_dra.png) repeat-x bottom;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 13px 13px 15px;
}

.dra {
    display: block;
    position: absolute;
    top: -15px;
    left: 25px;
}

.dra p {
    font-size: 12px;
    color: #843480;
    margin-top: 8px;
    text-align: center;
}

.back_dra p.t {
    font-size: 16px;
    color: #231f20;
}

.back_dra p.t span {
    font-size: 18px;
    font-weight: bold;
}

.back_dra p {
    font-size: 16px;
    color: #df3d86;
    margin-bottom: 20px;
}

.back_dra p a {
    display: block;
    color: #322d2a;
    font-size: 12px;
    text-decoration: underline;
}

.back_ana {
    background: #fff url(../images/lineas_dra.png) repeat-x bottom;
    overflow: hidden;
    padding: 13px 13px 5px;
}

.back_ana p {
    font-size: 16px;
    color: #231f20;
}

.back_ana p a {
    display: block;
    text-decoration: underline;
    color: #df3d86;
}

.hd_derago_1 {
    width: 113px;
    height: 64px;
    float: left
}

.hd_derago_2 {
    background: #fff8b9;
    width: 64%;
    height: 50px;
    float: left;
    padding-top: 13px;
    margin-top: 14px;
}

.app_chequeo {
    margin-top: 20px;
}

.baja_bco {
    background: #fff url(../images/linea_turno.png) no-repeat bottom;
    padding: 15px 15px 17px;
}

.baja_bco p {
    font-size: 18px;
    color: #843480;
    line-height: 20px;
    font-weight: 700;
}

.baja_bco span {
    font-size: 13px;
    color: #231f20;
    display: block;
    margin-bottom: 15px;
}

a.pedi_turno {
    display: block;
    background: url(../images/bg_solicitar_t.png) repeat-x;
    height: 35px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 35px;
}

a.pedi_turno:hover {
    opacity: 0.9;
    filter: alpha(opacity=90);
    /* For IE8 and earlier */
}

.redes_obra {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.redes_obra>div {
    text-align: center;
    background-color: white;
    width: 90%;
    margin: auto;
    padding-top: 13px;
    padding-bottom: 5px;
    display: flex;
}

.redes_obra p {
    color: #231f20;
    font-size: 15px;
    display: inline-block;
    vertical-align: 20px;
    margin-right: 0;
    float: left;
    margin-top: 10px;
    margin-left: 20px;
}

.redes_obra ul {
    display: inline-block;
    margin: 0;
    padding: 0 0 3px;
}

.redes_obra ul li {
    display: inline-block;
    margin: 0 7px
}

.redes_obra ul li a {
    width: 45px;
    height: 44px;
    background: url('../images/redes_obra_2.png') no-repeat;
    text-indent: -10000px;
    overflow: hidden;
    display: block
}

.redes_obra ul li.email a {
    background-position: -160px 0
}

.redes_obra ul li.facebook a {
    background-position: 0 0
}

.redes_obra ul li.twitter a {
    background-position: -54px 0
}

.redes_obra ul li.whatsapp {
    /*margin-right: 0*/
}

.redes_obra ul li.whatsapp a {
    background-position: -106px 0
}

.popup_convocatoria {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
    z-index: 10
}

.popup_convocatoria>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f5d5;
    text-align: center;
    padding: 30px
}

.popup_convocatoria>div>h3 {
    color: #303030;
    font-size: 30px
}

.popup_convocatoria>div>h3 strong {
    display: block;
    font-weight: normal;
    color: #ff3686
}

.popup_convocatoria>div>p {
    font-size: 16px;
    color: #303030;
    line-height: 21px;
    max-width: 365px;
    margin: 15px auto
}

.popup_convocatoria>div>a {
    display: inline-block
}

.popup_convocatoria>div>a img {
    max-height: 370px
}

.popup_convocatoria>div .close_button {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #303030;
    text-transform: uppercase;
    font-size: 12px
}

#sumar {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    background: #fffbc9;
    text-align: center;
}

#sumar p {
    margin: 5px 0;
}

#sumar a {
    color: var(--primary-alt);
    text-decoration: underline;
}

#sumar a:hover {
    color: #161415;
}

.emp_aco {
    color: var(--primary-alt);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

#error_404 {
    background: #F0E0FA;
}

#error_404 .error_text {
    padding-top: 60px;
    margin: auto;
    text-align: center
}

#error_404 .error_text h2 {
    font-weight: 500;
    font-size: 35px;
    color: var(--primary);
    text-align: center;
    display: inline-block
}

#error_404 .error_text h2 strong {
    font-size: 124px;
    display: block;
    line-height: 105px;
    margin-top: 10px
}

#error_404 .error_text h2+p {
    vertical-align: 20px;
    max-width: 445px;
    display: block;
    color: black;
    font-size: 32px;
    line-height: 35px;
    margin: auto
}

#error_404 .error_text .button {
    margin-top: 40px
}

#error_404 .div_redes {
    margin-top: 50px;
    margin-bottom: 50px
}

#error_404 .div_redes > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 25px
}

#error_404 .div_redes>div {
    text-align: center
}

#error_404 .div_redes>div>div {
    width: 19%;
    display: inline-block;
    vertical-align: top;
    text-align: center
}

#error_404 .div_redes>div a {
    font-size: 16px;
    display: block;
    color: black;
    text-transform: uppercase;
    text-decoration: none
}

#error_404 .div_redes a i {
    font-size: 25px;
    color: var(--primary)
}

#error_404 .div_redes>div a span {
    margin-top: 12px;
    display: block;
    text-decoration: underline
}




.textbox {
    display: table;
    margin: 20px auto;
    border: 1px solid var(--primary);
    padding: 15px 25px;
    color: var(--site-text-color);
    font-size: 17px;
    text-align: center;

    p {
        margin: 0;
        line-height: 110%
    }

    a {
        text-decoration: underline
    }
}

.initiative {
    overflow: hidden;
    background: #FAFAFA
}

.initiative-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px 0 50px;
    gap: 60px;

    p {
        margin-bottom: 30px
    }

    .title {
        max-width: initial;
        margin-bottom: 35px
    }

    .button {
        margin-top: 40px
    }

    .iframe-wrapper {
        margin: 0 -15px;
        line-height: 0;
        position: relative;
        z-index: 2
    }

    .video-label {
        background: var(--secondary);
        color: white;
        font-size: 22px;
        font-weight: 600;
        margin: 0;
        padding: 20px 0
    }
}

.section-banner,
.initiative-wrapper .video-label {
    position: relative;
}

/**** Specificity Problem Fix ****/
.section-banner::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 100%;
    width: 40px;
    height: 40px;
    background: url('../images/shape-1.svg') center center no-repeat;
    background-size: 100% auto;
    margin-left: -20px
}

.initiative-wrapper .video-label::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 90%;
    width: 80px;
    height: 80px;
    background: url('../images/shape-1.svg') center center no-repeat;
    background-size: 100% auto
}
/*****/

.section-banner,
.initiative-text-wrapper {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: -20px;
        left: -45px;
        width: 90px;
        height: 90px;
        background: url('../images/shape-2.svg') center center no-repeat;
        background-size: 100% auto
    }
}

.section-banner {
    margin: 0 -20px;
    overflow-x: clip;

    video {
        width: 100%
    }

    &::after {
        top: 25%
    }
}


.statistics {
    padding-bottom: 20px;
    overflow: hidden
}

.statistics-content {
    background-color: var(--primary);
    color: white;
    text-align: center;

    p {
        color: #FFD954;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 13px;

        strong {
            position: relative;
            color: white;
            display: block;
            font-size: 32px;
            letter-spacing: 0;
            text-transform: initial;
            margin-bottom: 15px;
            line-height: 105%
        }
    }

    .statistics-wrapper {
        padding: 30px 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;

        &::before {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -40px;
            width: 135px;
            height: 70px;
            background: url('../images/shape-3.svg') center center no-repeat;
            background-size: 100% auto
        }
    }

    .statistics-item__counter {
        strong {
            font-size: 60px;
            margin: 0
        }
    }

    .statistics-item__plus {
        strong {
            width: 115px;
            margin: auto;

            &::after {
                content: '+';
                position: absolute;
                top: 0;
                right: 100%;
                font-weight: 300;
                font-size: 35px;
                line-height: 100%
            }
        }
    }
}

.sponsors {
    padding-top: 50px;
    padding-bottom: 15px;
    background: white;

    .container {
        position: relative;

        &::before {
            content: '';
            position: absolute;
            bottom: calc(100% - 10px);
            left: -30px;
            height: 100px;
            width: 160px;
            background: url('../images/shape-4.svg') center center no-repeat;
            background-size: 100% auto
        }
    }

    .textbox {
        margin-top: 60px
    }

    .sponsors-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 15px;
        justify-content: center;

        .sponsors-link {
            padding: 5px;
            display: inline-block;

            &:hover {
                opacity: 0.7
            }
        }
    }
}

.campaign-image,
.additional-item {
    position: relative
}

.campaign-image::after,
.additional-item::after {
    content: '';
    display: block;
    height: 1px;
    width: 140px;
    margin: 40px auto 0;
    background-color: var(--site-text-color)
}

.campaign {
    padding: 50px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;

    .campaign-image {
        img {
            max-width: 250px
        }
    }

    .campaign-label {
        color: var(--site-text-color);
        font-size: 21px;
        line-height: 150%
    }
}

.additional {
    background-color: var(--primary);
    color: white;
    text-align: center;
    overflow: clip;
    overflow-y: visible;

    .additional-wrapper {
        display: flex;
        flex-direction: column;
        gap: 60px
    }

    .additional-title {
        font-size: 32px;
        margin: auto auto 40px;
        max-width: 370px;

        &.additional-title__short {
            max-width: 305px
        }
    }

    .additional-item::after {
        background: white;
        margin-top: 60px
    }

    .additional-item:last-child::after {
        content: normal
    }

    .container {
        position: relative;
        padding-top: 40px;
        padding-bottom: 70px;

        &::before {
            content: '';
            background: url('../images/shape-5.svg') center no-repeat;
            background-size: auto 100%;
            position: absolute;
            bottom: -45px;
            right: -40px;
            width: 150px;
            height: 125px
        }
    }
}

.social-links {
    display: none;

    .social-links-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px 10px
    }

    .social-links-item {
        border-radius: 50px;
        background-color: var(--primary);
        color: white;
        font-size: 15px;
        text-decoration: none;
        line-height: 0;
        position: relative;
        width: 30px;
        height: 30px;

        &:hover {
            background-color: var(--primary-alt)
        }
    }

    .social-links-label {
        color: var(--primary);
        font-size: 21px;
        width: 100%;
        text-align: center
    }

    i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

.baseboard {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 30px;
    border-top: 1px solid #D8D8D8;

    > div {
        width: 100%
    }

    .social-links {
        .social-links-wrapper {
            justify-content: center
        }
    }

    .baseboard-link {
        text-align: center;

        a:hover {
            opacity: 0.7
        }
    }
}



.post {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px
}

.post-container {
    padding: 40px 0
}

.post-wrapper {
    margin: 50px auto 0;
    max-width: 850px
}

.post-content {
    flex: 1;

    img {
        width: auto !important
    }
}

.post-image {
    max-width: 87px;
    flex-shrink: 0
}

.post-date {
    color: #4a4244;
    font-size: 16px;

    strong {
        font-weight: 600;
    }
}

.post-title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px
}

.post-content-wrapper {
    margin-top: 15px;
}

.post-content-wrapper audio {
    width: 100%
}

.post-link {
    display: block;
    font-size: 14px;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    margin-top: 10px;

    &:hover {
        color: var(--primary-alt);
    }
}


.author-list {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 60px 20px;
    margin-top: 20px;
    margin-bottom: 30px;

    p,
    span,
    ul {
        margin: 10px 0 0;
        display: block
    }

    .author-item {
        flex-basis: calc(50% - 15px);
        max-width: 185px
    }

    .author-item-name {
        color: var(--site-text-color);
        line-height: 120%;

        em {
            display: block;
            color: var(--primary);
            font-style: normal
        }
    }
}

.author-item-artworks {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px 0;

    li {
        display: inline-block;

        &:not(:first-child) {
            margin-left: 5px;

            &::before {
                content: ' - '
            }
        }
    }

    a {
        background: #d7d4f5;
        padding: 5px 5px 3px;
        color: var(--site-text-color);
        text-decoration: none;
        line-height: 90%;

        &:hover {
            color: var(--primary)
        }
    }
}

.author-item-label {
    color: #B9B6B7
}

.banner {
    img {
        width: 100%;
    }
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .button {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 10px 15px;
    }

    .pagination-icon a {
        font-size: 10px
    }

    .pagination-button {
        margin: 0
    }

    .pagination-num a,
    .pagination-current {
        font-size: 13px
    }

    .pagination-current {
        text-decoration: none;
        background-color: white;
        color: var(--primary);
        cursor: default;
        border-color: transparent
    }
}

#artistas {
    .footer {
        margin-top: 40px
    }
}

.section-intro {
    padding-top: 40px;
    margin-bottom: 60px
}

#mirada-autentica .headline {
    max-width: 1000px;
    margin: 0 auto 30px
}

.site-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 40px
}

.site-banner img {
    width: 100%;
    max-width: 550px;
}