.aspect-ratio--16-9 {
    position: relative;
    overflow: hidden;
}

    .aspect-ratio--16-9:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%
    }

    .aspect-ratio--16-9 > .content, .aspect-ratio--16-9 > img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .aspect-ratio--16-9 > img {
        width: 100%;
        height: 100%
    }

.clean-button {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    padding: 0;
    background: transparent;
    vertical-align: bottom;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.background--white {
    background-color: #fff;
}

.background--black {
    background-color: #000;
}

.background--tuborg-blue {
    background-color: #000b90;
}

.background--tuborg-warm-blue {
    background-color: #5856d6;
}

.background--tuborg-green {
    background-color: #4cd964;
}

.background--tuborg-digital-green {
    background-color: #3dc00f;
}

.background--tuborg-pale-grey {
    background-color: #f0f4ed;
}

.background--tuborg-pale-lilac {
    background-color: #e5e5ea;
}

.background--tuborg-blue-grey {
    background-color: #8e8e93;
}

.background--tuborg-light-blue-grey {
    background-color: #d1d1d6;
}

.color--white {
    color: #fff;
}

.color--black {
    color: #000;
}

.color--tuborg-blue {
    color: #000b90;
}

.color--tuborg-warm-blue {
    color: #5856d6;
}

.color--tuborg-green {
    color: #4cd964;
}

.color--tuborg-digital-green {
    color: #3dc00f;
}

.color--tuborg-pale-lilac {
    color: #e5e5ea;
}

.color--tuborg-blue-grey {
    color: #8e8e93;
}

.color--tuborg-light-blue-grey {
    color: #d1d1d6;
}

.flex-align-self--center {
    margin-right: auto;
    margin-left: auto;
}

.clearfix {
    *zoom: 1;
}

    .clearfix:after, .clearfix:before {
        content: " ";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

b, strong {
    font-family: tuborggrotesque-bold, darker-grotesque-bold, arial;
}

html:lang(vi-VN) b, html:lang(vi-VN) strong {
    font-family: darker-grotesque-bold, arial;
}

html:lang(vi) b, html:lang(vi) strong {
    font-family: darker-grotesque-bold, arial;
}

html:lang(VN) b, html:lang(VN) strong {
    font-family: darker-grotesque-bold, arial;
}

.font--regular {
    font-family: tuborggrotesque-regular, darker-grotesque-regular, arial;
}

html:lang(vi-VN) .font--regular {
    font-family: darker-grotesque-regular, arial;
}

html:lang(vi) .font--regular {
    font-family: darker-grotesque-regular, arial;
}

html:lang(VN) .font--regular {
    font-family: darker-grotesque-regular, arial;
}

.font--bold {
    font-family: tuborggrotesque-bold, darker-grotesque-bold, arial;
}

html:lang(vi-VN) .font--bold {
    font-family: darker-grotesque-bold, arial;
}

html:lang(vi) .font--bold {
    font-family: darker-grotesque-bold, arial;
}

html:lang(VN) .font--bold {
    font-family: darker-grotesque-bold, arial;
}

.font--xxxxl, .font--xxxxxl {
    font-size: 32px;
}

.font--xxxl {
    font-size: 40px;
}

.font--xl, .font--xxl {
    font-size: 24px;
}

.font--lg, .font--md {
    font-size: 18px;
}

.font--sm {
    font-size: 14px;
}

.font--xs {
    font-size: 11px;
}

.font--navigation {
    font-size: 24px;
}

.ls--xxsmall {
    letter-spacing: .5px;
}

.ls--xsmall {
    letter-spacing: 1px;
}

.ls--small {
    letter-spacing: 2px;
}

.ls--medium {
    letter-spacing: 3px;
}

.ls--large {
    letter-spacing: 4px;
}

.lh--xs {
    line-height: 1.2;
}

.lh--sm {
    line-height: 1.4;
}

.lh--md {
    line-height: 1.5;
}

.lh--lg {
    line-height: 1.6;
}

.lh--xl {
    line-height: 1.7;
}

.lh--xxl {
    line-height: 1.8;
}

.lh--100 {
    line-height: 100%
}

.no-margin {
    margin: 0 !important;
}

.no-margin--top {
    margin-top: 0;
}

.no-margin--bottom {
    margin-bottom: 0;
}

.no-margin--left {
    margin-left: 0;
}

.no-margin--right {
    margin-right: 0;
}

.module {
    position: relative;
}

.module-container--fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.module-container--fadeOut-done {
    height: 0;
    padding: 0 !important;
}

.text--center {
    text-align: center;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.background-center {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.lazy-load-fade-in.lazy {
    opacity: 0;
    transition: opacity .25s ease-in;
}

    .lazy-load-fade-in.lazy.lazy--loaded {
        opacity: 1;
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes floating {
    0% {
        transform: translate(0);
    }

    65% {
        transform: translateY(10px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes floating {
    0% {
        transform: translate(0);
    }

    65% {
        transform: translateY(10px);
    }

    to {
        transform: translate(0);
    }
}

@-webkit-keyframes floatingRight {
    0% {
        transform: translate(0);
    }

    65% {
        transform: translate(10px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes floatingRight {
    0% {
        transform: translate(0);
    }

    65% {
        transform: translate(10px);
    }

    to {
        transform: translate(0);
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@-webkit-keyframes fade-in-left {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fade-in-left {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes fade-in-out {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes bounceInFadeIn {
    0% {
        opacity: 0;
        transform: translate(-20px, 20px);
    }

    50% {
        transform: translate(5px, -5px);
    }

    to {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes bounceInFadeIn {
    0% {
        opacity: 0;
        transform: translate(-20px, 20px);
    }

    50% {
        transform: translate(5px, -5px);
    }

    to {
        opacity: 1;
        transform: translate(0);
    }
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */ html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
}

article, aside, footer, header, nav, section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

figcaption, figure {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

main {
    display: block;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: inherit;
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

audio, video {
    display: inline-block;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

input {
    overflow: visible;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

    [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

fieldset {
    padding: .35em .75em .625em;
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

details {
    display: block;
}

summary {
    display: list-item;
}

menu {
    display: block;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

html {
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
    background-color: #f0f4ed;
}

body {
    padding-top: 100px;
}

    body.article {
        background-color: #fff;
    }

        body.article:before {
            content: "";
            height: 100px;
            background-color: #f0f4ed;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%
        }

*, :after, :before {
    box-sizing: inherit;
}

::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

img {
    max-width: 100%;
    height: auto;
}

a:link {
    text-decoration: none;
}

h1, h2, h3, h4, h5, p, ul {
    margin: 0;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-smooth: always;
    font-family: tuborggrotesque-regular, darker-grotesque-regular, arial;
}

    html:lang(vi-VN) html {
        font-family: darker-grotesque-regular, arial;
    }

    html:lang(vi) html {
        font-family: darker-grotesque-regular, arial;
    }

    html:lang(VN) html {
        font-family: darker-grotesque-regular, arial;
    }

    html pre, html span {
        font-family: tuborggrotesque-regular, darker-grotesque-regular, arial;
    }

    html:lang(vi-VN) html pre, html:lang(vi-VN) html span {
        font-family: darker-grotesque-regular, arial;
    }

    html:lang(vi) html pre, html:lang(vi) html span {
        font-family: darker-grotesque-regular, arial;
    }

    html:lang(VN) html pre, html:lang(VN) html span {
        font-family: darker-grotesque-regular, arial;
    }

    html pre strong, html span strong {
        font-family: tuborggrotesque-bold, darker-grotesque-bold, arial;
    }

    html:lang(vi-VN) html pre strong, html:lang(vi-VN) html span strong {
        font-family: darker-grotesque-bold, arial;
    }

    html:lang(vi) html pre strong, html:lang(vi) html span strong {
        font-family: darker-grotesque-bold, arial;
    }

    html:lang(VN) html pre strong, html:lang(VN) html span strong {
        font-family: darker-grotesque-bold, arial;
    }

.footer .to-top__arrow svg, .footer__social-icons__icon svg, .nav-button, .navigation {
    display: none;
}

.tuborg-logo {
    display: block;
    width: 113px;
    height: 45px;
}

    .tuborg-logo svg {
        height: 100%;
        width: 100%
    }

        .tuborg-logo svg g path {
            transition: fill .25s ease-in-out;
        }

.header {
    width: 100%;
    height: 100px;
    z-index: 4;
    background-color: #f0f4ed;
    will-change: transform;
    transition: transform .2s ease-in-out, background-color .2s ease-in-out .15s;
    position: fixed;
    top: 0;
    left: 0;
}

.navigation--open ~ .header {
    background-color: transparent;
}

    .navigation--open ~ .header .audio-player {
        opacity: 0;
    }

.header__inner {
    max-width: 1260px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    justify-content: flex-end;
}

    .header__inner .nav-button {
        margin-left: auto;
    }

    .header__inner .tuborg-logo {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

.header--pinned {
    transform: translateY(0);
}

.header--unpinned {
    transform: translateY(-100%);
}

.module-article-hero {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px;
}

    .module-article-hero .soundwave--beat {
        overflow: visible;
    }

.module-article-hero__image, .module-article-hero__video-container {
    position: absolute;
    top: 0;
    left: 25vw;
    right: 15px;
    height: 450px;
}

.module-article-hero__video-container {
    overflow: hidden;
}

    .module-article-hero__video-container .video {
        display: block;
        align-self: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: 100%
    }

.module-article-hero__container {
    position: relative;
    padding: 0 25px;
    max-width: 1260px;
    width: 100%;
    margin: 280px 0 0;
}

.module-article-hero__headline {
    line-height: 100%;
    text-transform: uppercase;
    max-width: 95%;
    margin-bottom: 90px;
    word-break: break-word;
}

    .module-article-hero__headline strong {
        color: #3dc00f;
    }

.module-article-hero__manchet {
    width: 100%;
    word-break: break-word;
}

    .module-article-hero__manchet strong {
        color: #3dc00f;
    }

.module-hero {
    height: calc(100vh - 100px);
    height: calc(100vh - 100px - var(--vh-offset));
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

    .module-hero .soundwave--beat {
        overflow: visible;
        top: 100px;
        left: 100px;
    }

.module-hero__image {
    position: absolute;
    top: 0;
    left: 60px;
    right: 0;
    height: 100%;
    height: calc(100% - var(--vh-offset));
    transition: opacity .1s ease-in;
    opacity: 0;
}

    .module-hero__image.lazy--loaded {
        opacity: 1;
    }

.module-hero__video-container {
    position: absolute;
    top: 0;
    left: 25vw;
    right: 0;
    height: 100%;
    overflow: hidden;
}

    .module-hero__video-container .video {
        display: block;
        align-self: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: 100%;
        transition: opacity .1s ease-in;
        opacity: 0;
    }

        .module-hero__video-container .video.lazy--loaded {
            opacity: 1;
        }

.module-hero__container {
    position: relative;
    padding: 0 25px;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}

.module-hero__headline {
    text-transform: uppercase;
    line-height: .85;
    letter-spacing: 2.3px;
    font-size: 40px;
}

    .module-hero__headline strong {
        color: #3dc00f;
        font-family: tuborggrotesque-bold, darker-grotesque-bold, arial;
        font-weight: inherit;
    }

html:lang(vi-VN) .module-hero__headline strong {
    font-family: darker-grotesque-bold, arial;
}

html:lang(vi) .module-hero__headline strong {
    font-family: darker-grotesque-bold, arial;
}

html:lang(VN) .module-hero__headline strong {
    font-family: darker-grotesque-bold, arial;
}

.module-hero__manchet {
    width: 100%;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: 1.47px;
}

    .module-hero__manchet strong {
        color: #3dc00f;
    }

.module-hero__scroll-to {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}

    .module-hero__scroll-to span {
        display: block;
        margin-bottom: 10px;
    }

    .module-hero__scroll-to svg {
        -webkit-animation-name: floating;
        animation-name: floating;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-play-state: running;
        animation-play-state: running;
    }

@media (min-height:480px) and (min-width:1220px) {
    .module-hero__headline {
        font-size: 100px;
    }
}

@media screen and (min-width:480px) {
    .font--xxxxxl {
        font-size: calc(32px + 158*(100vw - 480px)/740);
    }

    .font--xxxxl {
        font-size: calc(32px + 48*(100vw - 480px)/740);
    }

    .font--xxxl {
        font-size: calc(40px + 29*(100vw - 480px)/740);
    }

    .font--xxl {
        font-size: calc(24px + 16*(100vw - 480px)/740);
    }

    .font--xl {
        font-size: calc(24px + 8*(100vw - 480px)/740);
    }

    .font--lg {
        font-size: calc(18px + 6*(100vw - 480px)/288);
    }

    .font--md {
        font-size: calc(18px + 0*(100vw - 480px)/288);
    }

    .font--sm {
        font-size: calc(14px + 0*(100vw - 480px)/288);
    }

    .font--xs {
        font-size: calc(11px + 0*(100vw - 480px)/288);
    }

    .font--navigation {
        font-size: calc(24px + 36*(100vw - 480px)/288);
    }
}

@media (min-width:480px) {
    .module-hero__scroll-to span {
        margin-bottom: 20px;
    }
}

@media (min-height:480px) and (min-width:992px) {
    .module-hero__container {
        margin: 0 auto;
    }

    .module-hero__headline {
        font-size: 80px;
    }
}

@media (min-height:480px) and (min-width:1px) {
    .module-hero__container {
        margin: -100px auto 0;
    }
}

@media (min-height:600px) and (min-width:1px) {
    .module-hero__headline {
        font-size: 70px;
    }
}

@media (min-height:600px) and (min-width:1220px) {
    .module-hero__headline {
        font-size: 140px;
    }
}

@media (min-height:600px) and (min-width:992px) {
    .module-hero__headline {
        font-size: 100px;
    }
}

@media (min-height:768px) and (min-width:768px) {
    .module-hero__headline {
        font-size: 100px;
    }
}

@media (min-width:768px) {
    .module-hero__video-container .video {
        height: auto;
    }
}

@media screen and (min-width:768px) {
    .font--lg {
        font-size: 24px;
    }

    .font--md {
        font-size: 18px;
    }

    .font--sm {
        font-size: 14px;
    }

    .font--xs {
        font-size: 11px;
    }

    .font--navigation {
        font-size: 60px;
    }
}

@media (min-height:768px) and (min-width:1220px) {
    .module-hero__headline {
        font-size: 140px;
    }
}

@media (min-width:992px) and (min-height:992px) {
    body {
        padding-top: 140px;
    }

        body.article:before {
            height: 140px;
        }

    .header {
        height: 140px;
    }

    .module-hero {
        height: calc(100vh - 140px);
        height: calc(100vh - 140px - var(--vh-offset));
    }
}

@media (min-width:992px) {
    body {
        padding-top: 125px;
    }

        body.article:before {
            height: 125px;
        }

    .tuborg-logo {
        width: 113px;
        height: 54px;
    }

    .header {
        height: 125px;
    }

    .header__inner {
        justify-content: space-between;
    }

    .module-article-hero {
        overflow: visible;
    }

    .module-article-hero__image, .module-article-hero__video-container {
        right: 0;
        left: calc((100vw - 1260px)/2 + 130px);
        height: 450px;
    }

        .module-article-hero__video-container .video {
            height: auto;
        }

    .module-article-hero__container {
        margin: 290px auto 0;
    }

    .module-article-hero__headline {
        margin-bottom: 0;
        max-width: 50%
    }

    .module-article-hero__manchet {
        max-width: 520px;
        padding-left: 50px;
        margin-left: auto;
    }

    .module-hero {
        overflow: visible;
        height: calc(100vh - 125px);
        height: calc(100vh - 125px - var(--vh-offset));
    }

        .module-hero .soundwave--beat {
            top: 200px;
            left: 200px;
        }

    .module-hero__image, .module-hero__video-container {
        left: calc((100vw - 1260px)/2 + 130px);
    }

    .module-hero__manchet {
        letter-spacing: 2.76px;
        margin-top: -10px;
    }
}

@media (min-height:992px) and (min-width:1220px) {
    .module-hero__headline {
        font-size: 140px;
    }
}

@media screen and (min-width:1220px) {
    .font--xxxxxl {
        font-size: 190px;
    }

    .font--xxxxl {
        font-size: 80px;
    }

    .font--xxxl {
        font-size: 69px;
    }

    .font--xxl {
        font-size: 40px;
    }

    .font--xl {
        font-size: 32px;
    }
}

@media (min-height:1220px) and (min-width:992px) {
    .module-hero__headline {
        font-size: 140px;
    }
}

@media (max-width:599px) {
    .module-article-hero__headline {
        font-size: 44px;
    }
}

@media (min-width:1px) and (max-width:599px) {
    .module-hero__scroll-to svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width:480px) and (max-width:599px) and (orientation:landscape) {
    .module-article-hero__manchet {
        font-size: 14px;
    }
}

@media (min-width:1px) and (max-width:991px) {
    .module-hero__manchet {
        font-size: 32px;
    }
}
