/*
Theme Name: Akin Legends
Author: Lindsay Colard
Author URI: https://akin-legends.com
Description: A custom theme for Akin Legends, a end of studies project.
Version: 1.0
*/
:root {
  --color-white: #FFFFFF;
  --color-lightblue: #58BEF7;
  --color-blue: #1080F8;
  --color-darkblue: rgb(59, 69, 215);
  --color-black: #02072E;
  --size-tiny: 14px;
  --size-base: 18px;
  --size-mini: 24px;
  --size-small: 32px;
  --size-medium: 43px;
  --size-big: 57px;
  --size-maxi: 76px;
  --size-giant: 101px;
  --nav-gradient: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.8) 22%, rgba(255, 255, 255, 1) 35%);
  --thumbnail: 90px;
}

@font-face {
  font-family: "Qianta";
  src: url("/wp-content/themes/akinLegends/style.css") format("otf");
  font-weight: normal;
  font-style: normal;
}
.title {
  font-family: "Qianta", sans-serif;
  font-size: var(--size-medium);
  line-height: 120%;
  font-weight: initial;
  color: var(--color-darkblue);
}
.title--mini {
  font-size: var(--size-mini);
  line-height: 130%;
}
.title--small {
  font-size: var(--size-small);
  line-height: 130%;
}
.title--big {
  font-size: var(--size-big);
}
.title--maxi {
  font-size: var(--size-maxi);
}

.small {
  font-size: var(--size-tiny);
  line-height: 140%;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.shadow {
  text-shadow: 0px 0px 10px var(--color-darkblue), 0px 0px 10px var(--color-darkblue), 0px 0px 50px var(--color-darkblue);
}

p + p {
  margin-top: 24px;
}

small {
  font-size: var(--size-tiny);
  line-height: 140%;
}

@media (min-width: 1366px) {
  .title {
    font-size: var(--size-big);
  }
  .title--big {
    font-size: var(--size-giant);
  }
  .title--small {
    font-size: var(--size-medium);
  }
}
.nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 10px 32px 16px;
  color: var(--color-white);
}
.nav * {
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
}
.nav__background {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nav-gradient);
}
.nav__infos {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.nav__container {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-darkblue);
  transform: translateY(100%);
  transition: all 0.6s ease-in-out;
}
.nav__links {
  width: 100%;
  height: 100%;
  padding: 64px 16px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 64px;
  list-style: none;
}
.nav__title {
  font-size: var(--size-mini);
  white-space: nowrap;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--size-small);
}
.nav__link:hover, .nav__link:focus {
  font-weight: bold;
  transition-duration: 0.1s;
}
.nav__link:has(.nav__svg--insta):hover, .nav__link:has(.nav__svg--insta):focus {
  transform: scale(1.1);
}
.nav__link--home {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 8px;
}
.nav__svg {
  height: 24px;
  fill: var(--color-darkblue);
}
.nav__svg--insta {
  height: 44px;
}
.nav__btn {
  display: flex;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 10px 0;
}
.nav__btn svg {
  stroke: var(--color-darkblue);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav__burger {
  height: 22px;
}
.nav__burger--top, .nav__burger--bottom, .nav__burger--middle {
  transform-box: fill-box;
  transform-origin: center;
  animation: down-rotate-reverse 0.3s ease-out both;
}
.nav__burger--top {
  animation-name: down-rotate-reverse;
}
.nav__burger--bottom {
  animation-name: up-rotate-reverse;
}
.nav__burger--middle {
  animation-name: show;
}
.nav--alt * {
  color: var(--color-white);
  fill: var(--color-white);
  stroke: var(--color-white);
}
.nav--alt .nav__background {
  transform: translateY(-100%);
}
.nav--fill {
  padding: 16px;
  padding-right: 10px;
  padding-bottom: 0;
}
.nav--active {
  font-weight: bold;
}

.open * {
  color: var(--color-white);
  fill: var(--color-white);
  stroke: var(--color-white);
  text-shadow: none !important;
  filter: none !important;
}
.open .nav__background {
  transform: translateY(-100%);
  transition-delay: 0.1s;
}
.open .nav__container {
  transform: translateY(0);
}
.open .nav__burger--top, .open .nav__burger--bottom, .open .nav__burger--middle {
  animation-duration: 0.6s;
}
.open .nav__burger--top {
  animation-name: down-rotate;
}
.open .nav__burger--bottom {
  animation-name: up-rotate;
}
.open .nav__burger--middle {
  animation-name: hide;
}

.subnav {
  z-index: 999;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}
.subnav__top, .subnav__bottom {
  pointer-events: all;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.subnav__top {
  top: 0;
  padding-top: 68px;
  padding-bottom: 32px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.8) 14%, rgb(255, 255, 255) 22%);
}
.subnav__bottom {
  bottom: 0;
  margin-bottom: -2px;
  padding: 32px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.8) 22%, rgb(255, 255, 255) 35%);
}
.subnav__info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 12px;
}
.subnav__nav {
  display: flex;
  flex-flow: row nowrap;
  margin-right: -15px;
}
.subnav__nav > :first-child {
  justify-content: flex-end;
}
.subnav__el {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: 44px;
}
.subnav__link {
  text-decoration: none;
  color: var(--color-darkblue);
  fill: var(--color-darkblue);
  white-space: nowrap;
}
.subnav__btn {
  background-color: transparent;
  border: none;
  min-width: 44px;
}
.subnav__btn--scroll {
  margin-left: -15px;
}
.subnav__svg {
  height: 14px;
}
.subnav--hide .subnav__top, .subnav--hide .subnav__bottom {
  transition-duration: 0.1s;
}
.subnav--hide .subnav__bottom {
  transform: translateY(100%);
}

.disabled {
  visibility: hidden;
  pointer-events: none;
}

@keyframes up-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg) scale(0.9);
  }
}
@keyframes down-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg) scale(0.9);
  }
}
@keyframes hide {
  29% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up-rotate-reverse {
  0% {
    transform: translateY(-10px) rotate(45deg) scale(0.9);
  }
  70% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes down-rotate-reverse {
  0% {
    transform: translateY(10px) rotate(-45deg) scale(0.9);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  29% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1366px) {
  .nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 16px 64px 32px;
  }
  .nav * {
    color: var(--color-darkblue);
    fill: var(--color-darkblue);
    stroke: var(--color-darkblue);
  }
  .nav__btn {
    display: none;
  }
  .nav__container {
    z-index: 0;
    position: relative;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: transparent;
  }
  .nav__links {
    flex-flow: row nowrap;
    gap: 32px;
    padding: 0;
    padding-top: 2px;
    font-style: italic;
  }
  .nav__link {
    font-size: var(--size-base);
    white-space: nowrap;
  }
  .nav__svg--insta {
    height: 22px;
  }
  .subnav__top, .subnav__bottom {
    padding-left: 64px;
    padding-right: 64px;
  }
  .subnav__bottom {
    background: transparent;
    padding-bottom: 32px;
  }
  .subnav--hide .subnav__top, .subnav--hide .subnav__bottom {
    transform: none;
  }
}
.nav--alt * {
  color: var(--color-white);
  fill: var(--color-white);
  stroke: var(--color-white);
  text-shadow: 0 0 10px var(--color-black), 0 0 10px var(--color-darkblue), 0 0 50px var(--color-darkblue);
}
.nav--alt svg {
  filter: drop-shadow(0 0 10px var(--color-black)) drop-shadow(0 0 10px var(--color-darkblue)) drop-shadow(0 0 50px var(--color-darkblue));
}

.footer {
  z-index: 100;
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  font-size: var(--size-tiny);
  line-height: 140%;
  color: var(--color-white);
}
.footer__svg {
  margin-bottom: -2px;
}
.footer__svg path {
  fill: var(--color-darkblue) !important;
}
.footer__container {
  padding: 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 24px;
  background-color: var(--color-darkblue);
}
.footer__content {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.footer__credits {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}
.footer__link {
  color: var(--color-white);
  text-decoration: none;
}

@media (min-width: 1366px) {
  .footer {
    overflow: hidden;
    align-items: center;
  }
  .footer__container {
    background-color: transparent;
  }
  .footer__svg {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__container {
    max-width: 500px;
    padding: 32px 0 16px;
    gap: 0;
  }
  .footer__content {
    flex-direction: row;
    gap: 16px;
  }
}
body:has(.media) {
  gap: 0;
}
body:has(.media) .footer {
  position: absolute;
  bottom: 0;
  left: 0;
}

body:has(.page404) .footer {
  position: absolute;
  bottom: 0;
  left: 0;
}

.page404 {
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px;
  background-color: var(--color-darkblue);
  color: var(--color-white);
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

.media {
  gap: 0;
}
.media__container {
  display: flex;
  flex-flow: column nowrap;
}
.media__img {
  position: fixed;
  z-index: -1;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.media__svg {
  margin-top: 448px;
  margin-bottom: -2px;
}
.media__content {
  display: flex;
  flex-flow: column nowrap;
  gap: 64px;
  padding-bottom: 196px;
  background-color: var(--color-white);
}
.media__info {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
  padding: 16px;
}
.media__head {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}
.media__archive {
  pointer-events: all;
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}
.media__archive--desktop {
  display: none;
}

.archive {
  pointer-events: none;
  display: none;
}
.archive__header {
  padding: 0 16px;
}
.archive__countdown {
  font-size: var(--size-tiny);
  color: var(--color-darkblue);
}
.archive__content {
  display: flex;
  flex-flow: column nowrap;
  gap: 2px;
  list-style: none;
}
.archive__el {
  display: block;
}
.archive__link {
  display: grid;
  grid-template-columns: var(--thumbnail) auto;
  text-decoration: none;
}
.archive__picture {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--thumbnail);
  height: var(--thumbnail);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 68%, rgba(0, 0, 0, 0) 88%);
  -webkit-mask-mode: alpha;
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 68%, rgba(0, 0, 0, 0) 88%);
  mask-mode: alpha;
}
.archive__img {
  pointer-events: initial;
}
.archive__infos {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.archive__title {
  font-family: soleil, sans-serif;
}
.archive__number {
  font-style: normal;
}
.archive__details {
  color: var(--color-black);
  opacity: 50%;
}

@media (min-width: 1366px) {
  .media__container {
    max-height: 100vh;
    height: 100vh;
    justify-content: flex-end;
  }
  .media__content {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 16px;
    padding: 16px 64px 90px;
  }
  .media__svg {
    margin-top: 0;
  }
  .media__info {
    grid-column: 1/span 7;
    padding: 0;
  }
  .media__archive {
    display: flex;
    grid-column: 8/span 4;
    max-height: 100%;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 16px;
    margin-left: 64px;
  }
  .media__archive--mobile {
    display: none;
  }
  .archive {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 1fr;
    gap: 16px;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 128px 64px 90px;
  }
  .archive__header {
    padding: 0;
  }
  .archive__content {
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .archive__title {
    font-size: var(--size-mini);
  }
}
.chapter {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-top: 95px;
  gap: 64px;
}
.chapter__banner {
  position: relative;
  width: 100%;
  height: 256px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.chapter__title {
  width: 100%;
  text-align: center;
  font-size: var(--size-small);
  line-height: 130%;
}
.chapter__container {
  padding: 0 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 64px;
}
.chapter__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100%;
  max-width: 80ch;
  color: var(--color-black);
}
.chapter__content p {
  font-weight: 300;
}
.chapter__content img {
  max-width: 428px;
}
.chapter__content p:has(img) {
  text-align: center;
}
.chapter__link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110.6px auto;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--color-darkblue);
}
.chapter__preview {
  background-size: 200% auto;
  background-position: center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(90deg, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0) 100%);
  mask-mode: alpha;
  -webkit-mask-image: linear-gradient(90deg, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-mode: alpha;
}
.chapter__svg {
  height: 36px;
  fill: var(--color-white);
}

.next {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px 16px;
}
.next__infos {
  width: 100%;
}
.next__details {
  margin-top: 8px;
}

@media (min-width: 1366px) {
  .chapter__container {
    width: 100%;
    padding: 0 64px;
  }
  .chapter__title {
    font-size: var(--size-medium);
    line-height: 120%;
  }
  .chapter__link {
    min-width: 480px;
  }
  .chapter__svg {
    height: 48px;
  }
  .next {
    padding-left: 24px;
    padding-right: 64px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: var(--size-base);
  font-family: soleil, sans-serif;
  line-height: 180%;
  display: flex;
  flex-flow: column nowrap;
  gap: 64px;
  min-height: 100svh;
}

main {
  display: flex;
  flex-flow: column nowrap;
  gap: 256px;
}

img {
  pointer-events: none;
  width: 100%;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

p {
  max-width: 80ch;
}

.link {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 32px;
  border-radius: 64px;
  text-decoration: none;
  font-style: italic;
  background-color: var(--color-darkblue);
  color: var(--color-white);
  transition-property: background-color, color;
  transition: 0.3s ease-in-out;
}
.link:hover, .link:focus {
  background-color: var(--color-black);
  color: var(--color-white);
}
.link--alt {
  background-color: var(--color-white);
  color: var(--color-darkblue);
}
.link--alt:hover, .link--alt:focus {
  background-color: var(--color-darkblue);
  color: var(--color-white);
}

.img--desktop {
  display: none;
}

.svg__mask {
  width: 101%;
  fill: none;
}
.svg__mask path {
  fill: var(--color-white);
}
.svg__mask--chapter {
  position: absolute;
  bottom: 0;
  margin-bottom: -2px;
}

.section {
  min-height: 100svh;
  padding: 0 16px;
}

main, footer {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

.header {
  position: relative;
  color: var(--color-white);
  padding: 0 !important;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.header__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: space-between;
  width: 100%;
  min-height: 100svh;
  padding: 64px 16px 16px;
}
.header__title {
  text-align: right;
  color: var(--color-white);
}
.header__img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--color-black);
}
.header__svg {
  padding-top: 64px;
  margin-bottom: -2px;
}
.header__head {
  grid-row: 1;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  gap: 16px;
}
.header__countdown {
  grid-row: 2;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  gap: 16px;
}
.header__countdown p {
  font-size: var(--size-mini);
  line-height: 130%;
  font-style: italic;
}

.countdown {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.countdown__el {
  padding: 12px 8px 16px;
  min-height: 90px;
  border-radius: 16px;
  background-color: var(--color-white);
  color: var(--color-darkblue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  font-size: var(--size-tiny);
  font-style: italic;
  line-height: 120%;
}
.countdown__number {
  font-size: var(--size-small);
  line-height: 140%;
  font-style: normal;
}

.context {
  display: flex;
  flex-flow: column nowrap;
  gap: 24px;
}
.context__container {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}
.context .bold {
  color: var(--color-darkblue);
}

.medias {
  padding: 0;
}
.medias__title {
  padding: 0 16px 16px;
}
.medias__container {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.medias__svg {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -2px;
}
.medias__el {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 16px;
  padding-bottom: 24px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  gap: 32px;
}
.medias__img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  background-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.5) 25%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.5) 25%, transparent 90%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.medias__display {
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
  gap: 8px;
}
.medias__content {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

.rs {
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}
.rs__head {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 16px;
}

.desktopbreak {
  display: none;
}

@media (min-width: 768px) {
  .desktopbreak {
    display: block;
  }
}
@media (min-width: 1366px) {
  .img--mobile {
    display: none;
  }
  .img--desktop {
    display: inline;
  }
  .section {
    padding: 0 64px;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .header__content {
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    padding: 160px 64px 96px;
  }
  .header__head {
    grid-column: 2;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header__countdown {
    grid-column: 2;
  }
  .countdown {
    grid-template-columns: repeat(4, 1fr);
  }
  .countdown__el {
    padding: 4px 32px 20px;
  }
  .countdown__number {
    font-size: var(--size-big);
  }
  .context {
    padding: 64px;
  }
  .context__container {
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
  }
  .medias {
    padding: 0;
  }
  .medias__title {
    padding: 0 64px 8px;
  }
  .medias__svg {
    z-index: 1;
    margin-top: -4px;
  }
  .medias__display {
    flex-flow: row nowrap;
  }
  .medias__el--single {
    padding: 16px 64px;
  }
}/*# sourceMappingURL=style.css.map */