:root {
  --theme_color: #008D8C;
  /* remplace $theme_color */
  --dark_color: #026160;
  /* remplace $dark_color */
  --teal: #0e8d88;
  --teal-600: #0b6f6b;
  --teal-50: #e7f6f5;
  --ink: #0f172a;
  --muted: #5b616e;
  --bg: #f5f7f8;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
}


.plik {
  background-position: center;
  background-size: contain;
  background-image: url(../img/site/plik.svg);
  background-repeat: no-repeat;
}

/* .top */
.top {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  background: rgb(241, 241, 241);
  background: linear-gradient(180deg, rgba(241, 241, 241, 1) 60%, rgba(206, 206, 206, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* pour le ::after */
}

.top::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 100vw;
  border-color: transparent transparent #BE181F transparent;
  transition: all 0.5s ease-out;
  transform: translateY(100px);
}
.top.start::after {
  transform: translateY(0px);
}

/* .animate_block .block */
.top .animate_block {
  transition: all 0.5s cubic-bezier(0.18, 0.89, 0.27, 1.38);
}
.top .animate_block .block {
  cursor: help;
  position: relative;
  box-sizing: border-box;
  border-radius: 16px 16px 16px 0;
  background-color: var(--theme_color);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.18, 0.89, 0.27, 1.38);
}

/* .block .r */
.top .animate_block .block .r {
  border-radius: 50%;
  background-color: var(--dark_color);
  border: solid 1px var(--theme_color);
}

/* .nav-desktop */
.top .animate_block .block .nav-desktop {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0px;
  height: 32px;
  width: 100%;
  background-color: var(--dark_color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding-left: 16px;
  transition: all 0.5s ease-out;
  transform: translateY(-33px);
}

.top .animate_block .block .nav-desktop .r {
  margin-right: 8px;
  width: 10px;
  height: 10px;
}

/* .nav-tablet */
.top .animate_block .block .nav-tablet {
  z-index: 20;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-top: solid 0 var(--dark_color);
  border-bottom: solid 0 var(--dark_color);
  border-left: solid 0 var(--dark_color);
  border-right: solid 0 var(--dark_color);
  transition: all 0.3s ease-out;
}

.top .animate_block .block .nav-tablet .r {
  position: absolute;
}

.top .animate_block .block .nav-tablet .r.r1 {
  top: calc(50% - 5px);
  left: -15px;
  width: 10px;
  height: 10px;
}

.top .animate_block .block .nav-tablet .r.r2 {
  top: calc(50% - 10px);
  right: -40px;
  width: 30px;
  height: 30px;
}

/* .nav-mobile */
.top .animate_block .block .nav-mobile {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.top .animate_block .block .nav-mobile .topm {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 32px;
  background-color: var(--dark_color);
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-32px);
}

.top .animate_block .block .nav-mobile .topm .r {
  position: absolute;
  z-index: 22;
  width: 70px;
  height: 10px;
  border-radius: 22px;
  background-color: var(--theme_color);
}

.top .animate_block .block .nav-mobile .bottom {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 32px;
  background-color: var(--dark_color);
  transition: all 0.5s ease-out;
  transform: translateY(32px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top .animate_block .block .nav-mobile .bottom .r {
  position: absolute;
  z-index: 22;
  width: 10px;
  height: 10px;
}

/* .message */
.top .animate_block .block .message {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  transition: all 0.3s ease-out;
}

.top .animate_block .block .message h1 {
  font-size: 20px;
  font-weight: 300;
  transition: all 0.1s ease-out;
  opacity: 1;
  text-align: center;
}

.top .animate_block .block .message h1 big {
  font-size: 40px;
  text-decoration: underline;
}

.top .animate_block .block .message .plik {
  position: absolute;
  width: 70px;
  height: 48px;
  right: 15px;
  bottom: 10px;
}

/* .shadow */
.top .animate_block .shadow {
  border-radius: 50%;
  height: 10px;
  transform: translateY(40px);
  z-index: 22;
  background-color: #000;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.18, 0.89, 0.27, 1.38);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 1);
  opacity: 0.1;
}

/* .animate_block.desktop */
.top .animate_block.desktop .shadow {
  width: 680px;
}

.top .animate_block.desktop .block {
  width: 680px;
  height: 420px;
  padding-top: 32px;
}

.top .animate_block.desktop .block .nav-desktop {
  transform: translateY(0px);
}

/* .animate_block.tablet */
.top .animate_block.tablet .shadow {
  width: 620px;
}

.top .animate_block.tablet .block {
  width: 620px;
  height: 380px;
  padding: 20px 50px 20px 20px;
}

.top .animate_block.tablet .block .nav-tablet {
  border-top: solid 20px var(--dark_color);
  border-bottom: solid 20px var(--dark_color);
  border-left: solid 20px var(--dark_color);
  border-right: solid 50px var(--dark_color);
}

/* .animate_block.mobile */
.top .animate_block.mobile .shadow {
  width: 230px;
}

.top .animate_block.mobile .block {
  width: 230px;
  height: 430px;
  padding: 32px 0px 32px 0px;
}

.top .animate_block.mobile .block .message h1 {
  font-size: 18px;
  text-align: center;
}

.top .animate_block.mobile .block .nav-mobile .topm,
.top .animate_block.mobile .block .nav-mobile .bottom {
  transform: translateY(0px);
}

/* .animate_block.logo */
.top .animate_block.logo .shadow {
  width: 180px;
}

.top .animate_block.logo .block {
  width: 180px;
  height: 180px;
}

.top .animate_block.logo .block .message h1 {
  opacity: 0;
}
.top .animate_block.logo{
  transform: translate(-260px,-80px);
}

.text-fin {
  position: absolute;
  font-size: 14px;
  width: 560px;
  transform: translate(200px, -180px);
  transition: all 0.1s 0s ease-out;
  opacity: 0;
}

#home .text-fin h1 {
  font-size: 29px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 34px;
}

#home .text-fin h1 span {
  color: var(--dark_color);
  font-weight: 600;
}

#home .text-fin .pre {
  font-size: 16px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pills {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.pills li {
  display: inline-block;
  padding: .55rem .9rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  font-size: .95rem;
  font-weight: 600;
  color: #0f3a39;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.pills li:hover {
  transform: translateY(-1px);
  background: #eaf9f8;
}

#home .top .animate_block.logo .text-fin {
  opacity: 1;
  transform: translate(230px, -180px);
  transition-delay: 0.8s;
  transition-duration: 1s;
}

#home .cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

#home .btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: .85rem 1.15rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#home .home .btn:active {
  transform: translateY(1px);
}

#home .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 141, 136, .18);
}

#home .btn--primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

#home .btn--primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

#home .btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(14, 141, 136, .5);
}

#home .btn--ghost:hover {
  background: rgba(14, 141, 136, .06);
  border-color: var(--teal);
}