/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
  }
  #cs-navigation:before {
    content: "";
    width: 0%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -11;
    transition:
      width 0.5s,
      opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active:before {
    width: 100%;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    width: 90%;
    max-width: 14.125rem;
    height: 100%;
    margin: 0 auto 0 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(2rem, 4vw, 2.75rem);
    /* 14px - 16px */
    height: clamp(1.5rem, 2vw, 2rem);
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition:
      transform 0.5s,
      top 0.3s,
      left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition:
      top 0.3s,
      left 0.3s,
      transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition:
      bottom 0.3s,
      opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100vh;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: -1;
    overflow: hidden;
    transform: scaleX(0);
    transition:
      transform 0.4s,
      opacity 0.3s;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    width: auto;
    min-width: 40%;
    height: 65vh;
    margin: 0;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1.25rem;
    overflow: scroll;
  }
  #cs-navigation .cs-li {
    text-align: right;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateX(-2.5rem);
    transition:
      transform 0.6s,
      opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--accentcolor);
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 63.9376rem) {
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.2rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 24.4%;
    height: 5.5rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
    margin-right: 1rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--accentcolor);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }
}
#cs-navigation .cs-active {
  color: var(--primary);
  transition: color 0.3s;
}

/*-- -------------------------- -->
<---        Contact-form        -->
<--- -------------------------- -*/

/* Mobile - 480px */
@media only screen and (min-width: 0rem) {
  #contact-form {
    padding: var(--sectionPadding);
    background-color: #ffffff;
    position: relative;
    z-index: 1;
  }
  #contact-form .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: 0 auto;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  #contact-form .cs-contact-group {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 24rem;
    display: flex;
    align-items: flex-start;
  }
  #contact-form .cs-contact-group::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.55) 35%,
      rgba(0,0,0,0.25) 65%,
      rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
  }
  #contact-form .cs-background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  #contact-form .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #contact-form .cs-contact-group::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.25) 55%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 1;
  }
  #contact-form .cs-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #ffffff;
    max-width: 42rem;
  }
  #contact-form .cs-title {
    margin: 0;
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
    line-height: 1.15;
    max-width: 20ch;
    color: #ffffff;
  }
  #contact-form .cs-overlay-text {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 60ch;
    font-weight: 500;
  }
  #contact-form .cs-overlay-contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: clamp(1.2rem, 3vw, 2rem);
}
  #contact-form .cs-overlay-item {
      display: flex;
      gap: 0.55rem;
      text-decoration: none;
      color: #fff;
      font-weight: 700;
      font-size: clamp(1.1rem, 1.1vw, 1rem);
      opacity: 0.95;
      transition: opacity 0.25s;
  }
  #contact-form .cs-overlay-item img {
      width: 1.9rem;
      height: auto;
  }
  #contact-form .cs-overlay-item:hover {
      opacity: 1;
      text-decoration: underline;
  }
  #contact-form .cs-form {
    width: 100%;
    padding: clamp(1.25rem, 3.5vw, 2.25rem);
    border-radius: 1.5rem;
    background: #f1f1f4;
    border: 1px solid rgba(0,0,0,0.06);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: flex-start;
  }
  #contact-form .cs-label {
    font-size: 0.95rem;
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
  }
  #contact-form .cs-input {
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    height: 3.25rem;
    padding: 0 1rem;
    color: var(--headerColor);
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid rgba(0,0,0,0.10);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  #contact-form .cs-input:focus {
    border-color: var(--accentcolor);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
  }
  #contact-form .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.65;
  }
  #contact-form .cs-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.4rem;
  }
  #contact-form .cs-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
  }
  #contact-form .cs-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  #contact-form .cs-textarea {
    min-height: 8rem;
    padding-top: 0.9rem;
    resize: vertical;
    max-height: 15rem;
    font-family: inherit;
  }
  #contact-form .cs-submit {
    width: 100%;
    border: none;
    line-height: 3.25rem;
    border-radius: 0.75rem;
    background-color: var(--primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    font-size: 1rem;

    transition: 
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }
  #contact-form .cs-submit:hover {
    transform: translateY(-3px);
    background-color: var(--secondary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  }
  #contact-form .cs-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  #contact-form .cs-consent {
    width: 100%;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0,0,0,0.14);
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.25s;
  }
  #contact-form .cs-consent:hover {
    border-color: var(--accentcolor);
  }
  #contact-form .cs-consent-checkbox {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }
  #contact-form .cs-consent-text {
    color: var(--headerColor);
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 500;
  }
  #contact-form .cs-consent-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  #contact-form .cs-consent-link:hover {
    color: var(--primary);
    text-decoration-color: var(--accentcolor);
  }
  #contact-form .cs-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-form .cs-container {
    max-width: 80rem;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
  #contact-form .cs-contact-group {
    min-height: 32rem;
  }
  #contact-form .cs-form {
    height: fit-content;
    align-self: center;
  }
}

/*-- -------------------------- -->
<---        Back-to-top         -->
<--- -------------------------- -*/

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: none;
  background: var(--accentcolor);
  display: none;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.back-to-top img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0); 
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}
.back-to-top:active {
  transform: translateY(0);
}
@media (max-width: 30rem) {
  .back-to-top {
    width: 3.25rem;
    height: 3.25rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1154 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px -8px 24px;
  }
  #footer-1154 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer-1154 .cs-top {
    width: 100%;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--accentcolor);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #footer-1154 .cs-logo {
  width: 100%;
  max-width: 18rem;
  }
  #footer-1154 .cs-logo-img {
    width: 80%;
    height: auto;
    display: block;
    object-fit: scale-down;
  }
  #footer-1154 .cs-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  #footer-1154 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
    justify-content: center;
    row-gap: 0.5rem;
    column-gap: clamp(1.75rem, 4vw, 2.5rem);
  }
  #footer-1154 .cs-li {
    list-style: none;
  }
  #footer-1154 .cs-link {
    font-size: clamp(0.845rem, 1.5vw, 1rem);
    font-weight: 600;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s;
  }
  #footer-1154 .cs-link:hover {
    color: var(--primary);
    text-decoration: 2px underline;
    text-underline-offset: 0.25rem;
    text-decoration-color: var(--accentcolor);
  }
  #footer-1154 .cs-newsletter {
    width: 100%;
    max-width: 34rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  #footer-1154 .cs-newsletter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--headerColor);
    text-align: center;
    white-space: nowrap;
  }
  #footer-1154 .cs-newsletter-button {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: clamp(16rem, 60%, 18rem);
    text-align: center;
    font-family: inherit;
    transition: 
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }
  #footer-1154 .cs-newsletter-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  }
  #footer-1154 .cs-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #footer-1154 .cs-social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #footer-1154 .cs-social-li {
    list-style: none;
  }
  #footer-1154 .cs-social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    will-change: transform;
  }
  #footer-1154 .cs-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0px 6px 12px #2d4c6a5b;
  }
  #footer-1154 .cs-social-icon {
    width: 1rem;
    height: auto;
    display: block;
    opacity: 1;
    filter: grayscale(1) brightness(1000%);
  }
  #footer-1154 .cs-copyright {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #footer-1154 .cs-copyright-link {
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }
  #footer-1154 .cs-copyright-link:hover {
    color: var(--primary);
    text-decoration: 2px underline;
    text-underline-offset: 0.25rem;
    text-decoration-color: var(--accentcolor);
  }
}
/* Desktop - 1040px */
@media only screen and (min-width: 65rem) {
  #footer-1154 .cs-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  #footer-1154 .cs-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  #footer-1154 .cs-right {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 8.5rem;
  }
  #footer-1154 .cs-ul,
  #footer-1154 .cs-newsletter {
    width: 100%;
  }
  #footer-1154 .cs-ul {
    justify-content: flex-end;
  }
  #footer-1154 .cs-newsletter {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #footer-1154 .cs-newsletter-title {
    text-align: left;
    flex: 1;
    font-size: 1.25rem;
  }
  #footer-1154 .cs-newsletter-button {
    width: 22rem;
  }
}
#footer-1154 .cs-logo-img {
  width: 100%;
}
#footer-1154 .cs-li-last {
  display: inline-flex;
}
#footer-1154 .cs-link-pdf {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
#footer-1154 .cs-pdf-icon {
  height: 0.75em;
  width: auto;
  display: inline-block;
}
