@font-face {
    font-family: gordita_black;
    src: url(../fonts/gordita/Gordita-Black.otf);
}

@font-face {
    font-family: gordita_light;
    src: url(../fonts/gordita/Gordita-Light.otf);
}

@font-face {
    font-family: gordita_medium;
    src: url(../fonts/gordita/Gordita-Medium.otf);
}

@font-face {
    font-family: charter;
    src: url(../fonts/charter/Charter.otf);
}



@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Internet Explorer */

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-moz-keyframes updown {
    0%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    40% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-webkit-keyframes updown {
    0%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    40% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes updown {
    0%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    40% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}
@-moz-keyframes rightleft {
    0%,
    100% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        -moz-transform: translateX(15px);
        transform: translateX(15px);
    }
    40% {
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
    60% {
        -moz-transform: translateY(5px);
        transform: translateX(5px);
    }
}

@-webkit-keyframes rightleft {
     0%,
    100% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        -moz-transform: translateX(15px);
        transform: translateX(15px);
    }
    40% {
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
    60% {
        -moz-transform: translateY(5px);
        transform: translateX(5px);
    }
}

@keyframes rightleft {
     0%,
    100% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        -moz-transform: translateX(15px);
        transform: translateX(15px);
    }
    40% {
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
    60% {
        -moz-transform: translateY(5px);
        transform: translateX(5px);
    }
}

body {
    font-family: 'Merriweather', serif;
    font-size: 18px;
}

p {
    font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 18px;
    margin: 1rem;
    color: #404040;
    text-align: justify;
}

p strong {
    font-family: gordita_medium, sans-serif;
    color: #06397b;
}

a {
    color: #ccc;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: rgba(254, 176, 39, 1);
    ;
    text-decoration: none;
    background-color: transparent;
}

.overlay_1 {
    position: absolute;
    background: rgba(6, 57, 123, 0.7);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.overlay_2 {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.overlay_3 {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    z-index: 10;
}

.main_container .inner_container {
    padding: 100px 100px 100px 100px;
    padding: 100px 100px 100px 100px;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    height: 100%;
}

.inner_container {
    padding: 60px 150px 60px 200px;
}



label {
    font-family: gordita_medium, sans-serif;
    font-size: 18px;
    color: #06397b;
}

input,
textarea,
select {
    font-family: gordita_medium, sans-serif;
    font-size: 18px;
}

.btn_1.empty {
    color: #06397b;
}

.btn_1.filled {
    background: #06397b;
    border: 1px solid #003980;
}

.btn_1 {
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #003980;
    border-radius: 4px;
    padding: 20px 32px;
    cursor: pointer;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 16px;
}

.btn_1.active {
    opacity: 1;
    transition: opacity 0.5s ease 0s;
}

.btn_1_small {
    color: white;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #003980;
    border-radius: 4px;
    padding: 4px 12px 5px;
    cursor: pointer;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
    display: none;
}
.btn_1_big {
    color: white !important;
    background: #003980;
    border: 1px solid #003980;
    border-radius: 4px;
    padding: 16px;
    cursor: pointer;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
	display: flex;
}

.btn_1_small:hover {
    color: white;
    background: #003980;
}
.btn_1_big:hover {
    background: white;
    border: 1px solid white;
    color: #003980 !important;
}
.btn_1_big:hover ion-icon {
    -moz-animation: rightleft 0.8s ease;
    -webkit-animation: rightleft 0.8s ease;
    animation: rightleft 0.5s;
}
.btn_2 {
    color: white;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #003980;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    opacity: 0;
    justify-content: center;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}
.btn_2.empty {
    color: #06397b;
}
.btn_3 {
    color: #003980;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #003980;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    justify-content: center;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}
.btn_3:hover {
    background: #003980;
    border: 1px solid white;
    color: white;
}
#close_panel{
    bottom: 10px;
    position: absolute;
    right: 50px;
}

.descubre .btn_1:hover {
    background: white;
    border: 1px solid white;
    color: #06397b;
}

.descubre .btn_1:hover span {
    color: #06397b;
}

.btn_1:hover {
    background: #06397b;
    border: 1px solid #06397b;
    color: white;

}

.btn_1:hover span {
    color: white;
}

.btn_1.filled:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #06397b;

}

.btn_1.filled:hover span {
    color: #06397b;
}

.btn_1.filled a {
    color: #fff;
}

.btn_1.filled:hover a {
    color: #06397b;
}


.btn_1 ion-icon {
    font-size: 16px;
}
.btn_1_big ion-icon {
    font-size: 18px;
    margin-left: 10px;
}

.mas_info:hover ion-icon {
    -moz-animation: updown 0.8s ease;
    -webkit-animation: updown 0.8s ease;
    animation: updown 0.5s;
}
.acceso:hover ion-icon {
    -moz-animation: rightleft 0.8s ease;
    -webkit-animation: rightleft 0.8s ease;
    animation: rightleft 0.5s;
}
.btn_2:hover ion-icon {
    -moz-animation: rightleft 0.8s ease;
    -webkit-animation: rightleft 0.8s ease;
    animation: rightleft 0.5s;
}

.btn_1 span {
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 2px 10px 0px;
}
.btn_2 span {
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 10px;
    padding: 2px 5px 0px;
}
.btn_2 ion-icon {
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 2px 5px 0px;
    margin: -2px 0;
}

.btn_1_container {
    text-align: left;
}

.send_form {
    display: initial;
}

.btn_1.fijo {
    min-width: 250px;
}

.btn_1.adaptable {
    padding: 15px 25px;
    width: auto;
}

.form-check-input {
    position: absolute;
    margin-top: .25rem;
    margin-left: 0.5rem;
}

.form-check-label {
    padding-left: 2rem;
    margin-bottom: 0;
}

.title_section {
    font-size: 4.5rem;
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 6px;
    color: #06397b;
}

.triptico {
    margin: 70px 0 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-position: center;
    background-image: url(../img/68.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.triptico .container {
    margin: 0 0 30px;
    display: flex;
    align-items: center;
}

.triptico .bg {
    height: 100%;
    width: 100%;
    border: 8px solid white;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}

.text_triptico {
    padding: 0 60px;
}

/*.triptico .bg.bg_uno{
    background-image: url(../img/9.jpg);
}
.triptico .bg.bg_dos{
    background-image: url(../img/17.jpg);
}
.triptico .bg.bg_tres{
    background-image: url(../img/7.png);
}*/

.triptico .texto {
    padding: 20px;
    bottom: 0;
    margin: 0;
    width: 100%;
}

.triptico .linea {
    position: absolute;
    background: #ccc;
    height: 80%;
    width: 1px;
    right: 0;
    top: 10%;
    display: none;
}

.triptico .texto p {
    font-family: gordita_medium, sans-serif;
    font-family: 'Anton', sans-serif;
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #003980;
    margin: 0;
    letter-spacing: 2px;
    font-size: 30px;
}

.triptico .texto .sub_texto {
    font-size: 16px;
    font-family: gordita_medium, sans-serif;
    text-align: center;
    color: rgba(254, 176, 39, 1);
    padding: 0px 0;
    letter-spacing: 1px;
}

.sub_texto_container {
    padding-top: 10px;
}

.separador {
    background: #06397b;
    height: 5px;
    width: 10%;
    margin: 30px 0;
    margin-left: calc(47% + 0px);
}

.sep_vertical {
    position: absolute;
    width: 4px;
    height: 4px;
    margin: 10px 0;
    letter-spacing: 0;
    padding: 0;
    border-radius: 100%;
    background: rgba(254, 176, 39, 1);
}

.nombre_seccion_container {
    position: fixed;
    right: 0;
    top: 70px;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #06397b;
    z-index: 10;
    width: 500px;
    opacity: 0;
    transform: translateY(-20px);
    /*transition: all 0.4s ease-in;*/
}

.nombre_seccion {
    -webkit-transform: translateX(450px) rotate(90deg) translateY(0%);
    -ms-transform: translateX(450px) rotate(90deg) translateY(0%);
    transform: translateX(450px) rotate(90deg) translateY(0%);
    transform-origin: 0% 0%;
}

.nombre_seccion_container.active {
    opacity: 1;
    transition: all 0.4s ease-in;
    transform: translateY(0px);
}

.to_top_container {
    position: fixed;
    right: 50px;
    font-size: 40px;
    bottom: 70px;
    color: #06397b;
    z-index: 10;
    opacity: 0;
    transform: translateY(-20px);
    /* transition: all 0.4s ease-in; */
}

.to_top_container a {
    color: #06397b;
    padding: 5px 0;
    margin: 0;
    display: flex;
}

.to_top_container:hover {
    -moz-animation: updown 0.8s ease;
    -webkit-animation: updown 0.8s ease;
    animation: updown 0.5s;
    background: rgba(0, 0, 0, 0);
}

.to_top {}

.to_top_container.active {
    opacity: 1;
    transition: all 0.4s ease-in;
    transform: translateY(0px);
}

#empresa {
    /* background: url(../img/16.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
}

#empresa .bg {
    /*background: url(../img/27.png);*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 80%;
    width: 40%;
    right: 0;
    top: 20%;
}

#empresa .bg .overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    height: 100%;
    width: 100%;
    z-index: 0;
}

.e_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.e_imagen {
    background-image: url(../img/67.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.cuarenta {
    font-family: 'Fjalla One', sans-serif;
    color: #06397b;
    font-size: 30px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.cuarenta .numero {
    overflow-x: auto;
}


.e_mas {
    left: -1.2em;
    position: absolute;
    width: 100%;
    font-size: 4em;
}

.e_40 {
    text-align: center;
    font-size: 7.5em;
}

.e_texto {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 9em;
    text-align: center;
    left: 0.5em;
}

.separador_sector {
    background: #06397b;
    height: 3px;
    width: 10%;
    margin: 15px 0;
}

.clientes_container {
    padding: 0 15%;
    margin-right: 0px;
    margin-left: 0px;
}

.logos_container {
    padding: 0 0px 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.logos_container div {
    text-align: center;
}

.logos_container img {
    vertical-align: middle;
    border-style: none;
    margin: 10px 20px;
}

.linea_temporal {
    padding: 0px 10%;
    margin: 50px 0 250px;
    top: 20px;
    height: auto;
    left: 0px;
    height: 1200px;

}

.linea {
    position: absolute;
    width: 5px;
    height: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    background: #06397b;
}

.linea_1 {
    width: 33%;
    height: 5px;
    background: #ccc;
    margin: 0 0px;
}

.linea_2 {
    width: 33%;
    height: 5px;
    background: #ccc;
    margin: 0 0px;
}

.linea_3 {
    width: 33%;
    height: 5px;
    background: #ccc;
    margin: 0 0px;
}

.linea .active {
    background: #06397b;
}

.hitos {
    position: absolute;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hito {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-left: 0px;
    background: #ccc;
    border-radius: 100%;
    top: -7px;
    border: 5px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 black;
    position: absolute;
    width: 18px;
    height: 18px;
    background: #06397b;
    border-radius: 100%;
    top: -7px;
    border: 5px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 black;
}

.hito:hover {
    background: #06397b;
    cursor: pointer;
    position: absolute;
    width: 18px;
    height: 18px;
    background: #06397b;
    border-radius: 100%;
    top: -7px;
    border: 5px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 black;
}

.linea_temporal .hito:hover .year h2 {
    font-family: 'Fjalla One', sans-serif;
    color: #06397b;
}

.hito.active {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #06397b;
    border-radius: 100%;
    top: -7px;
    border: 5px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 black;
}

.hito_uno {
    left: -7px;
    margin-left: 0;
}

.hito_dos {
    top: 33%;
    left: -7px;
}

.hito_tres {
    top: 66%;
    left: -7px;
}

.hito_cuatro {
    top: 99%;
    left: -7px;
}

.linea_temporal .year {
    position: absolute;
    top: -10px;
    cursor: pointer;
    margin-left: 25px;
}


.linea_temporal .year h2.active {
    font-size: 1.5rem;
    font-family: 'Fjalla One', sans-serif;
    color: #06397b;
}

.linea_temporal .year h2 {
    font-size: 1.5rem;
    font-family: 'Fjalla One', sans-serif;
    color: #ccc;
    color: #06397b;
}

.circulo {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid white;
    border-radius: 100%;
    left: -1px;
    top: -1px;

}

.circulo.active {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid white;
    border-radius: 100%;
    left: 3px;
    top: 3px;
}

.historia_container {
    position: absolute;
    top: 160px;
    height: 1200px;
}

.historia1 {
    position: absolute;
    top: 0;
}
.historia2 {
    position: absolute;
    top: 33%;
}
.historia3 {
    position: absolute;
    top: 66%;
}
.historia4 {
    position: absolute;
    top: 99%;
}

.padding_hostoria {
    padding: 0 150px;
}

.box_1 {
    margin-left: 0%;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin: 40px 10% 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
}


.box_1 .superior {
    height: calc(100% - 85px);
    min-height: 200px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.box_1 .superior .foto {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    min-height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.box_1.h_1 .superior .foto.f_1 {
    background-image: url(../img/28.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_1 .superior .foto.f_2 {
    background-image: url(../img/29.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_1 .superior .foto.f_3 {
    background-image: url(../img/46.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_1 .superior .foto.f_4 {
    background-image: url(../img/48.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_2 .superior .foto.f_1 {
    background-image: url(../img/54.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_2 .superior .foto.f_2 {
    background-image: url(../img/52.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_2 .superior .foto.f_3 {
    background-image: url(../img/55.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_2 .superior .foto.f_4 {
    background-image: url(../img/49.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_3 .superior .foto.f_1 {
    background-image: url(../img/60.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_3 .superior .foto.f_2 {
    background-image: url(../img/39.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_3 .superior .foto.f_3 {
    background-image: url(../img/58.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_3 .superior .foto.f_4 {
    background-image: url(../img/11.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_4 .superior .foto.f_1 {
    background-image: url(../img/41.png);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_4 .superior .foto.f_2 {
    background-image: url(../img/63.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_4 .superior .foto.f_3 {
    background-image: url(../img/5.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1.h_4 .f_4 {
    background-image: url(../img/43.jpg);
    -webkit-transition: background 1s linear;
    -moz-transition: background 1s linear;
    -o-transition: background 1s linear;
    -ms-transition: background 1s linear;
    transition: background 1s linear;
}

.box_1 .next {
    position: absolute;
    width: 50px;
    height: 100%;
    background: #06397b;
    text-align: center;
    color: #fff;
    top: 0;
    right: 5%;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom-right-radius: 0px;
    z-index: 1;
}

.box_1 .next:hover {
    background: rgba(254, 176, 39, 1);
    color: #fff;
}

.box_1 .previous {
    position: absolute;
    width: 50px;
    height: 100%;
    background: #06397b;
    text-align: center;
    color: #fff;
    top: 0;
    right: calc(5% + 50px);
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom-left-radius: 0px;
    z-index: 1;
}

.box_1 .previous:hover {
    background: rgba(254, 176, 39, 1);
    color: #fff;
}

.box_1 .inferior {
    /* min-height: 200px; */
    width: 100%;
    padding: 30px;
    font-family: 'Fjalla One', sans-serif;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #00397f;
    background: rgba(255, 255, 255, 0.7);
    padding: 25px 50px;
}

.h_container {
    display: none;
}

.h_container.active {
    display: block;
}

.box_1 .inferior h2 {
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    width: 75%;
}

.box_1 p {
    margin: 0;
    color: #212529;
    font-size: 16px;
}

.arrow_triangulo {
    position: absolute;
    top: 0px;
    background: rgba(0, 0, 0, 0);
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    width: 10px;
    height: 10px;
    z-index: 2;
    left: 25%;
}

.arrow_linea_left {
    height: 10px;
    width: 25%;
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    border-top-left-radius: 8px;
}

.arrow_linea_right {
    height: 10px;
    width: calc(75% - 20px);
    background: white;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    border-top-right-radius: 8px;
}

.seccion_cliente {
    margin: 20px 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
	align-content: flex-start;
    justify-content: center;
    flex-direction: row;
    /*-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);*/
    border-radius: 15px;
}

.seccion_cliente_titulo_container {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.seccion_cliente_titulo {
    width: 100%;
   /* height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 10px 0 0;
}

.seccion_cliente_titulo h1 {
    color: #06397b;
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 6px;
    font-size: 40px;
}

.seccion_cliente_titulo h1:after {
    background: rgba(6, 57, 123, 1);
    width: 40px;
    height: 4px;
    content: '';
    display: flex;
    margin-left: calc(50% - 20px);
    margin-top: 20px;
}

.legal article {
    padding-top: 20px;
}

.legal h2 {
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 0rem;
    line-height: 1.5;
}

.legal h3,
.legal h4,
.legal thead {
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 16px;
    padding: 5px 0rem;
}

.legal a {
    color: rgba(6, 57, 123, 1);
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: gordita_light, sans-serif;
}

.legal p {
    font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 16px;
    margin: 1rem;

}

.legal li {
    font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 14px;

}

.legal .descarga {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.legal table {
    border: #003980;
}

.mapa {
    min-height: 500px;
}

.address {
    background: #d6d6d6;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.address .title {
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-size: 16px;
    letter-spacing: 6px;
}

.address p {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.address button {
    padding: 16px;
    font-size: 14px;
}

#chartdiv {
    width: 100%;
    height: 500px;
}

form {
    padding: 0 15%;
}

.map_container {
    width: 100%;
    /*display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;*/
}

#map {
    width: 100%;
    height: calc(100% - 140px);
    min-height: 450px;
    margin-top: 40px;
    /* margin: 50px 0 0; */
    /* z-index: -1; */
    /* position: absolute; */
}

#map svg {
    height: calc(100%);
    min-height: 450px;
    width: 100%;
}

#map svg g {
    transform: scale(1, 1) translate(10%,0);
    /*transform: translate(-30%,0);*/
}

.tip_map_total_container {
    /*display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;*/
    height: 100%;
    position: relative;
    z-index: 10;
}

.tip_map_container {
    /*display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;*/
    height: 100%;
    margin: 5px 0;
    width: 100%;
    position: relative;
    opacity: 1;
    padding: 0 10px;
}

.tip_map {
    position: relative;
    height: auto;
    background: #fff;
    border-radius: 0px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
}

.tip_map_hover {
    height: auto;
    background: #f2f2f2;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    cursor: pointer;
}

.tip_map_container.is_open {
    z-index: 10;
    opacity: 1;
}
.tip_map_container.is_open .overlay2 {
    background: rgba(0, 0, 0, 0);
    z-index: 10;
    position: absolute;
    display: none;
}

.tip_map_container .a_foto_container {
    padding: 0;
    margin: 0;
    width: auto;
	height: 250px;
}


.tip_map .titulo {
    padding: 30px 30px 20px;
    width: 100%;
    text-align: center;
}

.tip_map_container.is_open .titulo {
    padding: 30px 30px 0px;
    width: 100%;
    text-align: center;
}

.tip_map_hover.tip_open .titulo {
    padding: 30px 30px 0px;
    width: 100%;
    text-align: center;
}

.tip_map .titulo h1,
.tip_map_hover .titulo h1 {
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
}

.tip_map h1::after {
    background: rgba(6, 57, 123, 1);
    width: 20px;
    height: 2px;
    display: flex;
    margin-left: calc(50% - 10px);
    margin-top: 10px;
}

.tip_map_container.is_open h1::after {
    background: rgba(6, 57, 123, 1);
    width: 20px;
    height: 2px;
    content: '';
    display: flex;
    margin-left: calc(50% - 10px);
    margin-top: 10px;
}

.tip_map_hover.tip_open h1::after {
    background: rgba(6, 57, 123, 1);
    width: 20px;
    height: 2px;
    content: '';
    display: flex;
    margin-left: calc(50% - 10px);
    margin-top: 10px;
}

.tip_map .foto_sede {
    width: 100%;
    height: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}

.tip_map_container.is_open .foto_sede {
    height: 150px;
}

#guadalajara .tip_map .foto_sede {
    background-image: url(../img/sede_1.jpg);
}

#madrid .tip_map .foto_sede {
    background-image: url(../img/20.jpg);
}

#barcelona .tip_map .foto_sede {
    background-image: url(../img/sede_2.jpg);
}

#valladolid .tip_map .foto_sede {
    background-image: url(../img/25.jpg);
}

#valencia .tip_map .foto_sede {
    background-image: url(../img/22.jpg);
}

#sevilla .tip_map .foto_sede {
    background-image: url(../img/sede_4.jpg);
}

.tip_map .mapa_sede {
    width: 100%;
    height: 0px;
}

.tip_map .direccion {
    width: 100%;
    padding: 20px 20px 20px;
    text-align: center;
    min-height: 180px;
}
.tip_map_hover .direccion {
    width: 100%;
    padding: 20px 20px 20px;
    text-align: center;
}

.tip_map_container.is_open .direccion {
    width: 100%;
    display: block;
    padding: 20px 20px 20px;
    text-align: center;
}

.tip_map_hover.tip_open .direccion {
    width: 100%;
    display: block;
    padding: 10px 20px 20px;
    text-align: center;
}

.tip_map .direccion p,
.tip_map_hover .direccion p {
    font-family: gordita_medium, sans-serif;
    font-size: 12px;
    padding: 0px;
    margin: 0 0px;
    color: #333;
    text-align: left;
}

.tip_map .sede_button {
    display: block;
}

.tip_map .sede_button .btn_1 {
    color: white;
    width: 100%;
    background: #06397b;
    border: 0px solid #003980;
    border-radius: 0px;
    padding: 20px 0px;
    cursor: pointer;
    opacity: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: gordita_medium, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

}

.tip_map_total_container .a_foto {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    margin: 0;
    min-height: 200px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
}

.tip_map .sede_button .btn_1.filled:hover {
    background: rgba(254, 176, 39, 1);
}

.tip_map .sede_button .btn_1.filled:hover a {
    color: #06397b;
}

.tip_map_container.is_open .sede_button {
    display: block;
}

.tip_map_hover.tip_open .sede_button {
    display: block;
}


.jvectormap-tip {
    position: absolute;
    display: none;
    border: solid 0px #CDCDCD;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0);
    color: white;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    padding: 3px;
    z-index: 20;
}

.cerrar_tip {
    position: absolute;
    height: 15px;
    width: 15px;
    top: 20px;
    right: 20px;
}

.cerrar_tip div:nth-child(1) {
    transform: rotate(45deg) !important;
    height: 1px;
    width: 100%;
    background: #164182;
    margin-top: 7px;
}

.cerrar_tip div:nth-child(2) {
    transform: rotate(-45deg) !important;
    height: 1px;
    width: 100%;
    background: #164182;
    margin-top: -1px;
}

.main_text {
    padding: 30px 0;
}

.main_text p {
    text-align: justify;
}
.overlay2{
    height: 100%;
    width:100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    position: absolute;
	display: none;
}

.t_foto {
    background-image: url(../img/12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80%;
    border-radius: 10px;
    margin: 30px 10%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.t_foto_1 {
    background-image: url(../img/41.png);
}

.t_foto_2 {
    background-image: url(../img/39.jpg);
}

.t_foto_3 {
    background-image: url(../img/11.jpg);
}

.t_foto_4 {
    background-image: url(../img/5.jpg);
}

.t_foto h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-align: left;
}

.t_foto p {
    color: #fff;
    padding: 0px;
    margin: 0;
}

.t_foto .overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0);
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 10px;
    padding: 30px;

}

.t_foto .text_main_container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    padding: 50px;
    z-index: 10;
    position: relative;
    height: 100%;
}

.t_foto .text_container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    height: 100%;
    background: rgba(5, 57, 123, 0.95);
    padding: 20px;
    border-radius: 10px;
}

.a_title {
    font-family: 'Fjalla One', sans-serif;
    color: #06397b;
    height: 100%;
    font-size: 30px;
    text-align: left;
    padding: 0px 0px;
    position: relative;

}

.a_fotos_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding: 0;
}


.a_texto {
    height: 100%;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.a_sub_texto {
    font-size: 0.7em;
    text-align: left;
    position: relative;
    font-family: gordita_light, sans-serif;
    text-transform: uppercase;
}

.a_sub_texto_2 {
    font-size: 0.6em;
    text-align: left;
    position: relative;
    font-family: gordita_light, sans-serif;
    color: #333;
    text-transform: uppercase;
}

.a_sub_texto_2 span {
    padding: 5px 2px;
}

.a_sub_texto_2 span:nth-child(1) {
    padding-left: 0;
}

.a_texto_container {
    margin-top: 0px;
    padding: 20px;
}

.a_texto_container p {
    padding: 10px 0;
    margin: 0;
    text-align: justify;
}

.bg_almacenaje {
    background: transparent;
    background-position: 0%;
    background-image: url(../img/71.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.a_num_metros {
    text-align: center;
    font-size: 1em;
}

.a_metros {
    text-align: center;
    font-size: 0.8em;
}


.a_main_text {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.a_foto_container {
    padding: 0 10px;
    margin: 20px 0px;
    width: 250px;
}

.a_foto {
    background-image: url(../img/12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    margin: 0;
    min-height: 250px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .3);
}

.a_foto .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
}

.a_foto_1 {
    background-image: url(../img/sede_1.jpg);
}

.a_foto_2 {
    background-image: url(../img/36.jpg);
}

.a_foto_3 {
    background-image: url(../img/sede_3.png);
}

.a_foto_4 {
    background-image: url(../img/sede_4.jpg);
}

.a_foto_5 {
    background-image: url(../img/sede_5.jpg);
}
.a_foto_6 {
    background-image: url(../img/sede_6.JPG);
}

.split {
    height: 110%;
    background: white;
    width: 70px;
    position: absolute;
    top: -5%;
    right: -30px;
    z-index: 10;
    filter: blur(5px);
}

.foto_text_container {
    font-family: 'Fjalla One', sans-serif;
    padding: 20px;
    bottom: 0;
    position: absolute;
}

.localidad {
    color: #fff;
    font-size: 1.3em;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    letter-spacing: 3px;
}

.superficie {
    color: #fff;
    font-size: 0.9em;
    text-align: left;
    position: relative;
    font-family: gordita_medium, sans-serif;
}

#exito {}

.abstract {
    background-image: url('../img/dots_3.png');
    position: absolute;
    width: 100%;
    height: 90%;
    top: 10%;

}

.bg-triangle-right {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M100 100 V 90 L 90 100 Z" fill="#212529" fill-opacity="0.045"/><path d="M100 90 V 80 L 90 90 Z" fill="#212529" fill-opacity="0.015"/><path d="M90 100 V 90 L 80 100 Z" fill="#212529" fill-opacity="0.03"/><path d="M90 100 V 90 H 100 Z" fill="#212529" fill-opacity="0.06"/></svg>');
}

.bg-triangle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% auto;
    z-index: 10;
}

#rsc .main_text h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    color: #06397b;
    padding: 15px;
    text-align: center;
}

#rsc .main_text h3:after {
    background: rgba(6, 57, 123, 1);
    width: 40px;
    height: 4px;
    content: '';
    display: flex;
    margin-left: calc(50% - 20px);
    margin-top: 20px;
}
#rsc .main_text h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    color: #06397b;
    padding: 15px;
    text-align: left;
}

#rsc .main_text h4:after {
    background: rgba(6, 57, 123, 1);
    width: 40px;
    height: 4px;
    content: '';
    display: flex;
    margin-left: 0;
    margin-top: 20px;
}

#rsc .main_text p {
    font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 18px;
    margin: 1rem 0;
    color: #404040;
    text-align: justify;
    padding: 0px 20px 15px;
}

#rsc .main_text img {
    width: 100%;
    height: auto;
	color:#fff;
}
#rsc li{
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
	font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 18px;
    margin: 1rem 0;
    text-align: justify;
}
/*#rsc h1{
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 0rem;
    line-height: 1.5;
}*/
#rsc h2{
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 20px;
    padding: 10px 0rem;
    line-height: 1.5;
}
#rsc h3, #rsc h4, #rsc h5 {
    color: rgba(6, 57, 123, 1);
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 16px;
    padding: 10px 0rem;
    line-height: 1.5;
}
#rsc .entry-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 6px;
    color: #06397b;
    text-align: center;
    padding: 10px 0;
}
#transporte h1{
   /* font-size: 2.5rem;*/
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 3px;
}

#transporte .text_container p{
    color:#fff;
}

.entrada_post {
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .05);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 0;
    margin: 10PX;
}

.entry-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    font-family: 'Merriweather', serif;
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 6px;
    color: #06397b;
    text-align: center;
    padding: 10px 0;
}
.entry-meta{
    font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 600;
}
.entry-meta span{
        color: #06397b;
}
#comments{
    display: none;
}
.byline{
     display: none;
}
.entry-meta{
    margin: 30px 0;
}
.navigation{
     font-family: 'Fjalla One', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #06397b;
    margin: 50px 0;
}
.navigation h2{
    font-size: 18px;
}
.nav-links{
        font-size: 16px;
}
.nav-previous{
    width: auto;
    float: left;
    margin: 10px 15px 0 0; 
}
.nav-next{
    width: auto;
    float: left;
    margin: 10px 0px 0 15px; 
}
.nav-links svg{
    width: 20px;
    fill: #06397b;
    height: 12px;
    margin: 0 10px;
}
.nav-links .nav-subtitle{
    display: none;
}
.nav-links .screen-reader-text{
    color: #06397b;
    display: none;
}
.entry-content p{
    font-weight: 100;
    font-family: gordita_light, sans-serif;
    font-size: 18px;
    margin: 1rem 0;
    text-align: justify;
}
.configura_cookies{
    top: calc(50% - 250px);
    height: 550px;
	left: calc(10%);
    width: 80%;
	border-radius: 5px;
}
.ns-box-config{position:fixed;background:rgba(42,45,50,0.85);padding:22px;line-height:1.4;z-index:100000;color:rgba(250,251,255,0.95);font-size:90%;font-family:'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;}
.ns-box-config.ns-show{pointer-events:auto;}
.ns-box-config a{color:inherit;opacity:0.7;font-weight:600;}
.ns-box-config a:hover,
.ns-box-config a:focus{opacity:1;}
.ns-box-config p{margin:0;}
.ns-box-config.ns-show,
.ns-box-config.ns-visible{pointer-events:auto;}
.ns-close-config{width:20px;height:20px;position:absolute;right:4px;top:4px;overflow:hidden;text-indent:100%;cursor:pointer;-webkit-backface-visibility:hidden;backface-visibility:hidden;}
.ns-close-config:hover,
.ns-close-config:focus{outline:none;}
.ns-close-config::before,
.ns-close-config::after{content:'';position:absolute;width:3px;height:60%;top:50%;left:50%;background:#fff;}
.ns-close-config:hover::before,
.ns-close-config:hover::after{background:#ccc;}
.ns-close-config::before{-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg);}
.ns-close-config::after{-webkit-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg);}
.configura_cookies{
    background: #085492;
    overflow: auto;
    display: none;
}
.configura_cookies_inner h1 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 0 0;
}

.config_table div {

}
.custom-control-label{
    color: white !important
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.button-config{
    color: #154280;
    font-size: 11px;
    display: inline-grid;
	width:100px;
    text-align: center;
    margin: 0px 10px;
    padding: 2px 5px;
    border: 1px solid #154280;
    border-radius: 3px;
}
.button-config:hover{
    color: #fff;
    background: #154280;
    cursor: pointer;
}