/* ~~~~~~~~~~~~~~~~~~~~ WEBFONTS ~~~~~~~~~~~~~~~~~~~~ */

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-200.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-200.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-300.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-400.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-500.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-600.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-600.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-700.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("../assets/fonts/hellix/hellix-800.woff2") format("woff2"),
    url("../assets/fonts/hellix/hellix-800.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Housttely";
  src: url("../assets/fonts/housttely/housttely-400.woff2") format("woff2"),
    url("../assets/fonts/housttely/housttely-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ~~~~~~~~~~~~~~~~~~~~ MAIN STYLES ~~~~~~~~~~~~~~~~~~~~ */
:root {
  scrollbar-width: thin;
}

:root,
[data-bs-theme="light"] {
  color-scheme: light;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-body-font-family: "Hellix", system-ui, -apple-system, "Segoe UI", Roboto,
    "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-size: clamp(0.9375rem, 0.203vw + 0.874rem, 1rem);
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #ffffff;
}

:root[data-bs-theme="dark"],
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-bg: #212529;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

/* ~~~~~~~~~~~~~~~~~~~~ SCROLL BAR STYLES ~~~~~~~~~~~~~~~~~~~~ */
body::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}

body::-webkit-scrollbar-track {
  background-color: var(--bs-body-bg);
}

body::-webkit-scrollbar-track:hover {
  background-color: var(--bs-gray-200);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--bs-gray-300);
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--bs-gray-400);
}

/* ~~~~~~~~~~~~~~~~~~~~ PRELOADER STYLES ~~~~~~~~~~~~~~~~~~~~ */
.loader {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  z-index: 1021;
  background-color: var(--bs-body-bg);
}

[data-page-loading="off"] .loader {
  height: 0;
  transform: translateY(-100vh) scale(0.7);
  opacity: 0;
  -webkit-user-select: none;
  user-select: none;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loader .loader-inner {
  --loader-width: clamp(8.5rem, 6.197vw + 6.563rem, 14rem);
  width: var(--loader-width);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-30%);
}

.loader .brand {
  --brand-width: clamp(3rem, 1.69vw + 2.472rem, 4.5rem);
  width: var(--brand-width);
  aspect-ratio: 1 / 1;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  padding-bottom: 0.625rem;
  opacity: 1;
}

.loader .brand svg {
  inline-size: 100%;
  block-size: 100%;
  stroke-linecap: round;
}

.loader .brand path {
  fill: var(--bs-primary);
}

.loader .brand :is(.element1, .element2) {
  display: inline-block;
  stroke: var(--bs-body-color);
  stroke-opacity: 1;
  stroke-width: 4;
  transform-origin: 50% 50%;
}

.loader .brand .element1 {
  stroke-dasharray: 672.049560546875px;
  animation: brand-animate-1 2s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

.loader .brand .element2 {
  stroke-dasharray: 248.2175750732422px;
  animation: brand-animate-2 2.5s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

@keyframes brand-animate-1 {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 672.049560546875px;
    fill: transparent;
    transform: translateX(-600px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(40px);
  }

  12% {
    stroke-dashoffset: 672.049560546875px;
    transform: translateX(-600px) scaleY(2.5) scaleX(0.2);
    filter: blur(40px);
    transform-origin: 50% 0%;
  }

  32% {
    fill: transparent;
  }

  44% {
    filter: blur(0);
    transform-origin: 50% 50%;
  }

  52% {
    transform: translateX(0) scaleY(1) scaleX(1);
  }

  60% {
    fill: var(--bs-primary);
  }

  72% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }

  100% {
    stroke-opacity: 0;
    transform: translateX(0) scaleY(1) scaleX(01);
    transform-origin: 50% 50%;
    filter: blur(0);
    fill: var(--bs-primary);
    stroke-dashoffset: 0;
  }
}

@keyframes brand-animate-2 {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 248.2175750732422px;
    stroke-dasharray: 248.2175750732422px;
    fill: transparent;
    transform: translateX(-600px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(40px);
  }

  4% {
    stroke-dashoffset: 248.2175750732422px;
  }

  23% {
    transform: translateX(-600px) scaleY(2.5) scaleX(0.2);
    filter: blur(40px);
    transform-origin: 50% 0%;
  }

  30% {
    fill: transparent;
  }

  50% {
    filter: blur(0);
    transform-origin: 50% 50%;
  }

  54% {
    stroke-dashoffset: 0;
    fill: var(--bs-primary);
  }

  56% {
    transform: translateX(0) scaleY(1) scaleX(1);
  }

  72% {
    stroke-opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 0;
    transform-origin: 50% 50%;
    transform: translateX(0) scaleY(1) scaleX(1);
    filter: blur(0);
    fill: var(--bs-primary);
  }
}

.percentage {
  position: relative;
  width: var(--loader-width);
  font-weight: 400;
  font-size: clamp(0.825rem, 0.825rem + 0.5vw, 1rem);
  text-align: center;
  color: var(--bs-gray-700);
  --bar-height: 4px;
  --left-align: 0;
  --bottom-align: -4px;
  --progress-length: 0;
  animation: slide-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-top {
  0% {
    transform: translateY(50px) scale(0.7);
    opacity: 0.4;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.percentage::before {
  content: "";
  width: var(--progress-length);
  height: var(--bar-height);
  border-radius: var(--bar-height);
  left: var(--left-align);
  bottom: var(--bottom-align);
  position: absolute;
  background-color: var(--bs-primary);
}

.percentage::after {
  content: "";
  width: 100%;
  height: var(--bar-height);
  border-radius: var(--bar-height);
  left: var(--left-align);
  bottom: var(--bottom-align);
  position: absolute;
  background-color: var(--bs-gray-200);
  z-index: -1;
}

/* ~~~~~~~~~~~~~~~~~~~~ HEADER / NAV BAR STYLES ~~~~~~~~~~~~~~~~~~~~ */
.header {
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bs-tertiary-bg);
  width: 100%;
}

.header.navbar-sticky-on{
  background-color: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-gray-200);
}
body.navbar-toggled .header-bgd{
  width: 100vw;
  height: 100vh;
  right: 0;
  background-color: rgba(var(--bs-secondary-color-rgb), 0.4);
  position: absolute;
  z-index: -100;
}

.navbar-collapse.fixed {
  --bs-scroll-height: calc(100vh - 56px);
  scrollbar-width: none;
}

.navbar-collapse.fixed::-webkit-scrollbar {
  display: none;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bs-body-color);
}

.nav-brand .nav-brand-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}
.nav-brand path {
  fill: var(--bs-primary);
}

.nav-brand h3.brand-text {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.282vw + 1.037rem, 1.375rem);
  height: 24px;
  line-height: 100%;
  margin: 0;
  padding: 0;
}

.nav-brand h3.brand-text span {
  font-size: clamp(1.4rem, 0.29vw + 1.2rem, 1.8rem);
  color: var(--bs-primary);
}

.navbar-toggler {
  border-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:hover .toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::after,
.navbar-toggler:hover .navbar-toggler-icon::before {
  width: 90%;
  background-color: var(--bs-primary);
}

.navbar-toggler-icon .toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  height: 2px;
  border-radius: 2px;
  background-color: var(--bs-body-color);
  transition-property: all, background-color;
  transition-duration: 0.5s, 0.5s;
  transition-timing-function: cubic-bezier(0.1, 0.9, 0, 1.2), ease-in;
}

.navbar-toggler-icon {
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.navbar-toggler-icon .toggler-icon {
  display: block;
  width: 90%;
  flex-grow: 0;
  flex-shrink: 1;
  order: 0;
  flex-basis: auto;
  align-self: flex-end;
  transform: translateX(20px) scale(0.5);
  opacity: 0;
  transition-delay: 0s, 0s;
}

.collapsed .navbar-toggler-icon .toggler-icon {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.4s, 0s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 90%;
}

.navbar-toggler-icon::before {
  transform: translateY(-50%) rotate(135deg);
  right: 0;
  top: 50%;
}

.collapsed .navbar-toggler-icon::before {
  transform: scale(1);
  width: 80%;
  top: 5px;
}

.navbar-toggler-icon::after {
  transform: translateY(50%) rotate(-135deg);
  right: 0;
  bottom: 50%;
  transition-delay: 0.2s, 0s;
}

.collapsed .navbar-toggler-icon::after {
  width: 100%;
  transform: scale(1);
  bottom: 5px;
}

.navbar :is(.nav-item:hover .nav-link) {
  color: var(--bs-primary);
  font-weight: 500;
}
.navbar :is(.nav-item:hover i) {
  font-weight: 400;
}
.nav-icons {
  --icon-size: 22px;
  --ease: cubic-bezier(0.25, 0, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0, 1);
  --ease-elastic-1: cubic-bezier(0.5, 1.25, 0.75, 1.25);
  --ease-elastic-2: cubic-bezier(0.5, 1.5, 0.75, 1.25);
  display: flex;
  flex-direction: row;
  min-width: 80%;
  margin: auto;
  padding-bottom: 1.5rem;
  min-width: 6rem;
  justify-content: space-evenly;
  align-items: flex-start;
}

.nav-icons .icon {
  position: relative;
  min-height: 34px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.nav-icons .icon svg {
  inline-size: var(--icon-size);
  block-size: var(--icon-size);
}

.nav-icons .icon svg path {
  fill: var(--bs-navbar-color);
  stroke: var(--bs-navbar-color);
}

.nav-icons .icon:is(:hover, :focus-visible) path {
  fill: var(--bs-navbar-hover-color);
  stroke: var(--bs-navbar-hover-color);
}
.nav-icons .theme-toggle svg {
  transform: scale(1);
  transform-origin: center center;
  transition: ransform 0.2s cubic-bezier(0.93, 0.25, 0.48, 1.29);
}

.nav-icons .theme-toggle:hover svg {
  transform: scale(1.1);
}

.nav-icons .theme-toggle svg :is(.moon, .stars, .sun, .beams) {
  transform-origin: center center;
}

.nav-icons .theme-toggle .beams {
  transition: transform 0.5s var(--ease-elastic-2), opacity 0.5s var(--ease);
}

.nav-icons .theme-toggle[aria-label="dark"] .beams {
  opacity: 0;
  transform: rotate(-25deg);
  transition-duration: 0.15s;
}

.nav-icons .theme-toggle .sun {
  transition: transform 0.5s var(--ease-elastic-1), opacity 0.4s var(--ease) 0s;
}

.nav-icons .theme-toggle[aria-label="dark"] .sun {
  opacity: 0;
  transform: scale(1.85);
  transition: transform 0.25s var(--ease), opacity 0.3s var(--ease) 0s;
}

.nav-icons .theme-toggle .moon {
  transition: transform 0.5s var(--ease) 0.25s, fill-opacity 0.3s;
  transform: translateY(8px) translateX(0) rotate(-20deg) scale(1);
}
.nav-icons .theme-toggle[aria-label="dark"] {
  transform: scale(1.09) translatex(0);
}

.nav-icons .theme-toggle[aria-label="dark"] .moon {
  fill-opacity: 1;
  transition: transform 0.5s var(--ease) 0s, fill-opacity 0s;
  transform: translateY(-6px) translateX(0) rotate(0deg);
}

.nav-icons .theme-toggle .stars {
  transform: translateX(0) translateY(-30px) scale(0.5);
  transition: transform 0.4s var(--ease-elastic-1) 0s;
}

.nav-icons .theme-toggle .stars path {
  fill-opacity: 0;
  transition: fill-opacity 0.1s var(--ease) 0s;
}

.nav-icons .theme-toggle[aria-label="dark"] .stars {
  transform: translateX(0) translateY(-10px) scale(0.9);
  transition: transform 0.3s var(--ease) 0.3s;
}

.nav-icons .theme-toggle[aria-label="dark"] .stars path {
  fill-opacity: 1;
  transition: fill-opacity 0.3s var(--ease) 0.3s;
}

.nav-icons .dark-icon path {
  stroke-width: 0;
  stroke: transparent !important;
}

.nav-icons :is(.language-icon, .contact-svg) {
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.93, 0.25, 0.48, 1.29);
}

.nav-icons :is(.language-icon, .contact-svg):hover {
  transform: scale(1);
}

.nav-social .social-title h5 {
  font-size: inherit;
  font-weight: 500;
}

.nav-social .social-items {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}

.nav-social .social-link {
  min-height: 30px;
  text-decoration: none;
  color: var(--bs-navbar-color);
  font-size: inherit;
}

.nav-social .social-link:hover {
  color: var(--bs-primary);
}

.navbar .fa-light,
.navbar .fa-brands {
  padding-right: 0.3125rem;
}

.navbar .dropdown-toggle::after {
  display: block;
  margin: 0;
  border: none;
}

.navbar .dropdown-toggle::before {
  display: block;
  margin-left: 0.255em;
  content: "\f054";
  border: 0;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 6px;
  top: 20px;
  transform: translateY(-40%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.625rem;
  transition: transform 0.2s ease-in-out;
}

.navbar .dropdown-toggle.show::before {
  transform: translateY(-40%) rotate(-90deg);
}

.navbar .dropdown:hover .dropdown-toggle::before {
  animation: shake-vertical 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  font-weight: 400;
}

@keyframes shake-vertical {
  0%,
  100% {
    transform: translateY(0) rotate(90deg);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(-4px) rotate(90deg);
  }
  20%,
  40%,
  60% {
    transform: translateY(4px) rotate(90deg);
  }
  80% {
    transform: translateY(3px) rotate(90deg);
  }
  90% {
    transform: translateY(-3px) rotate(90deg);
  }
}

.navbar .dropdown-item {
  font-size: clamp(0.875rem, 0.127vw + 0.835rem, 0.938rem);
}

.hr {
  width: 100%;
  margin: 1rem 0;
  opacity: 0.25;
  color: inherit;
  border: 0;
  background-color: var(--bs-body-color);
  height: var(--bs-border-width);
}

.btn{
  border-radius: 0.725rem;
}

[data-bs-theme=light] .btn-outline-light {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: rgba(var(--bs-primary-rgb),0.8);
}

[data-bs-theme=light] .btn-outline-light:is(:hover, :active) {
  color: var(--bs-btn-active-color);
  border-color: var(--bs-btn-active-color);
}


/* ~~~~~~~~~~~~~~~~~~~~ HERO STYLES ~~~~~~~~~~~~~~~~~~~~ */

.hero{
  position: relative;
  background: #dfdfdf;
  background: linear-gradient(0deg, rgba(223, 223, 223, 0.4) 0%, #ffffff00 54%);
}

[data-bs-theme=dark] .hero{
  background: var(--bs-tertiary-bg);
}

.hero .row{
  padding-top: 4rem;
  max-height: 900px;
  overflow: hidden;
}

.hero .hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 2rem;
}

.hero .greeting{
  font-weight: 500;
  font-size: clamp(1rem, 0.333vw + 0.875rem, 1.125rem);
}

.hero .name{
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.hero .name span{
  color: var(--bs-primary);
}

.hero .habilities{
  margin: 0;
  margin-bottom: 1.725rem;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--bs-secondary-color);
}

.hero .description{
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 27.5rem;
}

.hero .hero-buttons{
  padding-bottom: 4rem;
}

.hero-picture{
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items:center;
}

.hero-picture img{
  height: 500px;
  padding-top: 1rem;
  position: relative;
  z-index: 2;
}

.hero .picture-back{
  position: absolute;
  z-index: 1;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
.hero .picture-front{
  position: absolute;
  z-index: 3;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

@media (max-width: 300px) {
  .hero svg.picture-back{
    display: none;
  }

  .hero svg.picture-front{
    display: none;
  }
}

.hero svg{
  --transition: all 0.3s ease-in-out;
}

.hero-picture svg .bgd{
  transition: var(--transition);
  transform: scaleX(0.8) translateX(120px);
}

.hero-picture svg .circles{
  transition: var(--transition);
  transform: scale(0.8) translateX(156px);
}

.hero-picture svg .ellipse-1{
  transition: var(--transition);
  fill-opacity: 0;
}

.hero-picture svg .ellipse-2{
  transition: var(--transition);
  fill-opacity: 0;
}

.hero-picture svg .bubble-1{
  transition: var(--transition);
  transform: scale(0.8) translateX(-20px);
  transform-origin: center;
}

.hero-picture svg .bubble-2{
  transition: var(--transition);
  transform: scale(0.8);
  transform-origin: center;
}

.hero-picture .social{
  position: absolute;
  right: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  transform: translateY(-35px);
}

/* ~~~~~~~~~~~~~~~~~~~~ INFO STYLES ~~~~~~~~~~~~~~~~~~~~ */
.info .row{
  padding: 2rem 1rem 0;
}

.info .col-12:not(:last-child){
  border-bottom: 1px solid var(--bs-gray-200);
  padding-bottom: 1.5rem;
}

.info .col-12:not(:first-child){
  padding-top: 1rem;
}

.info p.title{
  margin-block-start: 0;
  margin-block-end: 0.5rem;
}
 .info a.content{
  text-decoration: none;
}

.about .row{
  padding-top: 3.625rem;
}

/* temporal */


.swiper {
  width: 100%;
  height: 600px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.308);
  opacity: 1;
  border-radius: 0.725;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.725rem;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-bullets .bullet{
  --bullet-size: 0.5rem;
  display: inline-block;
  margin: 0.25rem;
  cursor: pointer;
  width: var(--bullet-size);
  height: var(--bullet-size);
  border-radius: var(--bullet-size);
  background: #000000;
  opacity: 0.3;
  transition: all 0.3s ease-in-out; 
}

.swiper-pagination, 
.swiper-button-prev, 
.swiper-button-next{
  display: none;
}

.swiper-next, .swiper-previous{
  cursor: pointer;
}

.swiper-bullets {
  text-align: center;
}
.swiper-bullets .bullet.active{
  opacity: 1;
  background: var(--bs-primary);
  width: 1rem;
}

.swiper-content {
  position: relative;
  height: 80%;
}

.services .content {
  padding-top: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  animation: slide-out-blurred-top 0.45s cubic-bezier(0.755, 0.050, 0.855, 0.060) both;
  user-select: none;
}

@keyframes slide-out-blurred-top {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 0%;
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 0%;
    opacity: 0;
  }
}

.services .content.active{
  user-select:auto;
  animation: slide-in-blurred-bottom 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.35s both;
}

@keyframes slide-in-blurred-bottom {
  0% {
    transform: translateY(500px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
