@ros é-25: #FFF5F6;
@ros é-50: #FFF1F3;
@ros é-100: #FFE4E8;
@ros é-200: #FECDD6;
@ros é-300: #FEA3B4;
@ros é-400: #FD6F8E;
@ros é-500: #F63D68;
@ros é-600: #E31B54;
@ros é-700: #C01048;
@ros é-800: #A11043;
@ros é-900: #89123E;
:root {
  font-size: 50%;
  line-height: 62.5%;
  /* Adjust this percentage for smaller text on mobile */
}
body {
  font-size: 1.6rem;
  /* Adjust the body font size for mobile */
}
@media (min-width: 768px) {
  :root {
    font-size: 56.25%;
  }
}
@media (min-width: 992px) {
  :root {
    font-size: 62.5%;
  }
}
* {
  font-family: 'Figtree', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline-style: dashed;
  outline-width: 0.5px;
  outline-color: #9747FF;
  outline: none;
  transition: color 500ms ease, background-color 500ms ease, border-left-color 500ms ease;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 575px) {
  .row > * {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
body {
  border-top: 0.3rem solid #f7aecd;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  background-color: #F0EDEA;
  color: #403F3E;
}
body.dark-theme {
  border-top-color: #f7aecd;
  background-color: #232323;
  color: #F5F5F5;
}
.content-top {
  position: relative;
  z-index: 2;
  background-color: #F3F1EE;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 1.6rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
.dark-theme .content-top {
  background-color: #2C2C2C;
}
.content-top img {
  width: 4rem;
  height: 4rem;
}
.content-top h1 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.content-top .logo-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.content-top .icon-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.content-top .icon-group svg {
  height: 2.5rem;
  width: auto;
  fill: red !important;
}
body.dark-theme .content-top .icon-group svg {
  fill: #F5F5F5;
}
@media (min-width: 768px) {
  .content-top .icon-group #icon-menu-hamburger,
  .content-top .icon-group #icon-menu-x-close {
    display: none !important;
  }
}
.content-bottom {
  display: flex;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  max-height: calc(100vh - 1.6rem - 1.6rem - 0.3rem - 4rem);
}
@media (max-width: calc(768px - 1px)) {
  .side-container {
    position: relative;
  }
}
.side-nav {
  background-color: #f4f2f0;
  width: 25rem;
  height: calc(100vh - 1.6rem - 1.6rem - 0.3rem - 4rem);
  flex: 1 0 0;
  align-self: stretch;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  gap: 3rem;
}
@media (max-width: calc(768px - 1px)) {
  .side-nav {
    position: absolute;
    right: 0;
    transition: right 500ms ease;
  }
  .side-nav.show {
    right: -25rem;
  }
}
body.dark-theme .side-nav {
  background-color: #272727;
}
.side-nav a {
  max-width: 100%;
}
.side-nav .nav-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.side-nav .nav-header {
  color: #403F3E;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding: 0 0 0.6rem 0;
}
.dark-theme .side-nav .nav-header {
  color: #F5F5F5;
}
.side-nav .nav-section {
  color: #403F3E;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  padding: 0.3rem 1.2rem;
  border-left: 0.2rem solid #E5E3E0;
  margin-left: 0.3rem;
}
.dark-theme .side-nav .nav-section {
  color: #F5F5F5;
}
.dark-theme .side-nav .nav-section {
  border-left-color: #333333;
}
.side-nav .nav-section.active {
  border-left-color: #f7aecd;
}
.dark-theme .side-nav .nav-section.active {
  border-left-color: #f7aecd;
}
.side-nav .nav-section:hover {
  transition: border-left-color 200ms;
  border-left-color: #403F3E;
}
.dark-theme .side-nav .nav-section:hover {
  border-left-color: #F5F5F5;
}
.side-nav .nav-section:hover.active {
  border-left-color: #f7aecd;
}
.dark-theme .side-nav .nav-section:hover.active {
  border-left-color: #f7aecd;
}
.content-area {
  flex: 1 0 0;
  align-self: stretch;
  overflow: scroll;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}
section {
  min-height: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 4rem;
  padding: 3rem 2rem 3rem 2rem;
  scroll-snap-align: start;
}
section img,
section video {
  max-width: 80rem;
  width: 100%;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
}
section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
}
section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
}
section h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
}
.dark-theme section h3 {
  color: #f7aecd;
}
section p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  max-width: 60rem;
  width: 100%;
}
section p svg {
  height: 2rem;
  width: auto;
  fill: #000000;
  transition: fill 500ms ease;
}
.dark-theme section p svg {
  fill: #f7aecd;
}
section p .highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #000000;
  white-space: nowrap;
}
.dark-theme section p .highlight {
  color: #f7aecd;
}
section.section-header {
  min-height: 0;
}
section:last-child {
  min-height: calc(100vh - 1.6rem - 1.6rem - 0.3rem - 4rem);
}
.header-group {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 0rem;
  gap: 1rem;
}
.header-group img {
  width: 1.6rem;
  height: auto;
  opacity: 0;
  border-radius: 0rem;
  margin-bottom: 0rem;
}
.header-group:hover .icon-copy {
  opacity: 1;
}
.header-group .none {
  display: none;
  opacity: 0;
}
.header-group .block {
  display: block;
  opacity: 1;
}
.content-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1.6rem;
}
.content-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1.6rem;
}
hr {
  border: none;
  height: 0.2rem;
  background-color: #f7aecd;
  opacity: 1;
  margin: 1rem 2rem;
  max-width: 80rem;
}
.dark-theme hr {
  background-color: #f7aecd;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background: none;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background: none;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
iframe {
  width: 100%;
  max-width: 80rem;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.8rem;
  overflow: hidden;
}
