:root {
  --background-color: #10100e;
  --second-background-color: #0d0d0c;
  --font-color: #ffffe3;
  --body-font-family: "Clash Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-smooth: always;
  font-smooth: antialiased;
  scroll-behavior: smooth !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-scroll-behavior: smooth !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--background-color);
  font-family: var(--body-font-family);
  color: var(--font-color);
  width: 80%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  margin-inline: auto;
}

body::-webkit-scrollbar {
  width: 0.4em;
  background: #111111;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
  background-size: 400% 400%;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(57, 57, 57, 0.5254901961);
  border-radius: 12px;
}

hr {
  opacity: 5%;
}

b {
  font-weight: 500;
}

.go-to-top-button {
  position: fixed;
  bottom: 5%;
  left: 5%;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 1rem 4rem 1rem;
}
.navbar ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.navbar ul li a {
  color: var(--font-color);
  text-decoration: none;
  font-weight: 400;
  opacity: 85%;
  font-size: 15px;
}
.navbar ul li a:hover {
  opacity: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 0 6rem 0;
  flex-direction: column;
}
.hero .grid {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  z-index: -1;
}
.hero .grid-svg {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero h1 {
  padding: 2rem 0;
  line-height: 70px;
  font-size: 6rem;
  letter-spacing: -2px;
  font-weight: 700;
}
@media screen and (max-width: 720px) {
  .hero h1 {
    font-size: 5rem;
  }
}
.hero p {
  margin-top: -1rem;
  font-size: 16px;
}
@media screen and (max-width: 720px) {
  .hero p {
    font-size: 14px;
  }
}
.hero .hero-buttons {
  display: flex;
  gap: 10px;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.hero .hero-buttons a {
  flex-grow: 1;
}

.projects {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.projects .projects-cards-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.projects h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
}
.projects .project-card {
  background-color: var(--second-background-color);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 2rem;
  border-radius: 10px;
  width: 50rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.projects .project-card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 880px) {
  .projects .project-card {
    flex-direction: column !important;
    width: auto;
  }
}
.projects .project-card .project-card-image img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects .project-card .project-card-information h3 {
  font-weight: 500;
  font-size: 2rem;
  padding-bottom: 0.6rem;
}
.projects .project-card .project-card-information p {
  padding-top: 1rem;
  opacity: 85%;
  font-size: 16px;
}
.projects .project-card .project-card-information a {
  margin: 1.7rem 0 2rem 0;
  display: flex;
  font-size: 14px;
  align-items: center;
  gap: 5px;
}

.testimonials {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonials-cards-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.testimonials h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
}
.testimonials .testimonial-card {
  background-color: var(--second-background-color);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 2rem;
  border-radius: 10px;
  width: 15rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 400px) {
  .testimonials .testimonial-card {
    width: auto;
  }
}
.testimonials .testimonial-card .testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials .testimonial-card .testimonial-card-header .testimonial-card-image img {
  width: 50px;
  border-radius: 50%;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-card .testimonial-card-header h3 {
  font-weight: 600;
}
.testimonials .testimonial-card .testimonial-card-header p {
  font-size: 14px;
  opacity: 85%;
}

.about {
  margin: 4rem 0;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
}
.about h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
}
.about .about-content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 1rem 0;
  gap: 5rem;
}
.about .about-content .about-image img {
  max-width: 17rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: auto;
}
.about .about-content .about-information {
  width: 30rem;
}

.services {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden !important;
  position: relative;
  text-align: center !important;
}
.services::before, .services::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 7rem;
  z-index: 2;
}
.services::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color) 0%, transparent 100%);
}
.services::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color) 0%, transparent 100%);
}
.services .services-cards-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
  width: 60%;
}
.services h2 {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
}
.services .services-card {
  display: flex;
  flex-grow: 1;
  padding: 1rem;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  opacity: 80%;
}
.services .services-card .services-card-image {
  opacity: 85%;
}
.services .services-card p {
  text-transform: uppercase;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact-cards-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact h2 {
  text-align: center;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
}
.contact .contact-card {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--second-background-color);
  border: 1px solid rgba(255, 255, 255, 0.075);
  padding: 1.5rem;
  width: 6rem;
  opacity: 85%;
  border-radius: 10px;
}
.contact .contact-card .contact-card-image {
  width: 50px;
  height: 50px;
  opacity: 80%;
}
.contact .contact-card .contact-card-text {
  font-size: 1.1rem;
}

.faq {
  margin: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.faq h2 {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  padding-bottom: 2rem;
  text-align: center;
}
.faq .faq-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.111);
}
.faq .faq-item .faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
}
.faq .faq-item .faq-answer {
  padding: 1rem 0 0 0;
  display: none;
}

.footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid #1b1b19;
}
.footer small {
  font-size: 14px;
}
.footer .footer-links {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .footer-links li a {
  font-size: 15px;
  opacity: 85%;
}
.footer .footer-links li a:hover {
  opacity: 100%;
}

a {
  color: unset;
  text-decoration: unset;
}

button {
  background: unset;
  border: unset;
  outline: unset;
}

.primary-button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--font-color);
  justify-content: center;
  align-items: center;
  border: 2px solid var(--font-color);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--font-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-button:hover::before {
  scale: 8;
}

.primary-button:hover {
  color: #212121;
  scale: 1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.primary-button:active {
  scale: 1;
}

.secondary-button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--font-color);
  border: 2px solid var(--font-color);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  color: #212121;
}

.secondary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 8;
  z-index: -1;
  background-color: var(--font-color);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}/*# sourceMappingURL=style.css.map */