@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url(/assets/bootstrap.min-f66ef4f5533b9ac17cce568585528abf904e6de5892b0503838c2392bd88b963.css);
@import url(/assets/animate.min-c3f62b454ae936dc627e863163f7c3faac885f264e239f55c8e016aa730166d6.css);
:root {
  --banner-section-bg-color: rgb(22, 22, 22);
  --banner-section-text-color: whitesmoke;
  --presentation-section-bg-color: whitesmoke;
  --presentation-section-text-color: #5E6469;
  --testimonials-section-bg-color: rgb(22, 22, 22);
  --testimonials-section-text-color: whitesmoke;
  --events-section-bg-color: whitesmoke;
  --events-section-text-color: #5E6469;
  --achievements-section-bg-color: #f5f5f5;
  --achievements-section-text-color: #161616;
  --products-section-bg-color: #f5f5f5;
  --products-section-text-color: #161616;
  --socials-section-bg-color: rgb(22, 22, 22);
  --socials-section-text-color: whitesmoke;
  --posts-section-bg-color: whitesmoke;
  --posts-section-text-color: #5E6469;
  --footer-section-bg-color: rgb(22, 22, 22);
  --footer-section-text-color: whitesmoke;
  --accent-color: #0D9488; }

:root {
  scrollbar-width: none; }

* {
  font-family: "Lato", sans-serif !important; }

body .content {
  min-height: calc(100vh - 70.27px);
  display: flex;
  flex-wrap: wrap;
  background-color: whitesmoke;
  margin: 0;
  padding: 5%; }
  body .content.pages-home {
    padding: 0; }

section {
  width: 100%;
  padding: 10%; }

.section-banner-colors {
  background-color: var(--banner-section-bg-color);
  color: var(--banner-section-text-color); }

.section-presentation-colors {
  background-color: var(--presentation-section-bg-color);
  color: var(--presentation-section-text-color); }

.section-testimonials-colors {
  background-color: var(--testimonials-section-bg-color);
  color: var(--testimonials-section-text-color); }

.section-events-colors {
  background-color: var(--events-section-bg-color);
  color: var(--events-section-text-color); }

.section-achievements-colors {
  background-color: var(--achievements-section-bg-color);
  color: var(--achievements-section-text-color); }

.section-products-colors {
  background-color: var(--products-section-bg-color);
  color: var(--products-section-text-color); }

.section-socials-colors {
  background-color: var(--socials-section-bg-color);
  color: var(--socials-section-text-color); }

.section-posts-colors {
  background-color: var(--posts-section-bg-color);
  color: var(--posts-section-text-color); }

.section-footer-colors {
  background-color: var(--footer-section-bg-color);
  color: var(--footer-section-text-color); }

.section-white {
  background-color: whitesmoke;
  color: #333; }

.section-black {
  color: whitesmoke; }

.section-heading {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center; }
  .section-heading::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent-color);
    margin: 0.75rem auto 0; }
  @media (max-width: 767px) {
    .section-heading {
      font-size: 1.5rem;
      margin-bottom: 2rem; } }
.section-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center; }
  .section-cta .btn-outline-accent {
    border: 1.5px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 0.6rem 2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease; }
    .section-cta .btn-outline-accent:hover {
      background: var(--accent-color);
      color: white; }
  .section-cta .btn-accent {
    border: 1.5px solid var(--accent-color);
    color: white;
    background: var(--accent-color);
    padding: 0.6rem 2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease; }
    .section-cta .btn-accent:hover {
      opacity: 0.85; }

.section-home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden; }
  .section-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none; }
  .section-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--banner-section-bg-color));
    pointer-events: none; }
  .section-home .col-12 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center; }
  .section-home .logo {
    width: 50%;
    max-height: 28vh;
    filter: drop-shadow(0 0 24px rgba(13, 148, 136, 0.25)); }
    @media (max-width: 767px) {
      .section-home .logo {
        width: 80%; } }
  .section-home .title-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; }
    .section-home .title-container .title {
      width: 100%;
      font-size: 7vw;
      letter-spacing: 1.5vw;
      white-space: nowrap;
      font-weight: 300; }
      @media (max-width: 450px) {
        .section-home .title-container .title {
          font-size: 9vw;
          letter-spacing: 1vw; } }
    .section-home .title-container .subtitle {
      width: 100%;
      font-size: 1.4vw;
      letter-spacing: 0.6vw;
      font-weight: 300;
      opacity: 0.55;
      margin-top: 0.5rem; }
      @media (max-width: 767px) {
        .section-home .title-container .subtitle {
          font-size: 3vw;
          letter-spacing: 0.4vw; } }
  .section-home .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    z-index: 2;
    opacity: 0.4;
    font-size: 1.5rem;
    animation: hero-bounce 2.4s ease-in-out infinite; }

@keyframes hero-bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(8px); } }

.section-presentation {
  padding-bottom: 0; }
  .section-presentation .photo {
    width: 50%;
    max-height: 50vh;
    display: flex;
    justify-content: center;
    align-self: flex-end; }
    .section-presentation .photo img {
      max-width: 100%;
      filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18)); }
  .section-presentation .biography {
    width: 50%;
    padding-left: 3rem; }
    .section-presentation .biography h1 {
      position: relative;
      padding-bottom: 1rem;
      margin-bottom: 1.5rem; }
      .section-presentation .biography h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 48px;
        height: 2px;
        background: var(--accent-color); }
    .section-presentation .biography .text-paragraph {
      line-height: 1.8;
      opacity: 0.85; }
  @media (max-width: 1200px) {
    .section-presentation .photo {
      width: 70%; }
    .section-presentation .biography {
      width: 100%;
      padding-left: 0; } }
  @media (max-width: 767px) {
    .section-presentation .photo {
      width: 100%; } }
.section-testimonial .quote-icon {
  font-size: 5rem;
  line-height: 1;
  opacity: 0.15;
  font-family: Georgia, serif !important;
  display: block;
  margin-bottom: -1.5rem; }

.section-testimonial .carousel-item p.text-paragraph {
  font-size: 1.05rem;
  line-height: 1.85;
  font-style: italic; }

.section-testimonial .carousel-item small.text-small {
  font-style: normal;
  letter-spacing: 0.06em;
  opacity: 0.65; }

.section-testimonial .carousel-indicators {
  position: static;
  margin-top: 2rem; }
  .section-testimonial .carousel-indicators [data-bs-target] {
    background-color: var(--testimonials-section-text-color);
    opacity: 0.3;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none; }
    .section-testimonial .carousel-indicators .active[data-bs-target] {
      opacity: 1;
      background-color: var(--accent-color); }

.spotlight-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13); }
  .spotlight-card .card-img-wrap {
    overflow: hidden;
    height: 200px;
    flex-shrink: 0; }
    .spotlight-card .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease; }
  .spotlight-card:hover .card-img-wrap img {
    transform: scale(1.05); }
  .spotlight-card .card-body {
    flex: 1;
    padding: 1.4rem 1.5rem 1rem; }
  .spotlight-card .card-meta {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600; }
  .spotlight-card h3.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    color: #222; }
  .spotlight-card p.card-excerpt {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #666;
    margin-bottom: 0; }
  .spotlight-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.85rem 1.5rem; }
    .spotlight-card .card-footer a {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-color);
      text-decoration: none;
      transition: opacity 0.2s ease; }
      .spotlight-card .card-footer a:hover {
        opacity: 0.7; }

.section-products,
.products-index {
  background-color: var(--products-section-bg-color, whitesmoke);
  color: var(--products-section-text-color, #5E6469); }
  .section-products .row,
  .products-index .row {
    row-gap: 24px; }

.section-events,
.events-index {
  background-color: var(--events-section-bg-color, whitesmoke);
  color: var(--events-section-text-color, #5E6469); }
  .section-events .row,
  .events-index .row {
    row-gap: 24px; }

.section-achievements,
.achievements-index {
  background-color: var(--achievements-section-bg-color, whitesmoke);
  color: var(--achievements-section-text-color, #5E6469); }
  .section-achievements .row,
  .achievements-index .row {
    row-gap: 24px; }

.section-social .social-media-img .social-media-icon {
  color: var(--socials-section-text-color);
  font-size: 3.2rem;
  transition: transform 0.22s ease, opacity 0.22s ease; }
  .section-social .social-media-img .social-media-icon:hover {
    transform: scale(1.18);
    opacity: 0.75; }

.section-social .social-media-img img {
  width: 56px;
  aspect-ratio: 1;
  transition: transform 0.22s ease; }
  .section-social .social-media-img img:hover {
    transform: scale(1.18); }

@media (max-width: 450px) {
  .section-social .social-media-img .social-media-icon {
    font-size: 2.4rem; }
  .section-social .social-media-img img {
    width: 44px; } }

.post-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem 0; }
  .post-card:last-child {
    border-bottom: none; }
  .post-card .post-date {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.4rem; }
  .post-card h3.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin-bottom: 0.75rem; }
  .post-card .post-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s ease; }
    .post-card .post-link:hover {
      opacity: 0.7; }
    .post-card .post-link::after {
      content: ' →'; }

.section-map {
  padding: 0;
  height: 85vh; }

#demo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 6%;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease; }
  #demo-nav.scrolled {
    background: rgba(14, 14, 14, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07); }

.dnav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0; }
  .dnav-brand:hover .dnav-brand-name {
    opacity: 0.75; }

.dnav-brand-name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.2s; }

.dnav-brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0; }

.dnav-spacer {
  flex: 1; }

.dnav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0; }
  .dnav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    padding-bottom: 4px; }
    .dnav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent-color);
      transition: width 0.3s ease; }
    .dnav-links a:hover, .dnav-links a.active {
      color: #fff; }
      .dnav-links a:hover::after, .dnav-links a.active::after {
        width: 100%; }

.dnav-cta {
  margin-left: 2.5rem;
  padding: 0.45rem 1.25rem;
  border: 1.5px solid rgba(13, 148, 136, 0.7);
  border-radius: 2px;
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap; }
  .dnav-cta:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff; }

.dnav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0; }
  .dnav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center; }
  .dnav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg); }
  .dnav-burger.open span:nth-child(2) {
    opacity: 0;
    width: 0; }
  .dnav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg); }

.dnav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease; }
  .dnav-overlay.open {
    opacity: 1;
    pointer-events: all; }
  .dnav-overlay a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: color 0.25s ease, transform 0.4s ease, opacity 0.4s ease, letter-spacing 0.25s ease; }
    .dnav-overlay a:hover {
      color: #fff;
      letter-spacing: 0.2em; }
  .dnav-overlay.open a {
    opacity: 1;
    transform: translateY(0); }
    .dnav-overlay.open a:nth-child(1) {
      transition-delay: 0.05s; }
    .dnav-overlay.open a:nth-child(2) {
      transition-delay: 0.1s; }
    .dnav-overlay.open a:nth-child(3) {
      transition-delay: 0.15s; }
    .dnav-overlay.open a:nth-child(4) {
      transition-delay: 0.2s; }
    .dnav-overlay.open a:nth-child(5) {
      transition-delay: 0.25s; }
    .dnav-overlay.open a:nth-child(6) {
      transition-delay: 0.3s; }
    .dnav-overlay.open a:nth-child(7) {
      transition-delay: 0.35s; }
    .dnav-overlay.open a:nth-child(8) {
      transition-delay: 0.4s; }

.dnav-overlay-accent {
  width: 32px;
  height: 1.5px;
  background: var(--accent-color);
  margin-top: -1rem; }

@media (max-width: 768px) {
  .dnav-links,
  .dnav-cta {
    display: none; }
  .dnav-burger {
    display: flex; } }

.btn-dark {
  color: whitesmoke !important;
  text-decoration: none !important; }

.section-events,
.events-index {
  padding-top: 5rem;
  background-color: whitesmoke;
  color: #333; }
  .section-events .row,
  .events-index .row {
    row-gap: 40px; }
  .section-events .event-image-container,
  .events-index .event-image-container {
    aspect-ratio: 2;
    text-align: center; }
    .section-events .event-image-container.image-desktop,
    .events-index .event-image-container.image-desktop {
      display: flex;
      flex: auto; }
    .section-events .event-image-container.image-mobile,
    .events-index .event-image-container.image-mobile {
      display: none; }
    @media (max-width: 991px) {
      .section-events .event-image-container.image-desktop,
      .events-index .event-image-container.image-desktop {
        display: none; }
      .section-events .event-image-container.image-mobile,
      .events-index .event-image-container.image-mobile {
        display: flex;
        margin-bottom: 2rem; } }
.section-achievements,
.achievements-index {
  padding-top: 5rem;
  background-color: whitesmoke;
  color: #333; }
  .section-achievements .row,
  .achievements-index .row {
    row-gap: 40px; }
  .section-achievements .achievement-image-container,
  .achievements-index .achievement-image-container {
    aspect-ratio: 2;
    text-align: center; }
    .section-achievements .achievement-image-container.image-desktop,
    .achievements-index .achievement-image-container.image-desktop {
      display: flex;
      flex: auto; }
    .section-achievements .achievement-image-container.image-mobile,
    .achievements-index .achievement-image-container.image-mobile {
      display: none; }
    @media (max-width: 991px) {
      .section-achievements .achievement-image-container.image-desktop,
      .achievements-index .achievement-image-container.image-desktop {
        display: none; }
      .section-achievements .achievement-image-container.image-mobile,
      .achievements-index .achievement-image-container.image-mobile {
        display: flex;
        margin-bottom: 2rem; } }
.section-products,
.products-index {
  padding-top: 5rem;
  background-color: whitesmoke;
  color: #333; }
  .section-products .row,
  .products-index .row {
    row-gap: 40px; }
  .section-products .product-image-container,
  .products-index .product-image-container {
    aspect-ratio: 2;
    text-align: center; }
    .section-products .product-image-container.image-desktop,
    .products-index .product-image-container.image-desktop {
      display: flex;
      flex: auto; }
    .section-products .product-image-container.image-mobile,
    .products-index .product-image-container.image-mobile {
      display: none; }
    @media (max-width: 991px) {
      .section-products .product-image-container.image-desktop,
      .products-index .product-image-container.image-desktop {
        display: none; }
      .section-products .product-image-container.image-mobile,
      .products-index .product-image-container.image-mobile {
        display: flex;
        margin-bottom: 2rem; } }
.nav-pagination {
  width: 100%;
  display: flex;
  justify-content: center; }
  .nav-pagination .pagination {
    display: flex;
    flex-wrap: wrap; }
    .nav-pagination .pagination a,
    .nav-pagination .pagination span.page.current {
      padding: 7px 16px 6px !important;
      margin-right: 0 !important;
      background-image: unset !important;
      box-shadow: unset !important;
      border: 1px solid #dee2e6 !important; }
    .nav-pagination .pagination a:hover {
      background-color: #e9ecef !important;
      color: #212529 !important; }
    .nav-pagination .pagination .active > .page-link {
      background-color: #212529 !important; }
      .nav-pagination .pagination .active > .page-link:hover {
        background-color: #131516 !important;
        color: whitesmoke !important; }
    .nav-pagination .pagination .next, .nav-pagination .pagination .prev, .nav-pagination .pagination .first, .nav-pagination .pagination .last {
      font-size: 20px; }

.text-title {
  font-size: 60px;
  margin-bottom: 60px; }

.text-paragraph {
  font-size: 18px; }

.text-small {
  font-size: 14px; }

.text-title-secondary {
  font-size: 34px;
  margin-bottom: .25rem; }

@media (max-width: 767px) {
  .text-title {
    font-size: 34px;
    margin-bottom: 40px; }
  .text-paragraph {
    font-size: 18px; }
  .text-small {
    font-size: 14px; }
  .text-title-secondary {
    font-size: 24px; } }
