@charset "UTF-8";
/* RESET */
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-ExtraLight.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Light.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}

h1,
h2,
strong {
  font-style: italic;
}

p {
  font-weight: 300;
}

/* PARTIALS */
/* MIXIN */
/* COMMON */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  -webkit-animation: 800ms linear fade-out;
          animation: 800ms linear fade-out;
}

::view-transition-new(root) {
  -webkit-animation: 800ms linear fade-in;
          animation: 800ms linear fade-in;
}

:root {
  --mobile-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mrrj-light-mode {
  background-color: #f9fafe;
}
.mrrj-light-mode .menu {
  background-color: #f9fafe;
}

.mrrj-night-mode {
  background-color: #e7eaf3;
}
.mrrj-night-mode .menu {
  background-color: #e7eaf3;
}

.icon {
  width: 35px;
  height: 35px;
  background-image: url("../../img/Icons/check.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin-left: calc(100% - 35px);
}
.icon.green {
  transition: 2s ease;
  background-image: url("../../img/Icons/check-green.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.analytics-max-width {
  height: 160px;
  width: 100vw;
  background-color: #ededed;
  border-bottom: 0.5px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  z-index: 3;
}
.analytics-max-width .analytics-min-width {
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.analytics-max-width .analytics-min-width .info {
  margin: 7px 0;
}
.analytics-max-width .analytics-min-width .info,
.analytics-max-width .analytics-min-width .accept {
  border: 0.5px solid #000000;
  padding: 5px;
}
.analytics-max-width .analytics-min-width .info:hover,
.analytics-max-width .analytics-min-width .accept:hover {
  cursor: pointer;
  background-color: #FFFFFF;
}

img,
.timeline--lazy {
  opacity: 0;
}
img.visible,
.timeline--lazy.visible {
  opacity: 1;
  transition: opacity 2s;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .analytics-max-width {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .analytics-max-width {
    height: 250px;
    font-size: 15px;
  }
  .analytics-max-width .analytics-min-width {
    width: 90%;
  }
}
@-webkit-keyframes animateDot {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.5);
  }
}
@keyframes animateDot {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.5);
  }
}
@-webkit-keyframes float {
  0% {
    transform: translate(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes float {
  0% {
    transform: translate(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #ffb84d;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #ffb84d;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes tap-to-me {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@keyframes tap-to-me {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@-webkit-keyframes hide-me {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide-me {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* HEADER */
#header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 99999;
  --menu-border-width: 3px;
}
#header .header-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0;
}
@media screen and (max-width: 767px) {
  #header .header-container {
    padding: 0 10px 0;
  }
}
#header .header-container .logo {
  width: 30px;
  height: 30px;
}
#header .header-container .logo span {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url("../../img/Index/flavicon.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}
#header .header-container .navbar {
  width: 30px;
  height: 30px;
}
#header .header-container .navbar nav {
  --icon-transition-duration: 300ms;
}
#header .header-container .navbar nav #hamburger-up {
  cursor: pointer;
  font-size: 35px;
  line-height: 1;
  color: #f28400;
  opacity: 1;
  transition: opacity var(--icon-transition-duration) linear;
}
#header .header-container .navbar nav #hamburger-up.fpls-menu-icon--fade-out {
  opacity: 0;
}
#header .header-container .navbar nav .open-menu {
  --transition-duration--desktop: 500ms;
  --transition-duration--mobile: 500ms;
  --backdrop-filter-transition-duration: 300ms;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  opacity: 0;
  right: -100%;
  bottom: 0;
  position: fixed;
  transition: opacity var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear;
  transition: opacity var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), backdrop-filter var(--backdrop-filter-transition-duration) linear;
  transition: opacity var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--desktop) linear var(--backdrop-filter-transition-duration), backdrop-filter var(--backdrop-filter-transition-duration) linear, -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear;
}
@media screen and (max-width: 767px) {
  #header .header-container .navbar nav .open-menu {
    transition: opacity var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear;
    transition: opacity var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), backdrop-filter var(--backdrop-filter-transition-duration) linear;
    transition: opacity var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), right var(--transition-duration--mobile) linear var(--backdrop-filter-transition-duration), backdrop-filter var(--backdrop-filter-transition-duration) linear, -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear;
  }
}
#header .header-container .navbar nav .open-menu .menu {
  width: 30%;
  height: 100%;
  float: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  border: var(--menu-border-width) solid #f28400;
}
#header .header-container .navbar nav .open-menu .menu #hamburger-down {
  position: relative;
  cursor: pointer;
  font-size: 35px;
  color: #f28400;
  height: 50px;
  margin-right: calc(20px - var(--menu-border-width));
  opacity: 0;
  transition: opacity var(--icon-transition-duration) linear;
}
@media screen and (max-width: 767px) {
  #header .header-container .navbar nav .open-menu .menu #hamburger-down {
    margin-right: calc(10px - var(--menu-border-width));
  }
}
#header .header-container .navbar nav .open-menu .menu .menu-choice {
  height: 40px;
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: black;
  margin-right: calc(20px - var(--menu-border-width));
}
@media screen and (max-width: 767px) {
  #header .header-container .navbar nav .open-menu .menu .menu-choice {
    margin-right: calc(10px - var(--menu-border-width));
  }
}
#header .header-container .navbar nav .open-menu .menu .menu-choice h4 {
  color: black;
  transition: transform 300ms linear;
  font-size: 18px;
}
#header .header-container .navbar nav .open-menu .menu .menu-choice h4:hover {
  color: #f28400;
  transform: rotate(-5deg);
}
#header .header-container .navbar nav .open-menu.mrrj-menu--visible {
  opacity: 1;
  right: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity var(--transition-duration--desktop) linear, right var(--transition-duration--desktop) linear, -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--desktop);
  transition: opacity var(--transition-duration--desktop) linear, right var(--transition-duration--desktop) linear, backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--desktop);
  transition: opacity var(--transition-duration--desktop) linear, right var(--transition-duration--desktop) linear, backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--desktop), -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--desktop);
}
@media screen and (max-width: 767px) {
  #header .header-container .navbar nav .open-menu.mrrj-menu--visible {
    transition: opacity var(--transition-duration--mobile) linear, right var(--transition-duration--mobile) linear, -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--mobile);
    transition: opacity var(--transition-duration--mobile) linear, right var(--transition-duration--mobile) linear, backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--mobile);
    transition: opacity var(--transition-duration--mobile) linear, right var(--transition-duration--mobile) linear, backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--mobile), -webkit-backdrop-filter var(--backdrop-filter-transition-duration) linear var(--transition-duration--mobile);
  }
}
#header .header-container .navbar nav .open-menu.mrrj-menu--opened #hamburger-down {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #header .header-container .navbar .the-runner-post-icon {
    display: none;
  }
  #header .header-container .navbar nav .open-menu .menu {
    width: 60%;
  }
  #header .header-container .navbar nav .open-menu .menu .menu-choice {
    border: none;
  }
  #header .header-container .navbar nav .open-menu .menu .menu-choice h4 {
    transition: none;
  }
  #header .header-container .navbar nav .open-menu .menu .menu-choice h4:hover {
    transform: none;
  }
}

/* MAIN */
.head-section--mobile {
  display: none;
}
.head-section--desktop {
  display: block;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.head-section--desktop .head-section__container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.head-section--desktop .head-section__container .head-section__module {
  height: 100vh;
  display: flex;
  justify-content: center;
  float: left;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container {
  width: 100%;
  display: flex;
  align-items: center;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__text {
  width: 85vw;
  display: flex;
  align-items: flex-start;
  margin-left: 5%;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__text h1 {
  font-size: 12vw;
  text-align: left;
  -webkit-animation: enter 5s;
          animation: enter 5s;
  font-weight: 400;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__text h1 span {
  color: #f28400;
  text-shadow: 0 0 0;
  font-weight: 800;
}
@-webkit-keyframes enter {
  0% {
    margin-left: 100px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}
@keyframes enter {
  0% {
    margin-left: 100px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel {
  width: 60vw;
  margin: 0 15vw;
  white-space: nowrap;
  overflow: hidden;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel__arrows .head-section__carousel__arrows__arrow {
  height: 50px;
  width: 50px;
  position: relative;
  cursor: pointer;
  background-color: black;
  border-radius: 100%;
  transition: opacity 300ms linear;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel__arrows .head-section__carousel__arrows__arrow.arrow-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel__arrows .head-section__carousel__arrows__arrow--prev {
  background-image: url("../../img/Index/prev.png");
  background-size: 100%;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel__arrows .head-section__carousel__arrows__arrow--next {
  background-image: url("../../img/Index/next.png");
  background-size: 100%;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container {
  --slide-transition-timing: 1000ms;
  --slide-transition-effect: cubic-bezier(0.4, 0, 0.2, 1);
  --slide-transition-delay: 300ms;
  height: 100%;
  position: relative;
  aspect-ratio: 16/9;
  border: 5px solid #f28400;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container.next-ready,
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .next-ready {
  cursor: url("../../img/Index/next.png") 32 32, auto;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container.prev-ready,
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .prev-ready {
  cursor: url("../../img/Index/prev.png") 32 32, auto;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container {
  width: 0;
  height: 100%;
  padding: 5px;
  position: absolute;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container:first-of-type {
  width: 100%;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container img[alt=emf] {
  -o-object-position: top;
     object-position: top;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container.active-slide--to-left {
  width: 100%;
  transition: width var(--slide-transition-timing) var(--slide-transition-effect) var(--slide-transition-delay);
  right: 0;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container.no-active-slide--to-left {
  width: 0;
  transition: width var(--slide-transition-timing) var(--slide-transition-effect);
  left: 0;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container.active-slide--to-right {
  width: 100%;
  transition: width var(--slide-transition-timing) var(--slide-transition-effect) var(--slide-transition-delay);
  left: 0;
}
.head-section--desktop .head-section__container .head-section__module .head-section__start .head-section__start-container .head-section__carousel .head-section__carousel-container .photo-container.no-active-slide--to-right {
  width: 0;
  transition: width var(--slide-transition-timing) var(--slide-transition-effect);
  right: 0;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center {
  width: 100%;
  display: flex;
  align-items: center;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__text {
  width: 50vw;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__text h1 {
  font-size: 12vw;
  font-weight: 400;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__text h1 span {
  color: #f28400;
  font-weight: 800;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline {
  height: calc(100% - 50px);
  margin-top: 50px;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates {
  height: 20%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container {
  width: 20vw;
  margin: 30px;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container .head-section__dates-wrapper a {
  text-decoration: none;
  color: inherit;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container .head-section__dates-wrapper .head-section__dates-content {
  text-align: center;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container .head-section__dates-wrapper .head-section__dates-content h1 {
  font-size: 30px;
  text-transform: capitalize;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container .head-section__dates-wrapper .head-section__dates-content h1 .flag {
  font-style: normal;
  margin-left: 5px;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__dates .head-section__dates-container .head-section__dates-wrapper .head-section__dates-content p {
  font-size: 20px;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__logos {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #ffb84d;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__logos .head-section__logos-container {
  --flag: 🇮🇹;
  width: 20vw;
  margin: 30px;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__logos .head-section__logos-container .head-section__logos-wrapper .head-section__logos-content img {
  width: 90%;
  height: auto;
  aspect-ratio: 1.3;
  -o-object-fit: contain;
     object-fit: contain;
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__logos .head-section__logos-container .head-section__logos-wrapper .head-section__logos-content img[alt~=porto] {
  filter: invert(1);
}
.head-section--desktop .head-section__container .head-section__module .head-section__center .head-section__center-container .head-section__timeline .head-section__logos .head-section__logos-container .head-section__logos-wrapper .head-section__logos-content span {
  display: block;
  font-weight: 900;
  font-size: 3vw;
  text-align: center;
  color: black;
}
.head-section--desktop .head-section__container .head-section__module .head-section__end {
  width: 100vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 5vw;
}
.head-section--desktop .head-section__container .head-section__module .head-section__end .head-section__text {
  width: 70%;
  justify-content: flex-end;
  display: flex;
  text-align: right;
  margin-right: 5%;
}
.head-section--desktop .head-section__container .head-section__module .head-section__end .head-section__text h1 {
  font-size: 12vw;
  font-weight: 400;
}
.head-section--desktop .head-section__container .head-section__module .head-section__end .head-section__text h1 span {
  color: #f28400;
  font-weight: 800;
}

.about-me {
  width: 100%;
  background-color: #ffb84d;
}
.about-me .about-me__container {
  width: 85%;
  height: 30vw;
  margin: 150px auto;
}
.about-me .about-me__container .about-me__wrapper {
  width: 100%;
  height: 100%;
  padding: 30px 0;
}
.about-me .about-me__container .about-me__wrapper .about-me__content {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo {
  height: 38vw;
  min-width: 30vw;
  padding: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid #fff;
}
.about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translateY(-50%);
}
.about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description h2 {
  font-size: 2vw;
  font-style: italic;
  font-weight: lighter;
}
.about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description h2 span {
  background-color: #fff;
  line-height: 1.5;
}

.mobile-animated-cities,
.map {
  display: none;
}

.timeline--mobile {
  display: none;
}

.news {
  width: 100vw;
  height: 100%;
  position: relative;
  margin: 50px 0;
}
@media screen and (min-width: 1025px) {
  .news {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .news .news-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: calc(50px + 20px);
    left: 5%;
    z-index: 1;
  }
}
.news .news-title .news-title__container {
  width: 100%;
}
.news .news-title .news-title__container .news-title__wrapper {
  width: 100%;
}
.news .news-title .news-title__container .news-title__wrapper .news-title__content {
  width: 100%;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.news .news-title .news-title__container .news-title__wrapper .news-title__content .news-title__text {
  text-align: center;
}
.news .news-title .news-title__container .news-title__wrapper .news-title__content .news-title__text h1 {
  font-size: 10vw;
  color: #f28400;
}
@media screen and (min-width: 1025px) {
  .news .news-title .news-title__container .news-title__wrapper .news-title__content .news-title__text h1 {
    font-size: 6vw;
  }
}
.news .news-section {
  --v-height: 100vh;
  width: 100%;
  z-index: 2;
  min-height: 50vh;
}
@media screen and (min-width: 1025px) {
  .news .news-section {
    width: 90%;
    margin: 0 auto 50px;
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 8px;
    grid-auto-flow: dense;
    grid-gap: 16px;
  }
}
.news .news-section .news-section__container {
  width: 30%;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .news .news-section .news-section__container {
    --grid-height: 0;
    --grid-column: attr(data-column type(<number>), 1);
    width: auto;
    grid-row-end: span var(--grid-height);
    grid-row-start: auto;
    grid-column-start: var(--grid-column);
  }
  .news .news-section .news-section__container:not(.unloaded-section) {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1000ms linear var(--cards-to-show-transition-delay--desktop), transform 1000ms ease-in-out var(--cards-to-show-transition-delay--desktop);
  }
  .news .news-section .news-section__container.unloaded-section {
    --cards-to-hide-transition-delay--desktop: 0ms;
    --cards-to-show-transition-delay--desktop: 0ms;
    display: none;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1000ms linear var(--cards-to-hide-transition-delay--desktop), transform 1000ms ease-in-out var(--cards-to-hide-transition-delay--desktop);
  }
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content {
  background-color: black;
  padding: 30px 15px;
  text-align: center;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content h2 strong {
  color: #000;
  background: #fff;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content .image {
  height: 25vw;
  margin-bottom: 30px;
  padding: 3px;
  border: 3px solid #f28400;
}
@media screen and (max-width: 1024px) {
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .image {
    height: 70vw;
  }
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content p {
  font-size: 19px;
  margin-bottom: 4px;
  margin-top: 4px;
  padding: 0px 12px;
  color: #fff;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content span {
  background-color: #0095f6;
  border-radius: 5px;
  padding: 5px;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content span a {
  color: white;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content em {
  font-weight: 700;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content #news-content {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-section .news-section__container .news-section__wrapper .news-section__content .date-news-content {
  text-align: right;
  margin: 10px 12px 0 0;
  color: #808080;
}
.news .load-more-news {
  display: inline-block;
  background-color: #fff;
  border: 3px solid #f28400;
  padding: 20px;
  cursor: pointer;
}
.news .load-more-news span {
  font-size: 30px;
  font-weight: bold;
}
.news .load-more-news:hover {
  background-color: #f28400;
  color: #fff;
  border: 3px solid #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .news .load-more-news {
    display: none;
  }
}

.motivation-quote {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.motivation-quote .motivation-quote__container {
  width: 100vw;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper {
  width: 85%;
  height: 100%;
  margin: 0 auto;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content {
  height: 100%;
  width: 100%;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text {
  text-align: center;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3 {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:first-of-type, .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(3) {
  font-size: 24vh;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(2), .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(4) {
  font-size: 13vh;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3 strong {
  transition: color 1s;
  color: #f28400;
  background-color: #000;
}
.motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3 small {
  font-size: 20px;
}

.slideshow .slideshow__container {
  width: 60vw;
  height: 50vh;
  margin: 150px auto;
  border: 5px solid #f28400;
  background-color: #fff;
  box-shadow: 0px 0px 5px 5px #f28400;
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
}
.slideshow .slideshow__container .slideshow__wrapper {
  height: 100%;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper h4 {
  font-size: 10vw;
  color: rgba(0, 0, 0, 0.2);
  text-align: center;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper h4 strong {
  display: none;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos img {
  width: 25%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos img.active {
  opacity: 1;
}
.slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos img[alt="Copenaghen half marathon"] {
  background: #000;
}

@media screen and (max-width: 1024px) {
  .head-section--desktop {
    display: none;
  }
  .head-section--mobile {
    display: block;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-clip-path: inset(0 0 var(--clip-path, 0) 0);
            clip-path: inset(0 0 var(--clip-path, 0) 0);
    filter: blur(var(--blur, 0));
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content {
    display: block;
    position: relative;
    height: 100vh;
    height: var(--mobile-height);
    width: 100%;
    overflow: hidden;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__text {
    width: 80%;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
    opacity: 0;
    will-change: transform;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__text .head-section__text-container .head-section__text-item h1 {
    font-size: 30px;
    font-style: normal;
    text-align: center;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel {
    overflow: hidden;
    aspect-ratio: 9/13;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f28400;
    padding-bottom: 5px;
    border-style: solid solid none solid;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container .head-section__carousel-photo {
    width: 100%;
    height: 0;
    padding: 5px;
    position: absolute;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container .head-section__carousel-photo:first-of-type {
    height: 100%;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container .head-section__carousel-photo img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60%;
       object-position: 60%;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container .head-section__carousel-photo.active-slide {
    height: 100%;
    transition: height 1000ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
    bottom: 0;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .head-section__carousel-container .head-section__carousel-photo.no-active-slide {
    height: 0;
    transition: height 1000ms cubic-bezier(0.4, 0, 0.2, 1);
    top: 0;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots {
    height: 5px;
    width: 100%;
    position: absolute;
    display: flex;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots .carousel-dot--mobile {
    width: calc(100% / 4);
    background: #ffb84d;
    margin: 0 5px;
    position: relative;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots .carousel-dot--mobile:first-of-type {
    margin: 0 5px 0 0;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots .carousel-dot--mobile:last-of-type {
    margin: 0 0 0 5px;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots .carousel-dot--mobile::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 0;
    background-color: #f28400;
    transition: width 3.5s linear;
  }
  .head-section--mobile .head-section__container .head-section__wrapper .head-section__content .head-section__carousel .carousel-dots .carousel-dot--mobile.active-dot::after {
    content: "";
    height: 5px;
    width: 100%;
  }

  .timeline--mobile {
    display: block;
    margin: 0 auto 50px;
  }
  .timeline--mobile .timeline__container {
    --flag: 🇮🇹;
    width: 90%;
    margin: 0 auto;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content {
    display: flex;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .line {
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .line p {
    color: #f28400;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .line span {
    height: 25vw;
    border-left: 1px solid;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city {
    width: 50%;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city h1 {
    font-size: 38px;
    text-transform: capitalize;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city h1 .flag {
    font-style: normal;
    margin-left: 5px;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city p {
    font-size: 26px;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo {
    width: 50%;
    height: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo img[alt~=porto], .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo img[alt~=dublin] {
    filter: invert(1);
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo span {
    display: block;
    text-align: center;
    background-color: black;
    color: white;
    padding: 5px 20px 0 10px;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo .visible {
    -webkit-animation: 1.2s linear rightFromRight;
            animation: 1.2s linear rightFromRight;
  }
  @-webkit-keyframes rightFromRight {}
  @keyframes rightFromRight {}

  .news {
    width: 100vw;
    display: block;
    margin: 50px 0 0;
  }
  .news .news-title {
    display: inline-block;
    margin-left: 3vw;
  }
  .news .news-title .news-title__container {
    position: static;
  }
  .news .news-title .news-title__container .news-title__wrapper .news-title__content {
    width: 100%;
    position: relative;
    -webkit-animation: none;
            animation: none;
    -webkit-animation-duration: 4.5s;
            animation-duration: 4.5s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  .news .news-title .news-title__container .news-title__wrapper .news-title__content .news-title__text h1 {
    background: #000;
    padding: 0 5px 5px 0;
  }
  @-webkit-keyframes rightToLeft {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes rightToLeft {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .news .news-section {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 30px 0;
    overflow-x: auto;
  }
  .news .news-section .news-section__container {
    width: 65vw;
    margin: 0 3vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex: none;
    padding-bottom: 0.5rem;
  }
  .news .news-section .news-section__container .news-section__wrapper {
    width: 98%;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content {
    margin-top: 0;
    height: 100%;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .image {
    position: inherit;
    top: 0;
    left: 0;
    transform: none;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .image #maratonina-città-murata {
    height: auto;
    width: auto;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text {
    display: block;
    position: inherit;
    top: 0;
    left: 0;
    transform: none;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text .this-article {
    height: 100px;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text h2 {
    font-size: 30px;
    margin-bottom: 2vw;
    padding: 0px 12px;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text p {
    font-size: 22px;
    margin-bottom: 4px;
    margin-top: 4px;
    padding: 0px 12px;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text .date-news-content {
    text-align: right;
    margin: 10px 12px 0 0;
    color: #808080;
  }

  .motivation-quote .motivation-quote__container {
    height: 100vh;
    background-color: #f3f4f9;
    border-bottom: 2px solid #f28400;
    border-top: 2px solid #f28400;
  }
  .motivation-quote .motivation-quote__container .motivation-quote__wrapper {
    width: 90%;
  }
  .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content {
    width: 100%;
    display: flex;
    align-items: center;
    -webkit-animation: float 6s ease-in-out infinite;
            animation: float 6s ease-in-out infinite;
  }
  .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:first-of-type, .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(3) {
    font-size: 12vw;
  }
  .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(2), .motivation-quote .motivation-quote__container .motivation-quote__wrapper .motivation-quote__content .motivation-quote__text h3:nth-of-type(4) {
    font-size: 10vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .head-section--mobile .head-section__text .head-section__text-container .head-section__text-item h1 {
    font-size: 50px;
  }
  .head-section--mobile .head-section__carousel {
    width: 70%;
  }

  .timeline--mobile {
    padding-top: var(--mobile-height);
    margin: 100px auto;
  }
  .timeline--mobile .run-logo span {
    font-size: 42px;
  }

  .about-me .about-me__container {
    height: 30vh;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo {
    height: 50vw;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description {
    left: 45%;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description h4 {
    font-size: 3vw;
  }

  .slideshow .slideshow__container {
    height: 40vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .motivation-quote .motivation-quote__container h2 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .head-section__text .head-section__text-container .head-section__text-item h1 {
    font-size: 32px;
  }

  .head-section__carousel {
    width: 90%;
  }

  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city h1 {
    font-size: 22px;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .city p {
    font-size: 16px;
  }
  .timeline--mobile .timeline__container .timeline__wrapper .timeline__content .run-logo span {
    font-size: 26px;
  }

  .map {
    display: block;
    padding-top: var(--mobile-height);
  }
  .map .map__container .map__wrapper {
    margin: 0 0 80px;
  }
  .map .map__container .map__wrapper .map__content .map__cities {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .map .map__container .map__wrapper .map__content .map__cities img {
    width: 100%;
    min-height: 20vh;
    display: block;
  }
  .map .map__container .map__wrapper .map__content .map__cities small[class^=check-] {
    font-size: 10px;
    position: absolute;
    color: #f28400;
    z-index: 1;
  }
  .map .map__container .map__wrapper .map__content .map__cities small[class^=check-] a {
    color: #f28400;
    text-decoration: none;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-nyc {
    top: 38%;
    left: 27%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-brooklyn {
    top: 38%;
    left: 28%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-sydney {
    top: 84%;
    right: 9%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-brisbane {
    top: 79%;
    right: 7.5%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-paris {
    top: 36%;
    left: 48%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-edinburgh {
    top: 30%;
    left: 47%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-madrid {
    top: 41%;
    left: 46%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-barcellona {
    top: 40%;
    left: 48%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-amsterdam {
    top: 34%;
    left: 51%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-venice {
    top: 37%;
    left: 50%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-berlin {
    top: 34%;
    left: 49%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-helsinki {
    top: 26%;
    left: 53%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-copenaghen {
    top: 28%;
    left: 50%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-porto {
    top: 39%;
    left: 45.5%;
  }
  .map .map__container .map__wrapper .map__content .map__cities .check-dublin {
    top: 33%;
    left: 46%;
  }

  .about-me .about-me__container {
    width: 90%;
    height: 900px;
    margin: 50px auto;
  }
  .about-me .about-me__container .about-me__wrapper {
    padding: 0;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo {
    height: 70vw;
    top: 20px;
    left: initial;
    right: 0;
    transform: none;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo.sticky-element {
    top: 70px;
    position: fixed;
    right: 5%;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo.no-sticky-element {
    top: initial;
    bottom: 20px;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__photo img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description {
    width: 100%;
    left: initial;
    right: 0;
  }
  .about-me .about-me__container .about-me__wrapper .about-me__content .about-me__description h2 {
    font-size: 25px;
  }

  .news {
    margin: 30px 0 0;
  }
  .news .news-section .news-section__container {
    width: 75vw;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text h2 {
    font-size: 26px;
  }
  .news .news-section .news-section__container .news-section__wrapper .news-section__content .text p {
    font-size: 18px;
  }

  .slideshow .slideshow__container {
    width: 100vw;
    height: auto;
    margin: 0;
    background-color: transparent;
    border: none;
    box-shadow: initial;
    -webkit-animation: none;
            animation: none;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content {
    margin: 50px 0;
    flex-direction: column;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper {
    margin-bottom: 30px;
    position: inherit;
    width: inherit;
    top: 0;
    left: 0;
    transform: none;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper .slideshow__title-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper h4 {
    font-size: 24px;
    color: #fff;
    background: #000;
    padding: 15px 2px 2px 15px;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .slideshow__title-wrapper h4 strong {
    display: inline-block;
    color: #fff;
    padding: 10px 5px;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos {
    position: initial;
    flex-direction: column;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos img {
    width: 60%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    margin: 20px 0;
  }
  .slideshow .slideshow__container .slideshow__wrapper .slideshow__content .race-logos img.active {
    opacity: 1;
  }
}
@media (min-width: 600px) {
  .head-section--mobile .text-container h1 {
    font-size: 7vw;
  }
}
#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: #f9fafe;
  z-index: 99;
}
#loading.mrrj-fade-out {
  pointer-events: none;
  opacity: 0;
  transition: opacity 1000ms linear;
}

#loading-image {
  width: 5%;
  z-index: 100;
  -webkit-animation: pulse 1.2s infinite;
          animation: pulse 1.2s infinite;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  #loading-image {
    width: 15%;
  }
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* FOOTER */
#footer {
  width: 100%;
  height: 100px;
  background-color: #000;
}
#footer .footer__container {
  width: 85%;
  height: 100%;
  margin: 0 auto;
}
#footer .footer__container .footer__wrapper {
  width: 100%;
  height: 100%;
}
#footer .footer__container .footer__wrapper .footer__content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .footer__container .footer__wrapper .footer__content .social {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  height: 50%;
  gap: 20px;
}
#footer .footer__container .footer__wrapper .footer__content .social .linkedin,
#footer .footer__container .footer__wrapper .footer__content .social .instagram {
  filter: invert(1);
}
#footer .footer__container .footer__wrapper .footer__content .gdpr {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  height: 50%;
}
#footer .footer__container .footer__wrapper .footer__content .gdpr a {
  color: #fff;
}
#footer .footer__container .footer__wrapper .footer__content img {
  opacity: 1;
}
