.ecl-language-banner{
    display:none;
    font-family:"InterVariable",sans-serif;
}

.ecl-language-banner.is-visible{
    display:block;
    background: #dddedf;
}

.ecl-language-inner{
    margin:0 auto;
    min-height:80px;
    display:flex;
    align-items:center;
    gap:24px;
    padding:16px 16px;
    display:flex;
}

.ecl-language-text{
    margin:0;
    color:#324664;
    font-size:14px;
    line-height:1.4;
}

.ecl-language-buttons{
    display:flex;
    gap:10px;
}

.ecl-language-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:2px 20px;
    border:1px solid #ececec;
    border-radius:999px;
    text-decoration:none;
    color:#324664;
    font-size:14px;
    font-weight:500;
    transition:.2s;
}

.ecl-language-btn:hover{
    border-color:#00a3cc;
    color:#00a3cc;
}

.ecl-language-btn.is-active{
    background:#14b8e5;
    border-color:#d6d6d6;
    color:#fff;
}

.ecl-language-close{
    margin-left:auto;
    width:36px;
    height:36px;
    border:0;
    background:none;
    color:#324664 !important;
    font-size:18px;
    cursor:pointer;
}

@media(max-width:768px){

    .ecl-language-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
        padding:18px 20px;
        min-height:auto;
        position:relative;
    }

    .ecl-language-buttons{
        flex-wrap:wrap;
    }

    .ecl-language-close{
        position:absolute;
        right:4px;
        top:10px;
        margin-left:0;
    }

}

.ecl-header-demo {
  position: relative;
  z-index: 999999;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
}

.ecl-header {
  max-width: 1360px;
  height: 72px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ecl-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ecl-logo {
  width: auto;
  height: 26px !important;
  display: block;
}

.ecl-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ecl-nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent !important;
  cursor: pointer;
  color: #324664 !important;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 1;
  transition: color .2s ease;
}

.ecl-nav-item:hover,
.ecl-nav-item.is-active {
  color: #00a3cc !important;
}

.ecl-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ecl-nav-icon svg {
  width: 12px;
  height: 12px;
  overflow: visible;
}

.ecl-nav-icon path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecl-nav-icon svg {
  width: 12px;
  height: 12px;
  overflow: visible;
  transition: transform .2s ease;
  transform-origin: center;
}

.ecl-nav-item.is-active .ecl-nav-icon svg {
  transform: rotate(180deg);
}

.ecl-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.ecl-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 20px;
  background: #00a3cc;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background-color .2s ease;
}

.ecl-header-cta:hover {
  background: #008fb3;
}

.ecl-header-user {
  width: 32px;
  height: 32px;
  border: 2px solid #324664;
  border-radius: 999px;
  color: #324664 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  overflow: hidden;
  transition: background-color .2s ease, color .2s ease;
}

.ecl-header-user:hover {
  background: #324664;
  color: #ffffff !important;
}

.ecl-header-user svg {
  width: 24px;
  height: 24px;
  transform: translateY(1px);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ecl-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.ecl-mega.is-open {
  display: block;
}

.ecl-mega-panel {
  display: none;
  max-width: 1152px;
  margin: 0 auto;
  padding: 28px 32px 40px;
}

.ecl-mega-panel.is-active {
  display: block;
}

.ecl-mega-section {
  margin-bottom: 32px;
}

.ecl-mega-section:last-child {
  margin-bottom: 0;
}

.ecl-mega-headline {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #324664;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ecl-mega-headline i {
  height: 1px;
  background: #ececec;
  flex: 1;
}

.ecl-card-grid {
  display: grid;
  gap: 28px;
}

.ecl-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ecl-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ecl-card {
  position: relative;
  min-height: 128px;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 18px 18px 30px;
  color: #404548 !important;
  text-decoration: none !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ecl-card:hover {
  border-color: #00a3cc;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.ecl-card strong {
    line-height: normal;
  display: block;
  color: #324664;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ecl-card p {
  margin: 0;
  color: #404548;
  font-size: 14px;
  line-height: 1.4;
}

.ecl-card-mark {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 21px;
  height: auto;
}

.ecl-card-mark img {
  display: block;
  width: 21px;
  height: auto;
}

.ecl-external {
  display: inline-flex;
  margin-top: 14px;
  color: #324664;
  font-size: 14px;
  font-weight: 600;
}

.ecl-card:hover .ecl-external,
.ecl-card:hover strong {
  color: #00a3cc;
}

.ecl-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 75%;
  margin-bottom: 32px;
}

.ecl-link-grid a {
  color: #324664 !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color .2s ease;
}

.ecl-link-grid a:hover {
  color: #00a3cc !important;
}

@media (max-width: 1023px) {
  .ecl-nav,
  .ecl-header-actions,
  .ecl-mega {
    display: none !important;
  }

  .ecl-header {
    height: 56px;
  }

  .ecl-logo {
    height: 20px;
  }
}

.ecl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #324664 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;

    transition: color .2s ease;
}

.ecl-link-arrow {
    color: #00a3cc;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    display: inline-block;

    transition: transform .2s ease;
}

.ecl-link:hover {
    color: #00a3cc !important;
}

.ecl-link:hover .ecl-link-arrow {
    transform: translateX(2px);
}

.ecl-mobile-toggle,
.ecl-mobile-menu {
  display: none;
}

@media (max-width: 1023px) {
  .ecl-header-demo,
  .ecl-header-demo * {
    box-sizing: border-box;
  }

  .ecl-nav,
  .ecl-header-actions,
  .ecl-mega {
    display: none !important;
  }

  .ecl-header {
    height: 54px;
    padding: 0 16px;
    max-width: none;
    width: 100%;
  }

  .ecl-logo {
    height: 18px !important;
    width: auto !important;
    max-width: none !important;
  }

  .ecl-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: #324664  !important;
    cursor: pointer;
  }

  .ecl-mobile-toggle .ecl-nav-icon,
  .ecl-mobile-close .ecl-nav-icon {
    color: inherit !important;
  }

  .ecl-mobile-toggle svg,
  .ecl-mobile-close svg {
    display: block;
    width: 16px;
    height: 16px;
  }

  .ecl-mobile-toggle path,
  .ecl-mobile-close path {
    stroke: currentColor !important;
    stroke-width: 2;
  }

  .ecl-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000000;
    width: auto;
    max-width: none;
    background: #ffffff;
    padding: 0 16px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .ecl-mobile-menu.is-open {
    display: flex;
    flex-direction: column;
  }

  .ecl-mobile-top {
    height: 54px;
    border-bottom: 1px solid #00a3cc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .ecl-mobile-top img {
    height: 18px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
  }

  .ecl-mobile-close {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: #00a3cc !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .ecl-mobile-accordion {
    margin-top: 0;
    flex-shrink: 0;
  }

  .ecl-mobile-acc-btn {
    width: 100%;
    min-height: 56px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #ececec;
    background: transparent !important;
    color: #324664 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    cursor: pointer;
  }

  .ecl-mobile-acc-btn.is-active {
    color: #00a3cc !important;
  }

  .ecl-mobile-acc-btn > span:first-child {
    display: inline-block;
  }

  .ecl-mobile-acc-btn > span:last-child {
    width: 24px;
    height: 24px;
    color: #324664;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
  }

  .ecl-mobile-acc-btn.is-active > span:last-child {
    color: #00a3cc;
    transform: rotate(180deg);
  }

  .ecl-mobile-acc-panel {
    display: none;
    padding: 14px 0 18px;
    border-bottom: 1px solid #ececec;
  }

  .ecl-mobile-acc-panel.is-open {
    display: block;
  }

  .ecl-mobile-acc-panel a {
    display: block;
    padding: 13px 0;
    color: #324664 !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }

  .ecl-mobile-cta {
    margin-top: 32px;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: #00a3cc;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    text-decoration: none !important;
  }

  .ecl-mobile-login {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #324664 !important;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 20px;
  }

  .ecl-mobile-login .ecl-header-user {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
}

.ecl-mobile-acc-btn,
.elementor-kit-51319 .ecl-mobile-acc-btn{
    padding:0 !important;
    margin:0 !important;

    font:inherit;
    line-height:17px !important;

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;
    min-height:56px;

    background:none !important;
    border:0;
    border-bottom:1px solid #ECECEC;
}
.ecl-mobile-chevron {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #324664;
    flex-shrink: 0;
}

.ecl-mobile-chevron svg {
    width: 24px;
    height: 24px;

    overflow: visible;

}

.ecl-mobile-chevron path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ecl-mobile-acc-btn.is-active .ecl-mobile-chevron {
    color: #00A3CC;
}

.ecl-mobile-acc-btn.is-active .ecl-mobile-chevron svg {
    transform: rotate(180deg);
    transition: none !important;
}

.elementor-kit-51319 .ecl-mobile-acc-btn,
.ecl-mobile-acc-btn {
  padding: 0 !important;
}

.ecl-mobile-acc-btn .ecl-mobile-chevron {
  width: 24px;
  height: 24px;
  color: #324664 !important;
}

.ecl-mobile-acc-btn .ecl-mobile-chevron svg {
  width: 12px;
  height: 12px;
  transform-origin: center;
}

.ecl-mobile-acc-btn .ecl-mobile-chevron path {
  stroke: currentColor !important;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecl-mobile-acc-btn.is-active .ecl-mobile-chevron {
  color: #00a3cc !important;
}

.ecl-mobile-acc-btn.is-active .ecl-mobile-chevron svg {
  transform: rotate(180deg);
}
.ecl-mobile-close,
.elementor-kit-51319 .ecl-mobile-close {
    appearance: none;
    -webkit-appearance: none;

    width: 24px;
    height: 24px;

    padding: 0 !important;
    margin: 0 !important;

    border: 0;
    background: transparent !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #00A3CC !important;

    cursor: pointer;

    flex-shrink: 0;
}
.ecl-card-subtitle {
    display: block;
    margin-bottom: 14px;

    color: #606873;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}
.ecl-card strong {
    display: block;
    margin-bottom: 2px;

    color: #324664;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}
.ecl-mobile-product-link {
    display: block;
    text-decoration: none;
}

.ecl-mobile-product-title {
    display: block;
    color: #324664;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.ecl-mobile-product-subtitle {
    display: block;
    margin-top: 2px;
    color: #606873;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.ecl-header-shell {
  position: relative;
  z-index: 999999;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
}

.ecl-header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}