:root {
    --main-dark-color: #262626;
    --main-dark-opacity-color: rgba(0 0 0 / 55%);
    --main-dark-opacity-color-scrolled: rgba(0 0 0 / 80%);
    --main-dark-light-color: #292929;
    --main-green-color: #519872;
    --main-green-light-color: #78ffb7;
    --maie-white-color: #EAEAEA;
    --main-blue-color: #5688C7;
    --main-purple-color: #797A9E;

    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
    height: 100%;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-position: center center;

    margin: 0;
    padding: 0;

    max-width: 100vw;
    overflow-x: hidden;
}

header {
  background: var(--main-dark-opacity-color);
}

header.scrolled {
  background: var(--main-dark-opacity-color-scrolled);
}

.custom-scroll::-webkit-scrollbar {
  width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #519872;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #519872 transparent;
}

    .ck-content p {
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
    .ck-content ul, .ck-content ol {
      padding-left: 1.25rem;
      margin-top: 0.5em;
      margin-bottom: 0.5em;
    }
    .ck-content strong {
      font-weight: 600;
    }


