:root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}

@font-face {
  font-family: "almendra-bold";
  src: url("./assets/fonts/almendra-bold-webfont.woff2");
}
@font-face {
  font-family: "lancelot";
  src: url("./assets/fonts/lancelot-regular-webfont.woff2");
}
@font-face {
  font-family: "sora";
  src: url("./assets/fonts/sora-variablefont_wght-webfont.woff2");
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--whiteText);
  font-family: "sora", sans-serif;
}

.container {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  padding-inline: 1rem;
}

a {
  text-decoration: none;
  color: var(--whiteText);
}

.button {
  background-color: var(--purple);
  width: fit-content;
  padding: 0.7rem;
  font-size: 1rem;
  color: var(--whiteText);
  transition: 0.3s ease;
}
.button:hover {
  background-color: var(--purplelight);
}

.header {
  height: 70vh;
}
.header__bgcover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.header__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 80vh;
  background-color: var(--overlayHeader);
}

.otherPageHeader {
  height: 40vh;
  background-position: 50% 42%;
  background-size: cover;
}
.otherPageHeader__overlay {
  width: 100%;
  height: 100%;
  background-color: var(--overlayOtherPage);
  display: flex;
  align-items: center;
}
.otherPageHeader__overlay_container_mytext {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.h1Style {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "almendra-bold";
}

.h2Style {
  font-size: 2rem;
  font-family: "almendra-bold";
}

.h3Style {
  font-size: 1.5rem;
  font-family: "lancelot";
}

.sectionTitle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sectionSubText {
  width: 80%;
  font-size: 1rem;
}

.paddingForAllSection {
  padding: 10rem 0;
}

.nav__ul {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}
.nav__ul .menu-item {
  padding: 0.5rem;
  transition: 0.5s ease;
}
.nav__ul .menu-item:hover {
  background-color: var(--activeItemHover);
  border-radius: 5px;
  transform: scale(1.1);
}
.nav__ul .current-menu-item {
  background-color: var(--activeItemMenu);
  border-radius: 5px;
}

.footer__overlay_scrollUp {
  position: fixed;
  right: 35px;
  bottom: -100px;
  font-size: 3rem;
  transition: 0.5s ease;
}
.footer__overlay_scrollUp:hover {
  transform: scale(1.2);
}

.fi_displayNone {
  display: none;
}

.fi_displayBlock {
  display: block;
}

.fi_isActive {
  opacity: 1 !important;
}

.fi_notActive {
  opacity: 0;
}

.is_selected {
  opacity: 1 !important;
  filter: grayscale(0) !important;
}

.breadcrumb {
  text-decoration: underline;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.slick-dots li button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: none;
  background-color: var(--darkGrey);
  cursor: pointer;
  font-size: 0;
}
.slick-dots li.slick-active button {
  background-color: var(--activebtnslider);
}

@media screen and (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
  }
  .h1Style {
    font-size: 5rem;
    font-weight: bold;
    font-family: "almendra-bold";
  }
  .h2Style {
    font-size: 3rem;
    font-family: "almendra-bold";
  }
  .h3Style {
    font-size: 2rem;
    font-family: "lancelot";
  }
}
.navigation__hamburger_icon {
  position: fixed;
  font-size: 3rem;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  cursor: pointer;
}
.navigation__hamburger_navigation {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark);
  z-index: 5;
}
.navigation__hamburger_navigation_logo {
  display: flex;
  justify-content: flex-start;
}
.navigation__hamburger_navigation_logo img {
  height: 3rem;
}
.navigation__hamburger_navigation_nav {
  text-align: center;
}
.navigation__hamburger_navigation_nav_ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem;
}

.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  font-size: 2rem;
}

.navigation {
  display: none;
}

@media screen and (min-width: 1200px) {
  .myNavbar {
    position: absolute;
    top: 2rem;
    z-index: 10;
    width: 100%;
  }
  .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  .navigation__logo {
    display: flex;
    justify-content: flex-start;
  }
  .navigation__logo img {
    height: 3rem;
  }
  .navigation__hamburger {
    display: none;
  }
}
.footer {
  border-top: 1px solid var(--whiteText);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 30% right 50%;
}
.footer__overlay {
  background-color: var(--overlayfooter);
  backdrop-filter: blur(5px);
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer__overlay_container {
  display: flex;
  flex-direction: column;
}
.footer__overlay_container_myNavbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__overlay_container_myNavbar_logo_img {
  height: 4rem;
}
.footer__overlay_copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  height: 3rem;
}

@media screen and (max-width: 1200px) {
  .footer__overlay_container_myNavbar {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  footer .nav__ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.home :root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}
.home .header {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}
.home .header__overlay {
  backdrop-filter: blur(2px);
  height: 100%;
}
.home .header__overlay_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .header__overlay_text_container {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.home .header__overlay_text_container_mytext {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home .header__overlay_text_container_mytext_subtitle {
  font-size: 1.2rem;
}
.home .header__overlay_text_container_link {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  background-color: var(--darkGrey);
  border: 1px solid var(--whiteText);
  border-radius: 5px;
  padding: 0.5rem;
  color: var(--whiteText);
  transition: 0.3s ease;
}
.home .header__overlay_text_container_link:hover {
  background-color: var(--darkGreyHover);
  transform: scale(1.03);
}
.home .header__overlay_text_container_img {
  width: 100%;
  filter: grayscale(1) !important;
}
@media screen and (min-width: 1200px) {
  .home .header__overlay_text_container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: start;
    align-items: flex-start;
  }
  .home .header__overlay_text_container_mytext {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 60%;
  }
  .home .header__overlay_text_container_mytext_subtitle {
    font-size: 1.2rem;
  }
  .home .header__overlay_text_container_link {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 2rem;
    width: fit-content;
    background-color: var(--darkGrey);
    border: 1px solid var(--whiteText);
    border-radius: 5px;
    padding: 0.5rem;
    color: var(--whiteText);
    transition: 0.3s ease;
  }
  .home .header__overlay_text_container_link:hover {
    background-color: var(--darkGreyHover);
    transform: scale(1.03);
  }
  .home .header__overlay_text_container_img {
    width: 40%;
    position: absolute;
    right: 0;
    filter: grayscale(1) !important;
  }
}
.home .sectionLeJeu__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.home .sectionLeJeu__container_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.home .sectionLeJeu__container_content_img {
  width: 100%;
  border-radius: 5% 30% 5% 30%;
}
.home .sectionLeJeu__container_content p {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .home .sectionLeJeu__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .home .sectionLeJeu__container_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.home :root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}
.home .sectionLeMonde {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home .sectionLeMonde__overlay {
  background-color: var(--overlay);
  backdrop-filter: blur(10px) grayscale(50%);
}
.home .sectionLeMonde__overlay_container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.home .sectionLeMonde__overlay_container_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.home .sectionLeMonde__overlay_container_ul_li {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home .sectionLeMonde__overlay_container_ul_li_text {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .home .sectionLeMonde__overlay_container_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home .sectionLeMonde__overlay_container_content_text {
    width: 100%;
  }
  .home .sectionLeMonde__overlay_container_ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home .sectionLeMonde__overlay_container_ul_li {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.home :root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}
.home .sectionLesEthnies__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.home .sectionLesEthnies__container_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.home .sectionLesEthnies__container_ul_li {
  transition: 0.5s ease;
}
.home .sectionLesEthnies__container_ul_li_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bgCard);
}
.home .sectionLesEthnies__container_ul_li_link_title {
  padding: 0.5rem;
}
.home .sectionLesEthnies__container_ul_li:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
  .home .sectionLesEthnies__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .home .sectionLesEthnies__container_ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
}
.home .sectionFI {
  background-color: var(--bgSectionFI);
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.home .sectionFI__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.home .sectionFI__container_FIs {
  display: flex;
  justify-content: space-between;
}
.home .sectionFI__container_FIs_mainContent {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.home .sectionFI__container_FIs_mainContentPhone {
  display: none;
}
.home .sectionFI__container_FIs_display {
  transition: all 0.5s;
}
.home .sectionFI__container_FIs_display_FI {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home .sectionFI__container_FIs_display_FI_line {
  width: 40%;
}
.home .sectionFI__container_FIs_display_FI_line--2 {
  width: 100%;
}
.home .sectionFI__container_FIs_display_FI_img {
  width: 40rem;
}
.home .sectionFI__container_FIs_display_FI_text {
  display: flex;
  gap: 2rem;
}
.home .sectionFI__container_FIs_display_selectColumn {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home .sectionFI__container_FIs_display_selectColumn_img {
  transition: all 0.5s;
  opacity: 0.6;
  width: 10rem !important;
  filter: grayscale(1);
}
.home .sectionFI__container_FIs_display_selectColumn_img:hover {
  cursor: pointer;
  transform: scale(0.95);
}
.home .sectionFI__container_FIs_display_selectColumn_icon {
  font-size: 2.5rem;
  position: absolute;
  z-index: 1;
}
.home .sectionFI__container_FIs_display_selectColumn_icon--down {
  top: 83%;
}
.home .sectionFI__container_FIs_display_selectColumn_icon:hover {
  cursor: pointer;
}
.home .sectionFI__slider_li_link {
  display: flex;
  justify-content: center;
  opacity: 0.6;
}
.home .sectionFI__slider_li li {
  width: 1rem;
  height: 1rem;
  border-radius: 50px;
  background-color: var(--darkGrey);
  cursor: pointer;
}
.home .sectionFI__slider_li li button {
  display: none;
}
.home .slick-list {
  height: 80% !important;
}
.home .slick-slide {
  padding: 0.5rem 0;
  display: flex !important;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .home .sectionFI {
    position: relative;
  }
  .home .sectionFI__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .home .sectionFI__container_content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    justify-content: center;
  }
  .home .sectionFI__container_FIs {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .home .sectionFI__container_FIs_mainContent {
    display: none;
  }
  .home .sectionFI__container_FIs_mainContentPhone {
    display: block;
    width: 100%;
  }
}
.home .sectionCreatures__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.home .sectionCreatures__container_content_text {
  display: flex;
  justify-content: flex-start;
}
.home .sectionCreatures__ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.home .sectionCreatures__ul_li {
  display: flex;
  justify-content: center;
  transition: all 0.5s;
}
.home .sectionCreatures__ul_li:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.home .sectionCreatures__ul_li--2 {
  grid-column: 3;
  grid-row: 1/span 2;
}
.home .sectionCreatures__ul_li_img--2 {
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .home .sectionCreatures__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  .home .sectionCreatures__container_content_text {
    justify-content: center;
  }
  .home .sectionCreatures__ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
}

.sectionLeMonde {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sectionLeMonde__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.sectionLeMonde__container_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.sectionLeMonde__container_content_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}

.sectionLeMonde__container_content_text_para {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sectionLeMonde__container_content_text_img {
  height: 25rem;
  border-radius: 30% 5%;
}

.sectionLeMonde__container_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.sectionLeMonde__container_ul_li {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sectionLeMonde__container_ul_li_text {
  font-size: 1rem;
}

@media screen and (max-width: 1200px) {
  .sectionLeMonde__container_content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .sectionLeMonde__container_content_text {
    width: 100%;
  }
  .sectionLeMonde__container_content_text_img {
    width: 100%;
    height: auto;
  }
  .sectionLeMonde__container_ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .sectionLeMonde__container_ul_li {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
:root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}

.sectionLeMonde__second {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.sectionLeMonde__second_overlay {
  background-color: var(--overlay);
  backdrop-filter: blur(20px);
}

.sectionCreatures__container_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 5rem;
}

.sectionCreatures__container_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sectionCreatures__container_ul_li {
  display: flex;
  justify-content: center;
  transition: all 0.5s;
}

.sectionCreatures__container_ul_li:hover {
  cursor: pointer;
  transform: scale(1.03);
}

.sectionCreatures__container_ul_li--2 {
  grid-column: 3;
  grid-row: 1/span 2;
}

.sectionCreatures__container_ul_li--4 {
  grid-column: 1;
  grid-row: 2/span 2;
}

.sectionCreatures__container_ul_li--6 {
  grid-column: 2/span 2;
}

.sectionCreatures__container_ul_li_img {
  object-fit: cover;
}

.sectionCreatures__container_ul_li_img--6 {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .sectionCreatures__container_ul {
    display: flex;
    flex-direction: column;
  }
}
:root {
  --dark: #030303;
  --whiteText:#fff;
  --darkGrey: rgba(255, 255, 255, 0.3);
  --darkGreyHover: rgba(255, 255, 255, 0.5);
  --overlayHeader: rgba(0, 0, 0, 0.4);
  --overlay: rgba(0, 0, 0, 0.75);
  --overlayfooter: rgba(0, 0, 0, 0.87);
  --overlayOtherPage: rgba(0, 0, 0, 0.8);
  --purple: #6F3089;
  --purplelight: #915ba8;
  --activeItemMenu: rgba(255, 255, 255, 0.15);
  --activeItemHover: rgba(255, 255, 255, 0.3);
  --bgCard: rgba(50, 48, 47, 0.7);
  --bgSectionFI: #171717;
  --activebtnslider: rgba(255, 255, 255, 0.84);
}

.ethniesPageSection__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.ethniesPageSection__container_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ethniesPageSection__container_ul_li {
  transition: 0.5s ease;
}

.ethniesPageSection__container_ul_li_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bgCard);
}

.ethniesPageSection__container_ul_li_link_title {
  padding: 0.5rem;
}

.ethniesPageSection__container_ul_li:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
  .ethniesPageSection__container_ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    justify-content: center;
    align-items: center;
  }
  .ethniesPageSection__container_ul_li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ethniesPageSection__container_ul_li_link {
    width: fit-content;
  }
}
.FIPageSection__container_FIs {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}

.FIPageSection__container_FIs_display {
  width: 80%;
  transition: all 0.5s;
}

.FIPageSection__container_FIs_display_selectColumn {
  display: flex;
  gap: 2rem;
}

.FIPageSection__container_FIs_display_selectColumn_img {
  width: 10rem;
  transition: all 0.5s;
  opacity: 0.6;
  filter: grayscale(1);
}

.FIPageSection__container_FIs_display_selectColumn_img:hover {
  cursor: pointer;
  transform: scale(0.95);
}

.FIPageSection__container_FIs_display_selectColumn_icon {
  font-size: 2.5rem;
  position: absolute;
  z-index: 1;
}

.FIPageSection__container_FIs_display_selectColumn_icon--down {
  top: 100%;
}

.FIPageSection__container_FIs_display_selectColumn_icon:hover {
  cursor: pointer;
}

.FIPageSection__container_FIs_display_FI {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.FIPageSection__container_FIs_display_FI_img {
  width: 60%;
  object-fit: cover;
}

.FIPageSection__container_FIs_display_FI_thetext {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.FIPageSection__container_FIs_display_FI_line {
  width: 30%;
}

.FIPageSection__container_FIs_display_FI_line--2 {
  width: 60%;
}

.FIPageSection__container_FIs_display_FI_text {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.FIPageSection__container_FIs_display_FI_text p {
  text-align: left;
}

.FIPageSection__container_FIs_display_FI_btn {
  display: flex;
  align-items: center;
  position: absolute;
  left: 40rem;
}

.FIPageSection__container_FIs_display_FI_icon {
  font-size: 2.5rem;
}

.FIPageSection__container_FIs_display_FI_Ethnietext {
  display: flex;
  gap: 2rem;
}

.FIPageSection__container_FIs_mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15%;
  position: relative;
}

.FIPageSection__container_FIs_mainContentPhone {
  display: none;
}

@media screen and (max-width: 1200px) {
  .FIPageSection__container_FIs {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .FIPageSection__container_FIs_mainContent {
    display: none;
  }
  .FIPageSection__container_FIs_mainContentPhone {
    display: block;
    width: 100%;
  }
  .FIPageSection__container_FIs_display {
    width: 100%;
  }
  .FIPageSection__container_FIs_display_FI_text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }
  .FIPageSection__container_FIs_display_FI_text p {
    text-align: center;
  }
  .FIPageSection__container_FIs_display_FI_btn {
    position: static;
  }
  .FIPageSection__container_FIs_display_FI_thetext {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  .FIPageSection__container_FIs_display_FI_img {
    width: 100%;
  }
}
.gamePageSection__container_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gamePageSection__container_content_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}

.gamePageSection__container_content_text_video {
  width: 40%;
}

.gamePageSection__second {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gamePageSection__second_overlay {
  background-color: var(--overlayfooter);
  backdrop-filter: blur(5px);
}

.gamePageSection__second_overlay_container_content {
  display: flex;
  justify-content: space-between;
}

.gamePageSection__second_overlay_container_content_title {
  width: 40%;
}

.gamePageSection__second_overlay_container_content_text {
  width: 40%;
}

.gamePageSection__third_container {
  height: 100%;
}

.gamePageSection__third_container_content {
  display: flex;
  gap: 3rem;
}

.gamePageSection__third_container_content_imgL {
  width: 35%;
  height: 25rem;
  object-fit: cover;
}

.gamePageSection__third_container_content_imgR {
  width: 65%;
  height: 25rem;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .gamePageSection__container_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .gamePageSection__container_content_text {
    width: 100%;
  }
  .gamePageSection__container_content_text_video {
    width: 100%;
  }
  .gamePageSection__second_overlay_container_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  .gamePageSection__second_overlay_container_content_title {
    width: 100%;
  }
  .gamePageSection__second_overlay_container_content_text {
    width: 100%;
  }
  .gamePageSection__third_container_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .gamePageSection__third_container_content_imgL {
    width: 100%;
  }
  .gamePageSection__third_container_content_imgR {
    width: 100%;
  }
}
.main__ethnie_contain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
}

.main__ethnie_contain_content {
  display: flex;
  gap: 5rem;
}

.main__ethnie_contain_content_img {
  border-radius: 0 0 50% 3%;
  width: 25rem;
}

.main__ethnie_contain_content_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main__ethnie_contain_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main__pays_contain {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.main__pays_contain_content {
  display: flex;
  gap: 5rem;
}

.main__pays_contain_content_img {
  width: 30rem;
  height: auto;
  border-radius: 40% 5% 40% 5%;
}

.main__pays_contain_history {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main__pays_contain_illustrations {
  display: flex;
  gap: 3rem;
}

.main__pays_contain_illustrations_imgL {
  width: 35%;
  height: 25rem;
  object-fit: cover;
}

.main__pays_contain_illustrations_imgR {
  width: 65%;
  height: 25rem;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .main__pays_contain_content {
    flex-direction: column;
  }
  .main__pays_contain_content_img {
    width: 100%;
  }
  .main__pays_contain_illustrations {
    flex-direction: column;
  }
  .main__pays_contain_illustrations_imgL {
    width: 100%;
  }
  .main__pays_contain_illustrations_imgR {
    width: 100%;
  }
  .main__ethnie_contain_content {
    flex-direction: column;
  }
}

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