:root {
    --primary-color: #094137;
    --secondary-color: #d2a6c2;
    --other-color: #bcd9a3;

    --separacion-default: 60px;

    --bg-black: #242424;
    --font-color: #000000;
    --menu-size: 320px;
    --font-family-regular: 'Mutualidad-Regular', Helvetica, sans-serif;
    --font-family-bold: 'Mutualidad-Bold', Helvetica, sans-serif;
    --font-family-text-bold: 'Rufina-Bold', serif;
    --font-size-default: 16px;
    --font-lh-default: 22px;
    --font-size-h1: 43px;
    --font-lh-h1: 50px;
    --font-size-h2: 36px;
    --font-lh-h2: 41px;
    --font-size-h3: 29px;
    --font-lh-h3: 35px;
    --font-size-h4: 22px;
    --font-lh-h4: 28px;
    --font-size-h5: 16px;
    --font-lh-h5: 22px;
    --font-size-small: 12px;
    --font-lh-small: 16px;
}

@media screen and (max-width: 1023px) {
    :root {
        --separacion-default: 30px;
    }
}


* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: 0;
    outline: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.div_wrap {
    max-width: 990px;
    margin: 0 auto;
}

html, body {
    width: 100%;
    font-family: var(--font-family-regular);
    height: 100%;
}

body {
    padding-top: 60px;
    box-sizing: border-box;
    opacity: 0;
}

html[data-slug='index'] body {
    padding-top: 0;
}

html.loaded body {
    opacity: 1;
}

header {
    background-color: var(--primary-color);
    height: 60px;
    z-index: 100;
    width: 100%;
    overflow: hidden;
}

.real_header header {
    position: fixed;
    top: 0;
    left: 0;
}

.home_header header {
    position: relative;
    z-index: 999;
}

header:after {
    content: "";
    display: block;
    clear: both;
}

header > a.btn_menu {
    width: 60px;
    padding: 20px 0px;
    line-height: 20px;
    font-size: 15px;
    display: block;
    float: right;
    box-sizing: border-box;
    color: white;
    font-family: var(--font-family-bold);
    cursor: pointer;
    position: relative;
    top: -100px;
    opacity: 0;
    text-align: center;
    margin-left: 15px;
}

html.loaded header > a.btn_menu {
    top: 0px;
    opacity: 1;
}

header > a.btn_menu i {
    line-height: 20px;
    font-size: 30px;
    vertical-align: bottom;
}

header > a.descarga {
    padding: 7px 0px;
    line-height: 15px;
    font-size: 15px;
    display: block;
    float: right;
    box-sizing: border-box;
    color: white;
    font-family: var(--font-family-bold);
    cursor: pointer;
    position: relative;
    top: -100px;
    opacity: 0;
    text-align: center;
}

html.loaded header > a.descarga {
    top: 0px;
    opacity: 1;
}

header > a.descarga i {
    line-height: 20px;
    font-size: 25px;
    vertical-align: bottom;
    display: block;
    text-align: center;
    margin-bottom: 3px;
}

header > a.descarga > span {
    font-size: 10px;
    line-height: 12px;
    display: block;
}

header > a.descarga > span > span {
    display: block;
}


header > a.logo {
    display: block;
    float: left;
    width: 190px;
    overflow: hidden;
    font-family: var(--font-family-bold);
    font-size: 30px;
    color: white;
    position: relative;
    top: -100px;
    opacity: 0;
    padding: 0 20px;
}

html.loaded header > a.logo {
    top: 0px;
    opacity: 1;
    padding-right: 20px;
    box-sizing: border-box;
}

header > a.logo img {
    display: block;
    float: left;
    width: 100%;
    margin: 15px 0;
}

@media screen and (max-width: 767px) {

    header > a.descarga {
        max-width: 50px;
    }

    header > a.descarga > span > span {
        display: none;
    }

}


.menu {
    top: -200px;
    left: 0px;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 99;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}

.real_header .menu {
    position: fixed;
}

.home_header .menu {
    position: absolute;
}

.open_menu .menu {
    top: 60px;
}

.menu ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
    box-sizing: border-box;
    padding: 0 60px;
}


.menu ul li a {
    color: var(--primary-color);
    line-height: 20px;
    font-size: 14px;
    padding: 20px 0;
    display: block;
    font-family: var(--font-family-text-bold);
}

@media screen and (max-width: 1279px) {


    .menu {
        top: 60px;
        right: -500px;
        left: auto;
        height: calc(100% - 60px);
        box-sizing: border-box;
        width: 320px;
        padding: 20px;
        z-index: 99;
        overflow: auto;
        max-height: 100vh;

    }

    .open_menu .menu {
        right: -0px;
    }

    .menu ul {

        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        z-index: 10;
        padding: 10px 30px;
    }
}


.home_div {
    overflow: hidden;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.home_div.home_div_1 {
    background-image: url("../images/home.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

.home_div.home_div_1 .wrap_home_div_1 {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.home_div.home_div_1 .wrap_home_div_1:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background-color: var(--other-color);
    opacity: 0.75;
    width: 1600px;
    aspect-ratio: 1;
    z-index: 1;
    border-radius: 100%;
}

.home_div.home_div_1 .wrap_home_div_1 > div {
    position: relative;
    z-index: 2;
    padding: var(--separacion-default);
    text-align: right;
    color: var(--primary-color);
    font-family: var(--font-family-text-bold);
}

.home_div.home_div_1 .wrap_home_div_1 > div img {
    width: 300px;
    margin-bottom: 20px;
}

.home_div.home_div_1 .wrap_home_div_1 > div .claim {
    font-size: 25px;
}

.home_div.home_div_1 .wrap_home_div_1 > div .claim_2 {
    font-size: 70px;
}

.home_div.home_div_1 > a {
    position: absolute;
    left: var(--separacion-default);
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    text-align: center;
    color: white;
    font-size: 100px;
}

.home_div.home_div_2 .wrap_home_div_2 {
    padding: var(--separacion-default);
    box-sizing: border-box;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_bola_texto {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--separacion-default);
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_bola {
    width: 350px;

}

.home_div.home_div_2 .wrap_home_div_2 .wrap_bola .bola {
    width: 350px;
    height: 350px;
    border-radius: 100%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-text-bold);
    font-size: 45px;
    line-height: 30px;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_bola .bola span {
    font-size: 85px;
    line-height: 75px;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto {
    width: calc(100% - 350px - var(--separacion-default))
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto .texto {
    position: relative;
    color: var(--primary-color);
    box-sizing: border-box;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto .texto a {
    color: var(--primary-color);
    text-decoration: underline;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto .texto p {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto .texto p b {
    font-family: var(--font-family-bold);
}

.home_div.home_div_2 .wrap_home_div_2 .wrap_texto .texto p:last-child {
    margin-bottom: 0px;
}


.home_div.home_div_2 .wrap_home_div_2 .capitulos {
    width: 1080px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
}

.home_div.home_div_2 .wrap_home_div_2 .capitulos > a {
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 240px;
    color: var(--primary-color);
    font-family: var(--font-family-bold);
    font-size: 18px;
    text-transform: uppercase;
}

.home_div.home_div_2 .wrap_home_div_2 .capitulos > a img {
    display: block;
    width: 180px;
    margin: 0 auto;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 10px solid var(--primary-color);
}

.home_div.home_div_2 .wrap_home_div_2 .capitulos > a:nth-child(1) img,
.home_div.home_div_2 .wrap_home_div_2 .capitulos > a:nth-child(4) img,
.home_div.home_div_2 .wrap_home_div_2 .capitulos > a:nth-child(7) img {
    border-color: var(--secondary-color);
}

.home_div.home_div_2 .wrap_home_div_2 .capitulos > a:nth-child(3) img,
.home_div.home_div_2 .wrap_home_div_2 .capitulos > a:nth-child(6) img {
    border-color: var(--other-color);
}


@media screen and (max-width: 1279px) {
    .home_div.home_div_2 .wrap_home_div_2 .wrap_bola_texto {
        flex-direction: column;
    }

    .home_div.home_div_2 .wrap_home_div_2 .wrap_texto,
    .home_div.home_div_2 .wrap_home_div_2 .wrap_bola {
        width: 100%;
    }

    .home_div.home_div_2 .wrap_home_div_2 .wrap_bola .bola {
        margin: 0 auto;
    }

    .home_div.home_div_2 .wrap_home_div_2 .capitulos {
        width: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .home_div.home_div_1 .wrap_home_div_1 {
        width: 100%;
        align-items: center;
    }

    .home_div.home_div_1 .wrap_home_div_1:after {
        border-radius: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .home_div.home_div_1 .wrap_home_div_1 > div {
        text-align: center;
    }

    .home_div.home_div_1 > a {
        z-index: 99;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    .home_div.home_div_1 .wrap_home_div_1 > div img {
        width: 200px;
    }

    .home_div.home_div_1 .wrap_home_div_1 > div .claim {
        font-size: 15px;
    }

    .home_div.home_div_1 .wrap_home_div_1 > div {
        padding: 20px;
    }

    .home_div.home_div_1 .wrap_home_div_1 > div .claim_2 {
        font-size: 50px;
    }

    .home_div.home_div_1 > a {
        font-size: 70px;
    }

    .home_div.home_div_2 .wrap_home_div_2 {
        box-sizing: border-box;
    }
}


@media screen and (max-width: 499px) {
    .home_div.home_div_1 .wrap_home_div_1 > div .claim_2 {
        font-size: 35px;
    }

    .home_div.home_div_2 .wrap_home_div_2 .wrap_bola .bola {
        width: 260px;
        height: 260px;
        font-size: 30px;
        line-height: 23px;
    }

    .home_div.home_div_2 .wrap_home_div_2 .wrap_bola .bola span {
        font-size: 60px;
        line-height: 65px;
    }
}


.pagina_div a.btn_download {
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-family-bold);
    border-radius: 150px;
    width: 150px;
    height: 150px;
    padding: 40px 0;
    display: block;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.pagina_div a.btn_download i {
    line-height: 30px;
    font-size: 35px;
    margin-bottom: 5px;
    display: block;
}

.pagina_div a.btn_download:hover {
    background-color: white;
    color: var(--primary-color);
}

.pagina_div a.btn_download.btn_download_2 {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.pagina_div a.btn_download.btn_download_2:hover {
    background-color: white;
}

.pagina_div h1.titulo {
    font-family: var(--font-family-text-bold);
    font-weight: normal;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

html[data-slug="medioambiente"] .pagina_div h1.titulo {
    font-size: 65px;
    line-height: 65px;
}

.pagina_div h1.titulo span {
    color: var(--secondary-color);
}


.pagina_div h1.titulo span.grande {
    font-size: 300px;
    line-height: 300px;
    color: white;
    display: block;
    text-align: center;
    padding-top: 40px;
}

@media screen and (max-width: 1279px) {


    .pagina_div h1.titulo {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 30px;
    }

    html[data-slug="medioambiente"] .pagina_div h1.titulo {
        font-size: 50px;
        line-height: 50px;
    }

    .pagina_div a.btn_download {
        width: 100px !important;
        height: 100px !important;
        padding: 20px !important;
        font-size: 10px !important;
        line-height: 15px !important;
    }

    .pagina_div a.btn_download i {
        line-height: 25px !important;
        font-size: 25px !important;
    }

    .pagina_div h1.titulo span.grande {
        font-size: 200px;
        line-height: 180px;
    }

}

@media screen and (max-width: 767px) {


    .pagina_div h1.titulo {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 499px) {

    .pagina_div a.btn_download {
        width: 100px !important;
        height: 100px !important;
        padding: 20px !important;
        font-size: 10px !important;
        line-height: 15px !important;
    }

    .pagina_div a.btn_download i {
        line-height: 25px !important;
        font-size: 25px !important;
    }

    html[data-slug="medioambiente"] .pagina_div h1.titulo {
        font-size: 30px;
        line-height: 30px;
    }
}


.wrap_cifras {
    margin-bottom: var(--separacion-default);
    display: flex;
    gap: var(--separacion-default);
    justify-content: center;
}

.wrap_cifras > div {
    position: relative;
    padding-left: 30px;
    text-align: center;
}

.wrap_cifras > div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    width: 8px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    transform: rotate(15deg);
}

.wrap_cifras.cifras_grandes > div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 13px;
    background-color: var(--secondary-color);
    border-radius: 7px;
    transform: rotate(15deg);
}

.wrap_cifras > div .cifra {
    font-family: var(--font-family-text-bold);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    height: 60px;
}

.wrap_cifras.cifras_medianas > div .cifra {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 0px;
    height: auto;
}

.wrap_cifras > div .cifra span.medida {
    font-size: 30px;
    line-height: 60px;
}

.wrap_cifras > div .texto {
    font-family: var(--font-family-bold);
    font-size: 12px;
}

@media screen and (max-width: 1279px) {

}

@media screen and (max-width: 1023px) {
    .wrap_cifras {
        flex-wrap: wrap;
        gap: 0;
        column-gap: 30px;
        margin-bottom: 0;
    }

    .wrap_cifras > div {
        box-sizing: border-box;
        width: 40%;
        margin-bottom: 60px;
    }

    .wrap_cifras.cifras_medianas > div:nth-child(1) {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .wrap_cifras {
        flex-wrap: wrap;
        gap: 0;
        column-gap: 60px;
    }

    .wrap_cifras > div {
        width: 280px;
        margin-bottom: 60px;
    }

    .wrap_cifras.cifras_medianas > div:nth-child(1) {
        width: 100%;
    }
}


.wrap_tipo_1 .left {
    width: 45%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding-left: var(--separacion-default);
    padding-top: var(--separacion-default);
}

.wrap_tipo_1 .left .imagen_bola {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    box-sizing: border-box;
    border: 30px solid var(--other-color);
    border-radius: 100%;
    background-image: url("../images/presidente.jpg");
    background-size: cover;
    background-position: center center;
}

.wrap_tipo_1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    background-color: white;
}

.wrap_tipo_1 .right {
    width: 55%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    color: var(--primary-color);
    box-sizing: border-box;
}

.wrap_tipo_1 .right .top,
.wrap_tipo_1 .right .bottom {
    padding: var(--separacion-default);
    box-sizing: border-box;
}

.wrap_tipo_1 .right .bottom {
    padding-top: 0;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
}

.wrap_tipo_1 .right .bottom .btn_entrevista {
    margin-left: 40px;
    color: black;
    font-family: var(--font-family-text-bold);
    font-size: 15px;
    display: block;
    text-align: center;
}

.wrap_tipo_1 .right .bottom .btn_entrevista i {
    line-height: 150px;
    font-size: 180px;
    display: block;
    margin-bottom: 10px;
}

.wrap_tipo_1 .right h2 {
    font-family: var(--font-family-bold);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
    font-weight: normal;
    color: black;
}

.wrap_tipo_1 .right h2 span {
    font-size: 25px;
    line-height: 35px;
}

.wrap_tipo_1 .right p {
    font-size: 18px;
    margin-bottom: 20px;
}

.wrap_tipo_1 .right p b {
    font-family: var(--font-family-bold);
    font-weight: normal;
}

.wrap_tipo_1 .right p:last-child {
    margin-bottom: 0px;
}

.wrap_carta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    color: var(--primary-color);
    background-color: white;
}

.wrap_carta .left {
    width: 400px;
    box-sizing: border-box;
    padding: var(--separacion-default);
}

.wrap_carta .left h1 {
    font-family: var(--font-family-text-bold);
    font-weight: normal;
    font-size: 40px;
    line-height: 40px;
}

.wrap_carta .right {
    width: calc(100% - 400px);
    box-sizing: border-box;
    padding: var(--separacion-default);
    padding-bottom: calc(var(--separacion-default) + 20px);
    padding-left: 0;
}

.wrap_carta .right p {
    margin-bottom: 20px;
    font-size: 18px;
}

.wrap_carta .right p b {
    font-family: var(--font-family-bold);
}

.wrap_carta .wrap_cifras {
    margin: 60px 0 !important;
}

.wrap_carta .wrap_cifras > div {
    text-align: left !important;
    width: 600px !important;
    max-width: 100% !important;
    margin: 0 !important;
}

@media screen and (max-width: 1279px) {
    .wrap_tipo_1 .right h2 {
        font-size: 25px;
    }

    .wrap_tipo_1 .right h2 span {
        font-size: 20px;
    }
}

@media screen and (max-width: 1023px) {
    .wrap_carta,
    .wrap_tipo_1 {
        flex-direction: column;
    }

    .wrap_carta .left,
    .wrap_carta .right,
    .wrap_tipo_1 .left,
    .wrap_tipo_1 .right {
        width: 100%;
        padding: var(--separacion-default) !important;
        padding-bottom: 0 !important;
    }

    .wrap_tipo_1 .right .top,
    .wrap_tipo_1 .right .bottom {
        padding: 0;
        padding-bottom: var(--separacion-default) !important;
    }
}

@media screen and (max-width: 767px) {
    .wrap_tipo_1 .left .imagen_bola {
        border-width: 15px;
    }
}


.wrap_tipo_2 {
    background-color: white;
    position: relative;
    overflow: hidden;
    padding: var(--separacion-default);
}


.wrap_tipo_3 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}

.wrap_tipo_3 .left {
    width: 55%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    background-image: url("../images/mutualidad.jpg");
    background-size: cover;
    z-index: 1;
    position: relative;
    background-position: center right;
}

html[data-slug='medioambiente'] .wrap_tipo_3 .left {
    background-image: url("../images/medioambiente.jpg");
}


html[data-slug='social'] .wrap_tipo_3 .left {
    background-image: url("../images/social.jpg");
}

html[data-slug='gobernanza'] .wrap_tipo_3 .left {
    background-image: url("../images/gobernanza.jpg");
}

html[data-slug='acerca-de-esta-memoria'] .wrap_tipo_3 .left {
    background-image: url("../images/acerca-de-esta-memoria.jpg");
}

html[data-slug='anexos'] .wrap_tipo_3 .left {
    background-image: url("../images/anexos.jpg");
}

html[data-slug='acerca-de-esta-memoria'] .wrap_tipo_3 .right:after,
html[data-slug='anexos'] .wrap_tipo_3 .right:after {
    background-color: var(--other-color);
}

.wrap_tipo_3 .right {
    width: 45%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.wrap_tipo_3 .right:after {
    content: "";
    position: absolute;
    width: 2000px;
    height: 2000px;
    top: 50%;
    left: -120px;
    transform: translate(0, -50%);
    background-color: var(--primary-color);
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
    z-index: 1;
}

.wrap_tipo_3 .right .contenido {
    z-index: 2;
    padding: var(--separacion-default) 0;
    padding-right: var(--separacion-default);
    padding-bottom: calc(var(--separacion-default) + 20px);
}


.wrap_tipo_3 .right .contenido ul {
    font-family: var(--font-family-text-bold);
    color: var(--other-color);
    display: block;
    margin-bottom: var(--separacion-default);
}

.wrap_tipo_3 .right .contenido ul li a {
    margin: 10px 0;
    color: var(--other-color);
    font-size: 20px;
    display: block;
}
html[data-slug='acerca-de-esta-memoria'] .wrap_tipo_3 .right .contenido ul li a {
    color: var(--primary-color);
}

.wrap_tipo_3 .right .contenido .btn_download {
    position: absolute;
    bottom: 80px;
    right: var(--separacion-default);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.wrap_tipo_3 .right .contenido .btn_download:hover {
    background-color: white;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}


@media screen and (max-width: 1499px) {
    .wrap_tipo_3 .right:after {
        width: 1500px;
        height: 1500px;
    }
}

@media screen and (max-width: 1279px) {
    .wrap_tipo_3 .right .contenido ul {
        padding-right: 120px;
    }

    .wrap_tipo_3 .right .contenido ul li a {
        font-size: 15px;
    }

}

@media screen and (max-width: 1023px) {
    .wrap_tipo_3 {
        flex-direction: column;
    }

    .wrap_tipo_3 .left {
        height: 500px;
    }

    .wrap_tipo_3 .left,
    .wrap_tipo_3 .right {
        box-sizing: border-box;
        width: 100%;
        padding: var(--separacion-default) !important;
        padding-bottom: 0 !important;
    }

    .wrap_tipo_3 .right .top,
    .wrap_tipo_3 .right .bottom {
        box-sizing: border-box;
        padding: 0;
        padding-bottom: var(--separacion-default) !important;
    }

    .wrap_tipo_3 .right:after {
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .wrap_tipo_3 .right .contenido {
        padding: 0 !important;
        padding-bottom: var(--separacion-default) !important;
    }

    .wrap_tipo_3 .right .contenido .btn_download {
        position: static;
        margin: 0 auto;
    }

    .wrap_tipo_3 .right h1.titulo {
        text-align: center;
    }

    .wrap_tipo_3 .right .contenido ul {
        padding: 0;
        text-align: center;
    }

}

@media screen and (max-width: 767px) {

    .wrap_tipo_3 .left {
        height: 350px;
    }

}

@media screen and (max-width: 499px) {

    .wrap_tipo_3 .left {
        height: 250px;
    }

}


/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.legal {
    display: none;
}

.nav {
    position: fixed;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    z-index: 12;
    background-color: var(--primary-color);;
}

html[data-slug='index'] .nav {
    display: none !important;
}

.nav a {
    color: white;
    display: block;
    font-size: 15px;
    line-height: 20px;
    padding: 0 5px;
    box-sizing: border-box;
    float: left;
    position: relative;
    padding-left: 60px;
    font-family: var(--font-family-bold);
}

.nav a .texto {
    display: none;
}

.nav a i {
    color: #c7a7c2;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 50px;
}

.nav a.go_next {
    float: right;
    text-align: right;
    padding-right: 60px;
    padding-left: 0px;
}

.nav a.go_next:last-child i {
    left: auto;
    right: 0;
}

@media screen and (max-width: 1023px) {
    .home .nav {
        display: none;
    }

    .nav {
        width: 100% !important;
        transform: none !important;
        padding: 0 15px;
        height: 40px;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 0px;
        overflow: hidden;
    }

    .nav a {
        float: left;
        margin-top: 15px;
        font-size: 13px;
        line-height: 15px;
    }


    .nav a.go_next {
        float: right;
        text-align: right;
    }

    .nav a.go_next i {
        float: right;
        line-height: 40px;
        margin-left: 5px;
    }


}

@media screen and (max-width: 767px) {
    .nav {
        padding: 0px;
    }

    .nav a {
        height: 40px !important;
        width: 50% !important;
        overflow: hidden;
        position: relative;
        margin: 0;
        padding-left: 35px;
    }

    .nav a i {
        height: 40px !important;
        width: 40px !important;
        line-height: 40px !important;
        margin-left: 0px !important;
        text-align: center !important;
        position: absolute;
        top: 0 !important;
        left: 0 !important;
        transform: translate(0, 0%);
        font-size: 20px;
    }

    .nav a.go_next {
        padding-left: 0px;
        padding-right: 35px;
    }

    .nav a.go_next i {
        left: auto !important;
        right: 0 !important;
    }


    .nav a .texto {
        display: block;
        line-height: 40px;
    }

    .nav a .nombre {
        display: none;
    }


}