body {
    font-family: "Source Sans Pro", sans-serif;
    padding-top: 44px;
    color: #000;
}

body.no-scroll {
	overflow: hidden;
}

body.padded,
.body-padded {
    padding-top: calc(44px + 64px);
}

small,
.small {
    font-size: 0.625rem;
}

a {
    transition: all .2s ease-in-out;
    color: #0B698B;
}

a:hover {
    text-decoration: none;
    color: #EF404A;
}

p:last-child {
    margin-bottom: 0;
}

/* Hero */

.hero {
    height: calc(100vh - 44px - 64px);
    background-image: url(../img/hero_00.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}

.hero .brand {
    margin: 16px 0;
}

.hero .brand .logo-cliente {
    max-height: 48px;
}

.hero .brand .logo-medialab {
    max-height: 48px;
}

.hero .title {

}

@media (max-width: 767px) {

    .hero .brand {
        margin: 16px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    /* .hero .brand .logo-cliente {
        max-height: 80px;
    } */

    .hero .brand .logo-medialab {
        max-height: 40px;
    }

}

/* Header */

.header {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    background: #EF404A;
}

.header.sticky,
.header-sticky,
.page-article .header {
    position: fixed;
    top: 44px;
    left: 0;
    z-index: 10001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.header .col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .menu-section {
    display: flex;
    align-items: center;
}

.backhome {
    font-size: 36px;
    transition: all .2s ease-in-out;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
}

.header .menu-open {
    font-size: 36px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    color: rgba(255, 255, 255, 0.9);
}

.header .menu-open:hover,
.backhome:hover {
    color: #fff;
}

/* Menu */

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 1000000;
    transition: all .2s ease-in-out;
    margin-left: -100%;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.9);
}

@media (min-width: 768px) {
    .menu {
        width: 360px;
    }
}

.menu.is-open {
    margin-left: 0;
}

.menu .menu-close {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 36px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    color: rgba(255, 255, 255, 0.9);
}

.menu .menu-close:hover {
    transform: rotate(-90deg);
    color: #fff;
}

.nav-link {
    width: 100%;
    padding: 4px 40px;
    margin: 4px 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-align: right;
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

.nav-link.active {
    color: #0B698B;
    border-right: 4px solid #0B698B;
}

.article h2 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 900;
}

.article h4 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.article .lead {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.1px;
    font-weight: 300;
    font-style: italic;
}

.article p,
.article li {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.07;
    font-weight: 300;
}

.article li {
    margin-bottom: 8px;
}

@media (min-width: 992px ) {

    .article h2 {
        font-size: 50px;
        line-height: 56px;
        letter-spacing: -1.88px;
    }

}

/* Intro */

.intro {
    padding: 96px 0;
    text-align: center;
    color: #0B698B;
}

/* Article Images */

figure {
    position: relative;
    margin-bottom: 0;
}

figure img {
    min-width: 100%;
}

figure figcaption {
    width: 100%;
    padding: 16px 0;
}

figure figcaption span {
    display: block;
    max-width: 988px;
    padding: 0 16px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
}

@media (min-width: 768px) {

    figure figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 48px 0 24px;
        background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    }

    figure figcaption span {
        font-style: normal;
        color: #fff;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: -0.06px;
    }

    figure .figure-full {
        width: 100%;
        height: calc(100vh - 44px - 64px);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

}

/* Video */

.video {
    background-color: #000;
}

/* Share Bar */

.sharebar {
    padding: 48px 0;
    background: #fff;
}

.sharebar.sharebar-dark {
    background: linear-gradient(to bottom, #431C01, #1D1001);
}

.sharebar.sharebar-black {
    background: #000;
}

.sharelinks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sharelinks small {
    text-transform: uppercase;
    margin-right: 16px;
}

.sharelinks.sharelinks-light small {
    color: #fff;
}

.sharelinks a {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #555;
}

.sharelinks a:hover {
    text-decoration: none;
    color: #222;
}

.sharelinks.sharelinks-light a {
    color: rgba(255, 255, 255, 0.8);
}

.sharelinks.sharelinks-light a:hover {
    color: #fff;
}

.sharelinks a + a {
    margin-left: 12px;
}

/* Gallery */

.gallery {
    height: calc(100vh - 44px - 64px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.gallery::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}

.gallery .material-icons {
    font-size: 176px;
    color: rgba(255, 255, 255, 0.8);
    transition: all .2s ease-in-out;
}

.gallery:hover .material-icons {
    color: #fff;
}

.gallery-show {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000001;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-figures {
    height: 100vh;
    overflow-y: auto;
}

.gallery-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 36px;
    z-index: 1000002;
    cursor: pointer;
}

/* Footer */

.footer {
    padding: 48px 0;
    color: #fff;
    text-transform: uppercase;
    background: #000;
}

.footer .logo-cliente {
    max-height: 60px;
}

.footer .logo-medialab {
    max-height: 60px;
}

/* Customs */

.hero .title h1 {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.09rem;
    font-weight: 900;
}

.hero .title .lead {
    font-size: 1.375rem;
    line-height: 1.75rem;
    letter-spacing: -0.0625rem;
    font-weight: 500;
}

.retranca {
    background: #EF404A url(../img/ret-bg.png) no-repeat center/cover;
    border-top: 12px solid #000;
    border-bottom: 12px solid #000;
    margin-bottom: 32px;
}

.retranca-wrapper {
    background: #453F3F;
}

.retranca span {
    display: block;
}

.retranca .hat {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.3125rem;
    color: #EF404A;
    font-weight: 600;
    text-transform: uppercase;
}

.retranca .title {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05rem;
    color: #fff;
    font-weight: 900;
    margin: 20px 0;
}

.retranca .date {
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
}

.hl {
    display: block;
    color: #000;
    border-bottom: 1px solid #979797;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.hl h2 {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
    margin-bottom: 0;
}

.hl.level-1 h2 {
    margin-bottom: 12px;
}

.hl.level-1 h2,
.hl.level-2 h2,
.hl.level-3 h2 {
    margin-top: 24px;
}

.hl.level-4:last-child {
    border-bottom: none;
}

@media (min-width: 992px ) {

    .retranca .hat {
        font-size: 1.5rem;
        letter-spacing: 0.3125rem;
    }

    .retranca .title {
        font-size: 4.5rem;
        letter-spacing: -0.15625rem;
        margin: 12px 0;
    }

    .hero .title h1 {
        font-size: 5.625rem;
        line-height: 5.125rem;
        letter-spacing: -0.21875rem;
    }

    .hero .title .lead {
        font-size: 1.75rem;
        line-height: 2rem;
        letter-spacing: -0.0625rem;
        font-weight: 300;
    }

    .hl.level-1 p {
        font-size: 1.25rem;
        line-height: 1.5625rem;
        letter-spacing: 0.03125rem;
        font-weight: 300;
    }

    .hl.level-1,
    .hl.level-2 {
        position: relative;
        color: #fff;
        border-bottom: none;
        margin-bottom: 32px;
        padding-bottom: 0;
    }

    .hl.level-3 {
        border-bottom: none;
        margin-bottom: 32px;
        padding-bottom: 0;
    }

    .hl.level-4 {
        padding: 16px 0;
        margin-bottom: 0;
        border-bottom: 1px solid #979797;
    }

    .hl.level-4:last-child {
        border-bottom: none;
    }

    .hl.level-1 .title,
    .hl.level-2 .title {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    }

    .hl.level-1 h2 {
        font-size: 3rem;
        line-height: 3.5rem;
        letter-spacing: -0.05rem;
        font-weight: 900;
        max-width: 60%;
    }

    .hl.level-1 p {
        max-width: 60%;
    }

    .hl.level-2 h2 {
        font-size: 2rem;
        line-height: 2rem;
        letter-spacing: -0.09375rem;
        font-weight: 700;
    }

    .hl.level-3 h2 {
        font-size: 1.25rem;
        line-height: 1.5rem;
        letter-spacing: -0.0625rem;
        font-weight: 600;
        margin-top: 12px;
    }

    .hl.level-4 h2 {
        font-size: 1.375rem;
        line-height: 1.6875rem;
        letter-spacing: -0.075rem;
        font-weight: 700;
    }

}

.text-900 {
    font-weight: 900;
    letter-spacing: -1px;
}

.text-600 {
    font-weight: 600 !important;
    letter-spacing: -.5px;
    line-height: 1.2 !important;
}

.text-green {
    color: #299847;
}

.wcounter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    color: #FCB814;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
