*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
}

.clearfix:after {
    clear: both;
}

body,
html {
    background: #324C57;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

input,
button,
select,
textarea {
    border-radius: 8px;
    margin-bottom: 0px;
    padding-left: 20px;
    height: 35px;
    width: 300px;
    color: #FFF;
    background: rgba(84, 128, 147, 0.55);
    text-align: left;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #B1B1B1;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background-image: url(../img/select.png);
    background-position: right center;
    background-repeat: no-repeat;
}

button,
select {
    text-transform: uppercase;
    user-focus: none;
    user-select: none;
    outline: none;
}

select:focus,
select:active,
select:visited,
button:focus,
button::-moz-focus-inner,
select::-moz-focus-inner {
    outline: none;
    color: #FFF;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

#selectores {
    position: relative;
    padding-left: 50px;
    padding-top: 30px;
}

#logo_movil {
    display: none;
}


/* helper class when showing content */

.noscroll {
    overflow: hidden;
}

a {
    outline: none;
    color: #c6c6c6;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #989898;
    outline: none;
}

button:focus {
    outline: none;
}


/* Sidebar */

#theSidebar {
    display: none;
}

.sidebar {
    text-align: center;
    background: #072930;
    z-index: 100;
    position: fixed;
    width: 40vh;
    max-width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    padding-top: 30px;
    text-align: left;
}

.sidebar .logo {
    padding: 0 2rem 0 2rem;
}

.sidebar h2 {
    font-size: 1.5em;
    padding-left: 2rem;
    font-family: "Roboto", sans-serif;
}

.sidebar p {
    font-size: 0.9rem;
    padding: 0 1rem 0 2rem;
    font-weight: 300;
}

.sidebar h1 span {
    display: block;
}

.detail {
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 75vh;
}


/* Main content */

.main {
    position: relative;
    z-index: 50;
}


/* Grid container */

.grid {
    position: relative;
}


/* Overlay */

.grid::after {
    content: '';
    background: rgba(202, 202, 202, 0.4);
    opacity: 0;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.view-single .grid::after {
    opacity: 1;
}


/* Top bar above the grid */

.top-bar {
    background: #324C57;
    color: #FFF;
    width: 100%;
    line-height: 1;
    padding: 10px 20px 20px 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.top-bar__headline {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}


/* Menu button for toggling the sidebar (appears on small screen) */

.menu-toggle {
    position: fixed;
    z-index: 105;
    display: block;
    width: 25px;
    /*height: 25px;*/
    bottom: 30px;
    left: 14px;
    cursor: pointer;
    background: none;
    border: none;
    display: none;
    margin: -2px 15px 0 0;
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    background-color: transparent
    font-size: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-toggle span:before,
.menu-toggle span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    content: '';
}

.menu-toggle span:before {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
}

.menu-toggle span:after {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
}


/* Filter/dropdown dummy on the right */

.filter {
    display: none;
    padding-top: 25px;
    text-align: right;
    font-size: 0.75em;
    margin-left: auto;
}

.dropdown {
    font-weight: bold;
    margin-left: 5px;
    cursor: pointer;
    color: #c6c6c6;
}

.dropdown::after {
    content: '\25BC';
    margin-left: 2px;
    font-size: 80%;
}


/* Grid item */

.grid__item {
    padding: 45px 55px 30px;
    position: relative;
    color: inherit;
    background: #324C57;
    min-height: 300px;
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}


/* Grid item "border" */

.grid__item::before {
    position: absolute;
    content: '';
    top: 0px;
    right: 55px;
    bottom: 0px;
    left: 55px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.075);
}

.grid__item * {
    z-index: 10;
    color: #fff;
}


/* grid item element and full content element styles */

.title {
    margin: 0;
    font-size: 1em;
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.title--preview {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

.loader {
    height: 2px;
    width: 40%;
    margin: 1em auto;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    top: -1px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.grid__item--loading .loader::before {
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.job {
    margin: 10px 0;
    position: relative;
    font-size: 0.8em;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    text-align: center;
    display: block;
    height: 30px;
}

.title--preview,
.loader,
.flag,
.job {
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    padding-top:
}


/* closing (delays) */

.title--preview {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    height: 35px;
}

.loader {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.grid__item .job {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}


/* opening */

.grid__item--animate .title--preview {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
}

.grid__item--animate .loader {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}

.grid__item--animate .job {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
}

.meta {
    font-size: 0.8em;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
}

.meta .fa {
    margin-right: 4px;
}

.meta:before,
.meta:after {
    display: table;
    content: '';
}

.meta:after {
    clear: both;
}

.meta__avatar {
    display: block;
    border-radius: 50%;
    margin: 0 auto;
    width: 90px;
}

.meta--preview .meta__avatar {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grid__item:hover .meta--preview .meta__avatar,
.grid__item:focus .meta--preview .meta__avatar {
    -webkit-filter: none;
    filter: none;
}

.meta__flag {
    display: block;
    border-radius: 50%;
    margin: 0 auto;
    width: 30px;
    position: relative;
    margin-top: -15px;
}

.meta--preview {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
    margin-bottom: 10px;
}

.grid__item:hover .meta--preview .meta__flag,
.grid__item:focus .meta--preview .meta__flag {
    -webkit-filter: none;
    filter: none;
}

.meta__date,
.meta__reading-time {
    display: block;
    float: left;
    color: #aaa;
}

.meta__reading-time {
    text-align: right;
    float: right;
}

.meta__misc {
    display: block;
    clear: both;
    text-align: center;
    padding: 5px 0;
}

.meta__misc--seperator {
    padding: 20px 0 0;
    margin: 65px 0 0;
    border-top: 1px solid #f5f5f5;
}

.article-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.article-nav button {
    border: none;
    color: #c6c6c6;
    background: none;
}

.article-nav button:hover {
    color: #ffffff;
}

.meta--preview .meta__avatar,
.meta--preview .meta__date,
.meta--preview .meta__reading-time {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.grid__item--loading .meta__avatar {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.grid__item--loading .meta__flag {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.1s;
}

.grid__item--loading .meta__date {
    -webkit-transition-delay: 0.17s;
    transition-delay: 0.17s;
}

.grid__item--loading .meta__reading-time {
    -webkit-transition-delay: 0.24s;
    transition-delay: 0.24s;
}

.grid__item--loading .meta__avatar,
.grid__item--loading .meta__date,
.grid__item--loading .meta__reading-time {
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
    opacity: 0;
}


/* Grid footer */

.page-meta {
    width: 100%;
    background: #324C57;
    width: 100%;
    padding: 15px 15px 10px;
    text-align: center;
    font-size: 0.75em;
    font-weight: bold;
    cursor: default;
}


/* Placeholder element (dummy that gets animated when we click on an item) */

.placeholder {
    pointer-events: none;
    position: absolute;
    width: calc(100% + 5px);
    height: calc(100vh + 5px);
    z-index: 100;
    top: 0;
    left: 0;
    background: #324C57;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.placeholder.placeholder--trans-in {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.placeholder.placeholder--trans-out {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}


/* main content */

.content {
    position: relative;
    /*width: calc(100% - 40vh);*/
    /* Avoid second scroll bar in Chrome! */
    /* visibility: hidden; */
    display: none;
    /*overflow: hidden;*/
}

.content.content--show {
    /*visibility: visible;*/
    display: block;
    pointer-events: auto;
}


/* scroll helper wrap */

.scroll-wrap {
    position: relative;
    width: 100%;
    height: auto;
}


/* single content item */

.content__item {
    position: relative;
    width: 100%;
    opacity: 0;
    padding: 0px 60px 80px 60px;
    pointer-events: none;
    font-size: 0.85em;
    text-align: center;
    display: none;
}

.content__item p {
    max-width: 1200px;
    margin: 1em auto;
    text-align: center;
    font-size: .8em;
}

.content__item p:first-of-type {
    font-size: .8em;
}

.content__item.content__item--show {
    opacity: 1;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    background-color: #324C57;
    display: block;
    pointer-events: auto;
}

.noDisplay {
    display: none !important;
}


/* content elements */

.job--full {
    font-size: 1.25em;
    margin-bottom: 20px;
    color: #c6c6c6;
}

.title--full {
    font-size: 1.5em;
}

.meta--full {
    font-size: 1em;
    margin: 0 auto 2em;
    max-width: 1200px;
}

.meta--full .meta__author {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.meta--full .meta__author::before {
    font-weight: normal;
}

.meta--full .meta__job {
    font-style: italic;
    float: left;
    margin: 0 5px;
    font-family: "Roboto", sans-serif;
}

.meta--full .meta__job::before {
    content: "in ";
}

.meta--full .meta__avatar {
    margin: 1em auto;
}

.job--full,
.title--full,
.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__flag,
.meta--full .meta__reading-time {
    opacity: 0;
}

.content__item p {
    opacity: 1;
}

.job--full,
.title--full {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

.meta--full .meta__avatar,
.meta--full .meta__author,
.meta--full .meta__date,
.meta--full .meta__flag,
.meta--full .meta__reading-time {
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
}

.content__item--show .job--full,
.content__item--show .title--full,
.content__item--show .meta--full .meta__avatar,
.content__item--show .meta--full .meta__author,
.content__item--show .meta--full .meta__date,
.content__item--show .meta--full .meta__flag,
.content__item--show .meta--full .meta__reading-time,
.content__item--show .meta--details {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.content__item--show .job--full,
.content__item--show .flag--full,
.content__item--show .title--full,
.content__item--show .meta__flag {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.content__item--show .title--full {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.content__item--show .meta--full .meta__avatar .meta__flag {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.content__item--show .meta--full .meta__date .meta__flag {
    -webkit-transition-delay: 0.27s;
    transition-delay: 0.27s;
}

.content__item--show .meta--full .meta__flag {
    -webkit-transition-delay: 0.27s;
    transition-delay: 0.27s;
}

.content__item--show .meta--full .meta__reading-time .meta__flag {
    -webkit-transition-delay: 0.34s;
    transition-delay: 0.34s;
}

.content__item--show.content__item p {
    opacity: 1;
}


/* close button (for content and sidebar) */

.close-button {
    position: absolute;
    border: none;
    background: none;
    margin: 0;
    width: auto;
    height: auto;
    display: block;
    z-index: 100;
    top: 20px;
    left: 40px;
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    pointer-events: none;
    padding: 20px 30px;
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.fa-close {
    transform: none;
    line-height: 0;
}

.close-button span {
    display: none;
}

.close-button:hover {
    color: #FFF;
}


/* show class for content close button */

.close-button--show {
    opacity: 1;
    pointer-events: auto;
}

.meta--details {
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin: 0 20px -10px 20px;
    padding: 3px 0px 10px 0px;
}

.meta--details span {
    font-size: 15px;
    font-weight: 800;
}


/* DETAILS */

h4 {
    font-size: 1rem;
}

.cargo {
    margin: 10px 0;
    position: relative;
    font-size: 0.8rem;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    text-align: center;
    display: block;
    height: 10px;
}

.present {
    /* position: fixed;
    width: calc(100% - 120px - 40vh);
    top: 0;*/
    background: rgba(50, 76, 87, 1);
    background: -moz-linear-gradient(top, rgba(50, 76, 87, 1) 90%, rgba(50, 76, 87, 0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(90%, rgba(50, 76, 87, 1)), color-stop(100%, rgba(50, 76, 87, 0)));
    background: -webkit-linear-gradient(top, rgba(50, 76, 87, 1) 90%, rgba(50, 76, 87, 0) 100%);
    background: -o-linear-gradient(top, rgba(50, 76, 87, 1) 90%, rgba(50, 76, 87, 0) 100%);
    background: -ms-linear-gradient(top, rgba(50, 76, 87, 1) 90%, rgba(50, 76, 87, 0) 100%);
    background: linear-gradient(to bottom, rgba(50, 76, 87, 1) 90%, rgba(50, 76, 87, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#324c57', endColorstr='#324c57', GradientType=0);
    z-index: 999;
    padding-top: 40px;
}

.about {
    margin: 10px 0 30px 0;
    display: inline-block;
    text-align: center;
    width: 24%;
}

.this {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: block;
}

.line-causes {
    display: block;
    position: relative;
    border-bottom: 1px solid #979797;
    height: 15px;
    padding-top: 330px;
}

.line-causes-b {
    display: block;
    position: relative;
    border-bottom: 1px solid #979797;
    height: 15px;
    padding-top: 50px;
}

.causes {
    margin: -45px auto auto;
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    background: #324C57;
    width: 290px;
    padding-left: 95px;
    line-height: 30px;
    font-size: 24px;
    color: #EB9090;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.causes span {
    float: left;
    font-size: 72px;
    margin-left: -65px;
    padding-right: 100px;
    position: absolute;
    top: 13px;
    color: #E65454;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.moroso {
    margin: -40px auto auto;
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    background: #324C57;
    width: 290px;
    padding-left: 70px;
    line-height: 30px;
    font-size: 24px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.moroso span {
    padding-left: 134px;
    margin-left: -145px;
    font-size: 34px;
    color: #EB9090;
}


}
.quote {
    padding-bottom: 50px;
}
.line-experience {
    display: block;
    position: relative;
    border-bottom: 1px solid #979797;
    height: 15px;
}
.experience {
    margin: -40px auto auto;
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    background: #324C57;
    width: 250px;
    padding-left: 115px;
    line-height: 30px;
    font-size: 24px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: left;
}
.experience span {
    float: left;
    font-size: 72px;
    margin-left: -80px;
    padding-right: 100px;
    position: absolute;
    top: 13px;
    color: #33A7B9;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
.experience-text {
    padding: 0px 0 60px 0;
}
.tags {
    font-size: 1rem !important;
    color: #EB9090;
    text-transform: uppercase;
    padding-bottom: 30px;
}
a.btn {
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    font-family: Arial;
    color: #fff;
    background: #2F4C57;
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    border: solid #979797 1px;
    margin: 20px;
    position: relative;
    transition: all 1s ease;
}
a.btn:hover {
    color: #2F4C57;
    background: #FFF;
}
a:visited,
a:link,
a:active {
    text-decoration: none;
}
a.btn.more:before {
    content: url('../img/more.svg');
}
a.btn.more2:before {
    content: url('../img/more.svg');
}
a.btn.more3:before {
    content: url('../img/more.svg');
}
a.btn.link:before {
    content: url('../img/link.svg');
}
.clear {
    height: 30px;
}
iframe {
    border-style: none;
}
iframe::-webkit-scrollbar {
    width: 6px;
}
iframe::-webkit-scrollbar-track {
    background-color: #324C57;
}
iframe::-webkit-scrollbar-thumb {
    background-color: #979797;
}
iframe::-webkit-scrollbar-thumb:window-inactive {
    background-color: #324C57;
}
.sentence {
    border-bottom: 1px solid #fff;
    background-color: #37535d;
    padding: 30px;
    border: solid #979797 1px;
    border-radius: 10px;
}
.sentence-f {
    background-color: #37535d;
    padding-top: 30px;
}
.declara {
    width: 90%;
    margin: 20px auto;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #ededed;
    padding: 1.5em;
    line-height: 1.2;
    position: relative;
    background: rgba(237, 237, 237, 0.07);
    border-radius: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*.declara::before {
    font-family: 'Playfair Display', serif;
    content: "\201C";
    color: #FFFFFF;
    font-size: 6em;
    position: absolute;
    left: 5px;
    top: 0px;
}*/
.declara::after {
    content: '';
}
blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: center;
    padding-top: 30px;
}
table {
    font-family: "Roboto", sans-serif;
    color: #fff;
    border-style: none;
    background-color: #37535d;
    text-align: justify;
    font-weight: 100;
    font-size: 18px;
}
tr {
    border-collapse: separate;
}
th {
    font-weight: 100;
    min-width: 220px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
}
td {
    padding-top: 1.5em;
    font-size: 14px;
}
hr {
    margin: 50px 0 50px 0;
    opacity: 0.4
}
.comunal_b {
    padding: 50px 0 50px 0;
    text-transform: uppercase;
}
.nota {
    font-size: 10px !important;
    padding: 40px 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header_menu {
    padding: 20px 25px 20px 15px;
    margin: 0;
    width: 300px;
    z-index: 10010;
    position: fixed;
    top: 0;
    right: 0;
}
.header_menu ul {
    float: right;
    margin: 0;
    list-style: none;
}
.header_menu ul li {
    font-weight: 700;
    font-size: 12px;
    float: left;
    list-style: none;
    margin: 20px 5px;
    vertical-align: middle;
    opacity: 1;
    transition: opacity 0.5s ease;
    background-color: #324C57;
}
.header_menu ul li:hover {
    opacity: 0.4;
    cursor: pointer;
}
#menu_burge img {
    width: 25px;
}
#ficha {
    background-color: #D8D8D8;
    width: 250px;
    padding: 21px;
    position: absolute;
    top: 80px;
    right: 50px;
    z-index: 10010;
    display: none;
    color: #324C57;
    text-align: left;
}
#ficha .cerrar {
    background-image: url(../img/cerrar.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    opacity: 1;
    transition: 1s ease opacity;
}
#ficha .cerrar:hover {
    opacity: 0.5;
    cursor: pointer;
}
#ficha p {
    font-size: 12px;
}
#social{
    width: 250px;
    padding: 21px;
    /*position: absolute;*/
    top: 70px;
    right: 50px;
    z-index: 6;
    display: none;
    opacity: 0;
    color: #324C57;
    text-align: left;
}
#social .cerrar{
    background-image: url(../img/cerrar.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    opacity: 1;
    transition: 1s ease opacity;
}
#social .cerrar:hover{
    opacity: 0.5;
    cursor: pointer;
}
#social p{
    font-size: 12px;
}
#compact {
    background-color: rgba(3, 41, 47, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 10008;
    opacity: 0;
    width: 100%;
    height: 100%;
}
.center-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 555px;
    width: 860px;
}
.center-element:after {
    content: "";
    display: table;
    clear: both;
}
.center-element h2 {
    margin:0 auto;
    text-align: center;
}
#compact .item {
    text-align: left;
    display: inline-block;
    margin: 20px 20px 20px 0;
    width: 150px;
    overflow: hidden;
    vertical-align: top;
}
#compact .item:last-child { margin-right: 0; }
#compact h3 {
    font-size: 14px;
    font-weight: 900;
}
#compact .item li {
    padding-bottom: 5px;
    border-bottom: 1px solid #B1B1B1;
    font-size: 12px;
    display: inline-block;
}
#compact .item li a span {
    font-weight: 900;
    color: #CC645F;
}
#compact .item p {
    margin: 10px 0;
    font-size: 12px;
}
.open {
    animation: openFrames linear 0.5s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    
    -webkit-animation: openFrames linear 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    
    -moz-animation: openFrames linear 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    
    -o-animation: openFrames linear 0.5s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    
    -ms-animation: openFrames linear 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}
#share {
    position: absolute;
    right: 195px;
    top: 30px;
}
#share li {
	float: left;
}
#share li a {
	width: 23px;
	height: 23px;
	display: block;
	margin-left: 15px;
	opacity: 0.5;
	transition: opacity 0.5s ease 0s;
}
#share li a:hover {
	opacity: 1;
}
#share li.facebook a {
	background: url(../svg/share_facebook.svg) no-repeat center center;
	background-size: contain;
}
#share li.twitter a {
	background: url(../svg/share_twitter.svg) no-repeat center center;
	background-size: contain;
}
#share li.google a {
	background: url(../svg/share_google.svg) no-repeat center center;
	background-size: contain;
}
@keyframes openFrames {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(90deg);
    }
}
@-moz-keyframes openFrames {
    0% {
        -moz-transform: rotate(0deg);
    }
    
    100% {
        -moz-transform: rotate(90deg);
    }
}
@-webkit-keyframes openFrames {
    0% {
        -webkit-transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(90deg);
    }
}
@-o-keyframes openFrames {
    0% {
        -o-transform: rotate(0deg);
    }
    
    100% {
        -o-transform: rotate(90deg);
    }
}
@-ms-keyframes openFrames {
    0% {
        -ms-transform: rotate(0deg);
    }
    
    100% {
        -ms-transform: rotate(90deg);
    }
}
.closed {
    animation: closedFrames linear 0.5s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    
    -webkit-animation: closedFrames linear 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    
    -moz-animation: closedFrames linear 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    
    -o-animation: closedFrames linear 0.5s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    
    -ms-animation: closedFrames linear 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}
@keyframes closedFrames {
    0% {
        transform: rotate(90deg);
    }
    
    100% {
        transform: rotate(0deg);
    }
}
@-moz-keyframes closedFrames {
    0% {
        -moz-transform: rotate(90deg);
    }
    
    100% {
        -moz-transform: rotate(0deg);
    }
}
@-webkit-keyframes closedFrames {
    0% {
        -webkit-transform: rotate(90deg);
    }
    
    100% {
        -webkit-transform: rotate(0deg);
    }
}
@-o-keyframes closedFrames {
    0% {
        -o-transform: rotate(90deg);
    }
    
    100% {
        -o-transform: rotate(0deg);
    }
}
@-ms-keyframes closedFrames {
    0% {
        -ms-transform: rotate(90deg);
    }
    
    100% {
        -ms-transform: rotate(0deg);
    }
}
#notification_IE {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 120vh;
    position: absolute;
    z-index: 999999;
    top: 0;
    bottom: 0;
    display: none;
}
#mensaje {
    width: 300px;
    height: 250px;
    margin: 15% auto;
    background-color: #fff;
    padding: 40px;
    color: #4C4C4C;
}

/* MEDIA QUERYS */

/* Viewport sizes based on column number and sidebar */

/* 1 column */

/* 2 columns */

/* 3 columns */

/* 4 columns */

/* 5 columns */

/* 6 columns */
@media screen and (min-width: 600px) {
    .main {
        height: 100%;
        margin-left: 40vh;
    }
    
    .content__item {
        font-size: 1em;
    }
    
    .grid__item {
        padding: 20px 10px 10px;
    }
    /* Demo ad */
    
    body #cdawrap {
        right: auto;
        left: 30px;
        top: auto;
        bottom: 0;
        background: none;
        border: none;
        width: 240px;
        background: #f5f5f5;
    }
    
    body #cdawrap .carbon-text {
        color: #7b7b7b;
    }
    
    body #cdawrap a.carbon-poweredby {
        color: #7883C4;
    }
    
    body #cdawrap a:hover.carbon-poweredby {
        color: #333;
    }
    
    body #cdawrap #cda-remove {
        display: none;
    }
}
@media screen and (min-width: 900px) {
    .grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    /* 2 columns */
    
    .grid__item {
        width: 33%;
        border: none;
    }
    
    .grid__item::before {
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
        border: 1px solid rgba(74, 74, 74, 0.075);
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }
    
    .grid__item:hover::before,
    .grid__item:focus::before {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px solid rgba(255, 255, 255, 0.2);
    }
    
    .grid__item--loading.grid__item::before {
        opacity: 0;
    }
}
@media screen and (min-width: 1200px) {
    /* 3 columns */
    
    .grid__item {
        width: 25%;
    }
}
@media screen and (min-width: 1500px) {
    /* 4 columns */
    
    .grid__item {
        width: 20%;
        height: 400px;
    }
}
@media screen and (min-width: 1800px) {
    /* 5 columns */
    
    .grid__item {
        width: 20%;
    }
}
@media screen and (min-width: 2100px) {
    /* 6 columns */
    
    .grid__item {
        width: 15%;
    }
}

/* MOBILE */
@media screen and (max-width: 768px) {
    .sidebar {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        width: 100vw;
    }
    
    .sidebar.sidebar--open {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        display: block !important;
    }
    
    .sidebar.sidebar--open ~ .main {
        pointer-events: none;
        width: 100%;
    }
    
    .top-bar {
        padding: 10px 30px 0px 50px;
    }
    
    .menu-toggle {
        /*bottom: 20px;*/
    }
    
    .sidebar .close-button {
        opacity: 1;
        pointer-events: auto;
        z-index: 9999;
    }
    
    .content__item--show .title--full {
        width: 80%;
        margin: 0 auto;
    }
    
    .title--full {
        font-size: 1.4em;
    }
    
    .content__item {
        padding: 80px 20px 40px;
    }
    
    .grid__item {
        width: 33%;
        border: none;
        padding: 0;
    }
    
    #ala_city {
        display: none;
    }
    
    .wrapper {
        display: none;
    }
    
    #selectores {
        margin-top: 30px;
        left: 0;
        right: 50%;
        z-index: 1;
    }
    
    .logo {
        display: none;
    }
    
    .top-bar__headline {}
    
    .filter {
        display: none;
    }
    
    .grid {
        text-align: center;
        width: 100%;
    }
    
    .present {
        width: 100%;
        padding: 0 5%;
        position: relative;
        background-color: transparent;
    }
    
    .about {
        width: 49%;
        margin: 20px 0;
    }
    
    input,
    button,
    select,
    textarea {
        width: 240px;
        margin-bottom: 5px;
    }
    
    .top-bar__headline {
        display: none;
    }
    
    a:visited,
    a:link,
    a:active {
        display: inline-block;
        margin-bottom: 0px;
    }
    .clear {
        height: 60px;
    }
    object#sjo_city {display: none;}
    blockquote {
        font-size: 1rem;
    }
    
    .header_menu {
        width: 300px !important;
    }
    
    .header_menu ul {
        margin: 0 !important;
    }
    
    .meta {
        margin: 0 auto;
        width: 50%;
    }
    
    .header_menu {
        padding: 10px 5px 0px 5px;
    }
    
    .header_menu ul li {
        margin: 5px;
        font-size: 9px;
    }
    
    .line-causes {
        display: none;
    }
    
    .line-causes-b {
        display: none;
    }
    
    .line-experience {
        display: none;
    }
    
    .causes {
        position: relative;
        margin-top: 40px;
        padding-left: 185px;
        margin-left: -135px;
    }
    
    .nota {
        padding: 20px 0;
    }
    
    .tags {
        padding-bottom: 0;
    }
    
    .quote {
        padding-bottom: 10px;
    }
    
    .moroso {
        margin-top: -50px;
    }
    
    .main {
        margin-left: 0;
    }
    
    .filter {
        display: none;
    }
    
    #selectores {
        margin-bottom: 20px;
        padding-left: 0px;
    }
    
    #logo_movil {
        display: inline;
        left: 15px;
        overflow: hidden;
        width: 118px;
        position: fixed;
        z-index: 99999999;
    }
    
    .wrapper
    .city.SJ,
    .city.HD,
    .city.AL,
    .city.CA,
    .city.GN,
    .city.PN,
    .city.LM {
        display: none !important;
    }
}
@media screen and (max-height: 580px) {
    body #cdawrap {
        display: none;
    }
}

/* TABLET */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .wrapper
    .city.SJ,
    .city.HD,
    .city.AL,
    .city.CA,
    .city.GN,
    .city.PN,
    .city.LM {
        display: none !important;
    }
    .filter {font-size: 0.65em;}
    .detail {
        max-height: 530px;
    }
    
    input,
    button,
    select,
    textarea {
        max-width: 220px;
    }
    
    #selectores,
    .top-bar {
        padding-left: 10px;
    }
    
    .header_menu ul li {
        font-size: 11px;
    }
    
    .present {
        position: relative;
        width: 100%;
    }
    
    .close-button {
        left: 70px;
        padding: 0px;
        z-index: 999999;
    }
    
    .header_menu {
        /*padding: 20px 25px 30px 15px;
        background-color: #324C57;*/
    }
    
    .line-causes {
        padding-top: 0;
    }
    
    .declara::before {
        content: "";
        display: none;
        left: 0;
    }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .header_menu ul li {
        font-size: 11px;
    }
    .wrapper
    .city.SJ,
    .city.HD,
    .city.AL,
    .city.CA,
    .city.GN,
    .city.PN,
    .city.LM {
        display: none !important;
    }
}

/*************************** Actualizaciones en los diseños ***********************************/
@media only screen and (max-width: 1300px) {
    input,
    button,
    select,
    textarea {
        width: 200px;
        font-size: 12px;
    }
}
@media only screen and (max-width: 875px) {
    #compact {
        position: absolute;
    }
    .center-element {
        position: relative;
        height: auto;
        width: 520px;
        padding: 20px 0;
    }
}
@media only screen and (max-width: 530px) {
    .center-element {
        width: 350px;
    }
}
@media only screen and (max-width: 360px) {
    .center-element {
        width: 200px;
    }
    .wrapper
    .city.SJ,
    .city.HD,
    .city.AL,
    .city.CA,
    .city.GN,
    .city.PN,
    .city.LM {
        display: none !important;
    }
    #compact .item {
        margin: 50px auto;
    }
}
@media only screen and (max-width: 320px) {
    html,
    body {
        width: 320px;
    }
    .wrapper
    .city.SJ,
    .city.HD,
    .city.AL,
    .city.CA,
    .city.GN,
    .city.PN,
    .city.LM {
        display: none !important;
    }
}