@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* ==== RESET (Modern) ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure,
blockquote, dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--e-global-color-secondary);
  /* або #fff, залежно від теми */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader .logo-loader {
  width: 96px;
  animation: zoomingLogo 2s ease-in-out infinite;
}
#preloader .logo-loader-elements {
  fill: white;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 0;
  animation: loading 1.5s ease-in-out infinite;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loading {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 100;
    stroke: rgba(255, 255, 255, 0);
  }
}
@keyframes zoomingLogo {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.tpt-main-menu {
  display: flex;
  padding: 0;
}
.tpt-main-menu li {
  list-style: none;
  margin-right: 40px;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  color: var(--e-global-color-55b2192);
  transition: color ease-in-out 0.25s;
  cursor: pointer;
}
.tpt-main-menu li:last-child {
  margin-right: 0;
}
.tpt-main-menu li:hover {
  color: #E0DBEB;
}

.burger-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  padding-left: 16px;
  padding-right: 16px;
}
.burger-menu.active {
  display: grid;
  grid-template-rows: 1fr;
  padding-top: 48px;
  padding-bottom: 48px;
}
.burger-menu > div {
  overflow: hidden;
}
.burger-menu .tpt-main-menu {
  flex-direction: column;
}
.burger-menu .tpt-main-menu li {
  margin-right: 0px;
  margin-bottom: 40px;
}
.burger-menu .tpt-main-menu li:last-child {
  margin-bottom: 0;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar__burger .burger {
  width: 24px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
}
.navbar__burger .burger__layer {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  transition: all 0.4s ease;
}
.navbar__burger .burger__layer:nth-child(1) {
  top: 0px;
}
.navbar__burger .burger__layer:nth-child(2) {
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.navbar__burger .burger__layer:nth-child(3) {
  bottom: 0px;
}
.navbar__burger_open .burger__layer:nth-child(1) {
  transform: rotate(45deg) translate(4px, -4px);
  transform-origin: top left;
}
@media only screen and (min-width: 320px) and (max-width: 840px) {
  .navbar__burger_open .burger__layer:nth-child(1) {
    transform: rotate(45deg) translate(1px, 0px);
  }
}
.navbar__burger_open .burger__layer:nth-child(2) {
  transform: scaleX(0);
  transform-origin: 60% center;
}
.navbar__burger_open .burger__layer:nth-child(3) {
  transform: rotate(-45deg) translate(4px, 4px);
  transform-origin: bottom left;
}
@media only screen and (min-width: 320px) and (max-width: 840px) {
  .navbar__burger_open .burger__layer:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 0px);
  }
}

.hero-section {
  min-height: 100vh; /* Fallback */
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}

.about-accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--e-global-color-primary);
  padding: 16px 0;
  margin-bottom: 16px;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item-header {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-grow: 1;
  align-items: center;
  margin-bottom: 8px;
}
.accordion-title {
  padding: 0;
  outline: 0;
  border: 0;
  background-color: unset;
  color: var(--e-global-color-primary);
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .accordion-title {
    font-size: 1.25rem;
  }
}
.accordion-chevron {
  width: 18px;
  height: 10px;
  background-image: url("../assets/img/chevron.svg");
  transition: transform 0.25s ease-in-out;
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}
.accordion-panel .accordion-content {
  overflow: hidden;
}
.accordion-item.active .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.services-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .services-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-item {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  backdrop-filter: blur(4px);
  padding: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  background-image: url("../assets/img/service-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.service-item .service-picture {
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-item .service-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  display: block;
  background-image: url("../assets/img/arrow-up.svg");
  right: 16px;
  top: 16px;
  transition: transform 0.3s ease-in-out;
}
.service-item .icon {
  width: 144px;
  height: 144px;
  transform: rotate(15deg);
  transition: transform 0.3s ease-in-out, width;
}
.service-item .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: var(--e-global-color-primary);
}
.service-item .subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--e-global-color-text);
}
.service-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.9);
}
.service-item:hover .icon {
  transform: rotate(0deg) scale(1.11);
}
.service-item:hover .service-arrow {
  transform: translate(6px, -6px);
}

.services-marquee {
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 0;
  padding: 10px 0;
  background-color: var(--e-global-color-primary);
}
.services-marquee .services-marquee-track {
  flex-shrink: 0;
  display: flex;
  gap: 40px;
  padding-left: 40px;
  animation: marquee-scroll 30s linear infinite;
}
.services-marquee .marquee-item {
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
}
.services-marquee .bullet {
  white-space: nowrap;
  color: white;
  font-weight: bold;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero-shield {
  width: 206px;
  height: 206px;
  position: relative;
  background-size: 100% 100%;
}
.hero-shield::after {
  content: "";
  display: block;
  width: 206px;
  height: 206px;
  position: absolute;
  z-index: -1;
  background-image: url(../assets/img/shield-ripple.png);
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  animation: rippleShield 5s ease-in-out infinite;
}
.hero-shield::before {
  content: "";
  display: block;
  width: 206px;
  height: 206px;
  position: absolute;
  z-index: -2;
  background-image: url(../assets/img/shield-ripple.png);
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: rippleShield 5s 2.5s ease-in-out infinite;
}

@keyframes rippleShield {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(2, 2);
    opacity: 0;
  }
}
.article strong {
  color: var(--e-global-color-primary);
}
.article ul {
  list-style-position: inside;
  padding-left: 0;
  list-style-type: disc;
}
.article ul li::marker {
  color: var(--e-global-color-primary);
}
.article-dots {
  display: block;
  min-height: 64px !important;
  max-height: 128px;
}

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