/* component styles */
:root {
  --es-blue: #359bc4;
  --es-blue-dark: #2a7c9d;
  --es-orange: #fabe19;
  --es-orange-dark: #d99a16;
  --bg-white: #ffffff;
  --bg-right-gray: #f5f5f5;
}

*:focus {
  outline: none;
  color: inherit;
  background-color: inherit;
}

button:hover {
  background-color: inherit;
}

body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}
a:visited {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-btn__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  background-color: var(--es-blue);
  color: var(--bg-white) !important;
  transition: background-color 0.3s ease;
}
.c-btn__cta:hover {
  background-color: var(--es-blue-dark);
  color: var(--bg-white) !important;
}
.c-btn__cta.orange {
  background-color: var(--es-orange);
}
.c-btn__cta.orange:hover {
  background-color: var(--es-orange-dark);
}

.page-template-page-home_2026 .c-header-logo {
  opacity: 0;
  pointer-events: none;
}

.c-header {
  width: 100%;
  background-color: var(--bg-white);
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.c-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-header-logo {
  height: 24px;
  width: auto;
  transition: opacity 0.3s ease;
}
.c-header-logo img {
  height: 100%;
  width: auto;
}
.c-header-nav__list {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.c-header-nav__item {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  list-style: none;
  position: relative;
}
.c-header-nav__item::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--es-blue);
  transition: width 0.3s ease;
}
.c-header-nav__item:hover::after {
  width: 100%;
}
.c-header-nav__item.cta {
  display: none;
}
.c-header-nav-btn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .c-header {
    height: 60px;
  }
  .c-header-container {
    padding: 0 20px;
  }
  .c-header-logo {
    height: 20px;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .c-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100lvh;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    z-index: 998;
    transition: right 0.3s ease;
  }
  .c-header-nav.is-active {
    right: 0;
  }
  .c-header-nav__list {
    width: 100%;
    flex-direction: column;
    row-gap: 30px;
    justify-content: center;
    height: 100%;
  }
  .c-header-nav__item.cta {
    display: block;
  }
  .c-header-nav-btn {
    display: block;
    z-index: 999;
    position: relative;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    outline-color: inherit;
  }
  .c-header-nav-btn:focus {
    outline: none;
    background-color: transparent;
  }
  .c-header-nav-btn__bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  .c-header-nav-btn__bar:nth-child(1) {
    top: 0;
  }
  .c-header-nav-btn__bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .c-header-nav-btn__bar:nth-child(3) {
    bottom: 0;
  }
  .c-header-nav-btn.is-active {
    transform: rotate(180deg);
  }
  .c-header-nav-btn.is-active .c-header-nav-btn__bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .c-header-nav-btn.is-active .c-header-nav-btn__bar:nth-child(2) {
    opacity: 0;
  }
  .c-header-nav-btn.is-active .c-header-nav-btn__bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .c-header-contact {
    display: none;
  }
}
.c-footer {
  width: 100%;
  background-color: var(--bg-white);
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.c-footer-copy {
  text-align: center;
}
.c-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1240px;
  height: 1px;
  background-color: #ccc;
}

.u-inlineBlock {
  display: inline-block;
}
.u-flex {
  display: flex;
}/*# sourceMappingURL=component.css.map */