/* Grid system */
/* Breakpoints */
/* Display types */
/* Spacing scale */
/* Shadows (soft shadows) */
/* Flex utilities */
/* Button component variables */
header {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  background-color: #0F172A;
  align-items: center;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 999;
  font-family: "Nunito", sans-serif;
}
header .logo {
  width: 170px;
  display: flex;
  z-index: 999;
  cursor: pointer;
}
header .logo img {
  width: 100%;
  height: 100%;
}
header nav {
  display: flex;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  header nav {
    top: -200%;
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
  }
  header nav.open {
    top: 99%;
    left: 0;
    width: 100%;
    transition: all 0.3s;
    background-color: #0F172A;
    height: auto;
    z-index: -1;
    opacity: 1;
    transition: all 0.3s;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.12);
  }
  header nav.open a {
    padding: 7px 10px;
    font-size: 16px;
  }
}
header nav .menu-item {
  color: #E2E8F0;
  font-weight: 500;
  margin-right: 15px;
  display: inline-block;
  position: relative;
  transition: color 0.3s;
  font-size: 16px;
}
header nav .menu-item.active {
  font-weight: bold;
}
header nav .menu-item::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  height: 2px;
  width: 100%;
  background: #02CFCC;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
header nav .menu-item:hover {
  color: #02CFCC;
  cursor: pointer;
}
header nav .menu-item:hover::after {
  transform: scaleX(1);
}
header .mobile-toggler {
  border: none;
  font-size: 36px;
}
@media (min-width: 769px) {
  header .mobile-toggler {
    display: none;
  }
}

.home-banner {
  height: calc(100vh - 55px);
  padding: 50px 0;
  display: flex;
  background-color: #0F172A;
  color: #E2E8F0;
  opacity: 0;
  animation: slideUp 1s ease-in-out forwards;
  position: relative;
}
.home-banner .home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  margin-right: -100px;
}
.home-banner .home-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  right: -250px;
  bottom: -80px;
  position: absolute;
  transform: rotate(352deg);
}
@media (max-width: 768px) {
  .home-banner .home-bg svg {
    width: 200%;
    height: 200%;
    right: -10%;
    bottom: -90%;
    position: absolute;
    transform: rotate(346deg);
  }
}
.home-banner.no-height {
  height: auto !important;
}
@media (max-width: 768px) {
  .home-banner {
    height: 100vh;
  }
}
.home-banner .home-banner-inner {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.home-banner .home-banner-inner .container {
  height: 100%;
}
.home-banner .home-banner-inner .inner-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .inner-row {
    flex-direction: column;
  }
}
.home-banner .home-banner-inner .image-col {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-banner .home-banner-inner .image-col img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.home-banner .home-banner-inner .text-col {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .text-col {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    z-index: 9;
  }
}
.home-banner .home-banner-inner .text-col .title {
  font-weight: 800;
  font-size: 3.7rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .text-col .title {
    font-size: 3.2rem;
  }
}
.home-banner .home-banner-inner .text-col .lead {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .text-col .lead {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .text-col .button-row {
    justify-content: center;
  }
}
.home-banner .home-banner-inner .text-col .cta-btn {
  padding: 10px;
  font-size: 1.4rem;
}
.home-banner .home-banner-inner .text-col .login-text {
  display: inline-flex;
  gap: 5px;
  font-weight: 400;
}
.home-banner .home-banner-inner .text-col .login-text .login-link {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.home-banner .home-banner-inner .image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    width: 100%;
  }
}
.home-banner .home-banner-inner .image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.display-banner {
  width: 100%;
  padding: 120px 0px;
}
.display-banner.example-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/rss/img/couple.jpg");
  background-position: center 40%;
  background-size: cover;
  padding: 180px 0px;
}

footer {
  background-color: #0F172A;
  box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.12);
  color: #E2E8F0;
  display: flex;
  padding: 45px 0px;
  font-size: 14px;
  font-weight: 300;
  position: relative;
}
footer .logo {
  width: 200px;
  cursor: pointer;
}
footer ul {
  list-style: none;
}

section {
  position: relative;
}
section p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}
section .bolder {
  font-weight: 600;
}

.section-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.honeycomb-frame {
  aspect-ratio: 1/0.866;
  max-width: 100%;
  width: 100%;
  position: relative;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: radial-gradient(circle at 30% 30%, #03E2DF 0%, #01807E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.honeycomb-frame img {
  width: 98%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: inherit;
  border-radius: 0;
}

.honeycomb-shadow {
  display: inline-block;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.45));
}

.honeycomb-rotated {
  aspect-ratio: 1/0.866; /* same ratio as before */
  max-width: 100%;
  width: 100%;
  position: relative;
  /* rotated hexagon (pointy top) */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: radial-gradient(circle at 30% 30%, #03E2DF 0%, #01807E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.honeycomb-rotated img {
  width: 98%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: inherit;
  border-radius: 0;
}

.service-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 1rem;
  z-index: 0;
  box-shadow: 20px -13px 12px -16px rgba(0, 0, 0, 0.12);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #02CFCC;
  border-radius: inherit;
  pointer-events: none;
  mask-image: linear-gradient(216deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%);
  -webkit-mask-image: linear-gradient(216deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%);
}

.bottom-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.bottom-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -50px;
}
@media (max-width: 768px) {
  .bottom-bg svg {
    width: 200%;
    height: 200%;
    right: -10%;
    bottom: -90%;
    position: absolute;
    transform: rotate(346deg);
  }
}

.full-bottom-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.full-bottom-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -150px;
}
@media (max-width: 768px) {
  .full-bottom-bg svg {
    width: 200%;
    height: 200%;
    right: -10%;
    bottom: -90%;
    position: absolute;
    transform: rotate(346deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-animation {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=theme.css.map */