@font-face {
  font-family: "AgencyFb";
  src: url("../fonts/agencyfb_reg.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: none;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg);
}

/* ================================================================ */

@media (prefers-reduced-motion) {
  .hiddenSection {
    transition: none !important;
  }
}

.inner-coursor {
  position: fixed;
  left: 15px;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--primary-font-color);
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;
}

.inner-coursor.grow {
  width: 25px;
  height: 25px;
  transition: width 0.5s, height 0.5s;
}

@media (max-width:850px) {
  html {
    cursor:unset;
  }

  .inner-coursor{
    display: none;
  }
}

.ball {
  position: absolute;
  outline: none;
  top: 0;
  left: 0;
  mix-blend-mode: plus-lighter;
}

section {
  background-color: var(--primary-bg);
}

/* ================================================================ */

#Home {
  position: relative;
}


.locis-container {
  height: 100vh;
  display: grid;
  place-items: center;
}

.locis-container h1 {
  font-size: 15rem;
  text-transform: uppercase;
  color: var(--primary-font-color);
  z-index: 5;
  transition: 0.5s;
  user-select: none;
  text-shadow: 1px 1px 1px #b0b0b0, 1px 2px 1px #b0b0b0, 1px 3px 1px #b0b0b0,
    1px 4px 1px #b0b0b0, 1px 5px 1px #b0b0b0, 1px 6px 1px #b0b0b0,
    1px 7px 1px #b0b0b0;
}

.locis-container h1:hover {
  transform: scale(1.1);
}

.locis-subpoints {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.locis-subpoints h2 {
  color: var(--secondary-font-color);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  padding: 2.5rem;
  transition: all 0.5s;
  user-select: none;
  font-family: "AgencyFb";
}

@media (max-width: 780px) {
  .locis-container h1 {
    font-size: clamp(2rem, 30vw, 90vw);
  }

  .locis-container h1:hover {
    transform: scale(1);
  }

  .locis-subpoints {
    justify-content: space-around;
    top: 80%;
  }

  .locis-subpoints h2 {
    font-size: clamp(0.6rem, 3.5vw, 2rem);
    padding: unset;
  }
}

/* ================================================================ */

.services-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

.services-holder header {
  font-family: "AgencyFb";
  font-size: 5rem;
  color: var(--secondary-font-color);
  text-align: center;
}

.services-holder header span {
  position: relative;
  color: var(--primary-font-color);
  text-transform: uppercase;
}

.services-holder header span::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 3px;
  right: -8px;
  top: 45%;
  background-color: var(--secondary-font-color);
  transform: translateY(-45%);
}

@media (max-width: 800px) {
  .services-holder header {
    font-size: 3rem;
  }

  .services-holder header {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .services-holder header span {
    font-size: 4.5rem;
    position: absolute;
    left: 50%;
    top: calc(100% + 50px);
    transform: translate(-50%, -50%);
    margin-bottom: 100px;
  }

  .services-holder header span::before {
    height: 50px;
  }
}

/* ================================================================ */

.services-inner {
  display: grid;
  grid-gap: 40px;
  padding: 40px;
}

@media (min-width: 1050px) {
  .services-inner {
    grid-template-columns: repeat(3, minmax(15rem, 35rem));
    grid-template-rows: calc(20rem + 250px);
  }

  .service-card-svg svg {
    height: calc(10vw + 50px);
  }

  .service-card-svg {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 830px) {
  .service-card {
    width: 85vw;
  }

  .services-inner {
    margin-top: 70px;
  }

  .service-card-svg svg {
    height: 100%;
  }
}

.service-card.hiddenSection {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-100%);
}

.service-card.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.service-card {
  border-radius: 10px;
  border: 3px solid var(--secondary-bg);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.service-card:nth-child(2) {
  transition-delay: 200ms;
}

.service-card:nth-child(3) {
  transition-delay: 400ms;
}

.service-card-svg {
  width: 100%;
  padding: 25px 50px;
}

.service-card-text {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  text-align: center;
  font-family: "AgencyFb";
}

.service-card-text h1 {
  color: var(--primary-font-color);
  text-transform: uppercase;
  padding: 30px;
  font-size: 3rem;
}

.service-card-text p {
  display: flex;
  height: 100%;
  color: var(--secondary-font-color);
  font-size: 1.4rem;
  margin: 20px;
}

/* ================================================================ */

.seo {
  min-height: 70vh;
  width: 100%;
  font-family: "AgencyFb";
}

.seo-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seo-left {
  width: 50%;
}

.seo-left h1 {
  font-size: clamp(3rem, 10vw, 9rem);
  color: var(--primary-font-color);
}

.seo-left h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  color: var(--primary-font-color);
  padding: 1rem 1rem 1rem 0rem;
}

.seo-left p {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  padding: 1rem 1rem 1rem 0rem;
  color: var(--secondary-font-color);
  width: 70%;
}

.seo-left h1.hiddenSection {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateY(-150%);
}

.seo-left h1.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.seo-left h2.hiddenSection,
.seo-left p.hiddenSection {
  opacity: 0;
  transition: all 1.3s;
  filter: blur(5px);
  transform: translateY(70%);
}

.seo-left h2.showSection,
.seo-left p.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.seo-right.hiddenSection {
  opacity: 0;
  transition: all 1.3s;
  filter: blur(5px);
  transform: translatex(70%);
}

.seo-right.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.seo-more.hiddenSection {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translatex(-50%);
}

.seo-more.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.seo-more {
  font-size: "AgencyFb";
  width: 14rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-font-color);
  border-radius: 30px;
  padding: 1rem;
  border: 2px solid var(--accent-Color);
  text-decoration: none;
  margin: 1rem 1rem 1rem 0rem;
  font-size: 1.4rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .seo-right svg {
    width: 20rem;
  }

  .seo-left p {
    width: 90%;
  }
}

@media (max-width: 700px) {
  .seo-holder {
    flex-direction: column;
  }
  .seo-left h1 {
    font-size: clamp(3rem, 18vw, 7rem);
    text-wrap: nowrap;
  }

  .seo-left {
    width: 100%;
    padding-left: 2rem;
  }

  .seo-more {
    font-size: 1.2rem;
    width: 13rem;
  }

  .seo-right {
    display: none;
  }
}

/* ================================================================ */

.responsive-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.responsive-holder img {
  height: 50rem;
  filter: drop-shadow(1px 30px 31px #000000);
}

@media (max-width: 1265px) {
  .responsive-holder img {
    height: 70vw;
  }
}
/* ================================================================ */

.processHeader h1,
.processHeader span {
  text-transform: uppercase;
  font-size: clamp(3rem, 10rem, 20vw);
  color: var(--secondary-font-color);
  text-align: center;
  font-family: "AgencyFb";
}

.processHeader span {
  font-size: clamp(6rem, 15rem, 30vw);
  background: linear-gradient(45deg, #6c63ff, #a79aff, #ff8fb0);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 0.9;
  animation: animate 5s ease-in-out infinite;
}

@keyframes animate {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.process {
  position: relative;
  width: 100%;
  padding-top: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-family: "AgencyFb";
}

.process img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 30px;
}

.process .container {
  position: relative;
  right: 70%;
  width: 30rem;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.process .text-block {
  color: var(--primary-font-color);
  padding: 1rem 2rem;
  background-color: var(--secondary-bg);
  position: relative;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding-bottom: 5em;
}

.process h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.process .text-block p {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  margin-top: 1rem;
  color: var(--secondary-font-color);
}

.left-container.hiddenSection {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-100%);
}

.left-container.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.right-container.hiddenSection {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(100%);
}

.right-container.showSection {
  opacity: 1;
  filter: unset;
  transform: unset;
}

.right-container {
  left: 70%;
  display: flex;
  justify-content: flex-end;
}

.svg-holder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process svg {
  position: absolute;
  width: 5rem;
  height: unset;
  padding: 1rem;
  border-radius: 30%;
  z-index: 10;
  background-color: var(--primary-bg);
  border: 2px solid var(--accent-Color);
  left: 50%;
  transform: translate(-50%, -50%);
}

.right-container svg {
  left: -10%;
  z-index: 2;
}

.processline {
  position: absolute;
  width: 3px;
  background-color: var(--accent-Color);
  top: 0;
  left: 50%;
  margin-left: -3px;
  height: 100%;
}

@media screen and (max-width: 1180px) {
  .process .container {
    width: 20rem;
  }
}

@media screen and (max-width: 800px) {
  .processline,
  .process svg {
    left: 13%;
  }

  .process svg {
    width: 4rem;
  }

  .process .container {
    left: 12%;
    width: 65%;
    margin-bottom: 3rem;
  }

  .left-container.hiddenSection {
    transform: translateX(100%);
  }
  .left-container.showSection {
    opacity: 1;
    filter: unset;
    transform: unset;
  }
}

/* ================================================================ */

.infinite {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15rem 0 10rem 0;
}

.scroll {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #fff,
    #fff,
    transparent
  );
}

.scroll div {
  white-space: nowrap;
  animation: animateScroll var(--t) linear infinite;
  animation-delay: calc(var(--t) * -1);
}

.scroll div:nth-child(2) {
  animation: animateScroll2 var(--t) linear infinite;
  animation-delay: calc(var(--t) / -2);
}

@keyframes animateScroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animateScroll2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

.scroll div span {
  display: inline-flex;
  text-transform: uppercase;
  font-family: "AgencyFb";
  letter-spacing: 0.2em;
  margin: 10px;
  background: var(--secondary-bg);
  color: var(--primary-font-color);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s;
  font-size: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  user-select: none;
}

.scroll div span:hover {
  background: var(--accent-Color);
}

/* ================================================================ */

.ball {
  position: absolute;
  outline: none;
  top: 0;
  right: 0;
  mix-blend-mode: plus-lighter;
}

.threeBall{
  height: 100%;
  width: 100%;
  min-height: 100vh;
  font-family: 'AgencyFb';
  position: relative;
  display: flex;
  justify-content: center;
  align-items: top;
}

.threeBall p{
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  max-width: 55ch;
  padding: 1rem;

}

.threeBall span {
  color: var(--primary-font-color);
  opacity: .1;
}



.ball-holder{
  height: 100%;
  width: 100%;
}


/* ================================================================ */
#moreServices {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  flex-direction: column;
  font-family: "AgencyFb";
}

#moreServices h1 {
  color: var(--primary-font-color);
  align-self: flex-start;
  font-size: clamp(2rem, 15vw, 4.5rem);
  padding: 2rem;
  padding-left: 0;
}

.moreServices-holder {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.serviceItem {
  position: relative;
  background-color: var(--secondary-bg);
  overflow: hidden;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: column;
}

.serviceItem svg {
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  object-fit: cover;
  object-position: center;
  clip-path: circle(0% at center);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.serviceItem h2,
.serviceItem p {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.serviceItem h2 {
  color: var(--primary-font-color);
  font-size: 3rem;
  align-self: top;
}

.serviceItem p {
  align-self: center;
  color: var(--secondary-font-color);
  font-size: 1.3rem;
}

@media (max-width: 850px) {
  .moreServices-holder {
    grid-template-columns: auto;
  }

  .serviceItem svg {
    clip-path: circle(100% at center) !important;
    opacity: 0.1;
  }

}

/* ================================================================ */
#contact {
  padding: 5rem 0 0 0;
}

.contact-bar {
  width: 80%;
  background-color: unset;
  border-radius: 0px 50vw 50vw 0;
  border: 2px solid var(--accent-Color);
  border-left: unset;
  padding: 1%;
  padding-left: 10%;
  position: relative;
  font-family: "AgencyFb";
  transition: all 0.3s ease;
}

.contact-bar h1 {
  font-size: clamp(1.7rem, 8vw, 6rem);
  color: var(--primary-font-color);
  text-wrap: nowrap;
}

.contact-bar p {
  padding-top: 0.5rem;
  font-size: clamp(0.9rem, 5vw, 2.5rem);
  color: var(--secondary-font-color);
}

.contact-svg {
  display: flex;
  position: absolute;
  height: 100%;
  width: 16vw;
  right: 0;
  border-radius: 50vw;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  transition: 0.3s ease;
  top: 0;
}

.contact-link {
  text-decoration: none;
}

.contact-bar:hover {
  -webkit-box-shadow: 0px 0px 80px 4px rgba(107, 99, 255, 0.9);
  -moz-box-shadow: 0px 0px 80px 4px rgba(107, 99, 255, 0.9);
  box-shadow: 0px 0px 80px 4px rgba(107, 99, 255, 0.9);
}

@media (max-width: 1050px) {
  .contact-svg svg {
    width: 4rem;
    height: 4rem;
  }

  .contact-bar {
    width: 95%;
  }

  .contact-svg {
    width: 20vw;
  }
}

/* ================================================================ */

.fingerprint{
  position: fixed;
  left: 0.4rem;
  bottom: 0.6rem;
  z-index: 100;
}

.fingerprint button{
  background-color: transparent;
  border: unset;

}

.fingerprint img{
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
  transition: all .3s ease-in-out;
}

.fingerprint img:hover{
  opacity: 1;
  transform: scale(1.2);
}

/* ================================================================ */