.homeloadergrey {
  position: fixed;
  z-index: 5000;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #323436;
}

.homeloaderlightgreen {
  position: fixed;
  z-index: 5001;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #07da8a;
}

.homeloaderblack {
  z-index: 5002;
  display: block;
  background-color: #121212;
  display: flex;
}
.wrapper-cursor {
  position: fixed;
  z-index: 9;
  display: block;
  width: 100vw;
  height: 100vh;
  display: flex;
}
.text {
  position: relative;
  color: white;
  margin: 0;
  user-select: none;
}
.target {
  border-radius: 50px;
  width: 0px;
  height: 0px;
  border: solid 1px #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  
}
.cursor {
  border-radius: 50px;
  width: 0px;
  height: 0px;
  border: solid 1px #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  contain: layout style size;
  pointer-events: none;
  transition: opacity .3s,color .4s;

}

/* Green Tri Small */
.target {
  border-radius: 0;
  position: relative;
  width: 80px;
  height: 80px;
  border: solid 1px #07da8a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
}
.panel-workCards {
  padding-bottom: 20vh;
}

.panel-footer {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  padding: clamp(6rem, 8vw, 6.5rem) 0 0;
  border-top: 1px solid rgba(255, 254, 239, 0.35);
}
.footer-brand {
  width: min(100%, 128rem);
  margin: 0 auto;
  padding: 0 0 clamp(6rem, 8vw, 6.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-brand__logo img {
  display: block;
  width: min(100%, 62rem);
  height: auto;
}
.footer-brand__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 2.4vw, 3rem);
  margin-top: clamp(3rem, 4vw, 4rem);
}
.footer-brand__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-brand__social a:hover,
.footer-brand__social a:focus-visible {
  /* opacity: 0.75; */
  transform: translateY(-1px);
}
.footer-brand__social img {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
}
.footer-brand__copyright {
  margin: clamp(3rem, 3.6vw, 4rem) 0 0;
  font-family: var(--red-font-sans-regular);
  /* font-size: clamp(1.4rem, 0.95vw, 1.7rem); */
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--red-color-cream-main);
}
.footer-brand__bottom {
  border-top: 1px solid rgba(255, 254, 239, 0.35);
  padding: clamp(2.6rem, 3vw, 3.2rem) clamp(2rem, 4vw, 6rem) clamp(2.8rem, 3.2vw, 3.6rem);
}
.footer-brand__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 4vw, 6rem);
  width: 100%;
}
.footer-brand__nav a {
  font-family: var(--red-font-sans-regular);
  font-size: 1rem;
  font-weight: 300;
  color: var(--red-color-cream-main);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-brand__nav a:hover,
.footer-brand__nav a:focus-visible {
  opacity: 0.72;
}
@media (max-width: 767px) {
  .panel-footer {
    padding-top: 6rem;
  }
  .footer-brand {
    padding: 0 1.6rem 4.8rem;
    box-sizing: border-box;
  }
  .footer-brand__logo img {
    width: min(70%, 32rem);
  }
  .footer-brand__social {
    gap: 1.6rem;
    margin-top: 2.4rem;
  }
  .footer-brand__social a,
  .footer-brand__social img {
    width: 2rem;
    height: 2rem;
  }
  .footer-brand__copyright {
    margin-top: 2.6rem;
    font-size: 14px;
  }
  .footer-brand__bottom {
    padding: 2.2rem 1.6rem 2.6rem;
  }
  .footer-brand__nav {
    gap: 1.8rem;
    flex-wrap: wrap;
  }
  .footer-brand__nav a {
    font-size: 14px;
  }
}
