/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/


@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

@font-face {
    font-family: 'Parslay';
    src: url('../assets/fonts/ParslayRegular-WyvJ4.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.header_nav ul li:last-child { font-family:'Parslay'; padding-right:8px; color:#05213F; font-weight:600; font-size: 14px;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.lien_reglement {
	margin: auto;
    display: table;
    font-weight: bold;
    font-style: italic;
    color: blue;
    cursor: pointer;
    font-size: 1rem;
}

/*COLORS*/
/*FONTS*/
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/HomepageBaukasten-Bold.woff2") format("woff2");
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation: slideInUp 1s forwards;
}

.text-anim {
  visibility: hidden;
}

/*GLOBAL*/
body {
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 400;
}

main {
  padding-top: 80px;
}

.container {
  margin: 0 auto !important;
}
@media (min-width: 1350px) {
  .container {
    max-width: 1300px;
  }
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

a {
  color: unset;
  text-decoration: none;
}
a:hover {
  text-decoration: unset;
  color: inherit;
}

strong,
.bold,
b {
  font-weight: 700;
}

h1 {
  font-size: 28px;
  line-height: 34px;
  color: #05213F;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
}

h3 {
  font-size: 24px;
  line-height: 28px;
  color: #05213F;
  font-weight: 600;
}

h4 {
  color: #E62426;
  font-size: 18px;
  line-height: 24px;
}

.text {
  line-height: 24px;
}
.text p {
  line-height: 24px;
}

.corner-border {
  position: relative;
}
.corner-border::before {
  content: "";
  position: absolute;
  background-color: #E62426;
  width: 35%;
  height: 5px;
  top: 0;
  right: 0;
  max-width: 200px;
}
.corner-border::after {
  content: "";
  position: absolute;
  background-color: #E62426;
  width: 5px;
  height: 60%;
  top: 0;
  right: 0;
  max-height: 80px;
}
.corner-border.corner-border_left::before {
  left: 0;
  right: inherit;
}
.corner-border.corner-border_left::after {
  right: inherit;
  left: 0;
}

.pic {
  background: pink;
}

.white {
  color: #FFF;
}

.btn-type-1 {
  display: flex;
  border: solid;
  background: #05213F;
  padding: 15px 100px 15px 30px;
  color: #FFF;
  font-size: 16px;
  width: fit-content;
  position: relative;
}
.btn-type-1::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: #FFF;
  right: 30px;
  top: calc(50% - 1px);
}
.btn-type-1:hover {
  color: #05213F;
  background: white;
  transition: 0.5s;
}
.btn-type-1:hover::after {
  background: #05213F;
  transition: 0.5s;
}

.btn-type-2 {
  display: flex;
  background: #E62426;
  padding: 20px 30px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  width: fit-content;
  transition: 0.3s ease-in-out;
}
.btn-type-2:hover {
  color: #E62426;
  background-color: #FFF;
}

.header_page .pic {
  height: 200px;
}
@media (min-width: 768px) {
  .header_page .pic {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .header_page .pic {
    height: 450px;
  }
}
.header_page .row {
  align-items: flex-end;
}
.header_page .col-md-5 > div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .header_page .col-md-5 > div {
    padding-left: 30px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .header_page .col-md-5 > div {
    padding-bottom: 70px;
  }
}
.header_page h1 {
  margin-bottom: 20px;
  width: fit-content;
  padding: 15px 20px 0 0;
}
.header_page p {
  font-size: 18px;
  line-height: 26px;
}

.cardBlock {
  box-shadow: 0 4px 40px rgba(177, 177, 177, 0.25);
  background: #FFF;
  padding: 20px;
}
@media (min-width: 768px) {
  .cardBlock {
    padding: 40px;
  }
}
.cardBlock h3 {
  margin-bottom: 20px;
}

.block-type-1 .container {
  position: relative;
}
.block-type-1 .pic {
  height: 300px;
}
@media (min-width: 768px) {
  .block-type-1 .pic {
    position: absolute;
    height: 100%;
    width: 60%;
    z-index: -1;
    top: 0;
    left: 0;
  }
}
.block-type-1 .cardBlock::after, .block-type-1 .cardBlock::before {
  content: none;
}
@media (min-width: 768px) {
  .block-type-1 .cardBlock {
    width: 80%;
    margin: 0 0 0 auto;
  }
  .block-type-1 .cardBlock::before {
    content: "";
    position: absolute;
    background-color: #E62426;
    width: 35%;
    height: 5px;
    top: 0;
    right: 0;
    max-width: 200px;
  }
  .block-type-1 .cardBlock::after {
    content: "";
    position: absolute;
    background-color: #E62426;
    width: 5px;
    height: 60%;
    top: 0;
    right: 0;
    max-height: 40px;
  }
}
@media (min-width: 992px) {
  .block-type-1 .cardBlock {
    width: 60%;
  }
}
.block-type-1 .btn-type-1 {
  margin: 30px 0 0 auto;
}
.block-type-1.block-type-1_left .pic {
  left: inherit;
  right: 0;
}
.block-type-1.block-type-1_left .cardBlock {
  margin: 0;
}
.block-type-1.block-type-1_left .cardBlock::after, .block-type-1.block-type-1_left .cardBlock::before {
  content: none;
}
@media (min-width: 768px) {
  .block-type-1.block-type-1_left .cardBlock::before {
    content: "";
    position: absolute;
    background-color: #E62426;
    width: 35%;
    height: 5px;
    top: 0;
    left: 0;
    max-width: 200px;
  }
  .block-type-1.block-type-1_left .cardBlock::after {
    content: "";
    position: absolute;
    background-color: #E62426;
    width: 5px;
    height: 60%;
    top: 0;
    left: 0;
    max-height: 40px;
  }
}

.header {
  position: fixed;
  z-index: 999;
  font-family: "Gotham";
}
.header > div:first-child {
  filter: drop-shadow(0px 4px 40px rgba(177, 177, 177, 0.25));
  padding: 15px;
  background: #fff;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1400px) {
  .header > div:first-child {
    padding: 15px 40px;
  }
}
.header img {
  height: 50px;
}
@media (max-width: 992px) {
  .header img {
    height: 40px;
  }
}
.header ul {
  display: flex;
  flex-direction: column;
}
@media (min-width: 860px) {
  .header ul {
    flex-direction: row;
    align-items: flex-end;
  }
}
.header li {
  position: relative;
  padding: 2px;
  overflow: hidden;
  margin: 15px 0;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 860px) {
  .header li {
    font-size: 13px;
    font-weight: 400;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 1050px) {
  .header li {
    font-size: 16px;
  }
}
.header li:last-child {
  margin-right: 0;
}
.header li img {
  height: 18px;
}
@media (min-width: 860px) {
  .header li img {
    height: 14px;
  }
}
@media (min-width: 1050px) {
  .header li img {
    height: 18px;
  }
}
.header a {
  text-transform: uppercase;
  transition: all 0.3s;
}

@media (min-width: 860px) {
  .header_close,
  .header_menu {
    display: none;
  }
}
.header_close img,
.header_menu img {
  height: 25px;
}

.header_close {
  position: absolute;
  top: 30px;
  right: 15px;
}

.header_nav {
  position: absolute;
  height: 100vh;
  width: 100vw;
  background: #fff;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: all 0.5s;
}
.header_nav.visible {
  transform: translateX(0);
}
@media (min-width: 860px) {
  .header_nav {
    position: relative;
    height: auto;
    width: auto;
    background-color: transparent;
    transform: translateX(0);
  }
}

.header__socialsFixed {
  position: fixed;
  bottom: 30px;
  left: 40px;
  display: none;
  z-index: 9999;
}
@media (min-width: 768px) {
  .header__socialsFixed {
    display: block;
  }
}
.header__socialsFixed img {
  height: 22px;
  margin-right: 15px;
}

.footer1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Gotham";
}
@media (min-width: 768px) {
  .footer1 {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .footer1 {
    justify-content: space-around;
  }
}
.footer1 .logo {
  width: fit-content;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer1 .logo {
    margin-bottom: 0;
  }
}
.footer1 .logo img {
  height: 75px;
}
.footer1 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (min-width: 500px) {
  .footer1 ul {
    justify-content: center;
  }
}
.footer1 ul li {
  padding: 0px 15px;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  max-width: 200px;
  margin: 10px 0;
  text-align-last: left;
}
@media (min-width: 500px) {
  .footer1 ul li {
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .footer1 ul li {
    width: fit-content;
    text-align: center;
    margin: 10px;
  }
}
.footer1 ul li img {
  height: 18px;
}

.footer2 {
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
}

.athletes_logo_w {
  background-image: url(../assets/icons/athletes_logo_w.svg);
  background-size: 90px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-position-x: center;
}

.adrenaline_logo_w {
  background-image: url(../assets/icons/adrenaline_logo_w.svg);
  background-size: 90px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-position-x: center;
}

.animation_logo_w {
  background-image: url(../assets/icons/animation_logo_w.svg);
  background-size: 90px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-position-x: center;
}

.home1 {
  height: calc(100vh - 80px);
}
.home1 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.home1 img {
  max-height: 120px;
  max-width: 100vw;
  width: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home1 img {
    max-height: 180px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .home1 img {
    max-height: 230px;
    margin-bottom: 80px;
  }
}
.home1 h4 {
  color: #FFF;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .home1 h4 {
    margin-bottom: 30px;
  }
}

.ambassadors1 .row {
  justify-content: center;
}
@media (min-width: 1200px) {
  .ambassadors1 .row {
    gap: 1px;
  }
}
@media (min-width: 768px) {
  .ambassadors1 .col-md-3 {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .ambassadors1 .col-md-3 {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .ambassadors1 .col-md-3 {
    width: 25%;
  }
}

.ambassadors1_card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 15px 0;
}
.ambassadors1_card div {
  height: 150px;
  width: 150px;
  background: grey;
  margin-bottom: 25px;
}
.ambassadors1_card .ambassadors1_name {
  font-size: 18px;
}
.ambassadors1_card .ambassadors1_team {
  margin-top: 8px;
  margin-bottom: 20px;
  color: #E62426;
}

.news {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.news .news_card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 5px transparent solid;
}
.news .news_card p {
  display: none;
  position: absolute;
  color: #05213F;
  font-size: 48px;
  font-weight: bold;
}
.news .news_card:hover {
  border: 5px #05213F solid;
}
.news .news_card:hover p {
  display: block;
}
.news .news_card:hover img {
  filter: opacity(30%);
}
@media (max-width: 1200px) {
  .news .news_card p {
    font-size: 36px;
  }
  .news .news_card img {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .news .news_card p {
    font-size: 32px;
  }
  .news .news_card img {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .news .news_card p {
    font-size: 26px;
  }
  .news .news_card img {
    width: 200px;
  }
}

.whoarewe1 {
  position: relative;
}
.whoarewe1 .pic {
  height: 300px;
}
@media (min-width: 768px) {
  .whoarewe1 .pic {
    position: absolute;
    height: 100%;
    width: 60%;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media (min-width: 768px) {
  .whoarewe1 .cardBlock {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .whoarewe1 .cardBlock {
    width: 60%;
  }
}

.whoarewe2 {
  text-align: center;
}
.whoarewe2 h3 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .whoarewe2 .text {
    width: 80%;
    margin: 0 auto;
  }
}

.whoarewe3 .pic {
  min-height: 320px;
  position: relative;
}
@media (min-width: 768px) {
  .whoarewe3 .pic {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .whoarewe3 .pic {
    min-height: 500px;
  }
}
.whoarewe3 .pic:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #E62426;
  transform: translateY(10px) translateX(10px);
  z-index: -1;
}
@media (min-width: 992px) {
  .whoarewe3 .pic:before {
    transform: translateY(20px) translateX(20px);
  }
}
.whoarewe3 .row {
  align-items: flex-end;
}
.whoarewe3 .col-md-7 > div {
  padding: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .whoarewe3 .col-md-7 > div {
    padding: 30px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .whoarewe3 .col-md-7 > div {
    padding: 30px 30px 50px;
  }
}
.whoarewe3 h4 {
  margin-bottom: 10px;
}

.xperience1 .container > div {
  border: 2px solid #E62426;
  background-color: #fff;
  box-shadow: 0px 4px 40px rgba(230, 36, 38, 0.28);
  padding: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .xperience1 .container > div {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .xperience1 .container > div {
    padding: 60px;
  }
}
.xperience1 h3 {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .xperience2 .container > div {
    width: 90%;
    margin: 0 auto;
  }
}
.xperience2 h3 {
  margin-bottom: 20px;
}

.xperience3 .container {
  position: relative;
}
.xperience3 .container .pic {
  height: 300px;
}
@media (min-width: 768px) {
  .xperience3 .container .pic {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
@media (min-width: 768px) {
  .xperience3 .cardBlock {
    width: 80%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 992px) {
  .xperience3 .cardBlock {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .xperience4 .pic {
    right: 0 !important;
    left: inherit !important;
  }
}
@media (min-width: 768px) {
  .xperience4 .cardBlock {
    margin: 0 auto 0 0;
  }
}

.triathlonRace1_race {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.triathlonRace1_race > div:first-child {
  padding: 12px 50px;
  background: #E62426;
  width: 90%;
  text-align: right;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  clip-path: polygon(0% 100%, 17.5% 0%, 100% 0%, 100% 100%);
}
@media (min-width: 768px) {
  .triathlonRace1_race > div:first-child {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .triathlonRace1_race > div:first-child {
    width: 35%;
  }
}
.triathlonRace1_race .card {
  width: 100%;
}
.triathlonRace1_race .triathlonRace1_global {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .triathlonRace1_race .triathlonRace1_global {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.triathlonRace1_race .triathlonRace1_global > div:first-child {
  padding: 25px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .triathlonRace1_race .triathlonRace1_global > div:first-child {
    padding: 40px;
    display: block;
  }
}
@media (min-width: 992px) {
  .triathlonRace1_race .triathlonRace1_global > div:first-child {
    padding: 70px 0 70px 70px;
  }
}
.triathlonRace1_race .triathlonRace1_global h4 {
  color: #FFF;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.triathlonRace1_race .triathlonRace1_global h4 img {
  height: 40px;
}
@media (min-width: 992px) {
  .triathlonRace1_race .img {
    margin-right: 40px;
  }
}
.triathlonRace1_race .img img {
  	width: 100%;
	height: auto;
}
@media (min-width: 992px) {
  .triathlonRace1_race .img img {
	  height: auto;
	  max-width: 370px;
  }
}

.triathlonRace1_infos {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.triathlonRace1_infos > div {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
}
@media (min-width: 768px) {
  .triathlonRace1_infos > div {
    width: 50%;
  }
}
.triathlonRace1_infos > div > p:first-child {
  color: #E62426;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.triathlonRace1_infos .course li {
  margin-top: 10px;
}
