/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/pages/index.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Regular.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Medium.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Semibold.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/IBMPlexMono-Regular.woff2") format("woff2"), url("../assets/fonts/IBMPlexMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --default-ff: "Clash Display";
  --default-fz: 18px;
  --default-fw: 400;
  --default-lh: 1.2;
  --default-color: #090B0E;
  --page-bc: #090B0E;
  --grid-padding: 32px;
}
@media (max-width: 960px) {
  :root {
    --grid-padding: 24px;
  }
}
@media (max-width: 480px) {
  :root {
    --grid-padding: 16px;
  }
}
:root {
  --Black: #090B0E;
  --White: #FFFFFF;
  --Neon-Blue: #0040FF;
  --Grey-01: #757575;
  --Grey-02: #D4D4D4;
  --Dark-Blue: #07112C;
  --Sky-Blue: #BBD1FF;
  --Light-Blue: #E9F0FF;
  --Dark-Blue: #07112C;
  --White-Background: #F5F7FF;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--default-ff);
  font-size: var(--default-fz);
  font-weight: var(--default-fw);
  line-height: var(--default-lh);
  color: var(--default-color);
  background-color: var(--page-bc);
  position: relative;
  transition: opacity 0.5s ease;
  overflow-x: hidden;
  overflow-y: hidden;
  opacity: 0;
}
body.is-loaded {
  overflow-y: auto;
  opacity: 1;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

input,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: var(--White);
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}

address {
  font-style: normal;
}

a,
button {
  display: inline-flex;
  cursor: pointer;
  background-color: transparent;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}

select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  appearance: none;
}
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh;
  padding: 20px 0;
}
@media (max-width: 960px) {
  .wrapper {
    padding: 16px 0;
  }
}
@media (max-width: 360px) {
  .wrapper {
    gap: 12px;
  }
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.primary-title {
  font-size: 264px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .primary-title {
    font-size: 200px;
  }
}
@media (max-width: 960px) {
  .primary-title {
    font-size: 129px;
  }
}
@media (max-width: 480px) {
  .primary-title {
    font-size: 64px;
  }
}
@media (max-width: 360px) {
  .primary-title {
    font-size: 45px;
  }
}

.title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--Black);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .title {
    font-size: 60px;
  }
}
@media (max-width: 960px) {
  .title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 36px;
  }
}

.secondary-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--Black);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .secondary-title {
    font-size: 44px;
  }
}
@media (max-width: 960px) {
  .secondary-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .secondary-title {
    font-size: 29px;
  }
}

.tertiary-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .tertiary-title {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  .tertiary-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .tertiary-title {
    font-size: 23px;
  }
}

.quaternary-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .quaternary-title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .quaternary-title {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .quaternary-title {
    font-size: 18px;
  }
}

.section-overlay {
  border-radius: 24px;
  background-color: var(--White-Background);
}
@media (max-width: 1440px) {
  .section-overlay {
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .section-overlay {
    border-radius: 12px;
  }
}

.section-overlay-padding {
  padding: 70px 48px;
}
@media (max-width: 1440px) {
  .section-overlay-padding {
    padding: 70px 24px;
  }
}
@media (max-width: 960px) {
  .section-overlay-padding {
    padding: 60px 24px;
  }
}
@media (max-width: 480px) {
  .section-overlay-padding {
    padding: 50px 12px;
  }
}

.is-white-text {
  color: var(--White);
}

.is-black-text {
  color: var(--Black);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.marquee {
  --duration: 40s;
  --count: 4;
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: callback-marquee var(--duration) linear infinite;
  will-change: transform;
}
@keyframes callback-marquee {
  to {
    transform: translateX(calc(-100% / var(--count)));
  }
}
.marquee-text {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 72px;
}
@media (max-width: 960px) {
  .marquee-text {
    margin-right: 48px;
  }
}
@media (max-width: 480px) {
  .marquee-text {
    margin-right: 20px;
  }
}
.marquee__top-left-arrow {
  position: absolute;
  top: 0;
  left: 0;
}
.marquee__bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
.marquee__top-right-arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.marquee__bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 480px) {
  .marquee__arrow {
    width: 8px;
    height: 8px;
  }
  .marquee__arrow img {
    width: 100%;
    height: 100%;
  }
}

.swap-trigger {
  display: inline-flex;
}
.swap-trigger__inner {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.swap-trigger__current, .swap-trigger__next {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.swap-trigger__next {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translateY(100%);
}
.swap-trigger:hover .swap-trigger__current {
  transform: translateY(-100%);
}
.swap-trigger:hover .swap-trigger__next {
  transform: translateY(0);
}

.trigger-transparent-hover {
  transition: 0.35s;
}
.trigger-transparent-hover:hover {
  background-color: var(--White);
  color: var(--Black);
}
.trigger-transparent-hover:active {
  background-color: var(--Light-Blue);
}

.trigger-transparent-hover-2 {
  transition: 0.35s;
}
.trigger-transparent-hover-2:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
}
.trigger-transparent-hover-2:active {
  background-color: var(--Black);
  color: var(--White);
}

.trigger-white-hover {
  transition: 0.35s;
}
.trigger-white-hover:hover {
  background-color: var(--Light-Blue);
}
.trigger-white-hover:active {
  background-color: var(--Sky-Blue);
}

.trigger-blue-hover {
  transition: 0.35s;
}
.trigger-blue-hover:hover {
  background-color: var(--Dark-Blue);
}
.trigger-blue-hover:active {
  background-color: var(--Black);
}

.typing-hidden {
  visibility: hidden;
}

.Typewriter__cursor {
  opacity: 1;
  transition: opacity 0.2s;
}

.is-hidden-typing-wait .Typewriter__cursor {
  opacity: 0 !important;
}

.is-hidden-typing-wait.typing-started .Typewriter__cursor {
  opacity: 1 !important;
}

.Typewriter__cursor {
  font-family: initial !important;
}

.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: transform 0.3s ease;
}
@media (max-width: 960px) {
  .header {
    top: 36px;
  }
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 0 48px;
  transition: background-color 0.1s, backdrop-filter 0.1s, border-radius 0.1s;
}
@media (max-width: 1440px) {
  .header__inner {
    margin: 0 26px;
  }
}
@media (max-width: 960px) {
  .header__inner {
    margin: 0 24px;
  }
}
@media (max-width: 480px) {
  .header__inner {
    margin: 0 12px;
  }
}
.header__logo {
  transition: 0.1s;
}
.header__nav {
  margin-left: 360px;
}
@media (max-width: 1440px) {
  .header__nav {
    margin-left: 145px;
  }
}
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:last-child .header__nav-link::after {
  content: "+";
  transition: transform 0.3s ease;
}
.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  height: 44px;
  padding: 0 12px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
@media (max-width: 1440px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__nav-link.is-active::after {
  transform: rotate(45deg);
}
.header__nav-link:hover::after {
  transform: rotate(45deg);
}
.header__nav-dropdown {
  display: flex;
  align-items: center;
  gap: 55px;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background-color: var(--White);
  padding: 12px;
  border-radius: 8px;
  background-color: var(--White);
  padding: 12px;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.5s;
}
.header__nav-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.header__nav-sublink {
  font-size: 16px;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--Black);
  transition: 0.5s;
}
.header__nav-sublink:hover {
  color: var(--Neon-Blue);
}
.header__nav-medias {
  position: relative;
  width: 132px;
  height: 132px;
}
.header__nav-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 6px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  filter: blur(12px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}
.header__nav-content:first-child {
  background-image: url("../assets/images/decor/bg-gradient-1.jpg");
}
.header__nav-content:nth-child(2) {
  background-image: url("../assets/images/decor/bg-gradient-2.jpg");
}
.header__nav-content:nth-child(3) {
  background-image: url("../assets/images/decor/map-image.jpg");
}
.header__nav-content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.header__nav-text {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
  text-align: center;
}
.header__book, .header__contact {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
@media (max-width: 960px) {
  .header__book, .header__contact {
    display: none;
  }
}
.header__book {
  margin-left: auto;
  margin-right: 2px;
  padding: 0 32px;
  transition: 0.35s;
}
.header__contact {
  padding: 0 43px;
  transition: 0.35s;
}
.header__contact svg {
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 40px;
  width: 40px;
}
@media (max-width: 960px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  position: absolute;
  width: 32px;
  height: 2px;
  border-radius: 100px;
  transition: 0.5s;
}
.header__burger span:first-child {
  transform: translateY(6px);
}
.header__burger span:last-child {
  transform: translateY(-6px);
}
.header__menu {
  position: absolute;
  top: 95%;
  width: 100%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0.1s;
}
.header__menu-inner {
  background: rgba(7, 17, 44, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 0 0 12px 12px;
  margin: 0 24px;
  padding: 24px 16px 20px;
}
@media (max-width: 480px) {
  .header__menu-inner {
    margin: 0 12px;
  }
}
.header__menu-nav {
  margin-bottom: 24px;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__menu-item:not(:last-child) {
  border-bottom: 1px solid var(--Grey-01);
}
.header__menu-box.is-active .header__menu-plus span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}
.header__menu-link {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--White);
  padding: 12px 10px;
}
@media (max-width: 480px) {
  .header__menu-link {
    font-size: 29px;
  }
}
.header__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  width: 100%;
}
.header__menu-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
}
.header__menu-plus span {
  width: 2px;
  height: 12px;
  background-color: var(--White);
}
.header__menu-plus span:first-child {
  transform: rotate(90deg) translateY(-1.8px);
}
.header__menu-label {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--White);
}
@media (max-width: 480px) {
  .header__menu-label {
    font-size: 29px;
  }
}
.header__menu-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.header__menu-body {
  padding: 8px 10px 12px;
}
.header__menu-sublist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__menu-sublink {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--White);
}
.header__menu-buttons {
  display: flex;
  gap: 6px;
}
@media (max-width: 480px) {
  .header__menu-buttons {
    flex-direction: column;
  }
}
.header__menu-book, .header__menu-contact {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
.header__menu-book {
  color: var(--White);
  border: 1px solid var(--White);
  padding: 0 32px;
}
@media (max-width: 480px) {
  .header__menu-book {
    order: 2;
  }
}
.header__menu-contact {
  background-color: var(--White);
  color: var(--Black);
  padding: 0 43px;
}
.header__menu-contact svg {
  color: var(--Neon-Blue);
}
.header.header--default-light .header__logo {
  color: var(--White);
}
.header.header--default-light .header__nav-link {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--default-light .header__nav-link:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__nav-link.is-active {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__book {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--default-light .header__book:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__contact {
  background-color: var(--White);
  color: var(--Black);
}
.header.header--default-light .header__contact:hover {
  color: var(--Neon-Blue);
}
.header.header--default-light .header__contact svg {
  color: var(--Neon-Blue);
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header.header--default-light .header__burger span {
  background-color: var(--White);
}
.header.header--default-dark .header__logo {
  color: var(--Black);
}
.header.header--default-dark .header__nav-link {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--default-dark .header__nav-link:hover {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__nav-link.is-active {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__book {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--default-dark .header__book:hover {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__contact {
  background-color: var(--Neon-Blue);
  color: var(--White);
}
.header.header--default-dark .header__contact:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--default-dark .header__contact svg {
  color: var(--White);
  animation: contactBlinkLight 2s ease-in-out infinite;
}
.header.header--default-dark .header__burger span {
  background-color: var(--Black);
}
.header.header--light .header__inner, .header.header--dark .header__inner {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}
.header.header--light .header__logo {
  color: var(--White);
}
.header.header--light .header__nav-link {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--light .header__nav-link:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__nav-link.is-active {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__book {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--light .header__book:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__contact {
  background-color: var(--White);
  color: var(--Black);
}
.header.header--light .header__contact:hover {
  color: var(--Neon-Blue);
}
.header.header--light .header__contact svg {
  color: var(--Neon-Blue);
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header.header--light .header__burger span {
  background-color: var(--White);
}
.header.header--dark .header__logo {
  color: var(--Black);
}
.header.header--dark .header__nav-link {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--dark .header__nav-link:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__nav-link.is-active {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__book {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--dark .header__book:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__contact {
  background-color: var(--Neon-Blue);
  color: var(--White);
}
.header.header--dark .header__contact:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__contact svg {
  color: var(--White);
  animation: contactBlinkLight 2s ease-in-out infinite;
}
.header.header--dark .header__burger span {
  background-color: var(--Black);
}
@media (max-width: 360px) {
  .header.is-open-burger {
    top: 16px;
  }
}
.header.is-open-burger .header__inner {
  background: rgba(7, 17, 44, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 32px 28px 12px !important;
}
@media (max-width: 480px) {
  .header.is-open-burger .header__inner {
    padding: 20px 16px 12px !important;
  }
}
@media (max-width: 360px) {
  .header.is-open-burger .header__inner {
    margin: 0;
    padding: 32px 24px 12px !important;
  }
}
.header.is-open-burger .header__logo {
  color: var(--White) !important;
}
.header.is-open-burger .header__burger span {
  background-color: var(--White) !important;
}
.header.is-open-burger .header__burger span:first-child {
  transform: rotate(45deg);
}
.header.is-open-burger .header__burger span:last-child {
  transform: rotate(-45deg);
}
.header.is-open-burger .header__menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 360px) {
  .header.is-open-burger .header__menu-inner {
    margin: 0;
  }
}
.header.header--hidden {
  transform: translateY(-200%);
}

@keyframes contactBlinkDark {
  0% {
    color: var(--Neon-Blue);
  }
  100% {
    color: var(--Dark-Blue);
  }
}
@keyframes contactBlinkLight {
  0% {
    color: var(--White);
  }
  100% {
    color: var(--Sky-Blue);
  }
}
.footer__inner {
  background-image: url("../assets/images/footer/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px 25px 13px;
  border-radius: 24px;
}
@media (max-width: 1440px) {
  .footer__inner {
    background-image: url("../assets/images/footer/bg-laptop.jpg");
  }
}
@media (max-width: 960px) {
  .footer__inner {
    padding: 24px;
    background-image: url("../assets/images/footer/bg-tablet.jpg");
  }
}
@media (max-width: 480px) {
  .footer__inner {
    background-image: url("../assets/images/footer/bg-mobile-tablet.jpg");
  }
}
@media (max-width: 360px) {
  .footer__inner {
    padding: 24px 12px;
    background-image: url("../assets/images/footer/bg-mobile.jpg");
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 155px;
}
@media (max-width: 960px) {
  .footer__top {
    margin-bottom: 190px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__top {
    gap: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 360px) {
  .footer__top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.footer__logo {
  color: var(--White);
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .footer__logo {
    margin-bottom: 12px;
  }
}
.footer__address {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--White);
  max-width: 240px;
}
@media (max-width: 960px) {
  .footer__address {
    margin-bottom: 12px;
  }
}
.footer__email {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
  text-decoration: underline;
}
.footer__navs {
  display: flex;
  gap: 80px;
}
@media (max-width: 960px) {
  .footer__navs {
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .footer__navs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 76px;
  }
}
@media (max-width: 360px) {
  .footer__navs {
    gap: 24px 44px;
  }
}
.footer__nav {
  margin: 0 !important;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-link {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  color: var(--White);
  text-transform: uppercase;
  padding: 8px 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__copyright {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
}
@media (max-width: 480px) {
  .footer__copyright {
    order: 2;
    max-width: 170px;
  }
}
.footer__privacy-menu {
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .footer__privacy-menu {
    order: 1;
  }
}
.footer__cookies, .footer__privacy {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
}
.footer__cookies:after, .footer__privacy:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--White);
  transition: 0.5s;
}

.modal-callback {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-callback {
    padding: 16px;
    justify-content: center;
  }
}
.modal-callback.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-callback__overlay {
  max-width: 620px;
  width: 100%;
  background-color: var(--White);
  padding: 32px;
  border-radius: 16px;
}
@media (max-width: 960px) {
  .modal-callback__overlay {
    max-width: 590px;
  }
}
@media (max-width: 480px) {
  .modal-callback__overlay {
    padding: 25px 16px;
  }
}
@media (max-width: 360px) {
  .modal-callback__overlay {
    padding: 20px 16px;
  }
}
.modal-callback__close {
  margin-bottom: 44px;
  color: var(--Dark-Blue);
  transition: 0.5s;
}
@media (max-width: 960px) {
  .modal-callback__close {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .modal-callback__close {
    margin-bottom: 32px;
    width: 44px;
    height: 44px;
  }
}
.modal-callback__close:hover {
  color: var(--Neon-Blue);
}
.modal-callback__title {
  margin-bottom: 28px;
}
@media (max-width: 960px) {
  .modal-callback__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .modal-callback__title {
    margin-bottom: 20px;
  }
}
.modal-callback__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.modal-callback__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .modal-callback__fields {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .modal-callback__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.modal-callback__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal-callback__label {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
}
.modal-callback__star {
  color: var(--Neon-Blue);
  margin-left: -8px;
}
.modal-callback__input {
  font-family: "IBM Plex Mono";
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--Black);
}
.modal-callback__input::placeholder {
  font-family: "IBM Plex Mono";
  color: var(--Grey-01);
}
.modal-callback__textarea {
  font-family: "IBM Plex Mono";
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--Black);
  height: 135px;
}
.modal-callback__textarea::placeholder {
  font-family: "IBM Plex Mono";
  color: var(--Grey-01);
}
.modal-callback__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  height: 44px;
  padding: 0 32px;
  background-color: var(--Neon-Blue);
  text-transform: uppercase;
  color: var(--White);
  border-radius: 100px;
}
.modal-callback__note {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
}
.modal-callback__note a {
  text-decoration: underline;
}

.modal-success {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-success {
    padding: 16px;
    justify-content: center;
  }
}
.modal-success.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-success__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: var(--White);
  max-width: 470px;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .modal-success__overlay {
    max-width: 304px;
  }
}
.modal-success__close {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-left: auto;
  color: var(--Dark-Blue);
  transition: 0.5s;
}
.modal-success__close:hover {
  color: var(--Neon-Blue);
}
.modal-success__title {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-success__title {
    margin-bottom: 24px;
  }
}
.modal-success__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 960px) {
  .modal-success__content {
    gap: 8px;
  }
}
.modal-success__text {
  font-family: "IBM Plex Mono";
  text-align: center;
}

.modal-error {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-error {
    padding: 16px;
    justify-content: center;
  }
}
.modal-error.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-error__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: var(--White);
  max-width: 470px;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .modal-error__overlay {
    max-width: 304px;
  }
}
.modal-error__close {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-left: auto;
}
.modal-error__title {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-error__title {
    margin-bottom: 24px;
  }
}
.modal-error__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 960px) {
  .modal-error__content {
    gap: 8px;
  }
}
.modal-error__text {
  font-family: "IBM Plex Mono";
  text-align: center;
}

.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 410px 55px 25px;
  border-radius: 30px;
  background-image: url("../assets/images/intro/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1440px) {
  .intro__inner {
    padding: 330px 25px 20px;
    background-image: url("../assets/images/intro/bg-md.jpg");
  }
}
@media (max-width: 960px) {
  .intro__inner {
    padding: 270px 20px 25px;
  }
}
@media (max-width: 480px) {
  .intro__inner {
    padding: 283px 15px 20px;
  }
}
@media (max-width: 360px) {
  .intro__inner {
    padding: 290px 15px 20px;
  }
}
.intro__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--White);
  font-size: clamp(11.17rem, 0.637rem + 13.152vw, 16.5rem);
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1440px) {
  .intro__title {
    font-size: clamp(7.22rem, -0.58rem + 14.614vw, 12.5rem);
  }
}
@media (max-width: 960px) {
  .intro__title {
    gap: 5px;
    font-size: clamp(6.11rem, 1.861rem + 9.948vw, 8.1rem);
  }
}
@media (max-width: 768px) {
  .intro__title {
    font-size: clamp(5rem, 3.148rem + 8.944vw, 8.11rem);
  }
}
@media (max-width: 480px) {
  .intro__title {
    font-size: 64px;
  }
}
@media (max-width: 360px) {
  .intro__title {
    font-size: 45px;
    gap: 0;
  }
}
.intro__title div {
  display: flex;
  width: 11.7%;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .intro__title div {
    width: 10.9%;
  }
}
@media (max-width: 960px) {
  .intro__title div {
    width: 11.1%;
  }
}
@media (max-width: 480px) {
  .intro__title div {
    width: 10.8%;
  }
}
@media (max-width: 360px) {
  .intro__title div {
    width: 35px;
    height: 35px;
  }
}
.intro__slogan {
  position: relative;
  margin-bottom: 270px;
}
@media (max-width: 1440px) {
  .intro__slogan {
    margin-bottom: 215px;
  }
}
@media (max-width: 960px) {
  .intro__slogan {
    margin-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .intro__slogan {
    margin-bottom: 130px;
  }
}
@media (max-width: 360px) {
  .intro__slogan {
    margin-bottom: 155px;
  }
}
.intro__top-left-arrow {
  position: absolute;
  top: 0;
  left: -40px;
}
@media (max-width: 1440px) {
  .intro__top-left-arrow {
    left: -20px;
  }
}
@media (max-width: 480px) {
  .intro__top-left-arrow {
    left: -6px;
  }
}
.intro__bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: -40px;
}
@media (max-width: 1440px) {
  .intro__bottom-left-arrow {
    left: -20px;
  }
}
@media (max-width: 480px) {
  .intro__bottom-left-arrow {
    left: -6px;
  }
}
.intro__top-right-arrow {
  position: absolute;
  top: 0;
  right: -40px;
}
@media (max-width: 1440px) {
  .intro__top-right-arrow {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .intro__top-right-arrow {
    right: -6px;
  }
}
.intro__bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: -40px;
}
@media (max-width: 1440px) {
  .intro__bottom-right-arrow {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .intro__bottom-right-arrow {
    right: -6px;
  }
}
@media (max-width: 480px) {
  .intro__arrow {
    width: 8px;
    height: 8px;
  }
  .intro__arrow img {
    width: 100%;
    height: 100%;
  }
}
.intro__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.intro__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 350px;
}
@media (max-width: 960px) {
  .intro__content {
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .intro__content {
    gap: 20px;
    max-width: 280px;
  }
}
.intro__text {
  font-family: "IBM Plex Mono";
  color: var(--White);
  height: 66px;
}
@media (max-width: 480px) {
  .intro__text {
    height: 88px;
  }
}
.intro__button {
  position: relative;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--White);
  max-width: max-content;
  padding-block: 8px;
}
.intro__button::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--White);
}
.intro__projects-link {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  color: var(--White);
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .intro__projects-link {
    display: none;
  }
}

.we-like__inner {
  background-color: var(--White-Background);
  padding-top: 390px;
  padding-bottom: 390px;
  padding-inline: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .we-like__inner {
    padding-top: 285px;
    padding-bottom: 285px;
  }
}
@media (max-width: 960px) {
  .we-like__inner {
    padding-top: 225px;
    padding-bottom: 225px;
  }
}
@media (max-width: 480px) {
  .we-like__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.we-like__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1590px;
  width: 100%;
}
@media (max-width: 1440px) {
  .we-like__content {
    max-width: 985px;
  }
}
@media (max-width: 960px) {
  .we-like__content {
    max-width: 730px;
  }
}
@media (max-width: 480px) {
  .we-like__content {
    max-width: 356px;
  }
}
@media (max-width: 360px) {
  .we-like__content {
    max-width: 305px;
  }
}
.we-like__label {
  font-family: "IBM Plex Mono";
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
}
@media (max-width: 960px) {
  .we-like__label {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .we-like__label {
    margin-bottom: 32px;
  }
}
.we-like__label svg {
  color: var(--Neon-Blue);
}
.we-like__label span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--Black);
}
.we-like__title {
  text-align: center;
}

@media (hover: hover) {
  .goals__list:hover .goals__item {
    flex-basis: 378px;
  }
  .goals__list:hover .goals__item:hover {
    flex-basis: 575px;
  }
  .goals__list:hover .goals__item:hover .goals__description {
    display: block;
  }
  .goals__list:hover .goals__item:hover .goals__summary {
    display: none;
  }
}
.goals__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-block: 70px;
}
@media (max-width: 960px) {
  .goals__inner {
    gap: 40px;
    padding-block: 60px;
  }
}
@media (max-width: 360px) {
  .goals__inner {
    padding-block: 50px;
  }
}
.goals__wrapper {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .goals__wrapper {
    padding-inline: 24px;
  }
}
@media (max-width: 360px) {
  .goals__wrapper {
    padding-inline: 12px;
  }
}
.goals__title {
  max-width: 655px;
  width: 100%;
}
@media (max-width: 1440px) {
  .goals__title {
    max-width: 535px;
  }
}
@media (max-width: 960px) {
  .goals__title {
    max-width: 395px;
  }
}
@media (max-width: 480px) {
  .goals__title {
    max-width: 350px;
  }
}
@media (max-width: 360px) {
  .goals__title {
    max-width: 255px;
  }
}
.goals__list {
  display: flex;
  gap: 16px;
}
@media (max-width: 960px) {
  .goals__list {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .goals__list::-webkit-scrollbar {
    display: none;
  }
}
.goals__item {
  flex: 1 1 430px;
  height: 525px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.goals__item:first-child {
  margin-left: 48px;
}
@media (max-width: 1440px) {
  .goals__item:first-child {
    margin-left: 24px;
  }
}
@media (max-width: 480px) {
  .goals__item:first-child {
    margin-left: 12px;
  }
}
.goals__item:last-child {
  margin-right: 48px;
}
@media (max-width: 1440px) {
  .goals__item:last-child {
    margin-right: 24px;
  }
}
@media (max-width: 480px) {
  .goals__item:last-child {
    margin-right: 12px;
  }
}
.goals__item:nth-child(1) {
  background-position: right;
}
.goals__item:nth-child(2) {
  background-position: left;
}
.goals__item:nth-child(3) {
  background-position: center;
}
.goals__item:nth-child(4) {
  background-position: right;
}
@media (max-width: 960px) {
  .goals__item {
    flex: 0 0 420px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .goals__item {
    flex: 0 0 300px;
    height: 360px;
  }
}
.goals__box {
  display: flex;
  flex-direction: column;
  padding: 28px;
  height: 100%;
}
@media (max-width: 1440px) {
  .goals__box {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .goals__box {
    padding: 16px;
  }
}
.goals__label {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 8px;
}
.goals__name {
  margin-top: auto;
  margin-bottom: 12px;
}
.goals__summary {
  font-family: "IBM Plex Mono";
}
@media (max-width: 480px) {
  .goals__summary {
    display: none;
  }
}
.goals__description {
  font-family: "IBM Plex Mono";
  display: none;
  width: 520px;
}
@media (max-width: 960px) {
  .goals__description {
    display: block;
    width: initial;
  }
}

.approach__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 1080px;
}
@media (max-width: 1440px) {
  .approach__inner {
    min-height: 900px;
  }
}
@media (max-width: 960px) {
  .approach__inner {
    min-height: 640px;
  }
}
@media (max-width: 480px) {
  .approach__inner {
    min-height: 545px;
  }
}
@media (max-width: 360px) {
  .approach__inner {
    min-height: 630px;
  }
}
.approach__title {
  margin-bottom: 245px;
  text-align: center;
}
@media (max-width: 1440px) {
  .approach__title {
    margin-bottom: 140px;
  }
}
@media (max-width: 960px) {
  .approach__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .approach__title {
    margin-bottom: 30px;
  }
}
.approach__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  width: 100%;
}
@media (max-width: 960px) {
  .approach__list {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .approach__list {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .approach__list .approach-arrow {
    width: 10px;
    height: 10px;
  }
}
.approach__item {
  max-width: 1056px;
  width: 100%;
}
@media (max-width: 1440px) {
  .approach__item {
    max-width: 888px;
  }
}
@media (max-width: 960px) {
  .approach__item {
    max-width: 665px;
  }
}
@media (max-width: 480px) {
  .approach__item {
    max-width: 425px;
  }
}
@media (max-width: 360px) {
  .approach__item {
    max-width: 304px;
  }
}
.approach__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  transition: padding 0.45s ease;
}
.approach__label {
  text-align: center;
}
.approach__text {
  font-family: "IBM Plex Mono";
  max-width: 540px;
  text-align: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, height 0.45s ease;
}
@media (max-width: 960px) {
  .approach__text {
    max-width: 490px;
  }
}
.approach__item.is-hovered .approach__box {
  padding: 21px 24px;
  gap: 24px;
}
@media (max-width: 960px) {
  .approach__item.is-hovered .approach__box {
    gap: 16px;
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .approach__item.is-hovered .approach__box {
    gap: 12px;
    padding: 0 14px;
  }
}
.approach__item.is-hovered .approach__text {
  opacity: 1;
}
.approach-arrow {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 100;
}

.services__inner {
  background-image: url("../assets/images/services/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-inline: 48px;
  padding-top: 70px;
  padding-bottom: 225px;
}
@media (max-width: 1440px) {
  .services__inner {
    padding-inline: 24px;
    padding-bottom: 185px;
  }
}
@media (max-width: 960px) {
  .services__inner {
    padding-top: 60px;
    padding-bottom: 140px;
  }
}
@media (max-width: 480px) {
  .services__inner {
    padding-inline: 12px;
    padding-top: 50px;
    padding-bottom: 52px;
  }
}
.services__top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .services__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.services__content {
  max-width: 480px;
}
@media (max-width: 1440px) {
  .services__content {
    max-width: 415px;
  }
}
.services__small-title {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .services__small-title {
    margin-bottom: 17px;
  }
}
.services__link {
  position: relative;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  text-transform: uppercase;
}
.services__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--Black);
}
.services__swiper {
  position: relative !important;
  overflow: visible !important;
  perspective: 1500px;
}
@media (max-width: 480px) {
  .services__swiper {
    margin-bottom: 24px;
  }
}
.services__wrapper {
  align-items: center;
}
.services__slide {
  transform-origin: center bottom;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.7s ease, opacity 0.7s ease;
  display: flex;
  flex-direction: column;
  max-width: 870px !important;
  width: 100% !important;
  height: 600px !important;
}
@media (max-width: 1440px) {
  .services__slide {
    max-width: 655px !important;
    height: 450px !important;
  }
}
@media (max-width: 960px) {
  .services__slide {
    max-width: 530px !important;
    height: 400px !important;
  }
}
@media (max-width: 480px) {
  .services__slide {
    max-width: 305px !important;
    height: 360px !important;
  }
}
.services__slide-box {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
@media (max-width: 960px) {
  .services__slide-box {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .services__slide-box {
    padding: 16px;
  }
}
.services__slide--1 {
  background-image: url("../assets/images/services/service-bg-1.jpg");
}
@media (max-width: 1440px) {
  .services__slide--1 {
    background-image: url("../assets/images/services/service-bg-1-1440.jpg");
  }
}
@media (max-width: 960px) {
  .services__slide--1 {
    background-image: url("../assets/images/services/service-bg-1-960.jpg");
  }
}
@media (max-width: 480px) {
  .services__slide--1 {
    background-image: url("../assets/images/services/service-bg-1-360.jpg");
  }
}
.services__slide--2 {
  background-image: url("../assets/images/services/service-bg-2.jpg");
}
@media (max-width: 1440px) {
  .services__slide--2 {
    background-image: url("../assets/images/services/service-bg-2-1440.jpg");
  }
}
@media (max-width: 960px) {
  .services__slide--2 {
    background-image: url("../assets/images/services/service-bg-2-960.jpg");
  }
}
@media (max-width: 480px) {
  .services__slide--2 {
    background-image: url("../assets/images/services/service-bg-2-360.jpg");
  }
}
.services__slide--3 {
  background-image: url("../assets/images/services/service-bg-3.jpg");
}
@media (max-width: 1440px) {
  .services__slide--3 {
    background-image: url("../assets/images/services/service-bg-3-1440.jpg");
  }
}
@media (max-width: 960px) {
  .services__slide--3 {
    background-image: url("../assets/images/services/service-bg-3-960.jpg");
  }
}
@media (max-width: 480px) {
  .services__slide--3 {
    background-image: url("../assets/images/services/service-bg-3-360.jpg");
  }
}
.services__slide--4 {
  background-image: url("../assets/images/services/service-bg-4.jpg");
}
@media (max-width: 1440px) {
  .services__slide--4 {
    background-image: url("../assets/images/services/service-bg-4-1440.jpg");
  }
}
@media (max-width: 960px) {
  .services__slide--4 {
    background-image: url("../assets/images/services/service-bg-4-960.jpg");
  }
}
@media (max-width: 480px) {
  .services__slide--4 {
    background-image: url("../assets/images/services/service-bg-4-360.jpg");
  }
}
.services__slide--2 .services__step, .services__slide--3 .services__step, .services__slide--4 .services__step {
  color: var(--White);
}
.services__slide--2 .services__label, .services__slide--3 .services__label, .services__slide--4 .services__label {
  color: var(--White);
}
.services__slide--2 .services__name, .services__slide--3 .services__name, .services__slide--4 .services__name {
  color: var(--White);
}
.services__step {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 3px;
  max-width: max-content;
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .services__step {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .services__step {
    margin-bottom: 8px;
  }
}
.services__step-top-left-arrow {
  position: absolute;
  top: 0;
  left: 0;
}
.services__step-top-right-arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.services__step-bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
.services__step-bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
@media (max-width: 960px) {
  .services__list {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .services__list {
    gap: 8px;
  }
}
.services__drug {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 60%;
  right: 19%;
  z-index: 1000;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (max-width: 960px) {
  .services__drug {
    top: 60%;
    right: 10%;
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 480px) {
  .services__drug {
    display: none;
  }
}
.services__drug.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.services__drug-text {
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 6px;
}
.services__drug-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.services__arrows {
  display: none;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .services__arrows {
    display: flex;
    justify-content: center;
  }
}
.services__arrow {
  position: relative !important;
  left: initial !important;
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  transform: initial !important;
  margin: 0 !important;
  width: 52px !important;
  height: 52px !important;
}
.services__arrow svg {
  color: var(--Black);
  fill: none !important;
  transition: 0.2s;
}
.services__arrow:hover svg {
  fill: var(--Black) !important;
  color: var(--White) !important;
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1856px;
}
.projects__item {
  max-width: 1855px !important;
  width: 100% !important;
  transform-origin: top center;
}
.projects__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.projects__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 450px 0;
  max-width: 955px;
  width: 100%;
}
@media (max-width: 1440px) {
  .projects__content {
    padding: 360px 0;
  }
}
@media (max-width: 960px) {
  .projects__content {
    padding: 270px 0;
  }
}
@media (max-width: 480px) {
  .projects__content {
    padding: 185px 0;
    max-width: 304px;
  }
}
.projects__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--White);
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .projects__label {
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .projects__label {
    margin-bottom: 12px;
  }
}
.projects__title {
  margin-bottom: 36px;
  text-transform: uppercase;
  color: var(--White);
  text-align: center;
}
@media (max-width: 480px) {
  .projects__title {
    margin-bottom: 24px;
  }
}
.projects__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .projects__buttons {
    flex-direction: column;
    max-width: 195px;
    width: 100%;
  }
}
.projects__button-more, .projects__button-all {
  font-family: "IBM Plex Mono";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 32px;
  border-radius: 100px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .projects__button-more, .projects__button-all {
    width: 100%;
  }
}
.projects__button-more {
  border: 1px solid var(--White);
  color: var(--White);
}
.projects__button-all {
  background-color: var(--White);
}

.team__inner {
  padding-block: 70px;
}
@media (max-width: 960px) {
  .team__inner {
    padding-block: 60px;
  }
}
@media (max-width: 480px) {
  .team__inner {
    padding-block: 50px;
  }
}
.team__overlay {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .team__overlay {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .team__overlay {
    padding-inline: 12px;
  }
}
.team__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
@media (max-width: 960px) {
  .team__top {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .team__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.team__text {
  font-family: "IBM Plex Mono";
  width: 575px;
  padding-right: 40px;
  height: 44px;
}
@media (max-width: 1440px) {
  .team__text {
    width: 430px;
    height: 66px;
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .team__text {
    width: 425px;
  }
}
@media (max-width: 360px) {
  .team__text {
    height: 88px;
    width: 304px;
  }
}
.team__list {
  display: flex;
  gap: 15px;
  margin-bottom: 55px;
}
@media (max-width: 960px) {
  .team__list {
    margin-bottom: 40px;
    gap: 12px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team__list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 480px) {
  .team__list {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.team__item {
  max-width: 575px;
  width: 100%;
}
@media (max-width: 1440px) {
  .team__item {
    max-width: 430px;
  }
}
@media (max-width: 960px) {
  .team__item {
    width: initial;
    max-width: initial;
    flex: 0 0 380px;
  }
}
@media (max-width: 480px) {
  .team__item {
    flex: 0 0 265px;
  }
}
.team__item:first-child {
  margin-left: 48px;
}
@media (max-width: 1440px) {
  .team__item:first-child {
    margin-left: 24px;
  }
}
@media (max-width: 480px) {
  .team__item:first-child {
    margin-left: 12px;
  }
}
.team__item:last-child {
  margin-right: 48px;
}
@media (max-width: 1440px) {
  .team__item:last-child {
    margin-right: 24px;
  }
}
@media (max-width: 480px) {
  .team__item:last-child {
    margin-right: 12px;
  }
}
.team__box {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 675px;
  overflow: hidden;
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 1440px) {
  .team__box {
    height: 500px;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .team__box {
    height: 440px;
  }
}
@media (max-width: 480px) {
  .team__box {
    height: 308px;
    padding: 16px;
  }
}
.team__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.team__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__content {
  position: relative;
  z-index: 100;
  margin-top: auto;
}
.team__name {
  color: var(--White);
  margin-bottom: 8px;
}
@media (max-width: 960px) {
  .team__name {
    margin-bottom: 4px;
  }
}
.team__position {
  color: var(--White);
  text-transform: uppercase;
}
.team__wrapper {
  margin-left: auto;
  max-width: 575px;
}
@media (max-width: 1440px) {
  .team__wrapper {
    max-width: 430px;
  }
}
.team__label {
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .team__label {
    margin-bottom: 12px;
  }
}
.team__description {
  font-family: "IBM Plex Mono";
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .team__description {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .team__description {
    margin-bottom: 20px;
  }
}
.team__link {
  font-family: "IBM Plex Mono";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 100px;
  padding: 0 32px;
  background-color: var(--Neon-Blue);
  color: var(--White);
  text-transform: uppercase;
  line-height: 1.3;
  max-width: max-content;
}

.work {
  overflow: hidden;
}
.work__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work__title {
  margin-bottom: 250px;
}
@media (max-width: 1440px) {
  .work__title {
    margin-bottom: 190px;
  }
}
@media (max-width: 960px) {
  .work__title {
    margin-bottom: 135px;
  }
}
@media (max-width: 480px) {
  .work__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 360px) {
  .work__title {
    margin-bottom: 70px;
  }
}
.work__content {
  max-width: 1356px;
  text-align: center;
  margin-bottom: 270px;
}
@media (max-width: 1440px) {
  .work__content {
    margin-bottom: 210px;
    max-width: 1135px;
  }
}
@media (max-width: 960px) {
  .work__content {
    margin-bottom: 125px;
    max-width: 700px;
  }
}
@media (max-width: 480px) {
  .work__content {
    margin-bottom: 70px;
    max-width: 355px;
  }
}
@media (max-width: 360px) {
  .work__content {
    margin-bottom: 40px;
    max-width: 304px;
  }
}
.work__slider {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(120px);
  max-width: 1855px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.work__slider.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.work__slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.work__box {
  max-width: 400px;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--White);
}
@media (max-width: 1440px) {
  .work__box {
    max-width: 350px;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .work__box {
    max-width: 340px;
  }
}
@media (max-width: 480px) {
  .work__box {
    max-width: 300px;
  }
}
.work__step {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 3px;
  max-width: max-content;
  margin-bottom: 12px;
}
.work__step-top-left-arrow {
  position: absolute;
  top: 0;
  left: 0;
}
.work__step-top-right-arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.work__step-bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
.work__step-bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
}
.work__primary-label {
  margin-bottom: 90px;
}
@media (max-width: 1440px) {
  .work__primary-label {
    margin-bottom: 50px;
  }
}
@media (max-width: 960px) {
  .work__primary-label {
    margin-bottom: 25px;
  }
}
.work__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
@media (max-width: 1440px) {
  .work__icon {
    margin-bottom: 75px;
  }
  .work__icon svg {
    width: 80px;
  }
}
@media (max-width: 960px) {
  .work__icon {
    margin-bottom: 70px;
  }
  .work__icon svg {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .work__icon {
    margin-bottom: 40px;
  }
  .work__icon svg {
    width: 65px;
  }
}
.work__secondary-label {
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .work__secondary-label {
    margin-bottom: 8px;
  }
}
.work__description {
  font-family: "IBM Plex Mono";
}
.work__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.work__pagination .swiper-pagination-bullet {
  background: none;
  border-radius: none;
  opacity: initial;
  margin: 0 !important;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid var(--Black);
  transition: all 0.3s ease;
}
.work__pagination .swiper-pagination-bullet:hover {
  background-color: var(--Black);
  color: var(--White);
}
.work__pagination .swiper-pagination-bullet-active {
  background-color: var(--Black);
  color: var(--White);
}

.client-projects__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 1614px;
}
@media (max-width: 1440px) {
  .client-projects__inner {
    min-height: 1510px;
  }
}
@media (max-width: 960px) {
  .client-projects__inner {
    min-height: 1409px;
  }
}
@media (max-width: 480px) {
  .client-projects__inner {
    min-height: 1563px;
  }
}
@media (max-width: 360px) {
  .client-projects__inner {
    min-height: 1554px;
  }
}
.client-projects__title {
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 960px) {
  .client-projects__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .client-projects__title {
    margin-bottom: 12px;
  }
}
.client-projects__text {
  max-width: 632px;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 960px) {
  .client-projects__text {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .client-projects__text {
    margin-bottom: 30px;
  }
}
.client-projects__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.client-projects__item:nth-child(1) .client-projects__box {
  background-position: center;
  gap: 680px;
}
@media (max-width: 1440px) {
  .client-projects__item:nth-child(1) .client-projects__box {
    gap: 370px;
  }
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(1) .client-projects__box {
    gap: 220px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(1) .client-projects__box {
    gap: 35px;
  }
}
.client-projects__item:nth-child(1) .client-projects__content-labels {
  gap: 135px;
  margin-bottom: 90px;
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(1) .client-projects__content-labels {
    gap: 55px;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(1) .client-projects__content-labels {
    margin-bottom: 70px;
  }
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(1) .client-projects__content-labels {
    gap: 12px;
    margin-bottom: 30px;
  }
}
.client-projects__item:nth-child(1) .client-projects__content-label {
  color: var(--Sky-Blue);
  max-width: 170px;
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(1) .client-projects__content-label {
    max-width: 100%;
  }
}
.client-projects__item:nth-child(2) .client-projects__box {
  background-position: center;
  gap: 580px;
}
@media (max-width: 1440px) {
  .client-projects__item:nth-child(2) .client-projects__box {
    gap: 430px;
  }
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(2) .client-projects__box {
    gap: 100px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(2) .client-projects__box {
    gap: 35px;
  }
}
.client-projects__item:nth-child(2) .client-projects__content-labels {
  gap: 195px;
  margin-bottom: 90px;
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(2) .client-projects__content-labels {
    gap: 55px;
    margin-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(2) .client-projects__content-labels {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(2) .client-projects__content-labels {
    gap: 12px;
    margin-bottom: 17px;
  }
}
.client-projects__item:nth-child(2) .client-projects__content-label {
  color: var(--Grey-02);
  max-width: 110px;
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(2) .client-projects__content-label {
    max-width: 100%;
  }
}
.client-projects__item:nth-child(3) .client-projects__box {
  background-position: top;
  gap: 667px;
}
@media (max-width: 1440px) {
  .client-projects__item:nth-child(3) .client-projects__box {
    gap: 432px;
  }
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(3) .client-projects__box {
    gap: 154px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(3) .client-projects__box {
    gap: 35px;
  }
}
.client-projects__item:nth-child(3) .client-projects__content-labels {
  gap: 165px;
  margin-bottom: 90px;
}
@media (max-width: 960px) {
  .client-projects__item:nth-child(3) .client-projects__content-labels {
    gap: 25px;
    margin-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .client-projects__item:nth-child(3) .client-projects__content-labels {
    margin-bottom: 75px;
    gap: 72px;
  }
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(3) .client-projects__content-labels {
    gap: 12px;
    margin-bottom: 32px;
  }
}
.client-projects__item:nth-child(3) .client-projects__content-label {
  color: var(--Grey-02);
  max-width: 130px;
}
@media (max-width: 360px) {
  .client-projects__item:nth-child(3) .client-projects__content-label {
    max-width: 100%;
  }
}
.client-projects__box {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  color: var(--White);
  padding: 40px;
  overflow: hidden;
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: var(--bg-image-desktop);
}
@media (max-width: 1440px) {
  .client-projects__box {
    padding: 35px;
    background-image: var(--bg-image-laptop);
  }
}
@media (max-width: 960px) {
  .client-projects__box {
    padding: 30px;
    background-image: var(--bg-image-tablet);
  }
}
@media (max-width: 480px) {
  .client-projects__box {
    flex-direction: column;
    padding: 16px;
    background-image: var(--bg-image-mobile-tablet);
  }
}
@media (max-width: 360px) {
  .client-projects__box {
    background-image: var(--bg-image-mobile);
  }
}
.client-projects__name {
  color: var(--White);
  margin-bottom: 16px;
  text-transform: uppercase;
  will-change: transform;
}
@media (max-width: 960px) {
  .client-projects__name {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .client-projects__name {
    margin-bottom: 4px;
  }
}
.client-projects__item:not(.is-open) .client-projects__box {
  align-items: center;
  justify-content: center;
}
.client-projects__item:not(.is-open) .client-projects__info {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.client-projects__item:not(.is-open) .client-projects__name {
  margin-bottom: 0;
  text-align: center;
}
.client-projects__item:not(.is-open) .client-projects__description,
.client-projects__item:not(.is-open) .client-projects__users,
.client-projects__item:not(.is-open) .client-projects__content {
  display: none;
}
.client-projects__item.is-open .client-projects__box {
  background-position: center;
}
.client-projects__item.is-open .client-projects__description,
.client-projects__item.is-open .client-projects__users,
.client-projects__item.is-open .client-projects__content {
  animation: cp-fade-in 0.5s ease 0.2s both;
}
.client-projects__description {
  text-transform: uppercase;
}
.client-projects__users {
  margin-top: 28px;
}
@media (max-width: 1440px) {
  .client-projects__users {
    margin-top: 24px;
  }
}
@media (max-width: 960px) {
  .client-projects__users {
    margin-top: 22px;
  }
}
@media (max-width: 480px) {
  .client-projects__users {
    max-width: 105px;
  }
}
.client-projects__content {
  position: relative;
}
.client-projects__content-labels {
  display: flex;
}
@media (max-width: 360px) {
  .client-projects__content-labels {
    flex-direction: column;
  }
}
.client-projects__content-label {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
}
.client-projects__content-text {
  font-family: "IBM Plex Mono";
  max-width: 390px;
  margin-bottom: 90px;
}
@media (max-width: 960px) {
  .client-projects__content-text {
    margin-bottom: 75px;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .client-projects__content-text {
    margin-bottom: 60px;
  }
}
@media (max-width: 360px) {
  .client-projects__content-text {
    margin-bottom: 35px;
  }
}
.client-projects__content-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  height: 44px;
  padding: 0 32px;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: var(--White);
  color: var(--Black);
  max-width: max-content;
}
.client-projects__star {
  position: absolute;
  top: 30%;
  right: 10%;
}
@media (max-width: 360px) {
  .client-projects__star {
    top: 25%;
    right: 2%;
  }
}

@keyframes cp-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.clients__inner {
  position: relative;
  overflow: hidden;
}
.clients__content {
  padding: 150px 0;
  max-width: 470px;
}
@media (max-width: 960px) {
  .clients__content {
    padding: 140px 0;
    max-width: 370px;
  }
}
@media (max-width: 480px) {
  .clients__content {
    margin-bottom: 40px;
    padding: 0;
  }
}
.clients__title {
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .clients__title {
    margin-bottom: 8px;
  }
}
.clients__text {
  font-family: "IBM Plex Mono";
  margin-bottom: 40px;
  height: 66px;
}
@media (max-width: 960px) {
  .clients__text {
    margin-bottom: 30px;
    height: 88px;
  }
}
@media (max-width: 480px) {
  .clients__text {
    margin-bottom: 24px;
    height: 110px;
    max-width: 304px;
  }
}
.clients__link {
  position: relative;
  font-family: "IBM Plex Mono";
  text-transform: uppercase;
}
.clients__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--Black);
}
.clients__columns {
  display: flex;
  gap: 16px;
  position: absolute;
  top: 0;
  right: 50px;
}
@media (max-width: 1440px) {
  .clients__columns {
    right: 25px;
  }
}
@media (max-width: 480px) {
  .clients__columns {
    position: relative;
    right: 0;
  }
}
.clients__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 480px) {
  .clients__column {
    gap: 8px;
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .clients__column:nth-child(2) {
    display: none;
  }
}
.clients__column--scrolling {
  overflow: hidden;
}
.clients__column--scroll-down .clients__track {
  display: flex;
  flex-direction: column;
  animation: clientsScrollDown 30s linear infinite;
  will-change: transform;
}
@media (max-width: 480px) {
  .clients__column--scroll-down .clients__track {
    flex-direction: row;
    animation: clientsScrollLeft 22s linear infinite;
  }
}
.clients__column--scroll-up .clients__track {
  display: flex;
  flex-direction: column;
  animation: clientsScrollUp 30s linear infinite;
  will-change: transform;
}
.clients__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 480px) {
  .clients__track {
    gap: 8px;
    flex-direction: row;
  }
}
.clients__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 480px) {
  .clients__logos {
    gap: 8px;
    flex-direction: row;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(1) img {
    width: 140px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(1) img {
    width: 100px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(2) img {
    width: 160px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(2) img {
    width: 120px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(3) img {
    width: 130px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(3) img {
    width: 90px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(4) img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(4) img {
    width: 100px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(5) img {
    width: 170px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(5) img {
    width: 120px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(6) img {
    width: 140px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(6) img {
    width: 80px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(7) img {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(7) img {
    width: 70px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(8) img {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(8) img {
    width: 80px;
  }
}
@media (max-width: 1440px) {
  .clients__logo:nth-child(9) img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .clients__logo:nth-child(9) img {
    width: 100px;
  }
}
.clients__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  background-color: var(--White);
  border-radius: 12px;
}
@media (max-width: 1440px) {
  .clients__logo-box {
    width: 208px;
    height: 208px;
  }
}
@media (max-width: 480px) {
  .clients__logo-box {
    width: 155px;
    height: 155px;
  }
}

@keyframes clientsScrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes clientsScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes clientsScrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.news__inner {
  padding-block: 70px;
}
@media (max-width: 960px) {
  .news__inner {
    padding-block: 60px;
  }
}
@media (max-width: 480px) {
  .news__inner {
    padding-block: 50px;
  }
}
.news__wrapper {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .news__wrapper {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .news__wrapper {
    padding-inline: 12px;
  }
}
.news__swiper {
  margin-top: 55px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .news__swiper {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .news__swiper {
    margin-top: 28px;
    margin-bottom: 24px;
  }
}
.news__swiper-slide {
  width: 655px !important;
  border-radius: 16px;
  background-color: var(--White);
}
@media (max-width: 960px) {
  .news__swiper-slide {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .news__swiper-slide {
    width: 285px !important;
  }
}
.news__swiper-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  padding: 20px;
}
@media (max-width: 960px) {
  .news__swiper-box {
    padding: 16px;
    flex-direction: column;
    gap: 20px;
  }
}
.news__swiper-content {
  display: flex;
  flex-direction: column;
  width: 300px;
}
@media (max-width: 960px) {
  .news__swiper-content {
    width: 100%;
    order: 2;
  }
}
.news__swiper-date {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--Grey-01);
  margin-bottom: auto;
}
@media (max-width: 960px) {
  .news__swiper-date {
    margin-bottom: 16px;
  }
}
.news__swiper-label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono";
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .news__swiper-label {
    margin-bottom: 8px;
  }
}
.news__swiper-label svg {
  color: var(--Neon-Blue);
}
.news__swiper-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news__swiper-link {
  font-size: 16px;
  font-family: "IBM Plex Mono";
  text-transform: uppercase;
}
.news__swiper-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.news__swiper-image {
  width: 270px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .news__swiper-image {
    width: 250px;
    height: 250px;
    order: 1;
  }
}
.news__swiper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .news__actions {
    justify-content: center;
  }
}
.news__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .news__arrows {
    justify-content: center;
  }
}
.news__arrow {
  position: relative !important;
  left: initial !important;
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  transform: initial !important;
  margin: 0 !important;
}
.news__arrow svg {
  color: var(--Black) !important;
  fill: none !important;
  transition: 0.2s !important;
}
.news__arrow:hover svg {
  fill: var(--Black) !important;
  color: var(--White) !important;
}
.news__progress {
  position: relative !important;
  width: 100% !important;
  height: 4px !important;
  background: var(--Light-Blue) !important;
  border-radius: 99px !important;
  overflow: hidden !important;
}
.news__progress .swiper-pagination-progressbar-fill {
  background-color: var(--Dark-Blue) !important;
  height: 100% !important;
  border-radius: 99px !important;
}
@media (max-width: 480px) {
  .news__progress {
    display: none !important;
  }
}
.news__arrow {
  width: 52px !important;
  height: 52px !important;
}

.quote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../assets/images/quote/bg-xl.jpg");
}
@media (max-width: 1440px) {
  .quote__inner {
    background-image: url("../assets/images/quote/bg-lg.jpg");
  }
}
@media (max-width: 960px) {
  .quote__inner {
    background-image: url("../assets/images/quote/bg-md.jpg");
  }
}
@media (max-width: 360px) {
  .quote__inner {
    background-image: url("../assets/images/quote/bg-sm.jpg");
  }
}
.quote__title {
  max-width: 1010px;
  width: 100%;
  text-align: center;
  color: var(--White);
  margin-block: 350px;
}
@media (max-width: 1440px) {
  .quote__title {
    margin-block: 280px;
    max-width: 875px;
  }
}
@media (max-width: 960px) {
  .quote__title {
    margin-block: 220px;
    max-width: 645px;
  }
}
@media (max-width: 480px) {
  .quote__title {
    margin-block: 195px;
    max-width: 400px;
  }
}
@media (max-width: 360px) {
  .quote__title {
    margin-block: 170px;
    max-width: 304px;
  }
}

.callback {
  overflow: hidden;
}
.callback__inner {
  display: flex;
  flex-direction: column;
  padding: 300px 0 295px;
}
@media (max-width: 1440px) {
  .callback__inner {
    padding: 220px 0 215px;
  }
}
@media (max-width: 960px) {
  .callback__inner {
    padding: 178px 0 167px;
  }
}
@media (max-width: 480px) {
  .callback__inner {
    padding: 153px 0;
  }
}
@media (max-width: 360px) {
  .callback__inner {
    padding: 165px 0;
  }
}
.callback__content {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .callback__content {
    padding-inline: 24px;
  }
}
@media (max-width: 360px) {
  .callback__content {
    padding-inline: 12px;
  }
}
.callback__title {
  margin-bottom: 80px;
}
@media (max-width: 480px) {
  .callback__title {
    margin-bottom: 45px;
  }
}
.callback__title-text {
  font-size: 200px;
}
@media (max-width: 960px) {
  .callback__title-text {
    font-size: 129px;
  }
}
@media (max-width: 480px) {
  .callback__title-text {
    font-size: 64px;
  }
}
@media (max-width: 360px) {
  .callback__title-text {
    font-size: 45px;
  }
}
.callback__subtitle {
  max-width: 705px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  margin-inline: auto;
}
@media (max-width: 960px) {
  .callback__subtitle {
    margin-bottom: 30px;
    max-width: 430px;
  }
}
@media (max-width: 480px) {
  .callback__subtitle {
    margin-bottom: 20px;
  }
}
.callback__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .callback__buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.callback__button-book, .callback__button-touch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 100px;
  text-transform: uppercase;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
}
@media (max-width: 480px) {
  .callback__button-book, .callback__button-touch {
    min-width: 220px;
    max-width: max-content;
  }
}
.callback__button-book {
  border: 1px solid var(--Black);
  padding: 0 60px;
}
.callback__button-touch {
  background-color: var(--Neon-Blue);
  color: var(--White);
  padding: 0 40px;
}
/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/swiper/swiper-bundle.css ***!
  \*******************************************************************************************************************************************************************************************/
/**
 * Swiper 14.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 28, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}


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