/* @import url("https://fonts.googleapis.com/css2?family=Poppins: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"); */
@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: "Bell MT";
  src: url("/assets/font/Bell MT") format("ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Bell MT";
  src: url("/assets/font/BELLB") format("ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Bell MT";
  src: url("/assets/font/BELLI") format("ttf");
  font-weight: italic;
}
@layer base {
  html {
    font-family: "Bell MT";
  }
}
.text-text_title::after {
  /* content: "";
  position: relative;
  display: inline-block;
  background-image: url("/assets/svg/icone_bsl.svg");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  margin-left: 10px;
  width: 50px;
  height: 50px; */
}
.text-text_title {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  max-width: fit-content;
}
.text-text_title::before {
  /* content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% - 50px);
  height: 5px;
  margin-top: 10px;

  background-color: #877E83; */
}

.caps::before {
  content: "";
  display: block;
  background-image: url("/assets/svg/caps.svg");
  background-size: 200px 200px;
  width: 200px;
  height: 150px;
}
.caps::after {
  content: "";
  display: block;
  width: 200px;
  height: 10px;
  margin-top: 10px;
  background-color: #ffcc33;
}

.section {
  padding: 40px;
}
.hauteur_min {
  min-height: 700px;
}
.menu-item::after {
  content: "";
  position: absolute;
  display: inline;
  width: 0;
  border-radius: 10px;
  background-color: #921243;
  height: 5px;
  transition: all;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.menu-item:hover {
  &::after {
    width: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
  }
}
.menu-item_active::after {
  content: "";
  position: absolute;
  display: inline;
  border-radius: 10px;
  background-color: #921243;
  height: 5px;
  transition: all;
  width: 100%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.title_arrow::before {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  margin-left: -4vw;
  margin-top: -8vw;
  width: 270px;
  height: 290px;
  background-image: url("/assets/svg/fleche.svg");
}

.secion_border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 10%;
  border-radius: 0 10px 10px 0;
  height: 10px;
  background-color: #921243;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.secion_border:hover {
  &::after {
    width: 50%;
    transition: width 0.3s ease, background-color 0.7s ease;
  }
}
@media (max-width: 720px) {
  .title_arrow::before {
    width: 150px;
    height: 100px;
    margin-top: 0;
  }
}
