/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #navigation {
    position: fixed;
    width: 100%;
    height: 5rem;
    z-index: 10000;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 8px 24px;
    transition: box-shadow 0.3s ease;
    /* Dark Mode Switch */
  }
  #navigation .container {
    width: 100%;
    max-width: 80rem;
    height: 5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.1) 0 8px 24px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  #navigation .cs-logo {
    display: block;
    height: 3.125rem;
    width: auto;
  }
  #navigation .cs-logo-light {
    display: none;
    height: 3.125rem;
    width: auto;
  }
  #navigation .cs-ul-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 5.75rem;
    z-index: -100;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 24px;
    text-align: center;
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  #navigation .cs-ul-container.active {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  #navigation .cs-li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding: 0.5rem;
    list-style: none;
    font-size: var(--smallFont);
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #navigation .cs-li:last-of-type {
    padding-bottom: 1rem;
  }
  #navigation .cs-li:after {
    content: "";
    display: block;
    position: relative;
    top: 0.0625rem;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--primary700);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  #navigation .cs-li:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  #navigation .cs-li.active:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  #navigation .cs-menu-switch {
    width: 2rem;
    height: 2rem;
  }
  #navigation .cs-line {
    content: "";
    display: block;
    position: relative;
    top: 1px;
    left: 0;
    width: 1.5625rem;
    height: 1px;
    margin: 0.375rem 0;
    border: 1px solid #000;
    border-radius: 0.625rem;
    transition: opacity, 0.3s, -webkit-transform;
    transition: transform, opacity, 0.3s;
    transition: transform, opacity, 0.3s, -webkit-transform;
  }
  #navigation .cs-line.cs-line-1 {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-line.cs-line-1.active {
    -webkit-transform: translate(15%, 400%) rotate(225deg);
            transform: translate(15%, 400%) rotate(225deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-line.cs-line-2 {
    width: 1.875rem;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-line.cs-line-2.active {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    opacity: 0;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-line.cs-line-3 {
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-line.cs-line-3.active {
    -webkit-transform: translate(15%, -400%) rotate(-225deg);
            transform: translate(15%, -400%) rotate(-225deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #navigation .cs-switches {
    display: flex;
    gap: clamp(1rem, 4.16666667vw, 2rem);
  }
  #navigation #dark-switch {
    position: relative;
  }
  #navigation #dark-checkbox {
    display: none;
  }
  #navigation .cs-slider {
    display: block;
    position: relative;
    width: 3.75rem;
    height: 2.125rem;
    background-color: #333;
    border-radius: 2.125rem;
    transition: 0.3s;
    cursor: pointer;
  }
  #navigation .cs-slider:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.3125rem;
    left: 0.375rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
    -webkit-transform: translate(0%);
            transform: translate(0%);
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  #navigation .moon {
    display: block;
    position: absolute;
    top: 0.5625rem;
    right: 0.5625rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
  #navigation .sun {
    display: none;
    position: absolute;
    top: 0.5625rem;
    left: 0.5625rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #navigation {
    height: auto;
  }
  #navigation .container {
    height: 6.25rem;
    justify-content: space-around;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
  }
  #navigation .cs-logo,
  #navigation .cs-logo-light {
    height: 3.75rem;
  }
  #navigation .cs-ul-container {
    position: static;
    padding-top: 0;
    background-color: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    transition: none;
    z-index: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #navigation .cs-ul {
    display: flex;
    gap: 3rem;
  }
  #navigation .cs-li {
    padding: 0;
  }
  #navigation .cs-li:last-of-type {
    padding-bottom: 0;
  }
  #navigation .cs-menu-switch {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark #navigation {
    background-color: var(--dark700);
    box-shadow: rgba(255, 255, 255, 0.1) 0 8px 24px;
  }
  body.dark #navigation .container {
    background-color: var(--dark700);
    box-shadow: rgba(255, 255, 255, 0.1) 0 8px 24px;
  }
  body.dark #navigation .cs-logo {
    display: none;
  }
  body.dark #navigation .cs-logo-light {
    display: block;
  }
  body.dark #navigation .cs-ul-container {
    background-color: var(--dark500);
  }
  body.dark #navigation .cs-li:after {
    background-color: #fff;
  }
  body.dark #navigation .cs-line {
    border: 1px solid #fff;
  }
  body.dark #navigation .cs-slider {
    background-color: #fff;
  }
  body.dark #navigation .cs-slider:before {
    background-color: var(--primary700);
    -webkit-transform: translate(100%);
            transform: translate(100%);
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  body.dark #navigation .moon {
    display: none;
  }
  body.dark #navigation .sun {
    display: block;
  }
}
/* Dark Mode (Desktop) */
@media only screen and (min-width: 64em) {
  body.dark #navigation .container {
    box-shadow: none;
    transition: box-shadow 0.3s ease;
  }
  body.dark #navigation .cs-ul-container {
    background-color: transparent;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #hero {
    width: 100%;
    height: clamp(25rem, 87.890625vw, 56.25rem);
    margin-top: 9.375rem;
    padding: 5rem 0;
  }
  #hero .container {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }
  #hero .cs-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #hero .cs-title-line {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hero .cs-title {
    font-size: clamp(2.5rem, 6.8359375vw, 4.375rem);
    color: #fff;
  }
  #hero .cs-icon,
  #hero .cs-icon-dark {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    -webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.8));
            filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.8));
  }
  #hero .cs-icon-dark {
    display: none;
  }
  #hero .cs-text {
    color: #fff;
    font-size: clamp(1.125rem, 2.1484375vw, 1.375rem);
    text-align: center;
  }
  #hero .cs-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3.125vw, 2rem);
  }
  #hero .cs-button {
    font-size: clamp(0.9375rem, 1.953125vw, 1.25rem);
    text-shadow: none;
  }
  #hero .cs-picture {
    width: 100%;
    height: clamp(25rem, 87.890625vw, 56.25rem);
    position: absolute;
    z-index: -1;
  }
  #hero .cs-picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #hero .cs-picture:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(49, 84, 65, 0.6) 0%, rgba(169, 169, 169, 0.4) 100%);
  }
}
/* Large mobile */
@media only screen and (min-width: 39em) {
  #hero {
    margin-top: 7.5rem;
  }
}
/* Small Desktop 1100px */
@media only screen and (min-width: 68.75rem) {
  #hero .cs-title-line {
    flex-direction: row;
    gap: 1rem;
  }
  #hero .cs-icon,
  #hero .cs-icon-dark {
    width: 4.375rem;
    height: 4.375rem;
  }
}
/* Dark mode */
@media only screen and (min-width: 0em) {
  body.dark #hero .cs-title {
    color: var(--primary300);
  }
  body.dark #hero .cs-icon {
    display: none;
  }
  body.dark #hero .cs-icon-dark {
    display: block;
  }
  body.dark #hero .cs-text {
    color: var(--textWhite);
  }
  body.dark #hero .cs-picture:after {
    background: linear-gradient(to bottom, rgba(11, 24, 17, 0.9) 0%, rgba(97, 97, 97, 0.7) 100%);
  }
}
/*-- -------------------------- -->
<---         CS Banner          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-banner {
    padding: 1rem;
    background-color: #fcf40a;
  }
  #cs-banner .container {
    background: none;
    box-shadow: none;
    padding: 0;
    height: auto;
    text-align: center;
  }
  #cs-banner .cs-span {
    width: 100%;
    display: inline-block;
    font-size: var(--mediumFont);
  }
  #cs-banner .cs-link {
    color: #000;
    text-decoration: underline;
    font-weight: 700;
    font-size: var(--mediumFont);
  }
}
/* Dark mode */
@media only screen and (min-width: 0rem) {
  body.dark #cs-banner {
    background-color: #c7c113;
  }
  body.dark #cs-banner .container {
    background: none;
  }
}
