@charset "UTF-8";
@import 'libs/swiper-bundle.min.css';
:root {
  --blue: #0096D1;
  --blue-dark: #005577;
  --blue-medium: #0083B6;
  --blue-light: #90C5FF;
  --blue-active: #05729D;
  --mint: #A8EAD5;
  --green: #62E656;
  --grey: #B6B6B6;
  --grey-dark: #262626;
  --black: #0D0D0D;
  --black-light: #1A1A1A;
  --black-lighter: #0E0E13;
  --white: #ffffff;
  --blue-transparent-15: rgba(0, 150, 209, 0.15);
  --blue-transparent-20: rgba(0, 150, 209, 0.2);
  --blue-transparent-10: rgba(0, 150, 209, 0.1);
  --blue-medium-transparent-10: rgba(0, 131, 182, 0.1);
  --white-transparent-25: rgba(255, 255, 255, 0.25);
  --white-transparent-10: rgba(255, 255, 255, 0.1);
  --white-transparent-05: rgba(255, 255, 255, 0.05);
  --black-transparent-95: rgba(0, 0, 0, 0.95);
  --black-transparent-85: rgba(0, 0, 0, 0.85);
  --black-transparent-01: rgba(0, 0, 0, 0.01);
  --black-transparent-00: rgba(0, 0, 0, 0);
  --gradient: linear-gradient(90deg, rgba(168, 234, 213, 0.4) 0%, rgba(0, 150, 209, 0.4) 100%);
  --gradient-button-hover: linear-gradient(101.68deg, #62E656 -22.63%, #0083B6 57.62%);
  --gradient-button-secondary-hover: linear-gradient(101.68deg, rgba(98, 230, 86, 0.2) -22.63%, rgba(0, 150, 209, 0.2) 57.62%);
  --gradient-header-subnav: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
  --gradient-nav-item-hover: linear-gradient(95.45deg, rgba(255, 255, 255, 0.05) -12.97%, rgba(0, 150, 209, 0.2) 110.96%);
  --border-radius: 24px;
  --button-radius: 12px;
  --card-radius: 40px;
  --nav-radius: 20px;
  --gap-24: 24px;
  --section-padding-desktop: 120px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 60px;
  --container-padding: 15px;
  --card-width: 33.333%;
  --container-width: 1170px;
  --blur-amount: 35px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
}

body {
  background-color: var(--black);
}

html, body {
  overflow-x: hidden;
  box-sizing: border-box;
}

section {
  padding: var(--section-padding-desktop) 0;
}
@media (max-width: 992px) {
  section {
    padding: var(--section-padding-tablet) 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}

main > section.article-hero:first-child {
  padding-top: 60px;
}

ul {
  list-style-position: inside;
}

ol {
  list-style-position: inside;
}

h1 {
  font-size: 56px;
  line-height: 120%;
}
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 48px;
  line-height: 120%;
  /*@include mobile {
    font-size: 32px;
  }*/
}
@media (max-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 40px;
  line-height: 120%;
}
@media (max-width: 992px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.8px;
}
@media (max-width: 992px) {
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 24px;
  line-height: 140%;
}
@media (max-width: 992px) {
  h5 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 992px) {
  h6 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  h6 {
    font-size: 16px;
  }
}

p {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
@media (max-width: 992px) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  p {
    font-size: 16px;
  }
}

.button {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.8%;
  text-align: center;
  color: var(--white);
  border-radius: var(--button-radius);
  text-decoration: none;
  padding: 14px 24px;
  transition: all 0.2s linear;
  display: block;
  width: fit-content;
}
@media (max-width: 992px) {
  .button {
    font-size: 18px;
    padding: 12px 20px;
  }
}
@media (max-width: 576px) {
  .button {
    font-size: 16px;
    padding: 10px 16px;
  }
}

.button.button--primary {
  background-color: var(--blue);
  border: 1px solid transparent;
}

.button.button--primary:hover {
  border: 1px solid var(--blue-dark);
  box-shadow: 5px 6px 0px 0px var(--blue-dark);
  background: var(--gradient-button-hover);
}

.button.button--primary:focus, .button.button--primary:active {
  background-color: var(--blue-active);
  box-shadow: none;
}

.button.button--secondary {
  border: 1px solid var(--mint);
}

.button.button--secondary:hover {
  background: var(--gradient-button-secondary-hover);
  box-shadow: 5px 6px 0px 0px var(--mint);
}

.button.button--secondary:active, .button.button--secondary:focus {
  background-color: var(--blue-medium-transparent-10);
  box-shadow: none;
}

.button--prev, .button--next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--button-radius);
  border: 1px solid var(--grey-dark);
  background-color: var(--black-light);
  transition: all 0.2s linear;
}
.button--prev:hover, .button--next:hover {
  border: 1px solid var(--mint);
}

.button--prev svg path, .button--next svg param {
  fill: var(--mint);
}

.button--prev.swiper-button-disabled svg path, .button--next.swiper-button-disabled svg path {
  fill: var(--grey);
}

.link {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  column-gap: 2px;
}
.link svg {
  transition: all 0.2s linear;
}

.link.link--arrow {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.link.link--arrow:hover {
  color: var(--mint);
}
.link.link--arrow:hover svg path {
  fill: var(--mint);
}

.icon {
  border: 1px solid var(--white-transparent-25);
  padding: 17px;
  border-radius: 50%;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon > svg {
  width: 16px;
  height: 16px;
  transition: all 0.2s linear;
}
.icon:hover {
  border: 1px solid var(--mint);
}

.cards {
  position: relative;
  padding: 40px 0px;
}
.cards h2 {
  text-align: center;
  max-width: 807px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.cards p {
  text-align: center;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--grey);
}
.cards .decor-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 992px) {
  .cards .decor-img {
    max-height: 60%;
    height: 100%;
  }
}
.cards .decor-img img {
  width: 100%;
  height: 100%;
}

.cards-container {
  width: 100%;
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 20px);
}

.cards__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cards-gap, 30px);
  justify-content: center;
  margin-bottom: var(--cards-margin-bottom, 60px);
}
@media (max-width: 992px) {
  .cards__wrapper .cards__wrapper {
    justify-content: center;
  }
  .cards__wrapper .card {
    flex: 0 1 calc(50% - var(--cards-gap, 30px));
  }
}
@media (max-width: 576px) {
  .cards__wrapper .card {
    flex: 0 1 100%;
  }
}
.cards__wrapper:before {
  content: "";
  width: 540px;
  height: 540px;
  background: rgba(0, 150, 209, 0.7);
  border-radius: 50%;
  filter: blur(150px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  position: absolute;
  pointer-events: none;
  backdrop-filter: blur(300px);
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cards-gap, 30px);
  justify-content: center;
  align-items: stretch;
  margin-bottom: var(--cards-margin-bottom, 60px);
  position: relative;
}
@media (max-width: 992px) {
  .cards-wrapper .cards__wrapper {
    justify-content: center;
  }
  .cards-wrapper .card {
    flex: 0 1 calc(50% - var(--cards-gap, 30px));
  }
}
@media (max-width: 576px) {
  .cards-wrapper .card {
    flex: 0 1 100%;
  }
}

.card {
  border-radius: var(--card-radius);
  background-color: var(--black-lighter);
  padding: 30px;
  flex: 0 1 calc(33.333% - var(--cards-gap, 30px));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .card {
    flex: 0 1 calc(50% - var(--cards-gap, 30px));
  }
}
@media (max-width: 992px) {
  .card {
    padding: 25px;
    flex: 0 1 100%;
  }
}
@media (max-width: 576px) {
  .card {
    padding: 20px;
  }
}
.card__logo-wrapper {
  background-color: var(--blue-transparent-10);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}
@media (max-width: 576px) {
  .card__logo-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}
.card h5 {
  margin-bottom: 12px;
}
.card p {
  color: var(--grey);
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 576px) {
  .card p {
    margin-bottom: 20px;
  }
}
.card .link {
  margin-top: auto;
  align-self: flex-start;
}

.accordion {
  padding: 4rem 0;
}
.accordion__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
}
.accordion__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #B6B6B6;
}
.accordion__wrapper {
  max-width: 1000px;
  margin: 80px auto 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion__section-title {
  margin-top: 20px;
}
.accordion__item {
  background-color: #0E0E13;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
.accordion__item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.accordion__item--active .accordion__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion__item--active .accordion__toggle .accordion__icon {
  transform: rotate(45deg);
}
.accordion__item--active .accordion__content {
  max-height: 1000px;
  opacity: 1;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #1A1A1A;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.accordion__header:hover {
  background-color: rgb(38.75, 38.75, 38.75);
}
.accordion__item-title {
  margin: 0px;
  font-size: 1.2rem;
  color: #FFF;
  transition: color 0.3s ease;
}
.accordion__item--active .accordion__item-title {
  color: var(--blue);
}
.accordion__header:hover .accordion__item-title {
  color: var(--mint);
}
.accordion__toggle {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s ease;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background-color: var(--blue);
  transition: background-color 0.3s ease;
}
.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.accordion__header:hover .accordion__icon::before, .accordion__header:hover .accordion__icon::after {
  background-color: var(--mint);
}
.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion__content-inner {
  padding: 1.5rem;
  color: #B6B6B6;
}
.accordion__content-inner p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.accordion__content-inner p:last-child {
  margin-bottom: 0;
}
.accordion__content-inner--columns {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .accordion__content-inner--columns {
    flex-direction: column;
  }
}
.accordion__column {
  flex: 1;
}
.accordion__column ol, .accordion__column ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.accordion__column ol li, .accordion__column ul li {
  margin-bottom: 0.5rem;
  color: #B6B6B6;
}
.accordion__image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem 0;
}
.accordion__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.accordion__image:hover {
  transform: scale(1.05);
}
.accordion__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .accordion__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .accordion__buttons a {
    width: 100%;
    max-width: 300px;
  }
}
.accordion .button--primary {
  margin: 0px auto;
}

.animated-tiles {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0a14, #080810);
  position: relative;
  overflow: hidden;
}
.animated-tiles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 150, 209, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 70%, rgba(168, 234, 213, 0.05) 0%, transparent 20%);
  z-index: 0;
}
.animated-tiles__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.animated-tiles__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.animated-tiles__subtitle {
  text-align: center;
  margin-bottom: 4rem;
  color: #B6B6B6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
}
.animated-tiles .container {
  position: relative;
  z-index: 1;
}
.animated-tiles__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .animated-tiles__wrapper {
    gap: 1rem;
  }
}
.animated-tiles__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  backdrop-filter: blur(5px);
  background-color: rgba(14, 14, 19, 0.7);
  width: 100%;
  min-height: 180px;
}
.animated-tiles__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.animated-tiles__item:hover .animated-tiles__overlay {
  opacity: 1;
}
.animated-tiles__item:hover .animated-tiles__content {
  transform: translateX(10px);
}
@media (max-width: 768px) {
  .animated-tiles__item:hover .animated-tiles__content {
    transform: translateY(0);
  }
}
.animated-tiles__item:hover .animated-tiles__icon {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}
.animated-tiles__item:hover .animated-tiles__item-title {
  background: linear-gradient(90deg, var(--blue), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.animated-tiles__item:hover .animated-tiles__item-text {
  opacity: 1;
}
.animated-tiles__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 768px) {
  .animated-tiles__content {
    flex-direction: column;
    text-align: center;
  }
}
.animated-tiles__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 150, 209, 0.8) 0%, rgba(168, 234, 213, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  mix-blend-mode: overlay;
}
.animated-tiles__icon {
  margin-right: 2rem;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .animated-tiles__icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.animated-tiles__icon svg {
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.animated-tiles__icon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animated-tiles__item:hover .animated-tiles__icon::after {
  width: 40px;
}
.animated-tiles__item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFF;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.animated-tiles__text-content {
  flex: 1;
}
@media (max-width: 768px) {
  .animated-tiles__text-content {
    width: 100%;
  }
}
.animated-tiles__item-text {
  color: #B6B6B6;
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-tiles__item:not([data-aos-animated]) {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(1) {
  animation-delay: 0.1s;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(2) {
  animation-delay: 0.2s;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(3) {
  animation-delay: 0.3s;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(4) {
  animation-delay: 0.4s;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(5) {
  animation-delay: 0.5s;
}
.animated-tiles__item:not([data-aos-animated]):nth-child(6) {
  animation-delay: 0.6s;
}

.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .article-hero {
    min-height: 400px;
    padding: 100px 0;
    margin-top: 80px;
  }
}
@media (max-width: 576px) {
  .article-hero {
    min-height: 350px;
    padding: 80px 0;
    margin-top: 70px;
  }
}
.article-hero .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.article-hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  z-index: -1;
}
.article-hero .hero__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: auto;
}
.article-hero .hero__wrapper:before {
  content: "";
  width: 300px;
  height: 300px;
  background: #A8EAD5;
  border-radius: 50%;
  filter: blur(130px);
  top: 70%;
  right: -10%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
.article-hero .hero__content {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
}
.article-hero .hero__content--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (max-width: 992px) {
  .article-hero .hero__content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .article-hero .hero__content {
    max-width: 100%;
  }
}
.article-hero .hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .article-hero .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .article-hero .hero__title {
    font-size: 28px;
  }
}
.article-hero .hero__copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 30px;
  max-width: 100%;
}
@media (max-width: 576px) {
  .article-hero .hero__copy {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.article-meta__date, .article-meta__reading-time, .article-meta__category {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.article-meta__date svg, .article-meta__reading-time svg, .article-meta__category svg {
  margin-right: 6px;
}
.article-meta__category span {
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.article-meta__reading-time {
  display: flex;
  align-items: center;
}

.download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.download-btn .button {
  font-size: 16px;
  line-height: 110%;
  border-radius: 20px;
  padding: 8px 30px;
}

.article-main {
  padding: 80px 0;
}
.article-main__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.article-main__image {
  margin-bottom: 40px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.article-main__hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.article-main .richtext {
  margin-bottom: 60px;
}
.article-main .richtext__wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
}
.article-main .richtext h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--white);
}
.article-main .richtext h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--white);
}
.article-main .richtext p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.article-main .richtext ul, .article-main .richtext ol {
  margin-bottom: 30px;
}
.article-main .richtext li {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.article-main .richtext li:before {
  top: 2px;
}
.article-main .heading {
  margin: 100px 0px 60px;
}
.article-main .heading .date {
  font-style: italic;
  margin-top: 20px;
}

.article-share {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 30px;
  text-align: center;
}
.article-share__title {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}
.article-share__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.article-share__button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid var(--white-transparent-25);
}
.article-share__button:hover {
  transform: translateY(-5px);
}
.article-share__button--facebook:hover {
  border: 1px solid var(--mint);
}
.article-share__button--twitter:hover {
  border: 1px solid var(--mint);
}
.article-share__button--linkedin:hover {
  border: 1px solid var(--mint);
}
.article-share__button svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .article-hero .hero__wrapper {
    margin-top: 20px;
  }
  .article-main {
    padding: 60px 0;
  }
  .article-main__wrapper {
    max-width: 100%;
    padding: 0px;
  }
  .article-main .richtext__wrapper {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .article-meta {
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
  }
  .article-meta__date {
    flex: 1;
    text-align: left;
  }
  .article-meta__reading-time {
    flex: 1;
    justify-content: flex-end;
  }
  .article-meta__category {
    flex-basis: 100%;
    flex-grow: 0;
    width: auto;
    justify-content: center;
  }
  .article-main {
    padding: 40px 0;
  }
  .article-main .richtext__wrapper {
    padding: 20px;
  }
  .article-main .richtext {
    padding: 60px 0px 20px;
    margin-bottom: 30px;
  }
  .article-main .richtext ul li {
    display: block;
  }
  .article-main .richtext ul li:before {
    top: 5px;
  }
  .article-main h2 {
    font-size: 24px;
  }
  .article-main h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .article-main .richtext ul li :before {
    top: 5px;
  }
  .article-main__image {
    margin-bottom: 30px;
  }
}
.banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .banner__container {
    flex-direction: column;
    gap: 30px;
  }
}
.banner__image-wrapper {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner__image-wrapper:hover {
  transform: scale(1.02);
}
.banner__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner:not(.banner--overlay) .banner__image:hover {
  transform: scale(1.05);
}
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 150, 209, 0.8) 0%, rgba(168, 234, 213, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  mix-blend-mode: overlay;
}
.banner__image-wrapper:hover .banner__overlay {
  opacity: 0.7;
}
.banner--overlay .banner__overlay {
  opacity: 0.85;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.banner__content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}
.banner--overlay .banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 800px;
}
.banner__content--centered {
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .banner__content {
    max-width: 100%;
    text-align: center;
  }
}
.banner__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFF;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  margin-top: 1rem;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner__content--centered .banner__title::after {
  margin-left: auto;
  margin-right: auto;
}
.banner__content:hover .banner__title::after {
  width: 120px;
}
@media (max-width: 768px) {
  .banner__title {
    font-size: 2.5rem;
  }
  .banner__title::after {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .banner__title {
    font-size: 2rem;
  }
}
.banner__text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #B6B6B6;
  margin-bottom: 2rem;
}
.banner__text p {
  margin-bottom: 1em;
}
.banner__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .banner__text {
    font-size: 1rem;
  }
}
.banner__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 576px) {
  .banner__buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .banner__buttons > a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
.banner--split .banner__container {
  gap: 60px;
}
.banner--split .banner__image-wrapper {
  height: 500px;
}
@media (max-width: 992px) {
  .banner--split .banner__image-wrapper {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .banner--split .banner__image-wrapper {
    height: 300px;
    width: 100%;
  }
}
.banner--split .banner__image {
  height: 100%;
  object-fit: cover;
}
.banner--animated-bg {
  background: linear-gradient(to bottom, #0a0a14, #080810);
}
.banner--animated-bg .banner__container {
  min-height: 500px;
  justify-content: center;
}
.banner--animated-bg .banner__content {
  text-align: center;
  max-width: 800px;
}
.banner__animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner__animated-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.banner__animated-shape--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float1 15s ease-in-out infinite;
}
.banner__animated-shape--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation: float2 20s ease-in-out infinite;
}
.banner__animated-shape--3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  top: 50%;
  right: 15%;
  animation: float3 18s ease-in-out infinite;
}
.banner--fullwidth {
  padding: 0;
}
.banner--fullwidth .banner__container {
  max-width: 100%;
  padding: 0;
  margin: 0;
  gap: 0;
}
.banner--fullwidth .banner__image-wrapper {
  flex: 1;
  border-radius: 0;
  height: 600px;
}
@media (max-width: 992px) {
  .banner--fullwidth .banner__image-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .banner--fullwidth .banner__image-wrapper {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .banner--fullwidth .banner__image-wrapper {
    height: 300px;
  }
}
.banner--fullwidth .banner__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 8s ease-in-out;
}
.banner--fullwidth:hover .banner__image {
  transform: scale(1.05);
}
.banner--fullwidth .banner__overlay {
  opacity: 0.3;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.5s ease;
}
.banner--fullwidth:hover .banner__overlay {
  opacity: 0.5;
  background: linear-gradient(135deg, rgba(0, 150, 209, 0.8) 0%, rgba(168, 234, 213, 0.8) 100%);
}
.banner--fullwidth .banner__content {
  position: absolute;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid transparent;
}
.banner--fullwidth .banner__content:hover {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--mint);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .banner--fullwidth .banner__content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    padding: 30px 20px;
    border-left: none;
    border-top: 4px solid transparent;
  }
  .banner--fullwidth .banner__content:hover {
    transform: none;
    border-left: none;
    border-top: 4px solid var(--mint);
  }
}
.banner--fullwidth.banner--content-left .banner__content {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .banner--fullwidth.banner--content-left .banner__content {
    left: 0;
    top: 0;
    transform: none;
  }
}
.banner--fullwidth.banner--content-right .banner__content {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .banner--fullwidth.banner--content-right .banner__content {
    right: 0;
    top: 0;
    transform: none;
  }
}
.banner--fullwidth.banner--content-top .banner__content {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .banner--fullwidth.banner--content-top .banner__content {
    top: 0;
    left: 0;
    transform: none;
  }
}
.banner--fullwidth.banner--content-bottom .banner__content {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .banner--fullwidth.banner--content-bottom .banner__content {
    bottom: 0;
    left: 0;
    transform: none;
  }
}

@keyframes float1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes float3 {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(-20px, 20px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.banner__title:not([data-aos-animated]),
.banner__text:not([data-aos-animated]),
.banner__buttons:not([data-aos-animated]) {
  opacity: 0;
}

.banner__title:not([data-aos-animated]) {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.banner__text:not([data-aos-animated]) {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.banner__buttons:not([data-aos-animated]) {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.blog-hero {
  position: relative;
  overflow: hidden;
}
.blog-hero .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.blog-hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  z-index: -1;
}
.blog-hero .hero__content--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-hero .hero__search {
  display: flex;
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.blog-hero .hero__search-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  padding: 14px 20px;
  color: var(--white);
  font-size: 16px;
}
.blog-hero .hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.blog-hero .hero__search-input:focus {
  outline: none;
  border-color: var(--blue);
}
.blog-hero .hero__search-button {
  background: var(--blue);
  border: none;
  border-radius: var(--button-radius);
  width: 50px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.blog-hero .hero__search-button:hover {
  background-color: rgb(0, 113.3971291866, 158);
}

.blog-cards {
  padding: 100px 0;
}
.blog-cards__filters {
  margin-bottom: 50px;
}
.blog-cards__categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-cards__category-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.blog-cards__category-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.blog-cards__category-btn.active {
  background: var(--blue);
  border-color: var(--blue);
}
.blog-cards__subcategories-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.blog-cards__subcategories {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  padding: 10px 15px;
  color: var(--white);
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-cards__subcategories:focus {
  outline: none;
  border-color: var(--blue);
}
.blog-cards__subcategories option {
  background-color: var(--black-light);
  color: var(--white);
  padding: 10px;
}
.blog-cards__subcategories--hidden {
  display: none;
}
.blog-cards__dropdowns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-cards__dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-cards__dropdown-label {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.blog-cards__dropdown-select {
  position: relative;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-cards__dropdown-select:hover {
  border-color: var(--blue);
}
.blog-cards__dropdown-select svg {
  transition: transform 0.3s ease;
}
.blog-cards__dropdown-select.active {
  border-color: var(--blue);
}
.blog-cards__dropdown-select.active svg {
  transform: rotate(180deg);
}
.blog-cards__dropdown-select.active .blog-cards__dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.blog-cards__dropdown-selected {
  color: var(--white);
  font-size: 16px;
}
.blog-cards__dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--button-radius);
  padding: 5px 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 200px;
  overflow-y: auto;
  /* Scrollbar styles */
}
.blog-cards__dropdown-options::-webkit-scrollbar {
  width: 6px;
}
.blog-cards__dropdown-options::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.blog-cards__dropdown-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.blog-cards__dropdown-options::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}
.blog-cards__dropdown-option {
  padding: 8px 15px;
  color: var(--white);
  font-size: 16px;
  transition: all 0.2s ease;
}
.blog-cards__dropdown-option:hover {
  background: rgba(0, 150, 209, 0.1);
  color: var(--blue);
}
.blog-cards__dropdown-option.selected {
  background: rgba(0, 150, 209, 0.2);
  color: var(--blue);
}
@media (max-width: 768px) {
  .blog-cards__dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .blog-cards__dropdown-select {
    width: 100%;
  }
}
.blog-cards__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.blog-cards__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.blog-cards__pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.blog-cards__pagination .page-numbers:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 150, 209, 0.2);
  transform: translateY(-2px);
}
.blog-cards__pagination .page-numbers:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 150, 209, 0.1);
}
.blog-cards__pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 150, 209, 0.3);
  cursor: default;
}
.blog-cards__pagination .page-numbers.dots {
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.blog-cards__pagination .page-numbers.dots:hover {
  transform: none;
  color: var(--white);
  box-shadow: none;
}
@media (max-width: 576px) {
  .blog-cards__pagination {
    gap: 10px;
  }
  .blog-cards__pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .blog-cards__pagination .dots {
    width: auto;
  }
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}
.blog-card:hover .blog-card__title {
  color: var(--blue);
}
.blog-card:hover .blog-card__link svg {
  transform: translateX(5px);
}
.blog-card__image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card__category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.blog-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-card__title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.blog-card__excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.blog-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
}
.blog-card__link svg {
  transition: transform 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .blog-cards__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-cards__wrapper {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 40px;
  }
}
.book-call {
  background: linear-gradient(178.56deg, #0D0D0D 42.81%, #0096D1 179.37%);
  position: relative;
  overflow: hidden;
}
.book-call .container {
  position: relative;
  z-index: 2;
}
.book-call__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.book-call__content h2 {
  margin-bottom: 8px;
}
.book-call__content p {
  margin-bottom: 24px;
  color: var(--grey);
}
.book-call__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .book-call {
    padding: 60px 0;
  }
  .book-call__content h2 {
    font-size: 36px;
  }
  .book-call__content p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .book-call__buttons {
    flex-direction: column;
  }
  .book-call__buttons .button.button--primary {
    margin: 10px auto 0px;
  }
  .book-call__buttons .button.button--secondary {
    margin: 0px auto;
  }
}

.career-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
@media (max-width: 992px) {
  .career-single-hero {
    min-height: 400px;
    padding: 100px 0;
    margin-top: 80px;
  }
}
@media (max-width: 576px) {
  .career-single-hero {
    min-height: 350px;
    padding: 80px 0;
    margin-top: 70px;
  }
}
.career-single-hero .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.career-single-hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  z-index: -1;
}
.career-single-hero .hero__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-single-hero .hero__content {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
}
.career-single-hero .hero__content--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .career-single-hero .hero__content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .career-single-hero .hero__content {
    max-width: 100%;
  }
}
.career-single-hero .hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .career-single-hero .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .career-single-hero .hero__title {
    font-size: 28px;
  }
}
.career-single-hero .hero__copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .career-single-hero .hero__copy {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.career-single-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .career-single-hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .career-single-hero__buttons .button {
    width: 100%;
    max-width: 300px;
  }
}

.career-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.career-single-meta__location, .career-single-meta__type, .career-single-meta__experience {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.career-single-meta__location svg, .career-single-meta__type svg, .career-single-meta__experience svg {
  margin-right: 6px;
}
.career-single-meta__category {
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 992px) {
  .career-single-meta {
    flex-direction: column;
    gap: 10px;
  }
}

.career-single-description {
  padding: 80px 0;
}
.career-single-description__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.career-single-description__image {
  margin-bottom: 40px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.career-single-description__hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.career-single-description .richtext {
  margin-bottom: 60px;
}
.career-single-description .richtext__wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
}
@media (max-width: 992px) {
  .career-single-description {
    padding: 60px 0;
  }
  .career-single-description__wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
  .career-single-description .richtext__wrapper {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .career-single-description {
    padding: 40px 0;
  }
  .career-single-description .richtext__wrapper {
    padding: 20px;
  }
}

.career-single-requirements {
  padding: 0 0 80px 0;
}
.career-single-requirements__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.career-single-requirements .richtext__wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
}
.career-single-requirements__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.career-single-requirements__tag {
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .career-single-requirements {
    padding: 0 0 60px 0;
  }
  .career-single-requirements__wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
  .career-single-requirements .richtext__wrapper {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .career-single-requirements {
    padding: 0 0 40px 0;
  }
  .career-single-requirements .richtext__wrapper {
    padding: 20px;
  }
}

.career-single-apply {
  background-color: var(--black-light);
  padding: 80px 0;
}
.career-single-apply__wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.career-single-apply__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .career-single-apply__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .career-single-apply__title {
    font-size: 28px;
  }
}
.career-single-apply__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 50px;
}
@media (max-width: 576px) {
  .career-single-apply__subtitle {
    font-size: 16px;
  }
}
.career-single-apply__process {
  margin-bottom: 60px;
}
.career-single-apply__process-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .career-single-apply__process-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .career-single-apply__process-title {
    font-size: 20px;
  }
}
.career-single-apply__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 992px) {
  .career-single-apply__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .career-single-apply__steps {
    grid-template-columns: 1fr;
  }
}
.career-single-apply__step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.career-single-apply__step:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}
.career-single-apply__step:hover .career-single-apply__step-title {
  color: var(--blue);
}
.career-single-apply__step-number {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.career-single-apply__step-content {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.career-single-apply__step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.career-single-apply__step-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
  transition: color 0.3s ease;
}
.career-single-apply__form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: left;
}
@media (max-width: 576px) {
  .career-single-apply__form-wrapper {
    padding: 30px 20px;
  }
}
.career-single-apply__form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}
.career-single-apply__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .career-single-apply__form-row {
    grid-template-columns: 1fr;
  }
}
.career-single-apply__form-group {
  margin-bottom: 20px;
}
.career-single-apply__form-label {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.career-single-apply__form-input, .career-single-apply__form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--input-radius, 8px);
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
}
.career-single-apply__form-input:focus, .career-single-apply__form-textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.career-single-apply__form-input::placeholder, .career-single-apply__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.career-single-apply__form-file {
  position: relative;
}
.career-single-apply__form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.career-single-apply__form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--input-radius, 8px);
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.career-single-apply__form-file-label:hover {
  border-color: var(--blue);
}
.career-single-apply__form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.career-single-apply__form-checkbox-mark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
}
input:checked + .career-single-apply__form-checkbox-mark {
  background: var(--blue);
  border-color: var(--blue);
}
input:checked + .career-single-apply__form-checkbox-mark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.career-single-apply__form-checkbox-text {
  font-size: 14px;
  color: var(--grey);
}
.career-single-apply__form-submit {
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
}
.career-single-apply__contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.career-single-apply__contact-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .career-single-apply__contact-title {
    font-size: 20px;
  }
}
.career-single-apply__contact-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 20px;
}
.career-single-apply__contact-email {
  display: inline-block;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.career-single-apply__contact-email:hover {
  color: rgb(5, 184.4258373206, 255);
  text-decoration: underline;
}
@media (max-width: 992px) {
  .career-single-apply {
    padding: 60px 0;
  }
  .career-single-apply__wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .career-single-apply {
    padding: 40px 0;
  }
}

/* Стили для формы в попапе */
.contact-form {
  display: flex;
  min-height: 600px;
  max-width: 1196px;
  width: 100%;
  background-color: rgb(13, 13, 13);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
  padding: 10px;
}
@media (max-width: 992px) {
  .contact-form {
    flex-direction: column;
    gap: 30px;
  }
}
.contact-form__left {
  padding: 40px 55px 40px 40px;
  background: url("../images/popup-image.jpeg") center center no-repeat;
  background-size: cover;
  border-radius: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
  max-width: 491px;
  width: 100%;
}
.contact-form__left:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  background-color: rgba(0, 150, 209, 0.5);
  z-index: -1;
  pointer-events: none;
}
.contact-form__left h4 {
  margin-bottom: 8px;
}
.contact-form__left p {
  color: var(--grey);
}
.contact-form__info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-form__info-item svg {
  flex-shrink: 0;
  margin-right: 25px;
}
.contact-form__info-item a, .contact-form__info-item p {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
}
.contact-form__info-item a:not(:last-child), .contact-form__info-item p:not(:last-child) {
  margin-bottom: 8px;
}
.contact-form__info-item a:hover {
  text-decoration: underline;
}
.contact-form__socials {
  display: flex;
  gap: 16px;
}
.contact-form__right {
  padding: 50px 30px 30px 50px;
  width: 100%;
}
@media (max-width: 992px) {
  .contact-form__right {
    padding: 50px 10px 30px 10px;
  }
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}
.contact-form__field:has(input:focus) label {
  color: var(--white);
}
.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgb(141, 141, 141);
  font-size: 14px;
  line-height: 120%;
}
.contact-form__field input, .contact-form__field textarea {
  width: 100%;
  border: none;
  font-family: Urbanist, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--grey);
  background-color: transparent;
}
.contact-form__field input:focus, .contact-form__field textarea:focus {
  border-color: var(--white);
  outline: none;
}
.contact-form__field input::placeholder, .contact-form__field textarea::placeholder {
  color: rgb(132, 132, 132);
}
.contact-form__field textarea {
  resize: none;
  height: 55px;
}
.contact-form__field--full {
  margin-bottom: 45px;
}
.contact-form__field--full label {
  color: #fff;
  margin-bottom: 15px;
}
.contact-form__options {
  display: flex;
  column-gap: 20px;
}
.contact-form__option {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 0 !important;
}
@media (max-width: 992px) {
  .contact-form__option {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}
.contact-form__option input[type=radio] {
  width: 0;
  height: 0;
  appearance: none;
  position: absolute;
}
.contact-form__option input[type=radio]:checked + span:before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0, 150, 209);
  background: url("../images/radio-check.svg") center center no-repeat;
  background-size: contain;
}
.contact-form__option input[type=radio]:checked + span:after {
  display: none;
}
@media (max-width: 992px) {
  .contact-form__option .wpcf7-list-item {
    margin: 0px;
  }
}
.contact-form__option .wpcf7-list-item span {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
  padding-left: 21px;
  position: relative;
}
.contact-form__option .wpcf7-list-item span:after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0, 150, 209);
}
.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: auto;
}
.contact-form__actions button {
  cursor: pointer;
}
.contact-form__actions button.button--secondary {
  background: transparent;
}

/* Стили для кастомного попапа */
custom-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
}
custom-popup[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
custom-popup .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 150, 209, 0.4);
  animation: fadeIn 0.3s ease-out;
}
custom-popup .popup-container {
  position: relative;
  z-index: 1001;
  margin: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 576px) {
  custom-popup .popup-container {
    margin: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.features-grid {
  padding: 4rem 0;
}
.features-grid__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
}
.features-grid__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #B6B6B6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.features-grid__wrapper:before {
  content: "";
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0096D1, #A8EAD5);
  border-radius: 50%;
  filter: blur(100px);
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .features-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid__wrapper {
    grid-template-columns: 1fr;
  }
}
.features-grid__item {
  background-color: #0E0E13;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.features-grid__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--mint) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.features-grid__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.features-grid__item:hover::before {
  transform: scaleX(1);
}
.features-grid__item:hover .features-grid__icon {
  transform: scale(1.1);
}
.features-grid__icon {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.features-grid__icon svg {
  display: block;
}
.features-grid__item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFF;
}
.features-grid__item-text {
  color: #B6B6B6;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.features-grid__item-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.features-grid__item-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.features-grid__item-link:hover {
  color: var(--mint);
}
.features-grid__item-link:hover::after {
  transform: translateX(5px);
}
.features-grid__cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .features-grid__cta {
    flex-direction: column;
    align-items: center;
  }
  .features-grid__cta a {
    width: 100%;
    max-width: 300px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-grid__item:not([data-aos-animated]) {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.features-grid__item:not([data-aos-animated]):nth-child(1) {
  animation-delay: 0.1s;
}
.features-grid__item:not([data-aos-animated]):nth-child(2) {
  animation-delay: 0.2s;
}
.features-grid__item:not([data-aos-animated]):nth-child(3) {
  animation-delay: 0.3s;
}
.features-grid__item:not([data-aos-animated]):nth-child(4) {
  animation-delay: 0.4s;
}
.features-grid__item:not([data-aos-animated]):nth-child(5) {
  animation-delay: 0.5s;
}
.features-grid__item:not([data-aos-animated]):nth-child(6) {
  animation-delay: 0.6s;
}

.newsletter {
  padding: 4rem 0;
}
.newsletter__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  background-color: #0E0E13;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 1200px) {
  .newsletter__wrapper {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .newsletter__wrapper {
    flex-direction: column-reverse;
  }
}
.newsletter__content {
  flex: 1;
  padding: 3rem;
}
@media (max-width: 768px) {
  .newsletter__content {
    padding: 10px;
  }
}
.newsletter__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFF;
}
@media (max-width: 768px) {
  .newsletter__title {
    font-size: 2rem;
  }
}
.newsletter__text {
  color: #B6B6B6;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}
@media (max-width: 1200px) {
  .newsletter__text {
    max-width: 100%;
  }
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.newsletter__form-row {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .newsletter__form-row {
    flex-direction: column;
  }
}
.newsletter__form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter__form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.newsletter__form-group--preferences {
  margin-top: 0.5rem;
}
.newsletter__label {
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 500;
}
.newsletter__form-group--checkbox label {
  display: flex;
  align-items: center;
}
.newsletter__form-group--checkbox label span {
  line-height: 24px;
}
.newsletter__input {
  padding: 0.875rem 1rem;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFF;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 150, 209, 0.2);
}
.newsletter__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 0px;
  margin-right: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.newsletter__checkbox:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.newsletter__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin-top: -2px;
}
.newsletter__checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 150, 209, 0.2);
}
.newsletter__checkbox-label {
  font-size: 0.9rem;
  color: #B6B6B6;
  line-height: 1.4;
  cursor: pointer;
}
.newsletter__link {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}
.newsletter__link:hover {
  color: var(--mint);
  text-decoration: underline;
}
.newsletter__preferences-title {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.newsletter__preferences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}
@media (max-width: 576px) {
  .newsletter__preferences {
    grid-template-columns: 1fr;
  }
}
.newsletter__preference {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.newsletter__submit {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
}
.newsletter__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}
.newsletter__image-wrapper {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .newsletter__image-wrapper {
    min-height: 250px;
  }
}
.newsletter__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}
.newsletter__image:hover {
  transform: scale(1.05);
}
.newsletter__success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.newsletter__success.is-visible {
  opacity: 1;
  visibility: visible;
}
.newsletter__success-inner {
  background-color: #0E0E13;
  border-radius: 12px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.is-visible .newsletter__success-inner {
  transform: translateY(0);
}
.newsletter__success-icon {
  margin: 0 auto 1.5rem;
  width: 64px;
  height: 64px;
  animation: scale-in 0.5s ease forwards;
}
.newsletter__success-title {
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 1rem;
}
.newsletter__success-text {
  color: #B6B6B6;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter__success-button {
  margin: 0 auto;
  background-color: var(--blue);
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.portfolio-cards {
  padding: 100px 0;
}
.portfolio-cards__filters {
  margin-bottom: 50px;
}
.portfolio-cards__categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.portfolio-cards__subcategories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid rgb(38, 38, 38);
  margin-top: 20px;
  padding: 20px 0px;
}
.portfolio-cards__subcategories .subcategory-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}
.portfolio-cards__subcategories .subcategory-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 15px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.portfolio-cards__subcategories .subcategory-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.portfolio-cards__subcategories .subcategory-label {
  flex: 1;
  text-align: left;
}
.portfolio-cards__subcategories .subcategory-arrow {
  margin-left: 8px;
  font-size: 12px;
  pointer-events: none;
}
.portfolio-cards__subcategories .subcategory-list {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  width: 100%;
  top: calc(100% + 5px);
  left: 0;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px;
  z-index: 100;
}
.portfolio-cards__subcategories .subcategory-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 6px 15px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.portfolio-cards__subcategories .subcategory-item:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.portfolio-cards__subcategories .subcategory-item.active {
  background: var(--blue);
  border-color: var(--blue);
}
.portfolio-cards__subcategories .subcategory-item.active:hover {
  background: transparent;
  color: var(--white);
}
.portfolio-cards__subcategories .subcategory-dropdown.open .subcategory-list {
  display: flex;
}
.portfolio-cards__subcategories .subcategory-dropdown.open .subcategory-arrow {
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .portfolio-cards__subcategories .subcategory-dropdown {
    max-width: 100%;
  }
  .portfolio-cards__subcategories .subcategory-toggle {
    display: none;
  }
  .portfolio-cards__subcategories .subcategory-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.portfolio-cards__category-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-cards__category-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.portfolio-cards__category-btn.active {
  background: var(--blue);
  border-color: var(--blue);
}
.portfolio-cards__category-btn.active:hover {
  background: transparent;
  color: var(--white);
}
.portfolio-cards__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .portfolio-cards__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-cards__wrapper {
    grid-template-columns: 1fr;
  }
}
.portfolio-cards__load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.portfolio-cards__load-more .button {
  min-width: 200px;
  transition: all 0.3s ease;
}
.portfolio-cards__load-more .button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 150, 209, 0.3);
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.05);
}
.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}
.portfolio-card:hover .portfolio-card__overlay-content {
  transform: translateY(0);
}
.portfolio-card__image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 209, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.portfolio-card__overlay-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}
.portfolio-card__link {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--button-radius);
  text-decoration: none;
  transition: all 0.3s ease;
}
.portfolio-card__link:hover {
  background: var(--mint);
  transform: scale(1.05);
}
.portfolio-card__content {
  padding: 30px;
}
.portfolio-card__title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.portfolio-card__tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--grey);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.portfolio-card__tag:hover {
  background: rgba(168, 234, 213, 0.2);
  color: var(--mint);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes countUp {
  from {
    content: "0";
  }
  to {
    content: attr(data-count);
  }
}
.richtext__wrapper {
  padding: 30px;
}
.richtext__wrapper.gradient {
  border-radius: 40px;
  box-shadow: 0px 4px 100px 0px rgba(144, 197, 255, 0.3019607843);
}

.richtext h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
}

.richtext p:not(:last-child) {
  margin-bottom: 20px;
}

.richtext p strong {
  font-weight: 700;
}

.richtext__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.columns-2 {
  column-count: 2;
  gap: 20px;
}

.columns-3 {
  column-count: 3;
  gap: 20px;
}

.columns-4 {
  column-count: 4;
  gap: 20px;
}

.richtext__buttons.left {
  justify-content: flex-start;
}

.richtext__buttons.right {
  justify-content: flex-end;
}

.richtext ul.square li:before {
  width: 16px;
  height: 16px;
  background-color: rgb(0, 150, 209);
  background-image: none;
  border-radius: 0;
  top: 5px;
}

.richtext ul li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  padding: 4px 0 4px 32px;
}
.richtext ul li:not(:last-child) {
  margin-bottom: 12px;
}
.richtext ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(0, 150, 209) url("../images/list-icon.svg") center center no-repeat;
}

.richtext ul {
  margin-bottom: 20px;
}

.richtext ol {
  list-style-position: inside;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .richtext {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 992px) {
  .richtext .columns-3 {
    column-count: 2;
  }
  .richtext .columns-4 {
    column-count: 3;
  }
}
@media (max-width: 992px) {
  .richtext .columns-3 {
    column-count: 1;
  }
  .richtext .columns-4 {
    column-count: 2;
  }
  .richtext .columns-2 {
    column-count: 1;
  }
}
@media (max-width: 576px) {
  .richtext {
    padding: 60px 20px;
  }
  .richtext .columns-4 {
    column-count: 1;
  }
  .richtext p, .richtext li {
    font-size: 16px;
  }
  .richtext__wrapper {
    padding: 20px;
  }
  .richtext__buttons {
    flex-direction: column;
  }
  .richtext__buttons.right {
    align-items: flex-end;
  }
  .richtext__buttons.right a {
    width: fit-content;
  }
  .richtext__buttons a {
    width: 100%;
    font-size: 16px;
  }
}
.services__header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .services__header {
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services__header .button {
    flex-basis: 100%;
    margin: 30px auto 0px;
    max-width: 360px;
  }
}
.services__header h2 {
  margin-bottom: 0px;
}
.services__filters {
  margin-bottom: 40px;
}
.services__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services__category-btn {
  padding: 10px 20px;
  background: rgba(217, 217, 217, 0.06);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease;
}
.services__category-btn:hover {
  background: rgba(168, 234, 213, 0.1);
  color: var(--white);
}
.services__category-btn.active {
  background: rgba(0, 150, 209, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__slider-buttons {
  display: flex;
  column-gap: 12px;
  margin-left: 42px;
  flex-grow: 1;
}
.services__slider-buttons .button {
  width: 56px;
  height: 56px;
  margin: 0px;
}
@media (max-width: 576px) {
  .services__slider-buttons {
    margin-top: 20px;
    margin-left: 0;
    flex-basis: 100%;
  }
}
.services__slider {
  overflow: hidden;
}
.services__card {
  /* padding: 40px;
   gap: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   max-height: 600px;
   cursor: pointer;
   position: relative;
   overflow: hidden; */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  animation: fadeIn 0.8s ease-in-out;
  border-right: 1px solid transparent;
  border-image: linear-gradient(180deg, #0A0A0E 0%, #616062 100%) 1;
}
@media (min-width: 1280px) {
  .services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(0, 150, 209, 0.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding-bottom: 140px;
  }
  .services__card:hover .services__card-icon-wrapper {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    height: 0;
  }
  .services__card:hover > .arrow {
    display: none;
    opacity: 0;
  }
  .services__card:hover > h5 {
    color: var(--blue);
    transform: translateY(-10px);
    letter-spacing: 0.8px;
    margin-bottom: 30px;
    transition: color 0.8s ease, transform 0.8s ease;
  }
  .services__card:hover > .services__card-copy {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.1s ease, transform 0.8s ease;
    max-height: 0;
    margin-bottom: 0;
  }
  .services__card:hover > p {
    color: var(--grey);
    margin-bottom: 30px;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .services__card:hover .services__card-copy-hover {
    opacity: 1;
    min-height: 200px;
    margin-bottom: 80px;
    transition: opacity 0.8s ease, transform 0.8s ease, max-height 0.8s ease;
    height: auto;
    list-style-position: inside;
    overflow: hidden;
    transform: translateY(-10px);
  }
  .services__card:hover .services__card-copy-hover > li {
    list-style-type: "• ";
    color: rgba(255, 255, 255, 0.6);
    line-height: 140%;
    letter-spacing: 0;
  }
  .services__card:hover .services__card-copy-hover > li::marker {
    margin-right: 0;
  }
  .services__card:hover .services__card-hover-item {
    opacity: 1;
    transform: translateY(0px);
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, max-height 0.8s ease;
  }
  .services__card:hover .services__card-hover-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .services__card:hover .services__card-hover-item h6 {
    position: absolute;
    left: 20px;
    top: 16px;
  }
  .services__card:hover .services__card-hover-link {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease, max-height 0.8s ease;
  }
}
.services__card-icon-wrapper {
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.06);
  width: 69px;
  height: 69px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}
.services__card > h5 {
  letter-spacing: 0.8px;
  margin-bottom: 30px;
  transition: color 0.5s ease, transform 0.5s ease;
  transform: translateY(0);
}
.services__card > p {
  color: var(--grey);
  margin-bottom: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services__card > .arrow {
  width: 24px;
  height: 24px;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1200px) {
  .services__card > .arrow {
    display: none;
  }
}
.services__card .mobile-link {
  display: none;
}
@media (max-width: 1200px) {
  .services__card .mobile-link {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: rgb(0, 150, 209);
    text-decoration: none;
    z-index: 100;
  }
  .services__card .mobile-link svg {
    margin-left: 20px;
  }
}
.services__card-copy-hover {
  opacity: 0;
  list-style-position: inside;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  height: 0;
  overflow-y: auto;
}
.services__card-copy-hover > li {
  list-style-type: "• ";
  color: rgba(255, 255, 255, 0.6);
  line-height: 140%;
  letter-spacing: 0;
}
.services__card-copy-hover > li::marker {
  margin-right: 0;
}
.services__card-hover-item {
  opacity: 0;
  width: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  bottom: 0;
  right: 0;
  left: 0;
  height: 146px;
  gap: 8px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: auto;
  overflow: hidden;
}
.services__card-hover-item > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.services__card-hover-item h6 {
  position: absolute;
  left: 20px;
  top: 16px;
  margin: 0;
}
.services__card-hover-link {
  display: flex;
  opacity: 0;
  align-items: center;
  position: absolute;
  right: 20px;
  bottom: 16px;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.services__animation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.services__animation-controls span {
  color: var(--grey);
  font-size: 14px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .services__animation-controls {
    flex-direction: column;
    gap: 15px;
  }
  .services__animation-controls span {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.services__animation-btn {
  padding: 8px 16px;
  background: rgba(217, 217, 217, 0.06);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.services__animation-btn:hover {
  background: rgba(168, 234, 213, 0.1);
  color: var(--white);
}
.services__animation-btn.active {
  background: rgba(0, 150, 209, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}
@media (max-width: 480px) {
  .services__animation-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
.services__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.services__pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 217, 217, 0.06);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease;
}
.services__pagination-btn:hover {
  background: rgba(168, 234, 213, 0.1);
  color: var(--white);
}
.services__pagination-btn.active {
  background: rgba(0, 150, 209, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}
.services__pagination-btn--next svg {
  width: 20px;
  height: 20px;
}

.services__card--flip {
  perspective: 1000px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.services__card--flip .services__card-front,
.services__card--flip .services__card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.services__card--flip .services__card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background: rgba(0, 150, 209, 0.05);
}
.services__card--flip:hover .services__card-front, .services__card--flip:focus .services__card-front, .services__card--flip:active .services__card-front, .services__card--flip.touch-active .services__card-front {
  transform: rotateY(180deg);
}
.services__card--flip:hover .services__card-back, .services__card--flip:focus .services__card-back, .services__card--flip:active .services__card-back, .services__card--flip.touch-active .services__card-back {
  transform: rotateY(0);
}
@media (max-width: 768px) {
  .services__card--flip.touch-active .services__card-front {
    transform: rotateY(180deg);
  }
  .services__card--flip.touch-active .services__card-back {
    transform: rotateY(0);
  }
}

.services__card--slide {
  overflow: hidden;
  will-change: transform;
}
.services__card--slide .services__card-content {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.services__card--slide .services__card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 209, 0.05);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
}
.services__card--slide:hover .services__card-content, .services__card--slide:focus .services__card-content, .services__card--slide:active .services__card-content, .services__card--slide.touch-active .services__card-content {
  transform: translateX(-100%);
}
.services__card--slide:hover .services__card-hover-content, .services__card--slide:focus .services__card-hover-content, .services__card--slide:active .services__card-hover-content, .services__card--slide.touch-active .services__card-hover-content {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .services__card--slide.touch-active .services__card-content {
    transform: translateX(-100%);
  }
  .services__card--slide.touch-active .services__card-hover-content {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services__card {
  position: relative;
  overflow: hidden;
  height: 580px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.services__card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
}

.steps {
  position: relative;
}
.steps h2 {
  text-align: center;
  margin-bottom: 8px;
}
.steps h3 {
  text-align: center;
  margin-bottom: 8px;
}
.steps p {
  color: var(--grey);
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .steps p {
    margin-bottom: 20px;
  }
}
.steps p + a {
  margin-top: 50px;
  margin: 0 auto;
}
.steps__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 40px;
  position: relative;
}
.steps__wrapper:after {
  content: "";
  width: 130px;
  height: 130px;
  background: #0096D1;
  border-radius: 50%;
  filter: blur(80px);
  top: 34%;
  left: 5%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
.steps__wrapper:before {
  content: "";
  width: 340px;
  height: 340px;
  background: #0096D1;
  border-radius: 50%;
  filter: blur(150px);
  top: 50%;
  transform: translateY(-50%);
  right: -20%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
.steps__wrapper .lines {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 992px) {
  .steps__wrapper .lines {
    left: 0;
  }
}
.steps__wrapper .lines .line__item {
  height: 100%;
  margin: auto 0px auto -10px;
}
.steps__wrapper .lines .line__item:first-child:before {
  content: "";
  width: 1px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.3019607843);
  position: absolute;
  top: 40px;
  left: 0;
  transform: translateX(-50%);
}
.steps__wrapper .lines .circle:after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.steps .step {
  width: 50%;
  text-align: left;
  padding: 0 80px;
}
@media (max-width: 992px) {
  .steps .step {
    width: 100%;
    text-align: left;
    padding: 0 20px;
  }
}
.steps .step .button {
  margin-left: 0;
}
.steps .step__wrapper {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.steps .step__wrapper:nth-child(even) {
  justify-content: flex-end;
}
.steps .step__wrapper:nth-child(odd) {
  justify-content: flex-start;
}
.steps .step__count {
  font-size: 18px;
  font-weight: 400;
  color: var(--mint);
  margin-bottom: 4px;
}
.steps .step h3 {
  margin-bottom: 20px;
  text-align: left;
}
.steps .step p {
  color: var(--grey);
  margin: 0;
  text-align: left;
}
.steps .step p + a {
  margin-top: 30px;
}
.steps .after-content-cta .button {
  margin: 0 auto;
}

.step__wrapper:first-of-type .lines .line__item:first-child::after {
  content: "";
  width: 2px;
  height: 64px;
  background-color: #A8EAD5;
  position: absolute;
  top: 40px;
  left: 0;
  transform: translateX(-50%);
}

.success-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .success-stories__header {
    flex-direction: column;
    align-items: center;
  }
}
.success-stories__header:before {
  content: "";
  width: 540px;
  height: 540px;
  background: #0096D1;
  border-radius: 50%;
  filter: blur(150px);
  transform: translateY(-40%);
  left: -5%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .success-stories__text {
    text-align: center;
    margin-bottom: 30px;
  }
}
.success-stories__tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.success-stories__tab-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 20px;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  column-gap: 14px;
  height: 54px;
  border: 1px solid transparent;
}
.success-stories__tab-button span {
  font-size: 16px;
  color: var(--white);
  line-height: 150%;
}
.success-stories__tab-button:hover {
  /*background-color: rgba(168, 234, 213, 0.1); */
  border: 1px solid rgb(72, 72, 72);
}
.success-stories__tab-button:hover .icon, .success-stories__tab-button:hover span {
  /*color: #A8EAD5; */
  color: var(--white);
}
.success-stories__tab-button.active {
  background: rgba(255, 255, 255, 0.08);
}
.success-stories__tabs-content {
  margin-top: 30px;
}
.success-stories__tab-content {
  display: none;
}
.success-stories__tab-content.active {
  display: block;
}
.success-stories__wrapper {
  border-radius: 40px;
  box-shadow: 0px 4px 100px 0px rgba(144, 197, 255, 0.3);
}
.success-stories__slider {
  box-shadow: 0px 4px 100px 0px rgba(144, 197, 255, 0.3);
}
.success-stories__case {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  /*box-shadow: 0px 4px 100px 0px rgba(144, 197, 255, 0.3); */
  max-height: 480px;
  height: 100%;
}
.success-stories__case:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 40px;
  z-index: 0;
}
.success-stories__case-info {
  position: absolute;
  padding: 30px 40px;
  z-index: 1;
}
@media (max-width: 768px) {
  .success-stories__case-info {
    padding: 20px 15px;
  }
}
.success-stories__case-info h3 {
  margin-bottom: 15px;
}
.success-stories__case-info p {
  margin-bottom: 40px;
}
.success-stories__case-image {
  width: 100%;
  height: 100%;
}
.success-stories__case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
  display: block;
}
.success-stories__stats, .success-stories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.success-stories__stats li, .success-stories ul li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4px 0 4px 50px;
}
.success-stories__stats li:not(:last-child), .success-stories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.success-stories__stats li:before, .success-stories ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(0, 150, 209) url("../images/list-icon.svg") center center no-repeat;
}
.success-stories__stat-text {
  color: #fff;
  font-size: 16px;
  line-height: 150%;
}
.success-stories__slider .swiper-slide {
  margin-right: 30px;
}
.success-stories__slider .swiper-slide:last-child {
  margin-right: 0;
}
.success-stories__slide {
  height: auto;
  transition: transform 0.3 ease;
  width: 100%;
  box-sizing: border-box;
}
.success-stories__slide.swiper-slide-active .success-stories__case {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.success-stories__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgb(38, 38, 38);
}
.success-stories__counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.8px;
}
.success-stories__counter .success-stories__current {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}
.success-stories__slider-buttons {
  display: flex;
  gap: 15px;
}
.success-stories__slider-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .success-stories__footer {
    flex-direction: row-reverse;
    gap: 20px;
  }
  .success-stories__counter {
    order: 2;
  }
  .success-stories__slider-buttons {
    order: 1;
  }
}
.success-stories__dropdown-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  .success-stories__dropdown-wrapper .dropdown-button {
    display: none;
  }
}
@media (max-width: 768px) {
  .success-stories__dropdown-wrapper {
    flex-direction: column;
    width: 320px;
    margin: 10px auto 30px;
  }
  .success-stories__dropdown-wrapper .success-stories__tab-button {
    display: none;
  }
  .success-stories__dropdown-wrapper .dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    column-gap: 14px;
    border: none;
  }
  .success-stories__dropdown-wrapper .selected-label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .success-stories__dropdown-wrapper.open {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding-bottom: 20px;
  }
  .success-stories__dropdown-wrapper.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .success-stories__dropdown-wrapper.open .dropdown-button {
    background: rgba(255, 255, 255, 0.08);
  }
  .success-stories__dropdown-wrapper.open > .success-stories__tab-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .success-stories__dropdown-wrapper.open > .success-stories__tab-button:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.success-stories__wrapper.manual-list .success-stories__case {
  height: 100% !important;
}

.success-stories__wrapper {
  overflow: hidden;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.success-stories__slider__slide {
  animation: slide-up 0.5s ease forwards;
}

.tabs {
  padding: 4rem 0;
}
.tabs__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
}
.tabs__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #B6B6B6;
}
.tabs__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0E0E13;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #1A1A1A;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs__nav::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .tabs__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.tabs__nav-button {
  padding: 1.2rem 2rem;
  background: transparent;
  border: none;
  color: #B6B6B6;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.tabs__nav-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tabs__nav-button:hover {
  color: var(--mint);
}
.tabs__nav-button--active {
  color: var(--blue);
}
.tabs__nav-button--active::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .tabs__nav-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
.tabs__content {
  position: relative;
  min-height: 300px;
}
.tabs__tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transform: translateY(20px);
}
.tabs__tab--active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .tabs__tab {
    padding: 1.5rem;
  }
}
.tabs__tab-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tabs__tab-inner--centered {
  align-items: center;
  text-align: center;
}
.tabs__tab-inner--centered .tabs__tab-image-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.tabs__tab-inner--centered .tabs__buttons {
  justify-content: center;
}
.tabs__tab-inner--columns {
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  .tabs__tab-inner--columns {
    flex-direction: column;
  }
}
.tabs__tab-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tabs__tab-title {
  color: #FFF;
  margin-bottom: 0.5rem;
}
.tabs__tab-text {
  color: #B6B6B6;
  line-height: 1.6;
}
.tabs__tab-image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.tabs__tab-image-wrapper--right {
  order: -1;
}
@media (min-width: 768px) {
  .tabs__tab-image-wrapper--right {
    order: 1;
  }
}
.tabs__tab-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.tabs__tab-image:hover {
  transform: scale(1.05);
}
.tabs__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .tabs__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .tabs__tab-inner--centered .tabs__buttons {
    align-items: center;
  }
}

.team {
  padding: 120px 0 100px;
  position: relative;
}
.team__header {
  display: flex;
  margin-bottom: 75px;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.team__header:after {
  content: "";
  width: 550px;
  height: 550px;
  background: rgba(0, 150, 209, 0.7);
  border-radius: 50%;
  filter: blur(150px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  position: absolute;
  pointer-events: none;
  backdrop-filter: blur(300px);
}
.team__header h2 {
  margin-bottom: 8px;
  text-align: center;
}
.team__header p {
  color: rgb(182, 182, 182);
  margin-bottom: 34px;
  text-align: center;
}
.team__slider {
  overflow: hidden;
}
.team__card {
  max-width: 280px;
  width: 100%;
}
.team__card:not(:last-child) {
  margin-right: 100px;
}
.team__card-info {
  display: flex;
  align-items: flex-start;
  column-gap: 6px;
}
.team__card-info h5 {
  letter-spacing: -0.8px;
  margin-bottom: 0px;
}
.team__card-info p {
  color: var(--grey);
  font-size: 14px;
}
.team__card-info-social svg {
  transition: all 0.2s linear;
}
.team__card-info-social svg:hover path {
  fill: var(--blue);
}
.team__card-image {
  margin-bottom: 6px;
  max-width: 280px;
  height: 260px;
}
.team__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .team__header {
    margin-bottom: 50px;
  }
  .team__header h2 {
    font-size: 36px;
  }
  .team__card {
    max-width: 240px;
  }
  .team__card:not(:last-child) {
    margin-right: 60px;
  }
}
@media (max-width: 768px) {
  .team__header {
    margin-bottom: 40px;
  }
  .team__header h2 {
    font-size: 30px;
  }
  .team__header p {
    font-size: 16px;
  }
  .team__card {
    max-width: 200px;
  }
  .team__card:not(:last-child) {
    margin-right: 30px;
  }
  .team__card-info-content h5 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .team__header h2 {
    font-size: 26px;
  }
  .team__card {
    max-width: 180px;
  }
  .team__card:not(:last-child) {
    margin-right: 20px;
  }
  .team__card-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team__card-info-content h5 {
    font-size: 16px;
  }
  .team__card-info-content p {
    font-size: 14px;
  }
}
.testimonial-slider {
  padding: 4rem 0;
  overflow: hidden;
}
.testimonial-slider__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #FFF;
}
.testimonial-slider__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #B6B6B6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-slider__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider__container {
  overflow: visible;
  padding: 2rem 0.5rem;
}
.testimonial-slider__slide {
  height: auto;
  transition: transform 0.3s ease;
}
.testimonial-slider__slide.swiper-slide-active .testimonial-slider__card {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-slider__card {
  background-color: #1A1A1A;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}
.testimonial-slider__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .testimonial-slider__card {
    padding: 1.5rem;
  }
}
.testimonial-slider__quote {
  margin-bottom: 1.5rem;
}
.testimonial-slider__quote svg {
  display: block;
}
.testimonial-slider__text {
  color: #B6B6B6;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .testimonial-slider__text {
    font-size: 1rem;
  }
}
.testimonial-slider__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial-slider__author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--mint);
}
.testimonial-slider__author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-slider__author-info {
  flex-grow: 1;
}
.testimonial-slider__author-name {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 0.25rem;
}
.testimonial-slider__author-position {
  font-size: 0.9rem;
  color: var(--mint);
}
.testimonial-slider__rating {
  display: flex;
  gap: 0.25rem;
}
.testimonial-slider__star {
  color: #FFD700;
  font-size: 1.2rem;
}
.testimonial-slider__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-slider__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-slider__button:hover {
  background-color: rgba(168, 234, 213, 0.1);
  border-color: var(--mint);
}
.testimonial-slider__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonial-slider__button svg {
  transition: transform 0.3s ease;
}
.testimonial-slider__button--prev:hover svg {
  transform: translateX(-2px);
}
.testimonial-slider__button--next:hover svg {
  transform: translateX(2px);
}
.testimonial-slider__pagination {
  display: flex;
  gap: 0.5rem;
}
.testimonial-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}
.testimonial-slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--mint);
  transform: scale(1.2);
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-slider__slide {
  animation: slide-up 0.5s ease forwards;
}

.testimonials {
  position: relative;
}
.testimonials:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: rgba(0, 150, 209, 0.4);
  filter: blur(200px);
  z-index: -1;
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials .container:after {
  content: "";
  position: absolute;
  top: 104px;
  right: 0;
  width: 385px;
  height: 305px;
  z-index: -1;
  background: url("../images/logo-big.svg") center center no-repeat;
}
.testimonials__header {
  margin-bottom: 40px;
}
.testimonials__header h2 {
  margin-bottom: 8px;
  max-width: 805px;
}
.testimonials__header p {
  color: var(--grey);
}
.testimonials__slider {
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}
.testimonials__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonials__slider .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials__card {
  max-width: 557px;
  border-radius: 40px;
  padding: 40px;
  width: 100%;
  transition: all 0.3s ease;
  background: rgba(20, 20, 20, 0.3);
  border: 1px solid rgba(66, 66, 66, 0.3);
  backdrop-filter: blur(35px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonials__card:not(:last-child) {
  margin-right: 20px;
}
.testimonials__rating {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.testimonials__rating svg {
  width: 24px;
  height: 24px;
}
.testimonials h5 {
  margin-bottom: 14px;
}
.testimonials__text {
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.testimonials__text p {
  font-size: 18px;
  line-height: 150%;
}
.testimonials__author {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.testimonials__author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.testimonials__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__author-info h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonials__author-info p {
  font-size: 18px;
  line-height: 150%;
  color: rgb(182, 182, 182);
}
.testimonials__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgb(38, 38, 38);
}
.testimonials__counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.8px;
}
.testimonials__counter .testimonials__current {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}
.testimonials__slider-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 992px) {
  .testimonials__header h2 {
    font-size: 36px;
  }
  .testimonials__card {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  .testimonials__header {
    margin-bottom: 40px;
  }
  .testimonials__header h2 {
    font-size: 32px;
  }
  .testimonials__header p {
    font-size: 16px;
  }
  .testimonials__card {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .testimonials__header h2 {
    font-size: 28px;
  }
  .testimonials__author {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials__author-photo {
    margin-bottom: 10px;
  }
  .testimonials__footer {
    flex-direction: row-reverse;
    gap: 20px;
  }
  .testimonials__counter {
    order: 2;
  }
  .testimonials__slider-buttons {
    order: 1;
  }
}

.video-section {
  text-align: center;
}
.video-section__title {
  margin-bottom: 20px;
}
.video-section__subtitle {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 20px;
}
.video-section__text {
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
}
.video-section__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
  border-radius: 40px;
  transition: all 0.2s linear;
}
.video-section__player:hover {
  box-shadow: 0px 4px 100px 0px rgba(144, 197, 255, 0.3);
}
.video-section__player.is-playing .video-section__poster,
.video-section__player.is-playing .video-section__play-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s linear;
}
.video-section__player.is-error {
  outline: 2px solid red;
}
.video-section__player.is-error::before {
  content: "Помилка відео!";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(200, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 3px;
  z-index: 3;
}
.video-section__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-section__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, visibility 0s 0.2s linear;
  opacity: 1;
  visibility: visible;
}
.video-section__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease-in-out, visibility 0s 0.2s linear, background-color 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.video-section__play-button::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/play-button.svg") center no-repeat;
  background-size: contain;
}
.video-section__play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1200px) {
  .video-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 576px) {
  .video-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .video-section__title {
    font-size: 28px;
  }
  .video-section__subtitle {
    font-size: 16px;
  }
  .video-section__text {
    font-size: 16px;
  }
  .video-section__player {
    border-radius: 20px;
  }
  .video-section__play-button {
    width: 50px;
    height: 50px;
  }
  .video-section__play-button::before {
    width: 24px;
    height: 24px;
  }
}
.logos {
  padding: 60px 0 40px;
  position: relative;
}
.logos__slider {
  overflow: hidden;
}
.logos__card {
  max-width: 160px;
  width: 100%;
}
.logos__card:not(:last-child) {
  margin-right: 10px;
}
.logos__card-image {
  margin-bottom: 6px;
  max-width: 160px;
  height: 116px;
}
.logos__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .logos {
    padding: 60px 0 40px;
  }
  .logos__card {
    max-width: 140px;
  }
  .logos__card:not(:last-child) {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .logos {
    padding: 50px 0 30px;
  }
  .logos__card {
    max-width: 120px;
  }
  .logos__card:not(:last-child) {
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .logos__card {
    max-width: 100px;
  }
  .logos__card:not(:last-child) {
    margin-right: 10px;
  }
}
.header {
  background: var(--black-transparent-01);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  box-sizing: border-box;
}
.header__logo {
  width: 209px;
  height: 31px;
}
@media (max-width: 1200px) {
  .header__logo {
    display: none;
  }
}
.header__logo-wrapper {
  margin-right: 17px;
}
.header__logo-mobile {
  display: none;
  width: 100px;
  height: 31px;
}
@media (max-width: 1200px) {
  .header__logo-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}
.header__logo-mobile-wrapper {
  margin-right: 17px;
}
@media (max-width: 576px) {
  .header__logo-mobile-wrapper {
    margin-right: 10px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .header__wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .header__wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header__nav.show {
    order: 4;
    height: 100vh;
    display: flex;
    flex-basis: 100%;
    margin-top: 80px;
    position: fixed;
    inset: 0;
    width: 100%;
    z-index: 9999;
    background: var(--black-transparent-95);
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}
.header__subnav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  top: 92px;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  transform: translateX(-50%);
  height: fit-content;
  background: var(--black-transparent-95);
  border-radius: var(--card-radius);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  background: linear-gradient(178.56deg, #0D0D0D 42.81%, #0096D1 179.37%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  cursor: auto;
}
@media (max-width: 1200px) {
  .header__subnav {
    transform: translateX(0%);
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (max-width: 576px) {
  .header__subnav {
    border-radius: var(--nav-radius);
    top: 70px;
  }
}
.header__subnav:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  background: var(--gradient-header-subnav);
  z-index: -1;
}
.header__subnav:after {
  content: "";
  width: 60%;
  height: 200px;
  background: #0096D1;
  filter: blur(156px);
  transform: translateY(0%);
  left: 20%;
  bottom: 0;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
.header__subnav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .header__subnav.active {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--black-transparent-95);
    z-index: 10000;
    padding: 20px;
    transform: translateX(0);
  }
}
.header__subnav .back {
  display: none;
}
@media (max-width: 1200px) {
  .header__subnav .back {
    display: flex;
    width: 100%;
    padding: 20px 15px 0px;
    border-bottom: 1px solid white;
    align-items: center;
  }
  .header__subnav .back svg {
    transform: rotate(90deg);
    margin-right: 4px;
  }
}
.header__nav-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
}
@media (max-width: 1440px) {
  .header__nav-col {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .header__nav-col {
    min-width: 100%;
    padding: 20px 15px;
  }
}
.header__nav-title {
  font-size: 16px;
  line-height: 120%;
  color: var(--grey);
  text-align: left;
  align-self: flex-start;
  margin-bottom: 14px;
  width: 100%;
}
.header__nav-categories {
  display: flex;
  justify-content: space-between;
  padding: 20px 80px;
  border-bottom: 1px solid var(--white-transparent-10);
}
@media (max-width: 992px) {
  .header__nav-categories {
    padding: 15px 40px;
  }
}
@media (max-width: 576px) {
  .header__nav-categories {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.header__nav-category {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.5;
}
.header__nav-sublist {
  position: relative;
  cursor: auto;
  /*border-radius: var(--card-radius); */
  z-index: 1;
  overflow: hidden;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.1s ease;
  /*&:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 815px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -125%;
    filter: blur(90px);
    background: var(--blue-transparent-15);
    pointer-events: none;
    z-index: -1;
  } */
}
@media (max-width: 992px) {
  .header__nav-sublist {
    padding: 20px 20px;
    column-gap: 16px;
  }
}
@media (max-width: 576px) {
  .header__nav-sublist {
    padding: 0px;
    flex-direction: column;
    row-gap: 20px;
  }
}
.header__nav-sublist li {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 !important;
}
.header__nav-sublist li:hover > span {
  color: #90C5FF;
}
.header__nav-sublist li > span {
  font-size: 14px;
  line-height: 120%;
  color: var(--grey);
  text-align: left;
  align-self: flex-start;
  margin-bottom: 14px;
  width: 100%;
}
.header__nav-sublist__item {
  text-decoration: none;
  padding: 16px;
  transition: all 0.2s linear;
  border-radius: var(--border-radius);
  background: var(--black-transparent-00);
  width: 100%;
}
@media (max-width: 1440px) {
  .header__nav-sublist__item {
    padding: 16px 16px 14px;
  }
}
.header__nav-sublist__item:not(:last-child) {
  margin-bottom: 8px;
}
.header__nav-sublist__item ul li {
  width: 100%;
  align-items: flex-start;
}
.header__nav-sublist__item ul li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white);
  display: inline-block;
  padding: 6px 0;
}
.header__nav-sublist__item.active {
  background: var(--gradient-nav-item-hover);
}
.header__nav-sublist__item:hover {
  background: var(--gradient-nav-item-hover);
}
.header__nav-sublist__item p {
  margin: 0 0 0 38px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  transition: all 1.3s ease;
  height: auto;
  overflow: visible;
  opacity: 0.5;
}
.header__nav-sublist__item.active p {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.header__nav-sublist__item-header {
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-bottom: 8px;
  color: var(--white);
}
.header__nav-sublist__item-header > span {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.8%;
  font-family: "Urbanist", sans-serif;
}
.header__nav-sublist__item-header > svg:last-child {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.header__nav-sublist__item-header > svg:last-child.active {
  transform: rotate(180deg);
}
.header__nav-sublist__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
  margin-left: 38px;
}
.header__nav-sublist__item-content.active {
  max-height: 100%;
}
.header__nav-sublist__item-content-links {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__nav-sublist__item-content-links.active {
  opacity: 1;
}
.header__nav-sublist__item-content-links li {
  margin-bottom: 8px;
}
.header__nav-sublist__item-content-links li:last-child {
  margin-bottom: 0;
}
.header__nav-sublist__item-content-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.header__nav-sublist__item-content-links li a:hover {
  color: #90C5FF;
}
.header__nav-sublist__item:not(accordion-item) p {
  opacity: 1;
}
.header__nav-sublist__item:not(accordion-item) .header__nav-sublist__item-links {
  opacity: 1;
  margin-left: 38px;
}
.header__nav-sublist .heading-submenu-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0px;
  width: 100%;
}
.header__nav-sublist .heading-submenu-item span {
  font-size: 14px;
  margin-right: 20px;
}
.header__nav-sublist .has-submenu-items .submenu-list {
  display: none;
  margin-left: 20px;
  transition: all 0.2s linear;
}
.header__nav-sublist .has-submenu-items .submenu-list ul li a:hover {
  color: #90C5FF;
  text-decoration: underline;
}
.header__nav-sublist .has-submenu-items .icon-submenu {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}
.header__nav-sublist .has-submenu-items.active-submenu {
  transition: all 0.2s linear;
}
.header__nav-sublist .has-submenu-items.active-submenu .submenu-list {
  display: block;
  transition: all 0.2s linear;
}
.header__nav-sublist .has-submenu-items.active-submenu .icon-submenu {
  transform: rotate(180deg);
}
.header__nav-list {
  display: flex;
  margin-right: 27px;
  column-gap: 12px;
}
@media (max-width: 1200px) {
  .header__nav-list {
    display: none;
  }
}
@media (max-width: 992px) {
  .header__nav-list {
    margin-right: 15px;
    column-gap: 8px;
  }
}
@media (max-width: 576px) {
  .header__nav-list {
    margin-right: 10px;
    column-gap: 5px;
    flex-wrap: wrap;
  }
}
.header__nav-list li {
  padding: 6px 10px;
  display: flex;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s linear;
  align-items: center;
}
@media (max-width: 1200px) {
  .header__nav-list li {
    justify-content: space-between;
    font-size: 18px;
  }
}
.header__nav-list li > svg {
  transition: all 0.2s linear;
  width: 20px;
  height: 20px;
}
.header__nav-list li:hover {
  color: #90C5FF;
}
.header__nav-list li:hover > svg path {
  fill: #90C5FF;
}
.header__nav-list li.active {
  color: #90C5FF;
}
.header__nav-list li.active > svg {
  transform: rotate(180deg);
}
.header__nav-list li.active > svg path {
  fill: #90C5FF;
}
.header .menu-opener {
  display: none;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-left: 13px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header .menu-opener {
    display: inline-flex;
  }
}
.header .menu-opener span {
  width: 18px;
  border-top: 2px solid #0f1729;
  display: inline-block;
  position: relative;
  transition: border-top-color 0.4s ease;
}
.header .menu-opener span::after, .header .menu-opener span::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0f1729;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: transform 0.3s ease;
}
.header .menu-opener span::before {
  top: -8px;
}
.show-menu .header .menu-opener span {
  border-top-color: rgba(0, 0, 0, 0);
}
.show-menu .header .menu-opener span::after {
  transform: rotate(-45deg) translate(28%, -176%);
}
.show-menu .header .menu-opener span::before {
  transform: rotate(45deg) translate(27%, 171%);
}
.header .menu-opener.active span {
  border-top-color: transparent;
  background-color: transparent;
}
.header .menu-opener.active span::before, .header .menu-opener.active span::after {
  bottom: auto;
  top: 50%;
  transform-origin: center;
}
.header .menu-opener.active span::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header .menu-opener.active span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.header .header__nav-list.active {
  display: block;
}

.footer {
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .footer {
    padding: 50px 0 40px 0;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 0 30px 0;
  }
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer__wrapper {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__logo img {
  max-width: 210px;
}
.footer__socials {
  margin-bottom: 40px;
}
.footer__socials > span {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 14px;
  letter-spacing: 0;
  display: inline-block;
}
.footer__socials-links {
  display: flex;
  gap: 12px;
}
.footer__copyright p {
  font-size: 18px;
  color: rgb(182, 182, 182);
}
.footer__right {
  display: flex;
  column-gap: 45px;
}
@media (max-width: 992px) {
  .footer__right {
    column-gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .footer__right {
    row-gap: 30px;
  }
}
.footer__navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__navigation li {
  margin-bottom: 20px;
}
.footer__navigation li:last-child {
  margin-bottom: 0;
}
.footer__navigation a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  line-height: 140%;
}
.footer__navigation a:hover {
  color: #00B2E3;
}
.footer__contacts {
  display: flex;
  column-gap: 45px;
}
@media (max-width: 992px) {
  .footer__contacts {
    column-gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer__contacts {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer__contacts ul {
  list-style: none;
}
.footer__contacts ul a {
  color: var(--grey);
}
.footer__contacts a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer__contacts a:hover {
  color: #00B2E3;
}
.footer__contact-item {
  margin-bottom: 15px;
}
.footer__contact-item:nth-child(2) {
  margin-bottom: 30px;
}
.footer__contact-item:nth-child(4) {
  margin-bottom: 30px;
}
.footer__contact-address p {
  font-size: 16px;
  color: #B6B6B6;
  margin-bottom: 5px;
}
.footer__contact-address p:last-child {
  margin-bottom: 0;
}

.hero {
  margin-top: 100px;
  padding: 0px 0 120px 0;
}
@media (max-width: 992px) {
  .hero {
    padding: 0 0 80px 0;
    margin-top: 0px;
  }
  .hero .container {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 0 0 60px 0;
    margin-top: 70px;
  }
}
.hero__wrapper {
  position: relative;
  min-height: 600px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .hero__wrapper {
    min-height: 680px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.hero__wrapper:before {
  content: "";
  width: 340px;
  height: 340px;
  background: #0096D1;
  border-radius: 50%;
  filter: blur(150px);
  top: 50%;
  transform: translateY(-50%);
  left: -20%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}
.hero__wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(267.84deg, rgba(0, 0, 0, 0) 1.59%, rgba(0, 0, 0, 0.7) 53.04%);
  border-radius: 40px;
}
@media (max-width: 992px) {
  .hero__wrapper:after {
    border-radius: 30px;
  }
}
@media (max-width: 576px) {
  .hero__wrapper:after {
    border-radius: 20px;
  }
}
.hero__media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .hero__media {
    border-radius: 30px;
  }
}
@media (max-width: 576px) {
  .hero__media {
    border-radius: 20px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 672px;
  /*padding: 80px 0px 20px 62px;*/
  padding: 0px 0px 0px 62px;
}
@media (max-width: 992px) {
  .hero__content {
    max-width: 100%;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 680px;
  }
}
.hero__title {
  line-height: 110%;
  margin-bottom: 24px;
  font-size: 44px;
}
.hero__copy {
  margin-bottom: 42px;
  max-width: 474px;
}
@media (max-width: 992px) {
  .hero .button {
    margin: 0px auto;
  }
}

.image-text {
  padding: 4rem 0;
}
.image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}
.image-text__container--stack-top {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.image-text__container--stack-top ul {
  text-align: left;
}
.image-text__container--stack-top ol {
  text-align: left;
}
.image-text__container--stack-top .image-text__image-wrapper,
.image-text__container--stack-top .image-text__content {
  order: initial !important;
  max-width: 800px;
  width: 100%;
}
.image-text__container--stack-top .image-text__content {
  text-align: center;
}
.image-text__container--stack-top .image-text__text {
  text-align: center;
}
.image-text__container--stack-top .image-text__buttons {
  justify-content: center;
}
.image-text__container--stack-bottom {
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}
.image-text__container--stack-bottom .image-text__image-wrapper,
.image-text__container--stack-bottom .image-text__content {
  order: initial !important;
  max-width: 800px;
  width: 100%;
}
.image-text__container--stack-bottom .image-text__content {
  text-align: center;
}
.image-text__container--stack-bottom .image-text__text {
  text-align: center;
}
.image-text__container--stack-bottom .image-text__text ul {
  list-style-position: inside;
}
.image-text__container--stack-bottom .image-text__text ol {
  list-style-position: inside;
}
.image-text__container--stack-bottom .image-text__buttons {
  justify-content: center;
}
@media (max-width: 768px) {
  .image-text__container {
    gap: 20px;
  }
  .image-text__container:not(.image-text__container--stack-bottom) {
    flex-direction: column;
  }
}
.image-text__image-wrapper {
  flex: 1;
}
@media (min-width: 769px) {
  .image-text__container:not(.image-text__container--stack-top):not(.image-text__container--stack-bottom) .image-text__image-wrapper--right {
    order: 1;
  }
}
@media (max-width: 768px) {
  .image-text__image-wrapper {
    order: initial;
  }
}
.image-text__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.image-text__content {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .image-text__content {
    max-width: 100%;
    order: initial;
  }
}
.image-text__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .image-text__title {
    font-size: 2rem;
  }
}
.image-text__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #B6B6B6;
}
.image-text__text p {
  margin-bottom: 1em;
}
.image-text__text p:last-child {
  margin-bottom: 0;
}
.image-text__buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .image-text__buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .image-text__buttons > a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

.main-contact {
  background-color: rgb(13, 13, 13);
  padding-top: 145px;
  padding-bottom: 94px;
  position: relative;
}
.main-contact:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/contact-bg.svg") center center no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 992px) {
  .main-contact:after {
    transform: translateY(-20%);
  }
}
.main-contact__wrapper h2 {
  text-align: center;
  margin-bottom: 8px;
}
.main-contact__wrapper > p {
  text-align: center;
  margin-bottom: 52px;
  color: var(--grey);
}
.main-contact .contact-form {
  position: relative;
  z-index: 1;
  background-color: rgb(13, 13, 13);
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
}

.portfolio-hero {
  position: relative;
  overflow: hidden;
}
.portfolio-hero .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.portfolio-hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.portfolio-hero__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .portfolio-hero__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.portfolio-hero__content {
  flex: 1;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
@media (max-width: 992px) {
  .portfolio-hero__content {
    text-align: center;
  }
}
.portfolio-hero__badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}
.portfolio-hero .hero__title {
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}
.portfolio-hero .hero__copy {
  margin-bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}
.portfolio-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .portfolio-hero__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.portfolio-hero__stat {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}
.portfolio-hero__stat:nth-child(2) {
  animation-delay: 1s;
}
.portfolio-hero__stat:nth-child(3) {
  animation-delay: 1.2s;
}
.portfolio-hero__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .portfolio-hero__stat-number {
    font-size: 36px;
  }
}
.portfolio-hero__stat-label {
  font-size: 16px;
  color: var(--grey);
}
.portfolio-hero__image-wrapper {
  flex: 1;
  position: relative;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.6s forwards;
}
@media (max-width: 992px) {
  .portfolio-hero__image-wrapper {
    width: 100%;
    max-width: 500px;
  }
}
.portfolio-hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
}
.portfolio-hero__image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--mint);
  border-radius: var(--border-radius);
  top: 20px;
  left: 20px;
  z-index: 0;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .portfolio-hero__stat-number {
    font-size: 36px;
  }
  .portfolio-hero__stat-label {
    font-size: 14px;
  }
}
.services-hero {
  position: relative;
  overflow: hidden;
}
.services-hero .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.services-hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services-hero__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .services-hero__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.services-hero .hero__content {
  flex: 1;
}
@media (max-width: 992px) {
  .services-hero .hero__content {
    text-align: center;
  }
  .services-hero .hero__content .hero__buttons {
    justify-content: center;
  }
}
.services-hero__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out forwards;
}
.services-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.services-hero__feature:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
}
.services-hero__feature:hover .services-hero__feature-icon {
  background: var(--blue);
}
.services-hero__feature:hover .services-hero__feature-icon svg path {
  stroke: var(--white);
}
.services-hero__feature:nth-child(1) {
  animation-delay: 0.2s;
}
.services-hero__feature:nth-child(2) {
  animation-delay: 0.4s;
}
.services-hero__feature:nth-child(3) {
  animation-delay: 0.6s;
}
.services-hero__feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: rgba(168, 234, 213, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.services-hero__feature-icon svg {
  width: 40px;
  height: 40px;
}
.services-hero__feature-icon svg path {
  transition: stroke 0.3s ease;
}
.services-hero__feature-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.services-hero__feature-content p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services-hero .hero__content {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .services-hero__feature {
    padding: 20px;
  }
  .services-hero__feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .services-hero__feature-icon svg {
    width: 30px;
    height: 30px;
  }
  .services-hero__feature-content h4 {
    font-size: 18px;
  }
  .services-hero__feature-content p {
    font-size: 14px;
  }
}
/* About Page Styles
-------------------------------------------------- */
.about-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--black-light);
}
.about-hero__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-hero__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.about-hero__content {
  flex: 1;
  max-width: 560px;
}
@media (max-width: 992px) {
  .about-hero__content {
    max-width: 100%;
    text-align: center;
  }
}
.about-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .about-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .about-hero__title {
    font-size: 28px;
  }
}
.about-hero__copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .about-hero__copy {
    font-size: 16px;
  }
}
.about-hero .button {
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-hero .button {
    margin: 0 8px 16px;
  }
}
.about-hero__media-wrapper {
  flex: 1;
  position: relative;
}
@media (max-width: 992px) {
  .about-hero__media-wrapper {
    width: 100%;
  }
}
.about-hero__media {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.about-hero__media:hover {
  transform: scale(1.02);
}

.about-overview {
  background-color: var(--black);
}
.about-overview__wrapper {
  text-align: center;
}
.about-overview__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .about-overview__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-overview__title {
    font-size: 28px;
  }
}
.about-overview__image {
  max-width: 300px;
  margin: 0 auto 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .about-overview__image {
    max-width: 250px;
  }
}
.about-overview__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.about-overview__img:hover {
  transform: scale(1.05);
}
.about-overview__content {
  max-width: 800px;
  margin: 0 auto 48px;
}
.about-overview__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .about-overview__text {
    font-size: 16px;
  }
}
.about-overview__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .about-overview__stats {
    gap: 20px;
  }
}
.about-overview__stat-item {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 24px;
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  border: 1px solid var(--blue-transparent-10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-overview__stat-item {
    min-width: 140px;
    padding: 16px;
  }
}
.about-overview__stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 150, 209, 0.1);
  border-color: var(--blue-transparent-20);
}
.about-overview__stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .about-overview__stat-number {
    font-size: 36px;
  }
}
.about-overview__stat-label {
  font-size: 16px;
  color: var(--white);
}

.about-mission {
  background-color: var(--black-lighter);
}
.about-mission__wrapper {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-mission__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.about-mission__item {
  flex: 1;
  padding: 40px;
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  border: 1px solid var(--white-transparent-05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-mission__item {
    padding: 24px;
  }
}
.about-mission__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--blue-transparent-15);
}
.about-mission__image {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about-mission__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-mission__img:hover {
  transform: scale(1.05);
}
.about-mission__icon {
  margin-bottom: 24px;
}
.about-mission__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .about-mission__title {
    font-size: 24px;
  }
}
.about-mission__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
}

.about-timeline {
  background-color: var(--black);
}
.about-timeline__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .about-timeline__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .about-timeline__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.about-timeline__header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 992px) {
  .about-timeline__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .about-timeline__header {
    margin-bottom: 24px;
  }
}
.about-timeline__background {
  width: 100%;
  max-width: 600px;
  height: auto;
  opacity: 0.1;
  margin: 0 auto;
  display: block;
}
.about-timeline__wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}
.about-timeline__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--mint) 100%);
}
.about-timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}
.about-timeline__item:last-child {
  margin-bottom: 0;
}
.about-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--blue);
  border-radius: 50%;
  border: 4px solid var(--black);
  z-index: 1;
}
.about-timeline__item:nth-child(odd)::before {
  background-color: var(--mint);
}
.about-timeline__year {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .about-timeline__year {
    font-size: 20px;
  }
}
.about-timeline__content {
  background-color: var(--black-light);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid var(--blue-transparent-10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-timeline__content {
    padding: 16px;
  }
}
.about-timeline__content:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 150, 209, 0.1);
  border-color: var(--blue-transparent-20);
}
.about-timeline__item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .about-timeline__item-title {
    font-size: 18px;
  }
}
.about-timeline__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
}

.about-values {
  background-color: var(--black-lighter);
}
.about-values__image {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.about-values__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-values__img:hover {
  transform: scale(1.05);
}
.about-values__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-values__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-values__title {
    font-size: 28px;
  }
}
.about-values__subtitle {
  font-size: 18px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .about-values__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.about-values__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 576px) {
  .about-values__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about-values__item {
  padding: 30px;
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  border: 1px solid var(--white-transparent-05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-values__item {
    padding: 20px;
  }
}
.about-values__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--blue-transparent-15);
}
.about-values__icon {
  margin-bottom: 20px;
}
.about-values__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .about-values__item-title {
    font-size: 20px;
  }
}
.about-values__item-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
}

.about-team {
  background-color: var(--black);
  overflow: hidden;
}
.about-team__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.about-team__header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-team__header h2 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-team__header h2 {
    font-size: 28px;
  }
}
.about-team__header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .about-team__header p {
    font-size: 16px;
  }
}
.about-team__slider {
  overflow: visible;
  padding: 20px 0 40px;
}
.about-team__card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background-color: var(--black-light);
  transition: transform 0.3s ease;
}
.about-team__card:hover {
  transform: translateY(-10px);
}
.about-team__card:hover .about-team__card-info {
  background-color: var(--blue);
}
.about-team__card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.about-team__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-team__card-image:hover img {
  transform: scale(1.05);
}
.about-team__card-info {
  position: relative;
  padding: 20px;
  background-color: var(--black-lighter);
  transition: background-color 0.3s ease;
}
.about-team__card-info-social {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.about-team__card-info-social:hover {
  transform: scale(1.1);
  background-color: var(--blue-dark);
}
.about-team__card-info-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-team__card-info-content p {
  font-size: 16px;
  color: var(--grey);
}
.about-team__slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.about-expertise {
  background-color: var(--black-lighter);
}
.about-expertise__image {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.about-expertise__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-expertise__img:hover {
  transform: scale(1.05);
}
.about-expertise__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-expertise__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-expertise__title {
    font-size: 28px;
  }
}
.about-expertise__subtitle {
  font-size: 18px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .about-expertise__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.about-expertise__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
@media (max-width: 576px) {
  .about-expertise__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about-expertise__item {
  padding: 30px;
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  border: 1px solid var(--white-transparent-05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-expertise__item {
    padding: 20px;
  }
}
.about-expertise__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--blue-transparent-15);
}
.about-expertise__icon {
  margin-bottom: 20px;
}
.about-expertise__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .about-expertise__item-title {
    font-size: 20px;
  }
}
.about-expertise__item-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
}

.about-tech {
  background-color: var(--black);
}
.about-tech__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-tech__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-tech__title {
    font-size: 28px;
  }
}
.about-tech__subtitle {
  font-size: 18px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .about-tech__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.about-tech__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
@media (max-width: 576px) {
  .about-tech__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-tech__category {
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  padding: 30px;
  border: 1px solid var(--white-transparent-05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-tech__category {
    padding: 20px;
  }
}
.about-tech__category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--blue-transparent-15);
}
.about-tech__category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .about-tech__category-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.about-tech__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-tech__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background-color: var(--black-lighter);
  border-radius: var(--button-radius);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.about-tech__item:hover {
  transform: scale(1.05);
  background-color: var(--blue-transparent-10);
}
.about-tech__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  object-fit: contain;
}
.about-tech__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

.about-testimonials {
  background-color: var(--black-lighter);
}
.about-testimonials__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about-testimonials__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-testimonials__title {
    font-size: 28px;
  }
}
.about-testimonials__subtitle {
  font-size: 18px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .about-testimonials__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.about-testimonials__slider {
  overflow: hidden;
  padding-bottom: 60px;
}
.about-testimonials__item {
  height: auto;
}
.about-testimonials__content {
  background-color: var(--black-light);
  border-radius: var(--card-radius);
  padding: 40px;
  border: 1px solid var(--white-transparent-05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 576px) {
  .about-testimonials__content {
    padding: 24px;
  }
}
.about-testimonials__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--blue-transparent-15);
}
.about-testimonials__quote {
  margin-bottom: 20px;
}
.about-testimonials__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 30px;
  font-style: italic;
}
@media (max-width: 576px) {
  .about-testimonials__text {
    font-size: 16px;
  }
}
.about-testimonials__author {
  display: flex;
  align-items: center;
}
.about-testimonials__author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
  border: 2px solid var(--blue);
}
.about-testimonials__author-info {
  flex: 1;
}
.about-testimonials__author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-testimonials__author-position {
  font-size: 14px;
  color: var(--blue);
}
.about-testimonials__slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.about-testimonials__pagination {
  bottom: 0;
}
.about-testimonials__pagination .swiper-pagination-bullet {
  background-color: var(--grey);
  opacity: 0.5;
}
.about-testimonials__pagination .swiper-pagination-bullet-active {
  background-color: var(--blue);
  opacity: 1;
}

.about-cta {
  background-color: var(--black);
}
.about-cta__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-cta__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.about-cta__content {
  flex: 1;
}
@media (max-width: 992px) {
  .about-cta__content {
    text-align: center;
  }
}
.about-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .about-cta__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .about-cta__title {
    font-size: 28px;
  }
}
.about-cta__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .about-cta__text {
    font-size: 16px;
  }
}
.about-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 992px) {
  .about-cta__buttons {
    justify-content: center;
  }
}
.about-cta__image-wrapper {
  flex: 1;
  position: relative;
}
@media (max-width: 992px) {
  .about-cta__image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.about-cta__image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.about-cta__image:hover {
  transform: scale(1.02);
}

/* Careers Page Styles
-------------------------------------------------- */
.careers-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--black-light);
}
.careers-hero__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .careers-hero__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.careers-hero__content {
  flex: 1;
  max-width: 560px;
}
@media (max-width: 992px) {
  .careers-hero__content {
    max-width: 100%;
    text-align: center;
  }
}
.careers-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .careers-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .careers-hero__title {
    font-size: 28px;
  }
}
.careers-hero__copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .careers-hero__copy {
    font-size: 16px;
  }
}
.careers-hero .button {
  margin-right: 16px;
  margin-bottom: 16px;
  display: inline-block;
}
@media (max-width: 992px) {
  .careers-hero .button {
    margin: 0 8px 16px;
  }
}
.careers-hero__media-wrapper {
  flex: 1;
  position: relative;
}
@media (max-width: 992px) {
  .careers-hero__media-wrapper {
    width: 100%;
  }
}
.careers-hero__media {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.careers-hero__media:hover {
  transform: scale(1.02);
}

.careers-why-us {
  background-color: var(--black);
  padding: 80px 0;
}
.careers-why-us__wrapper {
  text-align: center;
}
.careers-why-us__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-why-us__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .careers-why-us__title {
    font-size: 28px;
  }
}
.careers-why-us__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 50px;
}
@media (max-width: 576px) {
  .careers-why-us__subtitle {
    font-size: 16px;
  }
}
.careers-why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .careers-why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .careers-why-us__grid {
    grid-template-columns: 1fr;
  }
}
.careers-why-us__item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-why-us__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.careers-why-us__icon {
  margin-bottom: 20px;
}
.careers-why-us__item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}
.careers-why-us__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
}

.careers-benefits {
  background-color: var(--black-light);
  padding: 80px 0;
}
.careers-benefits__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .careers-benefits__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.careers-benefits__content {
  flex: 1;
}
.careers-benefits__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-benefits__title {
    font-size: 32px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .careers-benefits__title {
    font-size: 28px;
  }
}
.careers-benefits__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .careers-benefits__subtitle {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .careers-benefits__subtitle {
    font-size: 16px;
  }
}
.careers-benefits__list {
  list-style: none;
  padding: 0;
}
.careers-benefits__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.careers-benefits__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.careers-benefits__list-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}
.careers-benefits__image-wrapper {
  flex: 1;
}
@media (max-width: 992px) {
  .careers-benefits__image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.careers-benefits__image {
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.careers-positions {
  background-color: var(--black);
  padding: 80px 0;
}
.careers-positions__wrapper {
  text-align: center;
}
.careers-positions__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-positions__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .careers-positions__title {
    font-size: 28px;
  }
}
.careers-positions__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (max-width: 576px) {
  .careers-positions__subtitle {
    font-size: 16px;
  }
}
.careers-positions__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.careers-positions__filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.careers-positions__filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.careers-positions__filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
}
.careers-positions__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .careers-positions__list {
    grid-template-columns: 1fr;
  }
}
.careers-positions__cta {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.careers-positions__cta-text {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .careers-positions__cta-text {
    font-size: 16px;
  }
}

.careers-position-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.careers-position-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.careers-position-card__header {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.careers-position-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.careers-position-card__location {
  font-size: 14px;
  color: var(--grey);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
}
.careers-position-card__body {
  padding: 25px 30px;
}
.careers-position-card__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 20px;
}
.careers-position-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.careers-position-card__tag {
  font-size: 14px;
  color: var(--white);
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 20px;
}
.careers-position-card__footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.careers-position-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.careers-position-card__link svg {
  transition: transform 0.3s ease;
}
.careers-position-card__link:hover svg {
  transform: translateX(5px);
}

.careers-apply {
  background-color: var(--black-light);
  padding: 80px 0;
}
.careers-apply__wrapper {
  text-align: center;
}
.careers-apply__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-apply__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .careers-apply__title {
    font-size: 28px;
  }
}
.careers-apply__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 50px;
}
@media (max-width: 576px) {
  .careers-apply__subtitle {
    font-size: 16px;
  }
}
.careers-apply__steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 60px;
}
.careers-apply__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.careers-apply__step-number {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.careers-apply__step-content {
  flex: 1;
}
.careers-apply__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.careers-apply__step-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
}
.careers-apply__form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 576px) {
  .careers-apply__form-wrapper {
    padding: 30px 20px;
  }
}
.careers-apply__form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}
.careers-apply__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .careers-apply__form-row {
    grid-template-columns: 1fr;
  }
}
.careers-apply__form-group {
  margin-bottom: 20px;
}
.careers-apply__form-label {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.careers-apply__form-input, .careers-apply__form-select, .careers-apply__form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--input-radius, 8px);
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
}
.careers-apply__form-input:focus, .careers-apply__form-select:focus, .careers-apply__form-textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.careers-apply__form-input::placeholder, .careers-apply__form-select::placeholder, .careers-apply__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.careers-apply__form-file {
  position: relative;
}
.careers-apply__form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.careers-apply__form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--input-radius, 8px);
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.careers-apply__form-file-label:hover {
  border-color: var(--blue);
}
.careers-apply__form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.careers-apply__form-checkbox-mark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
}
input:checked + .careers-apply__form-checkbox-mark {
  background: var(--blue);
  border-color: var(--blue);
}
input:checked + .careers-apply__form-checkbox-mark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.careers-apply__form-checkbox-text {
  font-size: 14px;
  color: var(--grey);
}
.careers-apply__form-submit {
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
}

.careers-culture {
  background-color: var(--black);
  padding: 80px 0;
}
.careers-culture__wrapper {
  text-align: center;
}
.careers-culture__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-culture__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .careers-culture__title {
    font-size: 28px;
  }
}
.careers-culture__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 50px;
}
@media (max-width: 576px) {
  .careers-culture__subtitle {
    font-size: 16px;
  }
}
.careers-culture__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .careers-culture__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .careers-culture__gallery {
    grid-template-columns: 1fr;
  }
}
.careers-culture__gallery-item {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.careers-culture__gallery-item:hover {
  transform: scale(1.05);
}
.careers-culture__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.careers-notice {
  background-color: var(--black-light);
  padding: 80px 0;
}
.careers-notice__wrapper {
  text-align: center;
}
.careers-notice__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .careers-notice__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .careers-notice__title {
    font-size: 28px;
  }
}
.careers-notice__content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 576px) {
  .careers-notice__content {
    padding: 30px 20px;
  }
}
.careers-notice__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 20px;
}
.careers-notice__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.careers-notice__points {
  margin-top: 30px;
  margin-bottom: 30px;
}
.careers-notice__list {
  list-style: none;
  padding: 0;
}
.careers-notice__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.careers-notice__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 3px;
}
.careers-notice__list-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.careers-benefits__cta {
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 992px) {
  .careers-benefits__cta {
    text-align: center;
  }
}
.careers-benefits__cta .button {
  margin-top: 10px;
}

.careers-culture__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.careers-culture__stories, .careers-culture__atmosphere, .careers-culture__map {
  margin-bottom: 20px;
}
.careers-culture__subtitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 992px) {
  .careers-culture__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .careers-culture__subtitle {
    font-size: 20px;
  }
}
.careers-culture__story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .careers-culture__story-grid {
    grid-template-columns: 1fr;
  }
}
.careers-culture__story {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-culture__story:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.careers-culture__story-image {
  height: 200px;
  overflow: hidden;
}
.careers-culture__story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.careers-culture__story-img:hover {
  transform: scale(1.05);
}
.careers-culture__story-content {
  padding: 25px;
}
.careers-culture__story-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.careers-culture__story-position {
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 15px;
}
.careers-culture__story-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
  font-style: italic;
}
.careers-culture__map-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}
.careers-culture__map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.careers-culture__map-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .careers-hero,
  .careers-why-us,
  .careers-benefits,
  .careers-positions,
  .careers-notice,
  .careers-apply,
  .careers-culture {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .careers-hero,
  .careers-why-us,
  .careers-benefits,
  .careers-positions,
  .careers-notice,
  .careers-apply,
  .careers-culture {
    padding: 40px 0;
  }
}
/* 404 Page Styles
-------------------------------------------------- */
.page-404 {
  text-align: center;
  padding: 124px 0px 80px;
}
.page-404 .image {
  margin: 0px auto 60px;
  max-width: 430px;
}
@media (max-width: 576px) {
  .page-404 .image {
    max-width: 380px;
    width: 100%;
  }
}
.page-404 .image img {
  width: 100%;
  height: 100%;
}
.page-404 h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.8px;
  text-align: center;
  vertical-align: middle;
  color: white;
}
.page-404 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #B6B6B6;
  margin: 20px 0px;
}
.page-404 .button {
  width: 255px;
  gap: 10px;
  border-radius: 12px;
  padding: 14px 24px;
  border: 1px solid #A8EAD5;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  margin: 30px auto;
}
.page-404 .info-wrap {
  border-top: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  max-width: 600px;
  width: 100%;
  margin: 30px auto 0px;
  padding-top: 20px;
}
.page-404 .info-wrap span {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #B6B6B6;
}
.page-404 .info-wrap .nav-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .page-404 .info-wrap .nav-list {
    flex-direction: column;
    align-items: center;
  }
}
.page-404 .info-wrap .nav-list li {
  list-style: none;
}
.page-404 .info-wrap .nav-list .link {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  column-gap: 2px;
}
.page-404 .info-wrap .nav-list .link:hover {
  text-decoration: underline;
}
.page-404 .decor-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.page-404 .decor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}