@import url(https://fonts.googleapis.com/css?family=Raleway:400,400i,600,700,900&display=swap);

html {
    font-family: Raleway, sans-serif;
}

body {
    --bg-color: #E8E8E8;
    background-color: #e8e8e8;
}

a,
p,
article,
div,
h1,
h2,
h3,
h4,
h5,
header,
img,
nav,
section,
span,
strong,
ul,
li {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
}


article,
header,
nav,
section {
    display: block;
}

a {
    color: initial;
    text-decoration: none;
}

.link {
    display: inline;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow .2s ease-out;
    transition: -webkit-box-shadow .2s ease-out;
    transition: box-shadow .2s ease-out;
    transition: box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
    -webkit-box-shadow: inset 0 -1px 0 0 #f1f1f1, inset 0 -2px 0 0 currentColor;
    box-shadow: inset 0 -1px 0 0 #f1f1f1, inset 0 -2px 0 0 currentColor;
    -webkit-box-shadow: inset 0 -1px 0 0 var(--bg-color), inset 0 -2px 0 0 currentColor;
    box-shadow: inset 0 -1px 0 0 var(--bg-color), inset 0 -2px 0 0 currentColor;
}

.link:focus,
.link:hover {
    -webkit-box-shadow: inset 0 -1px 0 0 #f1f1f1, inset 0 -2px 0 0 #ec1752;
    box-shadow: inset 0 -1px 0 0 #f1f1f1, inset 0 -2px 0 0 #ec1752;
    -webkit-box-shadow: inset 0 -1px 0 0 var(--bg-color), inset 0 -2px 0 0 #ec1752;
    box-shadow: inset 0 -1px 0 0 var(--bg-color), inset 0 -2px 0 0 #ec1752;
}




.article-head {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    padding: 3rem 5vw 3rem;
    height: 100vh;
    font-weight: 900;
    color: #292929;
    letter-spacing: 0;
}

.article-head-inner {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    text-align: center;
}

.article-head-letter {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    line-height: 1.15em;
    white-space: nowrap;
}


.article-head-letter span {
    opacity: 0;
    white-space: pre;
    display: inline-block;
}

.article-head-img {
    display: block;
    margin: 0 auto;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}






.card {
    position: relative;
    width: 100%;
    padding: 2.75rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    color: #ec1752;
    font-weight: 600;
}


.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
}

.card-img {
    position: relative;
}

.card-img img {
    pointer-events: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    outline: 1px solid transparent;
}

.card-link {
    color: inherit;
}

.card-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.card-link:hover::after {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

.card-title {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -.5em;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: right;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.card-letter {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2.65rem;
    font-weight: 900;
    margin: 0 0 .15rem;
    pointer-events: none;
}

.card-letter>span {
    display: inline-block;
}

.card-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    pointer-events: none;
    visibility: hidden;
}

.card-content .article-head-img {
    visibility: hidden;
}

.card:not(.card-alt) .card-letter {
    text-transform: uppercase;
}

.card-alt {
    color: #043fbe;
}

.card-alt .card-letter {
    text-transform: lowercase;
}

.header {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}


.header-back-to-site {
    color: #292929;
    white-space: nowrap;
}



.header-languages {
    text-align: center;
    -webkit-box-ordinal-group: 4;
    order: 3;
}


.header-languages-list {
    display: -webkit-box;
    display: flex;
    list-style: none;
    border: 1px solid #043fbe;
    border-radius: 2px;
}


.header-languages-item {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in;
}

.header-languages-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid #043fbe;
    border-left: none;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
    pointer-events: none;
}

.header-languages-item:not(.is-current) {
    color: #043fbe;
    background-color: transparent;
}

.header-languages-item.is-current {
    color: #fff;
    background-color: #043fbe;
}

.header-languages-item:hover:not(.is-current)::after {
    opacity: 1;
}

.header-languages-item:hover.is-current {
    background-color: #002577;
}

.header-languages-link {
    display: block;
    color: inherit;
    line-height: 40px;
}


.header-info {
    color: #043fbe;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    line-height: 21px;
    font-weight: 600;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.header-version-tagline {
    display: grid;
    grid-template-columns: 60px auto;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 12px;
}

.header-version-tagline::before,
.header-version-tagline>* {
    align-self: center;
}


.header-version-tagline::before {
    content: "";
    grid-column: 1;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #043fbe;
}

.header-version {
    grid-column: 2;
}

.header-tagline {
    grid-column: 2;
    grid-row: 2;
}

.post-list {
    margin-top: 140px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}

.post-list-inner {
    list-style: none;
    margin: 0 auto;
}

.post-list-item:nth-child(even) .card-img img {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
}

.post-list-item:nth-child(odd) .card-img img {
    -webkit-transform: rotate3d(0, 0, 1, -4deg);
    transform: rotate3d(0, 0, 1, -4deg);
}

.page-banner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    grid-auto-rows: auto;
    grid-template-rows: auto;
    margin-bottom: 144px;
}

.page-title {
    color: #ec1752;
    font-weight: 400;
}

.page-title strong {
    font-weight: 700;
}





*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    font-family: inherit;
    outline: 0;
}

h2 {
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2em;
    color: #ec1752;
    margin-top: 48px;
    margin-bottom: 60px;
}


h3 {
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.42857em;
    color: #292929;
    text-transform: uppercase;
    margin-top: 48px;
    margin-bottom: 30px;
}

h4 {
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5em;
    color: #292929;
    margin-top: 22px;
    margin-bottom: 30px;
}

h5 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.19px;
    line-height: 20px;
    color: #ec1752;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 15px;
}

#closeBtn {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000;
}




/*************************************/







#markdown {
    font-family: Raleway, sans-serif;
}

#markdown p {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
}


#markdown p strong,
#markdown ul strong {
    font-weight: 600;
}

#markdown ul {
    list-style-position: inside;
}

#markdown ul li p {
    margin: 0px 0px 0px 0px;
}


/* * The main container for the styled link.
    * We use flexbox to arrange the text and icon sections.
*/
.download-link {
    display: inline-flex;
    align-items: stretch;
    background-color: #ec1752;
    color: white;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    min-width: 300px;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    /* Added for spacing in the demo */
}

.download-link:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    filter: brightness(0.95);
}

.download-link .text {
    padding: 14px 20px;
    flex-grow: 1;
}

.download-link .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #37474F;
    padding: 14px 18px;
}

.download-link .icon {
    width: 20px;
    height: 20px;
    fill: white;
}


.footer {
    display: flex;
    justify-content: space-evenly;
    padding: 60px 22px;
    background-color: #fff;
    font-family: Raleway, sans-serif;
}

.footer-contact {
    position: relative;
}

.footer-contact p,
.footer-contact a {
    margin: 0;
    font-size: 16px;
    color: var(--grey-light);
}

.footer-logo-insertion-vaud {
    position: absolute;
    width: 180px;
    top: 5px;
    left: -200px;
}

.footer-partnership {
    display: flex;
    flex-direction: column;
    width: 18%;
    color: var(--grey-light);
}

.footer-partnership p {
    font-size: 16px;
    color: var(--grey-light);
    margin: 0;
}

.footer-contact a,
.footer-partnership a {
    text-decoration: underline;
}

