@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, p {
  margin: 0;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.header__wrapper {
  border-bottom: #EBEBEB 1px solid;
}
.header .ewlinks-menu {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
}
.header .ewlinks-menu li {
  display: inline;
  margin-right: 32px;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 500;
}
.header .ewlinks-menu li::marker {
  display: none;
}
.header .ewlinks-menu li:last-child {
  margin-right: 0;
}
.header-mobile {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s ease;
}
.header-mobile--active {
  grid-template-rows: 1fr;
}
.header-mobile > div {
  min-height: 0;
}
.header-mobile .ewlinks-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  justify-content: center;
  overflow: hidden;
}
.header-mobile .ewlinks-menu li {
  display: inline;
  margin-right: 32px;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 500;
}
.header-mobile .ewlinks-menu li::marker {
  display: none;
}
.header-mobile .ewlinks-menu li:last-child {
  margin-right: 0;
}
.header__buttons {
  flex-grow: 0;
  flex-shrink: 1;
  max-width: fit-content;
}

.burger {
  width: 24px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.burger__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.burger__line {
  width: 24px;
  height: 2px;
  background-color: #666;
  margin-bottom: 8px;
  transition: transform 0.25s ease, width 0.25s ease;
}
.burger__line:last-child {
  margin-bottom: 0;
}
.burger--active .burger__line {
  width: 20px;
}
.burger--active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 0);
  transform-origin: top left;
}
.burger--active .burger__line:nth-child(2) {
  transform: scaleX(0);
  transform-origin: 60% center;
}
.burger--active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, 0);
  transform-origin: bottom left;
}

.hero-section.hero-section {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.elementor-widget-chain_gallery {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .elementor-widget-chain_gallery {
    height: 100%;
    flex-grow: 1;
  }
}
.elementor-widget-chain_gallery .elementor-widget-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-grow: 1;
  padding-left: 160px;
}

.hero-screen-mobile {
  max-height: 320px;
}

.chain-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  transform: rotate(-45deg);
}

.chain-gallery {
  display: flex;
  width: max-content;
  transform-origin: center;
  animation: scroll-left 40s linear infinite;
}
.chain-gallery:nth-child(even) {
  flex-direction: row-reverse;
  animation: scroll-right 40s linear infinite;
}

.chain-item {
  display: flex;
  width: 326px;
  height: 160px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  overflow: hidden;
  position: relative;
  margin-left: -80px;
}
.chain-item-bg {
  transform: rotate(45deg);
  width: 360px;
  height: 360px;
  background-position: center;
  background-size: cover;
}
.chain-item::before {
  content: "";
  display: block;
  width: 80px;
  height: 140px;
  background-image: url("../assets/link-intersection.svg");
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  z-index: 1;
}
.chain-item::after {
  content: "";
  display: block;
  width: 80px;
  height: 140px;
  background-image: url("../assets/link-intersection.svg");
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  z-index: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
    /* зсуваємо на половину ширини контенту */
  }
}
/* для другої галереї з реверсом */
.chain-gallery:nth-child(2) {
  animation: scroll-right 25s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}
.icon-text {
  display: flex;
  font-family: var(--e-global-typography-primary-font-family);
  height: 100%;
  padding: 16px;
}
.icon-text__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: #E0E0FF;
  border-radius: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}
.icon-text__icon svg {
  height: 24px;
  width: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  font-family: var(--e-global-typography-primary-font-family);
}
.feature-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.feature-card__title {
  color: var(--e-global-color-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.feature-card__subtitle {
  color: var(--e-global-color-text);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.cpel-switcher__nav {
  background-color: #E6E6E6;
  padding: 6px 12px;
  border-radius: 8px;
}
.cpel-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cpel-switcher__toggle::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../assets/globe-lang.svg");
}
.cpel-switcher__toggle.cpel-switcher__lang a {
  background-color: initial !important;
  color: #666666 !important;
}
.cpel-switcher__toggle.cpel-switcher__lang a:hover {
  background-color: initial !important;
  color: #525252 !important;
}
.cpel-switcher__toggle.cpel-switcher__lang a .cpel-switcher__code {
  padding: 0 !important;
}
.cpel-switcher__toggle.cpel-switcher__lang a .cpel-switcher__icon {
  color: #666666 !important;
}
.cpel-switcher__list {
  left: 0px !important;
  top: calc(100% - 8px) !important;
}
.cpel-switcher__list .cpel-switcher__lang a {
  padding: 8px;
padding-left:36px !important;
  background-color: #E6E6E6 !important;
  border-radius: 0 0 8px 8px;
}
.cpel-switcher__list .cpel-switcher__code {
  color: #666666 !important;
  padding-left: 28px !important;
}
.cpel-switcher__list .cpel-switcher__code:hover {
  color: #525252 !important;
}

.color-highlight {
  color: var(--e-global-color-primary);
}

.list-marker {
  display: block;
  min-width: 24px;
  max-width: 24px;
}
.list-marker img {
  min-width: 24px;
  max-width: 24px;
}

/*# sourceMappingURL=styles.css.map */
