body {
  background-color: #FFC5C7;
  --color-text: #ffffff;
  --color-background: #E05E9F;
  --color-outline: #E05E9F;
  --color-shadow: #f054a2;
  /* SVG */
  /* SVG animations */
  /* Button animations */
}
body .max_width {
  width: min(1130px, 100% - 10px);
  margin-inline: auto;
}
body .active {
  color: #00040c !important;
  background-color: yellow !important;
}
body .btn-content {
  display: flex;
  align-items: center;
  padding: 5px 40px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
  transition: 0.5s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}
body .btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 20px;
  transform: scale(0.6);
}
body .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}
body .icon-arrow {
  width: 20px;
  position: relative;
  top: 6%;
}
body #arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}
body #arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}
body #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}
body #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}
@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: var(--color-background);
  }
  100% {
    fill: white;
  }
}
@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
body .list a {
  box-shadow: 1px 3px 19px rgba(7, 19, 60, 0.7215686275);
}
@media (max-width: 750px) {
  body .list {
    justify-content: center;
  }
  body .list #ifr_diagnose {
    width: 100%;
    height: 50vh;
  }
  body .list a {
    height: 110px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 27%;
  }
}
body #content_html {
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body #content_html p,
body #content_html li {
  margin: 15px 0;
  line-height: 25px;
}
body #content_html h1,
body #content_html h2,
body #content_html h3,
body #content_html h4,
body #content_html h5,
body #content_html h6 {
  margin: 20px 0;
}
body #content_html h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
body #content_html h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
body #content_html h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
body #content_html h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
body #content_html h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
body #content_html h6 {
  font-size: 14px;
  margin-bottom: 10px;
}
body #content_html p {
  font-size: 16px;
  line-height: 1.6;
}
body #content_html ul {
  list-style: disc;
  margin-left: 20px;
}
body #content_html ol {
  list-style: decimal;
  margin-left: 20px;
}
body #content_html li {
  margin-bottom: 5px;
}
body #content_html a {
  color: #0077b6;
  text-decoration: none;
}
body #content_html a:hover {
  text-decoration: underline;
}
body #content_html img {
  height: auto;
  display: block;
  margin: 10px 0;
  max-width: 670px;
}
body #content_html blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #0077b6;
  padding: 10px 20px;
  margin: 10px 0;
}
body #content_html pre {
  background-color: #f9f9f9;
  padding: 10px;
  margin: 10px 0;
  overflow-x: auto;
}
body #content_html table {
  border-collapse: collapse;
  width: 100%;
}
body #content_html table th,
body #content_html table td {
  border: 1px solid #ccc;
  padding: 8px;
}
@keyframes slide-enter {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body #content_html * {
  --stagger: 0;
  --delay: 100ms;
  --start: 0ms;
  animation: slide-enter 1s both 1;
  animation-delay: calc(var(--start) + var(--stagger) * var(--delay));
}
body #content_html * {
  counter-increment: enter-count;
  --stagger: counter(enter-count);
}
body #content_html .slide-enter-content > * {
  --stagger: 0;
  --delay: 100ms;
  --start: 0ms;
  animation: slide-enter 1s both 1;
  animation-delay: calc(var(--start) + var(--stagger) * var(--delay));
}
body #content_html *:nth-child(1) {
  --stagger: 1;
}
body #content_html *:nth-child(2) {
  --stagger: 2;
}
body #content_html *:nth-child(3) {
  --stagger: 3;
}
body #content_html *:nth-child(4) {
  --stagger: 4;
}
body #content_html *:nth-child(5) {
  --stagger: 5;
}
body #content_html *:nth-child(6) {
  --stagger: 6;
}
body #content_html *:nth-child(7) {
  --stagger: 7;
}
body #content_html *:nth-child(8) {
  --stagger: 8;
}
body #content_html *:nth-child(9) {
  --stagger: 9;
}
body #content_html *:nth-child(10) {
  --stagger: 10;
}
body #content_html *:nth-child(11) {
  --stagger: 11;
}
body #content_html *:nth-child(12) {
  --stagger: 12;
}
body #content_html *:nth-child(13) {
  --stagger: 13;
}
body #content_html *:nth-child(14) {
  --stagger: 14;
}
body #content_html *:nth-child(15) {
  --stagger: 15;
}
body #content_html *:nth-child(16) {
  --stagger: 16;
}
body #content_html *:nth-child(17) {
  --stagger: 17;
}
body #content_html *:nth-child(18) {
  --stagger: 18;
}
body #content_html *:nth-child(19) {
  --stagger: 19;
}
body #content_html *:nth-child(20) {
  --stagger: 20;
}
body #content_html *:nth-child(21) {
  --stagger: 21;
}
body #content_html *:nth-child(22) {
  --stagger: 22;
}
body #content_html *:nth-child(23) {
  --stagger: 23;
}
body #content_html *:nth-child(24) {
  --stagger: 24;
}
body #content_html *:nth-child(25) {
  --stagger: 25;
}
body #content_html *:nth-child(26) {
  --stagger: 26;
}
body #content_html *:nth-child(27) {
  --stagger: 27;
}
body #content_html *:nth-child(28) {
  --stagger: 28;
}
body #content_html *:nth-child(29) {
  --stagger: 29;
}
body #content_html *:nth-child(30) {
  --stagger: 30;
}/*# sourceMappingURL=index.css.map */