@keyframes typing {
  0% {
    width: 0;
    opacity: 0;
  }
}
.nav {
  background: #F2EFEF;
  padding: 25px 52px !important;
}
@media screen and (max-width: 991px) {
  .nav {
    padding: 60px 52px !important;
  }
}
.nav nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .nav nav {
    justify-content: center;
  }
}
.nav nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.nav nav .logo a:nth-child(1) img {
  width: 115px;
}
.nav nav .phone_number {
  position: relative;
}
@media screen and (max-width: 991px) {
  .nav nav .phone_number {
    display: none;
  }
}
.nav nav .phone_number .dropdown-arrow {
  width: 250px;
  position: absolute;
  bottom: -45px;
  left: -150px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  font-weight: 400;
  font-size: 20px;
  font-family: "Annie Use Your Telescope", cursive;
  color: #FF6969;
  text-align: center;
}
.nav nav .phone_number .dropdown-arrow img {
  width: 17px;
}

footer {
  background: #F2EFEF;
}
footer #footer {
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  padding: 144px 0;
  width: 100%;
  background: #262525;
}
footer #footer #footer_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer #footer #footer_content #write {
  font-family: "Annie Use Your Telescope", cursive;
  color: white;
  white-space: pre-wrap;
  text-align: center;
  font-size: 32px;
  line-height: 100%;
}
@media screen and (max-width: 991px) {
  footer #footer #footer_content #write {
    font-size: 20px;
  }
}
footer #footer #footer_content #logo_bownling {
  width: 205px;
}
footer #footer #footer_content .writing {
  color: white;
  white-space: pre-wrap;
}
footer #footer #footer_content .paragraph {
  color: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --swiper-theme-color: #D83130 !important;
}

body .buttons {
  background: #FF6969;
  font-weight: 400;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}
body .buttons--border {
  background: transparent;
  border: 2px solid #FF6969;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Anton", sans-serif;
  font-size: 20px;
}
body .buttons--border:hover {
  background: #FF6969;
  color: #FFFFFF;
}
body .buttons:hover {
  background: #D83130;
}
body h1, body h2, body h3, body h4, body h5, body h6, body p {
  margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Anton", sans-serif;
}
body .main {
  color: #D83130;
}
body .secondary {
  color: #FD6160;
}
body .quille {
  background: url("/image/icons/quille.svg") no-repeat;
  display: block;
  width: 100px;
  height: 125px;
  animation: quille 1s steps(3) infinite;
}
@keyframes quille {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
body .paragraph {
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 991px) {
  body .paragraph {
    font-size: 15px;
  }
}
body .writing, body .writing--delayed {
  width: fit-content;
  overflow: hidden;
  position: relative;
  font-family: "Annie Use Your Telescope", cursive !important;
  font-size: 32px;
  line-height: 100%;
  opacity: 0;
  transition: opacity 1ms;
}
body .writing.aos-animate, body .writing--delayed.aos-animate {
  opacity: 1;
}
body .writing.aos-animate > *, body .writing--delayed.aos-animate > * {
  animation: typing 2s steps(22) 0s;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
body .writing.aos-animate:after, body .writing--delayed.aos-animate:after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% + 3px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  border-right: 3px solid inherit;
}
body main {
  min-height: 100vh;
  background: #F2EFEF;
}
body#page_home main .head_banner {
  color: black;
  padding-top: 80px;
}
@media screen and (max-width: 991px) {
  body#page_home main .head_banner {
    padding: 0 16px;
  }
}
body#page_home main .head_banner .container .arrow {
  display: none;
}
@media screen and (max-width: 991px) {
  body#page_home main .head_banner .container .arrow {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  body#page_home main .head_banner .container .arrow img {
    rotate: -60deg;
  }
  body#page_home main .head_banner .container .arrow .write {
    font-family: "Annie Use Your Telescope", cursive;
    font-size: 20px;
    color: #FD6160;
    text-align: center;
    margin-bottom: 20px;
  }
}
body#page_home main .head_banner .container .head {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
body#page_home main .head_banner .container .head #text {
  position: relative;
  width: fit-content;
}
body#page_home main .head_banner .container .head #text .presentation {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: black;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  body#page_home main .head_banner .container .head #text .presentation {
    font-size: 14px;
  }
}
body#page_home main .head_banner .container .head #text h1 {
  font-weight: 400;
  font-size: 40px;
  font-family: "Anton", sans-serif;
  color: black;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body#page_home main .head_banner .container .head #text h1 {
    font-size: 24px;
  }
}
body#page_home main .head_banner .container .head #text:before {
  content: "";
  position: absolute;
  background: url("/image/cry_home.svg") no-repeat;
  background-size: contain;
  width: 28px;
  height: 22px;
  left: -24px;
  top: -12px;
}
@media screen and (min-width: 576px) {
  body#page_home main .head_banner .container .head #text:before {
    left: -23px;
    top: -15px;
  }
}
@media screen and (min-width: 768px) {
  body#page_home main .head_banner .container .head #text:before {
    left: -34px;
    top: 4px;
    width: 44px;
    height: 44px;
  }
}
@media screen and (min-width: 992px) {
  body#page_home main .head_banner .container .head #text:before {
    left: -40px;
    top: initial;
  }
}
@media screen and (min-width: 1200px) {
  body#page_home main .head_banner .container .head #text:before {
    left: -35px;
    top: initial;
  }
}
body#page_home main .head_banner .container .head #text:after {
  content: "";
  position: absolute;
  background: url("/image/cry_home2.svg") no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  bottom: -17px;
  right: 12px;
}
@media screen and (min-width: 768px) {
  body#page_home main .head_banner .container .head #text:after {
    width: 44px;
    height: 44px;
    bottom: -24px;
    right: 6px;
  }
}
body#page_home main .head_banner .container .head #video {
  background: #F2EFEF;
  border-radius: 30px;
  margin-bottom: 60px;
  width: 100%;
  height: 590px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  body#page_home main .head_banner .container .head #video {
    margin-bottom: 30px;
    height: 55vw;
  }
}
body#page_home main #strike {
  background: #262525;
  padding: 144px 20px;
}
@media screen and (max-width: 991px) {
  body#page_home main #strike {
    padding: 60px 16px;
  }
}
body#page_home main #strike .container .row .col-lg-7 .strike_content {
  color: #FFFFFF;
  font-size: 80px;
  font-family: "Anton", sans-serif;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content {
    font-size: 50px;
    line-height: 130%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content {
    font-size: 40px;
  }
}
body#page_home main #strike .container .row .col-lg-7 .strike_content div {
  display: flex;
  gap: 20px;
  line-height: 120%;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content div {
    justify-content: center;
  }
}
body#page_home main #strike .container .row .col-lg-7 .strike_content .bigger {
  font-size: 96px;
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content .bigger {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content .bigger {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-7 .strike_content .quille {
    display: none;
  }
}
body#page_home main #strike .container .row .col-lg-5 h2 {
  font-family: "Annie Use Your Telescope", cursive;
}
body#page_home main #strike .container .row .col-lg-5 .information {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body#page_home main #strike .container .row .col-lg-5 .information .circle {
  display: none;
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-5 .information .circle {
    align-self: end;
    display: block;
  }
}
@media screen and (max-width: 991px) {
  body#page_home main #strike .container .row .col-lg-5 .information .ecran {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}
body#page_home main #strike .container .row .col-lg-5 .information .ecran .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0px;
}
body#page_home main #strike .container .row .col-lg-5 .information .ecran .quille {
  width: 70px;
  height: 100px;
  background-size: contain;
}
@media screen and (min-width: 991px) {
  body#page_home main #strike .container .row .col-lg-5 .information .ecran .quille {
    display: none;
  }
}
body#page_home main #strike .container .row .col-lg-5 .information div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
}
body#page_home main #chiffre {
  padding: 144px 0;
}
@media screen and (max-width: 991px) {
  body#page_home main #chiffre {
    padding: 60px 16px;
  }
}
body#page_home main #chiffre .container .row .chiffre_content {
  position: relative;
  border: 10px solid #FD6160;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  body#page_home main #chiffre .container .row .chiffre_content {
    border: none;
    padding: 0;
  }
}
body#page_home main #chiffre .container .row .chiffre_content #chiffre_header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#page_home main #chiffre .container .row .chiffre_content #chiffre_header p {
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 32px;
  color: #262525;
  text-align: center;
  margin-left: 260px;
}
@media screen and (max-width: 991px) {
  body#page_home main #chiffre .container .row .chiffre_content #chiffre_header p {
    margin-left: 70px;
    font-size: 25px;
  }
}
body#page_home main #chiffre .container .row .chiffre_content h2 {
  text-align: center;
  text-transform: uppercase;
  color: #FD6160;
  font-size: 48px;
}
@media screen and (max-width: 991px) {
  body#page_home main #chiffre .container .row .chiffre_content h2 {
    font-size: 36px;
  }
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  body#page_home main #chiffre .container .row .chiffre_content .chiffre_container {
    --bs-gutter-y: 30px;
  }
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item #eye {
  background: url("/image/icons/eyes.svg") no-repeat;
  width: 86px;
  height: 46px;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item #visitors {
  background: url("/image/icons/visitors.svg") no-repeat;
  width: 38px;
  height: 45px;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item #chrono {
  background: url("/image/icons/chrono.svg") no-repeat;
  width: 69px;
  height: 88px;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item #plus {
  background: url(/image/icons/cross.svg) no-repeat;
  width: 70px;
  left: 17px;
  position: relative;
  top: -14px;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers {
  font-family: "Anton", sans-serif;
  font-size: 48px;
  color: #FD6160;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers {
    font-size: 36px;
  }
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number#trentem, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers#trentem {
  line-height: 124%;
}
@media screen and (max-width: 1199px) {
  body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number#trentem, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers#trentem {
    line-height: 160%;
  }
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number .smaller, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers .smaller {
  font-size: 15px;
  color: #FD6160;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number .medium, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers .medium {
  font-size: 24px;
  color: #FD6160;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .number .outline, body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .numbers .outline {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
  color: transparent;
  font-size: 96px;
  line-height: 110px;
}
body#page_home main #chiffre .container .row .chiffre_content .chiffre_container .chiffre_item .subline {
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 24px;
  color: #262525;
  text-align: center;
}
body#page_home main #cible {
  display: flex;
  padding: 60px 0;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible {
    padding: 60px 16px 0;
  }
}
body#page_home main #cible .swipper_container {
  padding-top: 60px;
}
body#page_home main #cible .col-lg-7 .swiper .swiper-wrapper .swiper-slide, body#page_home main #cible .col-lg-7 .swipper_container .swiper-wrapper .swiper-slide {
  padding: 0 10px;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
body#page_home main #cible .col-lg-7 .swiper .swiper-wrapper .swiper-slide img, body#page_home main #cible .col-lg-7 .swipper_container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
body#page_home main #cible .col-lg-5 .cible_text {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible .col-lg-5 .cible_text {
    padding-top: 60px;
  }
}
body#page_home main #cible .col-lg-5 .cible_text #hit {
  background: url("/image/icons/hit.svg") no-repeat;
  width: 126px;
  height: 126px;
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #multiplie:before {
  content: "";
  position: absolute;
  background: url("/image/cry_home3.svg") no-repeat;
  background-size: contain;
  width: 44px;
  height: 44px;
  left: -32px;
  top: -21px;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #multiplie:before {
    width: 28px;
    height: 28px;
    left: -23px;
    top: -14px;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content h2 {
  font-size: 48px;
  color: #FD6160;
  text-align: left;
  font-family: "Anton", sans-serif;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content h2 {
    font-size: 32px;
    text-align: left;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content .content .paragraph {
  max-width: 500px;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content .content .paragraph {
    max-width: none;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage {
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 32px;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage {
    gap: 2px;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage .avantage_item {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage .avantage_item {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage .avantage_item {
    gap: 2px;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross1, body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross2, body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross3 {
  display: block;
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross1 {
  background: url("/image/icons/cross1.svg") no-repeat;
  width: 21px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross1 {
    background: url("/image/icons/mbcross.svg") no-repeat;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross2 {
  background: url("/image/icons/cross2.svg") no-repeat;
  width: 19px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross2 {
    background: url("/image/icons/mbcross2.svg") no-repeat;
  }
}
body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross3 {
  background: url("/image/icons/cross3.svg") no-repeat;
  width: 22px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  body#page_home main #cible .col-lg-5 .cible_text .cible_content #avantage #cross3 {
    background: url("/image/icons/mbcross3.svg") no-repeat;
  }
}
body#page_home main #spot {
  padding: 60px 0 144px;
  position: relative;
}
@media screen and (max-width: 991px) {
  body#page_home main #spot {
    padding: 60px 16px;
  }
}
@media screen and (max-width: 991px) {
  body#page_home main #spot #bar {
    display: none;
  }
}
body#page_home main #spot .col-lg-5:nth-child(1) #spots {
  position: relative;
}
body#page_home main #spot .col-lg-5:nth-child(1) #spots:after {
  content: "";
  position: absolute;
  background: url("/image/cry_home.svg") no-repeat;
  background-size: contain;
  width: 28px;
  height: 22px;
  left: 8px;
  top: -18px;
}
@media screen and (max-width: 768px) {
  body#page_home main #spot .col-lg-5:nth-child(1) #spots:after {
    left: 8px;
    top: -18px;
  }
}
@media screen and (min-width: 992px) {
  body#page_home main #spot .col-lg-5:nth-child(1) #spots:after {
    left: -40px;
    top: -30px;
    width: 44px;
    height: 44px;
  }
}
@media screen and (min-width: 1200px) {
  body#page_home main #spot .col-lg-5:nth-child(1) #spots:after {
    left: -40px;
    top: -30px;
  }
}
body#page_home main #spot .col-lg-5:nth-child(1) #spots:before {
  content: "";
  position: absolute;
  background: url("/image/cry_home2.svg") no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  bottom: -12px;
  right: -34px;
}
@media screen and (min-width: 992px) {
  body#page_home main #spot .col-lg-5:nth-child(1) #spots:before {
    width: 44px;
    height: 44px;
    bottom: -14px;
    right: -33px;
  }
}
body#page_home main #spot .col-lg-5 .spot-content {
  margin-bottom: 20px;
}
body#page_home main #spot .spot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body#page_home main #spot .spot-content {
    gap: 10px;
  }
}
body#page_home main #spot .spot-content h2 {
  font-size: 48px;
  color: #FD6160;
  text-align: center;
  font-family: "Anton", sans-serif;
}
@media screen and (max-width: 991px) {
  body#page_home main #spot .spot-content h2 {
    font-size: 32px;
  }
}

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