/* main.css */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500|Manrope:500");


.screen a {
  display: contents;
  text-decoration: none;
}

.container-center-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}

.container-center-horizontal > * {
  flex-shrink: 0;
  pointer-events: auto;
}

* {
  box-sizing: border-box;

}

button:focus,
a:focus,
input:focus,
img:focus {
  outline: none;
  box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
    background: #10002d;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none;    
  }

/* ──────────────────────────────────────────
   LOADER - 3D Cube
────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ─── 3D Cube ──────────────────────────────────────────── */
.cube {
  width: 80px;
  height: 80px;
  transform-style: preserve-3d;
  animation: rotateCube 1.5s infinite ease-in-out;
}

.face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--electric-violet);
  opacity: 0.8;
  border: 2px solid var(--white-2);
}

/* Position each face in 3D space */
.front  { transform: translateZ(40px); }
.back   { transform: rotateY(180deg) translateZ(40px); }
.right  { transform: rotateY( 90deg) translateZ(40px); }
.left   { transform: rotateY(-90deg) translateZ(40px); }
.top    { transform: rotateX( 90deg) translateZ(40px); }
.bottom { transform: rotateX(-90deg) translateZ(40px); }

@keyframes rotateCube {
  0%   { transform: rotateX(0deg)   rotateY(0deg); }
  25%  { transform: rotateX(90deg)  rotateY(0deg); }
  50%  { transform: rotateX(90deg)  rotateY(90deg); }
  75%  { transform: rotateX(0deg)   rotateY(180deg); }
  100% { transform: rotateX(0deg)   rotateY(360deg); }
}

/* ──────────────────────────────────────────
   NAVIGATION — fixed, centered menu, hover
────────────────────────────────────────── */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 10vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  }
  .nav.scrolled {
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
  }
  
  .site-name {
    font-weight: 700;
    text-shadow: 1px 0 1px white;   
  }
  
  /* MENU */
  .menu ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .menu-list a{
    color: var(--white);
    font-family: var(--font-family-poppins);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none; 
  }
  .menu-list a:hover {
    color: var(--electric-violet);
    transform: scale(1.5);
  }
  
  /* CONTACT + BUTTONS */
  .contact-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .contact-buttons .phone,
  .contact-buttons .help-center {
    color: var(--white);
    font-size: 1rem;
  }
  .separator {
    color: var(--white);
  }
  .btn {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-family-poppins);
    font-size: 1.25rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease, background-color 0.5s ease;
    display: flex;
    margin-left: auto;
    margin-right: 10%;
  }
  .btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    background-color: #682596;
    color: #fff;
  }

.download-top-button {
    display: inline-block;
    background-color: #d173ee;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(209, 115, 238, 0.4);
    display: flex;
    margin-left: auto;
    margin-right: 10%;
  }

  .download-top-button:hover {
    background-color: #c55fe0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(209, 115, 238, 0.5);
    color: #fff;
  }

  .sign-in {
    background-color: #fff;
    color: #000;
    text-decoration: none;
  }
  .sign-up {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
  }
  
/* ─── Hamburger Toggle Button ─────────────────────────── */
.nav-toggle {
  display: none;                /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;                /* above the menu */
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}


/* ─── Mobile Menu Styles ─────────────────────────────── */
@media screen and (max-width: 768px) {
  .menu .menu-item {
    font-size: 0.9rem;
  }
  .nav {    
    padding: 0 2rem;
    height: 50px;
    background: var(--black);
  }

  /* show toggle */
  .nav-toggle {
    display: flex;
  }

  /* hide the normal menu & contact buttons */
  .menu,
  .contact-buttons {
    display: none;
  }

  .nav.menu-open {
    /* background-color: rgba(0, 0, 0, 0.5) !important; */
    backdrop-filter: blur(10px)           !important;
    z-index: 1100;
  }
  
  /* dropdown menu container */
  .menu.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;            
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    z-index: 1050;
  }

  /* menu list layout */
  .menu ul { margin: 1rem; }
  .menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
    list-style: none;
  }
  .menu-list li {
    margin: 0;
  }
  .menu-list a {
    color: var(--white-2);
    padding: 0.5rem 1rem;                    
    font-size: 1.25rem;
    text-decoration: none;
  }
  .menu-list a:hover {
    filter: brightness(1.2);
  }

  /* show contact buttons below the menu if desired */
  .contact-buttons.open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1040;
  }
}

/* ──────────────────────────────────────────
   HERO SECTION — Complete CSS
────────────────────────────────────────── */

/* 1. Container & background */
.hero {
    position: relative;
    min-height: 100vh;              
    padding: 10rem 2vw 0;           
    color: var(--white);
    overflow: hidden;
  }

  .hero-container{
    display: flex;
    justify-content: space-between;
  }

  .heroLeft{
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .heroRight{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }


  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;   
    z-index: -1;         
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
  }  

  .hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
  }
  
  .infoBuilt {
    width: 25%;
    margin-bottom: 1rem;
  }
  
  .hero-emphasis {
    margin: 0;
    font-family: var(--font-family-poppins);
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .hero-description {
    margin: 0.5rem 0 0;
    font-family: var(--font-family-poppins);
    font-size: 1rem;
    line-height: 1.5;
  }
  

  .hero-card {
    grid-area: card;
    justify-self: start;
    align-self: start;
  }
  .hero-card .card-inner {
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
  }
  .hero-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  .hero-card h3 {
    margin: 0.5rem 0;
    font-family: var(--font-family-poppins);
    font-size: 1.25rem;
  }
  .hero-card p {
    margin: 0;
    font-family: var(--font-family-poppins);
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  
  .hero-stats {
    grid-area: stats;
    justify-self: end;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
  }

  
 
  .hero-title {
    grid-area: title;
    justify-self: left;
    align-self: left;
    font-family: var(--font-family-poppins);
    font-size: 4rem;
    line-height: 1.2;
    text-align: left;
  }

  .gradientH1{
      background: linear-gradient(45deg, #9950b0, #a074f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  }
  
 
  .hero-subtitle {
    grid-area: subtitle;
    justify-self: left;
    align-self: start;
    margin-top: 5rem;
    font-family: var(--font-family-poppins);
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
    max-width: 615px;
    color: #b786d2;
  }
  
 .hero-tags {
    grid-area: tags;
    justify-self: end;
    align-self: end;
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 3rem;
  }
  .hero-tags .tag {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-family-poppins);
    font-size: 1rem;
    background-color: var(--electric-violet);
    color: var(--white);
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    text-align: center;
  }
  .hero-tags .tag:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
  }
  .hero-tags .tag-text {
    font-size: 1rem;
    font-family: var(--font-family-poppins);
    color: var(--white);
    text-decoration: none;
  }
  .hero-tags .tag-text:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    text-shadow: 1px 0 3px var(--electric-violet);

  }
  .hero-tagsMobile{
    display: none;
  }


  
  /* 10. Responsive adjustments */
  @media screen and (max-width: 768px) {
    .hero {
      height: auto;
      min-height: auto;
      padding: 0rem 1rem 3rem 1rem;
    }
  
    .hero-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }
  
    .hero-title {
      font-size: 2rem;
      line-height: 1.3;
      text-align: center;
      padding-bottom: 60%;
    }
    .hero-title br {
      display: none;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
      line-height: 1.5;
      margin-top: 12rem;
      text-align: center;
      color: #deb9f2;
    }

    .hero-subtitle br{
      display: none;
    }
  
    .heroRight {
      width: 100%;
    }
  
    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.hero-tags {
      display: none;
      flex-direction: column;
      gap: 0.7rem;
      margin:  0 auto;
      justify-content: center;
      text-align: center;
      width: 90%;
    }

    .hero-tagsMobile{
      display:flex;
      flex-direction: column;
      gap: 1rem;
    }
  
    .tag {
      width: 100%;
      font-size: 1rem;
    }
  
    .tag-text {
      font-size: 0.95rem;
    }

    .hero-video {
      width: 100%;
      height: 75vh;
      opacity: 0.8;
    } 
    .hero-stats {
      margin: 0 auto;
      margin-top: 5%;
      padding-bottom: 5%;
      flex-direction: row;
      justify-content: center;
      text-align: center;
    }

    .hero-info{
      display: none;
        margin: 0 auto;
        flex-direction: column;
        align-items: center; 
    }

    .heroLeft {
    align-items: center; 
    text-align: center; 
  }

  .hero-card {
    width: 100%;
    display: flex;
    justify-content: center; 
  }

  .hero-card .card-inner {
    display: none;
    max-width: 90%;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }
  }
  

  /* ──────────────────────────────────────────
   Partners SECTION 
    ────────────────────────────────────────── */

  .partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    padding: 2rem 10vw;
    background: linear-gradient(
      to bottom,
      #340751 5%,     
      #41086a43 20%,    
      #1a022d30 100%   
    );
  }
  
  .blockForLogoPartners{
    display: flex;
  }

  .partners .partner-logo {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
  }

  .partner-logoTor{
    width: 110px;
  }
  

  .extraVectorMobile{
    display: none;
  }

  .partners-track{
    display: flex;
    justify-content: center;
    gap: 4vw;
  }
@media screen and (max-width: 768px) {
  .partners {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
  }

  .partners-track {
    display: flex;
    gap: 2rem;
    animation: scrollTrack 15s linear infinite;
    width: max-content;
  }

  .partner-logo, .blockForLogoPartners, .vector {
    flex-shrink: 0;
  }

  /* animation scroll */
  @keyframes scrollTrack {
    0% {
      transform: translateX(80%);
    }
    100% {
      transform: translateX(-75%);
    }
  }

  .vector {
    display: none;
  }

  .extraVectorMobile {
    display: none;
  }
}

  


  /* Statistics Section */
  .statistics {
    display: flex;
    justify-content: center;
    gap: 16rem;
    padding: 2rem 10vw;
    color: var(--white);
    font-family: var(--font-family-poppins);
  }
  .statistics .stat {
    text-align: center;
  }
  .statistics .stat-number {
    font-size: 4rem;
    display: block;
  }
  .statistics .stat-label {
    font-size: 1rem;
  }
  .stat-number {
    display: block;
    font-family: var(--font-family-poppins);
    font-size: 4rem;
  }
  
  .stat-label {
    display: block;
    font-family: var(--font-family-poppins);
    font-size: 1rem;
  }
  
  @media screen and (max-width: 768px) {
    .statistics {
      padding: 2rem 5vw;
    }
    
    .statistics .stat-number{
      text-align: center;
    }

    .stat-number{
      font-size: 2.5rem;
      text-align: center;
      margin-top: 20%;
    }

    .stat-label{
      text-align: center;
    }
  
    .statistics .stat-label{
      font-size: 0.875rem;
    }
  }

  /* About Section */
  .about {
    padding: 4rem 10vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #111;
    color: var(--white);
  }
  .about-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }
  .about-text {
    flex: 1;
  }
  .about-title {
    font-size: 2.5rem;
    margin: 0;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-overview {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
  }
  .about-icon {
    width: 40px;
    height: 40px;
  }
  .overview-text {
    font-size: 1rem;
  }
  .about-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .stat-group {
    display: flex;
    gap: 2rem;
  }
  .stat-item {
    text-align: center;
  }
  .stat-value {
    font-size: 2rem;
    display: block;
  }
  .stat-title {
    font-size: 1rem;
  }
  .client-info {
    flex: 1;
  }
  .client-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .client-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .client-numbers {
    text-align: center;
  }
  .client-number {
    font-size: 2rem;
    display: block;
  }
  .client-label {
    font-size: 1rem;
  }
  .client-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 0.5rem;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 10vw;
    background-color: #000;
    color: var(--white);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .services-title {
    font-size: 2.5rem;
    margin: 0;
  }
  .services-subheader {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .services-text {
    font-size: 1rem;
  }
  .btn.read-more {
    padding: 0.5rem 1rem;
    background-color: var(--electric-violet);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
  }
  .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  .service-item {
    flex: 1 1 300px;
    background-color: #111;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
  }
  .service-item img {
    max-width: 100%;
    height: auto;
  }
  .service-title {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
  }
  .service-description,
  .service-subdescription {
    font-size: 1rem;
  }
  .service-info {
    flex: 1;
  }
  .service-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
  }
  .service-stat {
    text-align: center;
  }
  .stat-percent {
    font-size: 1.5rem;
    display: block;
  }

  .service-image img {
    width: 100%;
    border-radius: 10px;
  }
  .defi-section {
    text-align: center;
    margin-top: 2rem;
  }
  .defi-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .btn.blockchain-technology {
    padding: 0.5rem 1rem;
    background-color: var(--electric-violet);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
  }

  .menuListItemMobile{
    display: none;
  }

  .featureTitleInfo{
    padding-left: 5%;
    font-size: 1.3rem;
    color: #d173ee;
    font-weight: 600;
  }
  
  /* ──────────────────────────────────────────
   FAQ SECTION 
    ────────────────────────────────────────── */
   .faq-content {
  background: linear-gradient(to bottom, #3a0ca3, #7209b7, #560bad, #480ca8);
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: inherit;
}

.faq-header {
  margin: 3rem 0;
  text-align: center;
}

.faq-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff 0%, #d173ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.75;
  color: #ffffff;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 20px;
}

.faq-item {
  background-color: #220652;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 800px;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
    -webkit-tap-highlight-color: transparent; 
  -webkit-focus-ring-color: transparent;    
  outline: none;                           
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-question:hover,
.faq-question:focus {
  outline: none;
  box-shadow: none;
}

.faq-question span{
  font-size: 1rem;
}

.faq-icon {
  transition: transform 0.4s ease;
  fill: #ffffff;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: #1f1f1f;
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2rem;
  transition: max-height 0.8s ease, opacity 0.8s ease, padding 0.8s ease;
}

.faq-item.open .faq-answer {
  background-color: #190c30;
  color: #fff;
  opacity: 1;
  max-height: 500px;
  padding: 1rem 2rem 2rem;
  font-size: 1rem;
}

    
    
    
    
    
    
    

  /* ──────────────────────────────────────────
   Footer SECTION 
    ────────────────────────────────────────── */

  .footer {
    color: var(--white);
    padding: 2rem 10vw;
    font-family: var(--font-family-poppins);
  }
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    flex: 1 1 300px;
  }
  .footer-logo .site-name {
    font-size: 1.3rem;
    color: var(--heliotrope);
  }
  .footer-links h3,
  .quick-link-group h3,
  .menu-links h3,
  .office h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .footer-links ul,
  .quick-link-group ul,
  .menu-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links li,
  .quick-link-group li,
  .menu-links li {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .footer-description {
    font-size: 1rem;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    justify-content: space-between;
  }
  .office p,
  .office h3 {
    margin: 0;
  }
  .social-icons img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
  }
  
  /* Media Queries for Mobile Devices */
  @media screen and (max-width: 768px) {
    .statistics{
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1rem;
    }

    .statistics,
    .partners,
    .about,
    .services,
    .page-content,
    .footer {
      padding: 2rem;
    }
    .services-header,
    .about-content,
    .page-highlight {
      flex-direction: column;
      text-align: center;
    }
    .footer-content,
    .footer-bottom { gap: 0; }

    .headerLanding{
    backdrop-filter: none; 
    }

    .footer-description{
      display: none;
    }

    .menuListItemMobile{
    display: block;
  }
  }
  

/* extra styles header  and footer*/
  .headerLanding {
    background: linear-gradient(to bottom, rgb(32 6 44 / 98%), rgb(26 6 35));
  }

  .logoHeaderLanding {
    text-align: start;
  }
  
  .logoImageHeaderLanding {
    margin-left: 5vw; 
    display: block; 
    max-width: 40%;
    height: auto;
  }

  .footerLanding{
        background: linear-gradient(to bottom, rgb(23 8 50), rgb(24, 9, 31));
    backdrop-filter: blur(8px); 
  }

    .logoImageHFooter {
    margin-left: 5vw; 
    display: block; 
    max-width: 50%;
    height: auto;
  }

  .footerContainer{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
          justify-content: center;
      align-items: center;
  }

  .copyright{
    font-size: 1rem;
    text-align:start;
  }

  .footerListSocial{
    display: flex;
    justify-content: center;
  }

    .footerSocial{
      width: 4rem;
      transition: transform 0.5s ease;
    }

    .footerSocial:hover{
      transform: scale(1.3);
    }

  @media (max-width:768px){
    .footerContainer{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }

    .footer-left{
      flex: 1 1 1rem;
    }

    .logoImageHFooter{
      margin: 0 auto;
    }
  }

/*end Extra styles */
