@charset "UTF-8";
/* Reset CSS - Basé sur Normalize.css avec quelques améliorations */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Supprime les styles de base des listes */
ul, ol {
  list-style: none;
}

/* Suppression de la décoration des liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Supprime la mise en forme des boutons par défaut */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Correction des styles des boutons */
button {
  cursor: pointer;
}

/* Harmonisation des styles des images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Suppression des espacements des tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Réinitialisation des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Ajout d'un style de base pour le HTML */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Ajout d'un style de base pour le body */
body {
  font-family: sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
}

:root {
  --primary-color: rgb(3, 45, 175);
  --primary-color-dark: #02207d;
  --primary-color-tint-1: #043ae1;
  --primary-color-tint-2: #1d53fb;
  --primary-color-tint-3: #4f79fc;
  --primary-color-tint-4: #819ffd;
  --primary-color-tint-5: #b3c5fe;
  --accent-color: rgb(254, 173, 56);
  --accent-light: rgb(254, 173, 56);
  --secondary-color: rgb(100, 120, 245);
  --third-color: rgb(184, 131, 250);
  --link-color: #032DAF;
  --text-color: #252525;
  --black: #252525;
  --white: #fff;
  --grey: #eaeaea;
  --vss-primary: rgb(100, 120, 245);
  --vss-secondary: rgb(136, 124, 248);
  --vss-third: rgb(184, 131, 250);
  --vsv-primary: rgb(184, 131, 250);
  --vsv-secondary: rgb(230, 153, 149);
  --vsv-third: rgb(254, 173, 56);
  --gradientvss: linear-gradient(135deg, rgb(100, 120, 245), rgb(136, 124, 248), rgb(184, 131, 250));
  --gradientvsv: linear-gradient(135deg, rgb(184, 131, 250), rgb(230, 153, 149), rgb(254, 173, 56));
}

.text-primary {
  color: rgb(3, 45, 175) !important;
}

.bg-primary {
  background-color: rgb(3, 45, 175) !important;
}

.btn-primary {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #01134b !important;
  color: #fff !important;
}

.btn-outline-primary {
  border-color: rgb(3, 45, 175) !important;
  color: rgb(3, 45, 175) !important;
}
.btn-outline-primary:hover {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
}

.text-secondary {
  color: rgb(100, 120, 245) !important;
}

.bg-secondary {
  background-color: rgb(100, 120, 245) !important;
}

.btn-secondary {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #fff !important;
  color: #fff !important;
}

.btn-outline-secondary {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
}
.btn-outline-secondary:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
}

.text-third {
  color: rgb(184, 131, 250) !important;
}

.bg-third {
  background-color: rgb(184, 131, 250) !important;
}

.btn-third {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
}
.btn-third:hover {
  background-color: #fff !important;
  color: #fff !important;
}

.btn-outline-third {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
}
.btn-outline-third:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
}

.text-accent {
  color: rgb(254, 173, 56) !important;
}

.bg-accent {
  background-color: rgb(254, 173, 56) !important;
}

.btn-accent {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
}
.btn-accent:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
}

.btn-outline-accent {
  border-color: rgb(254, 173, 56) !important;
  color: rgb(254, 173, 56) !important;
}
.btn-outline-accent:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
}

.text-accent-light {
  color: rgb(230, 153, 149) !important;
}

.bg-accent-light {
  background-color: rgb(230, 153, 149) !important;
}

.btn-accent-light {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
}
.btn-accent-light:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
}

.btn-outline-accent-light {
  border-color: rgb(230, 153, 149) !important;
  color: rgb(230, 153, 149) !important;
}
.btn-outline-accent-light:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
}

.text-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.btn-white {
  background-color: #fff !important;
  color: #252525 !important;
}
.btn-white:hover {
  background-color: #252525 !important;
  color: #252525 !important;
}

.btn-outline-white {
  border-color: #fff !important;
  color: #fff !important;
}
.btn-outline-white:hover {
  background-color: #fff !important;
  color: #252525 !important;
}

.text-vss {
  color: rgb(100, 120, 245) !important;
}

.bg-vss {
  background-color: rgb(100, 120, 245) !important;
}

.btn-vss {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
}
.btn-vss:hover {
  background-color: #fff !important;
  color: #fff !important;
}

.btn-outline-vss {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
}
.btn-outline-vss:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
}

.text-vsv {
  color: rgb(184, 131, 250) !important;
}

.bg-vsv {
  background-color: rgb(184, 131, 250) !important;
}

.btn-vsv {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
}
.btn-vsv:hover {
  background-color: #fff !important;
  color: #fff !important;
}

.btn-outline-vsv {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
}
.btn-outline-vsv:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
}

body {
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  line-height: 1.875em;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

h1, .h1 {
  font-size: clamp(1.8rem, 6vw + 1rem, 3rem);
}

h2, .h2 {
  font-size: clamp(1.6rem, 5vw + 1rem, 2.5rem);
}

h3, .h3 {
  font-size: clamp(1.6rem, 4vw + 1rem, 2rem);
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: auster, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

p {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.section__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__title .title--icon {
  font-size: 3rem;
}
.section__title .title--icon > span, .section__title .title--icon i {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.section__title > .title {
  display: inline-block;
  position: relative;
  margin: 0 0 2rem;
  padding: 0 1rem;
}
.section__title > .title:before, .section__title > .title:after {
  content: "";
  display: block;
  width: 50%;
  max-width: 100px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-1px);
}
.section__title > .title:before {
  right: 100%;
}
.section__title > .title:after {
  left: 100%;
}
.section__title > .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: -2rem;
}
.section__title.section__title--white > .title {
  color: var(--white);
}
.section__title.section__title--white > .title:before, .section__title.section__title--white > .title:after {
  background-color: var(--white);
}
.section__title.section__title--white > .subtitle {
  color: var(--white);
}
.section__title.section__title--vss > .title {
  color: var(--vss-primary);
}
.section__title.section__title--vss > .title:before, .section__title.section__title--vss > .title:after {
  background-color: var(--vss-primary);
}
.section__title.section__title--vss > .subtitle {
  color: var(--vss-primary);
}
.section__title.section__title--vsv > .title {
  color: var(--vsv-primary);
}
.section__title.section__title--vsv > .title:before, .section__title.section__title--vsv > .title:after {
  background-color: var(--vsv-primary);
}
.section__title.section__title--vsv > .subtitle {
  color: var(--vsv-primary);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.wrapper__text h1, .wrapper__text h2, .wrapper__text h3, .wrapper__text h4, .wrapper__text h5, .wrapper__text h6 {
  margin: 1rem 0;
}
.wrapper__text.--txt-white {
  color: var(--white);
}
.wrapper__text.--bg-secondary h1, .wrapper__text.--bg-secondary h2, .wrapper__text.--bg-secondary h3, .wrapper__text.--bg-secondary h4, .wrapper__text.--bg-secondary h5, .wrapper__text.--bg-secondary h6 {
  color: var(--primary-color);
}

:root {
  --text-font: futura-pt, sans-serif;
  --title-font: auster, sans-serif;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.5s ease;
}

[class*=btn-outline-] {
  background-color: transparent;
  border: 2px solid #333;
  color: #333;
}

.btn-big {
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  border-radius: 35px;
}

.--border-wave {
  --mask: radial-gradient(29.07px at 50% 39px, #000 99%, #0000 101%) calc(50% - 26px) 0/52px 51% repeat-x,
  radial-gradient(29.07px at 50% -26px, #0000 99%, #000 101%) 50% 13px/52px calc(51% - 13px) repeat-x,
  radial-gradient(29.07px at 50% calc(100% - 39px), #000 99%, #0000 101%) 50% 100%/52px 51% repeat-x,
  radial-gradient(29.07px at 50% calc(100% + 26px), #0000 99%, #000 101%) calc(50% - 26px) calc(100% - 13px)/52px calc(51% - 13px) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  /*
  Above is shorthand for:
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  border-bottom-right-radius: 225px 15px;
  border-bottom-left-radius:15px 255px;
  */
}

/* Waves Animation start*/
.with-waves {
  position: relative;
  padding-top: clamp(100px, 15vh, 150px);
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}
.with-waves:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 6rem;
}
.with-waves.bg-primary:after {
  background-color: var(--primary-color);
}
.with-waves.bg-secondary:after {
  background-color: var(--secondary-color);
}
.with-waves.bg-white:after {
  background-color: var(--white);
}
.with-waves.bg-third:after {
  background-color: var(--third-color);
}

footer .with-waves {
  margin-bottom: 0;
  padding-bottom: 2rem;
}
footer .with-waves:after {
  height: 0;
  position: static;
  content: unset;
}

.waves-area {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
.waves-area + div {
  margin-top: -120px;
}

.waves {
  position: absolute;
  width: 100%;
  height: clamp(75px, 15vh, 120px);
  min-height: 75px;
  max-height: 120px;
  bottom: 0;
  left: 0;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
/* Waves Animation end*/
.nav-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 10;
}
.nav-wrapper svg {
  max-width: 200px;
  max-height: 120px;
  padding: 1rem;
}

.is-mobile .nav-wrapper svg {
  display: none;
}

#page__landing {
  height: clamp(350px, 20vh, 400px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page__landing > img {
  width: 100%;
  height: auto;
  aspect-ratio: 5.4857142857;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
#page__landing.--small {
  height: clamp(120px, 20vh, 200px);
}

.page__landing__title {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.8rem, 6vw + 1rem, 3rem);
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 3.2rem;
}
.page__landing__title small {
  font-family: var(--text-font);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}

.custom-fa, .is-mobile .nav-expand-link::after, .is-mobile .nav-expand-content .nav-back-link::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.is-desktop #ham {
  display: none;
}
.is-desktop #main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: var(--primary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: auster, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.is-desktop #main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.is-desktop #main-nav .nav-level-1 {
  display: flex;
  height: 100%;
  position: relative;
}
.is-desktop #main-nav .nav-level-1 > .nav-item > .nav-link {
  display: inline-block;
  padding: 1rem;
  color: #fff;
}
.is-desktop #main-nav .nav-level-1 > .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-desktop #main-nav .nav-level-1 .nav-expand:hover .nav-expand-content {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.is-desktop #main-nav .nav-level-1 .nav-expand:hover .nav-expand-content .nav-link {
  color: var(--white);
  padding: 2rem;
  display: inline-block;
}
.is-desktop #main-nav .nav-item:hover, .is-desktop #main-nav .nav-item.active, .is-desktop #main-nav .nav-item.selected {
  background: var(--primary-color-dark);
}
.is-desktop #main-nav .nav-item:hover > ul, .is-desktop #main-nav .nav-item.active > ul, .is-desktop #main-nav .nav-item.selected > ul {
  background: var(--primary-color-dark);
}
.is-desktop #main-nav .nav-item.--vss:hover, .is-desktop #main-nav .nav-item.--vss.active, .is-desktop #main-nav .nav-item.--vss.selected {
  background: var(--vss-primary);
}
.is-desktop #main-nav .nav-item.--vss:hover > ul, .is-desktop #main-nav .nav-item.--vss.active > ul, .is-desktop #main-nav .nav-item.--vss.selected > ul {
  background: var(--gradientvss);
}
.is-desktop #main-nav .nav-item.--vsv:hover, .is-desktop #main-nav .nav-item.--vsv.active, .is-desktop #main-nav .nav-item.--vsv.selected {
  background: var(--vsv-primary);
}
.is-desktop #main-nav .nav-item.--vsv:hover > ul, .is-desktop #main-nav .nav-item.--vsv.active > ul, .is-desktop #main-nav .nav-item.--vsv.selected > ul {
  background: var(--gradientvsv);
}
.is-desktop #main-nav .nav-expand-content {
  display: none;
}

/**
 * Navigation Mobile
 * < 768px
 */
.is-mobile #ham {
  display: block;
}
.is-mobile .nav-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.is-mobile .nav-top {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 101;
  padding: 10px 20px;
  width: 100%;
  height: 50px;
  background-color: #02207d;
}
.is-mobile .nav-top .hamburger {
  color: #fff;
  cursor: pointer;
}
.is-mobile .nav-drill {
  margin-top: 50px;
  transform: translateX(-100%);
}
.is-mobile.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.is-mobile.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}

.is-mobile .nav-drill {
  display: flex;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
}
.is-mobile .nav-items {
  flex: 0 0 100%;
}
.is-mobile .nav-item:not(:last-child) {
  border-bottom: solid 1px #b3c5fe;
}
.is-mobile .nav-link {
  display: block;
  padding: 0.875em 1em;
  background-color: #fff;
  color: rgb(3, 45, 175);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300;
}
.is-mobile .nav-expand-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: #b3c5fe;
  transition: 0.3s;
  visibility: hidden;
}
.is-mobile .nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px rgb(3, 45, 175);
}
.is-mobile .nav-expand-content .nav-link {
  background-color: #b3c5fe;
}
.is-mobile .nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: var(--primary-color) !important;
  color: #fff;
}
.is-mobile .nav-expand-content .nav-back-link::before {
  content: "\f053";
  margin-right: 0.5em;
}
.is-mobile .nav-expand-link {
  display: flex;
  justify-content: space-between;
}
.is-mobile .nav-expand-link::after {
  content: "\f054";
  flex: 0 1 auto;
}
.is-mobile .nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
.is-mobile .nav-expand .nav-expand-content {
  background-color: #b3c5fe;
}
.is-mobile .nav-expand .nav-expand-content .nav-link {
  background-color: #b3c5fe;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content {
  background-color: #819ffd;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content .nav-link {
  background-color: #819ffd;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #4f79fc;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #4f79fc;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: #1d53fb;
}
.is-mobile .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
  background-color: #1d53fb;
}

.content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.content__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.grid__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6rem;
}

.solistes__wrapper .grid__item {
  width: clamp(350px, 20%, 400px);
}
.solistes__wrapper .item__wrapper {
  background-color: var(--vss-primary);
  margin: 1rem;
  padding: 1rem;
  display: block;
}
.solistes__wrapper .item__wrapper .title {
  color: var(--white);
  display: block;
  font-size: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
}
.solistes__wrapper .item__wrapper .role {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  text-align: right;
}
.solistes__wrapper .wrapper__resa {
  text-align: center;
  margin: 2rem 0;
}
.solistes__wrapper .wrapper__resa .btn i {
  margin-right: 0.5rem;
  transform: rotate(-10deg);
}
.solistes__wrapper .filter-button.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color) !important;
  color: var(--white) !important;
}

.is-mobile .solistes__wrapper .grid__item {
  width: 100%;
}

.events__wrapper .grid__item {
  width: 100%;
}
.events__wrapper .item__wrapper {
  background: var(--gradientvsv);
  margin: 1rem;
  padding: 1rem;
  display: flex;
}
.events__wrapper .item__wrapper .item__inside {
  display: flex;
  width: 100%;
  background-color: var(--white);
}
.events__wrapper .item__wrapper .title {
  color: var(--white);
  display: block;
  font-size: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
}
.events__wrapper .item__wrapper .role {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  text-align: right;
}

.soliste__card__wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.soliste__card {
  width: clamp(400px, 20%, 600px);
  padding: 2rem 1.5rem;
  display: block;
}
.soliste__card.--vss {
  background: var(--gradientvss);
}
.soliste__card.--vss .event {
  color: var(--vss-primary);
  border-color: var(--vss-primary);
}
.soliste__card.--vsv {
  background: var(--gradientvsv);
}
.soliste__card.--vsv .event {
  color: var(--vsv-primary);
  border-color: var(--vsv-primary);
}
.soliste__card .card-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  border-radius: 20px;
  place-items: center;
  background: var(--white);
  padding: 1rem;
}
.soliste__card .card-content > * {
  display: block;
}
.soliste__card .event {
  grid-column: span 4/span 4;
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 35px);
  white-space: nowrap;
  border-bottom: 1px solid var(--black);
}
.soliste__card .name {
  grid-column: span 4/span 4;
  grid-row-start: 2;
  font-family: var(--title-font);
  font-size: 1.5rem;
}
.soliste__card .date {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-row-start: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.soliste__card .date span {
  display: block;
}
.soliste__card .date .day {
  font-size: 2.5rem;
}
.soliste__card .date .month {
  font-size: 1.5rem;
}
.soliste__card .date .year {
  font-size: 1.5rem;
}
.soliste__card .hour {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 3;
  font-size: 2rem;
  font-weight: 700;
}
.soliste__card .address {
  grid-column: span 4/span 4;
  grid-row-start: 5;
  text-transform: uppercase;
}

.soliste__content {
  margin-top: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.soliste__content .name {
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.soliste__content .type {
  text-transform: capitalize;
  font-size: 1.5rem;
}
.soliste__content .social-media {
  justify-content: start;
  margin: 2rem 0;
}

.footer__logo {
  width: clamp(120px, 20vw, 200px);
  margin: 0 auto;
}

.footer__content {
  margin-top: 2rem;
  border-top: 2px solid var(--white);
}

.footer__baseline {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin: 2rem 0;
}

footer .social-media {
  font-size: 3rem;
  justify-content: center;
  gap: 2rem;
  margin: 2rem;
}
footer .social-media .social-media__link {
  color: var(--white);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem;
}
.footer__links .footer__link {
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.5s ease;
}
.footer__links .footer__link:hover {
  background-color: var(--white);
  color: var(--black);
}

.footer__bottom {
  text-align: center;
  color: var(--white);
}
.footer__bottom a {
  color: var(--white);
}

.is-mobile .mobile-only {
  display: block;
}
.is-mobile .desktop-only {
  display: none;
}

.is-desktop .desktop-only {
  display: block;
}
.is-desktop .mobile-only {
  display: none;
}

body.is-mobile::after {
  content: "";
  position: absolute;
  z-index: 99;
  background-color: rgba(2, 32, 125, 0.8);
  height: 100vh;
  width: 100%;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.v-middle {
  vertical-align: middle;
}

.container-max {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: clamp(90%, 90vw, 1400px);
  margin: 0 auto;
  max-width: 1400px;
}

.container-small {
  width: clamp(70%, 70vw, 800px);
  margin: 0 auto;
  max-width: 800px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.-grid {
  width: 100%;
}

.wrapper__filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
}
.social-media .social-media__link {
  color: var(--black);
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
