.button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  padding: 12px 24px;
  background: linear-gradient(300deg, #E44332 -18.36%, #F38E16 105%);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;
}
.button.hollow {
  background: transparent;
  color: #F38E16;
  border: 1px solid #F38E16;
}
.button.small {
  padding: 6px 16px;
}
.button:before {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .button:hover {
    box-shadow: 0 4px 16px rgba(243, 142, 22, 0.3);
    transform: scale(1.01);
  }
  .button:hover.hollow {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
}

.ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .ctas {
    flex-direction: row;
    justify-content: center;
  }
}

a, .link {
  text-decoration: none;
  color: inherit;
  position: relative;
  width: auto;
  flex-wrap: wrap;
  padding-bottom: 6px;
}
@media only screen and (min-width: 1024px) {
  a:before, .link:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    right: 100%;
    background: linear-gradient(300deg, #E44332 -18.36%, #F38E16 105%);
    transition: all 0.3s ease;
  }
  a:hover::before, .link:hover::before {
    right: 0;
  }
}

:root {
  font-family: Helvetica Neue, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei", "Source Han Sans CN", sans-serif;
}

.t-p-xs {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.t-p-s {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

p, .t-p-m {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
}

h5, .t-h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

h4, .t-h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

h3, .t-h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

h2, .t-h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h1, .t-h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.text-grad {
  background: linear-gradient(300deg, #E44332 -18.36%, #F38E16 105%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.learn-more {
  display: flex;
  align-items: center;
}
.learn-more img {
  padding-left: 8px;
  width: 36px;
}

.sentence .t-h3 {
  width: 100%;
  margin: auto;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  .sentence .t-h3 {
    width: 80%;
  }
}

.hero h1 {
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
}
.hero .ctas {
  padding: 48px 0;
}
.hero.hero--inner {
  padding: 60px 48px;
}
@media only screen and (min-width: 768px) {
  .hero.hero--inner .t-h1, .hero.hero--inner .t-h3 {
    width: 80%;
  }
}

.proof {
  padding: 60px 24px;
  max-width: none;
  width: 100%;
  overflow-x: hidden;
}
.proof .carousel {
  width: 100%;
  position: relative;
}
.proof .carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 24s linear infinite;
}
.proof .carousel-item {
  width: 240px; /* Adjust the size of your logos */
  margin: 24px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about article {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about article h2 {
  padding-top: 24px;
}
.about article h3, .about article .t-h3 {
  margin: 6px 0;
}
.about article .logo {
  width: 80%;
  max-width: 480px;
  margin: 36px auto;
}
.about article .learn-more {
  padding-top: 24px;
}
.about article.video {
  flex: 2;
  width: 100%;
}
.about article.video .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 16px;
  box-shadow: 0 0px 40px rgba(243, 142, 22, 0.05);
  overflow: hidden;
}
.about article.video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media only screen and (min-width: 768px) {
  .about {
    flex-direction: row;
  }
  .about article:first-of-type {
    padding-right: 48px;
    flex: 1;
  }
  .about article:first-of-type .logo {
    margin: 36px auto 0;
  }
}

.services {
  flex-wrap: wrap;
}
.services article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  padding: 60px 24px;
  border: 1px solid #fff;
}
@media only screen and (min-width: 768px) {
  .services {
    flex-direction: row;
  }
  .services article {
    flex: 1;
  }
}
.services .t-h2 {
  text-align: left;
}
.services .t-h1 {
  padding-bottom: 48px;
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .services .t-h1 {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .services.services--three-layout article {
    width: 33.3%;
    flex: auto;
  }
}
.services.services--three-layout article li {
  padding: 6px 0;
}

.how-we-work {
  align-items: flex-start;
  justify-content: center;
}
.how-we-work .subtitle {
  width: 100%;
  margin-top: 0;
}
.how-we-work .t-h1 {
  width: 100%;
}
.how-we-work article {
  padding: 48px 0;
  position: relative;
}
.how-we-work article .big-number {
  position: absolute;
  font-size: 240px;
  left: 0;
  top: -36px;
  z-index: -1;
  opacity: 0.2;
}
.how-we-work article .t-h3,
.how-we-work article .t-h5 {
  text-align: left;
  margin: 0 0 12px 0;
}
@media only screen and (min-width: 768px) {
  .how-we-work {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .how-we-work article {
    width: 50%;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .how-we-work article {
    width: 25%;
  }
}

.lets-talk .t-h1 {
  padding-bottom: 0;
  margin-bottom: 0;
}

.testimonial img {
  width: 240px;
}
.testimonial .t-h3 {
  font-style: italic;
}
.testimonial p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .testimonial {
    width: 84%;
  }
}

.faq .t-h2 {
  width: 100%;
  padding-bottom: 36px;
}
.faq article {
  padding: 0;
}
.faq article div {
  padding-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .faq article {
    width: 100%;
    max-width: 640px;
  }
}
@media only screen and (min-width: 1024px) {
  .faq article {
    width: 50%;
    padding: 0 24px;
  }
}
.faq a:before {
  bottom: 4px;
}

.projects article {
  text-align: center;
  width: 100%;
  padding: 48px 16px;
}
@media only screen and (min-width: 1024px) {
  .projects article {
    width: 33.3%;
  }
}
.projects article .big-number, .projects article .t-h3, .projects article .t-h5 {
  text-align: center;
}
.projects article .big-number {
  position: static;
  opacity: 1;
  font-size: 120px;
  line-height: 1;
}
.projects article .big-number span {
  font-size: 60px;
  padding-left: 8px;
}
.projects article img {
  opacity: 0.5;
  width: 100%;
  max-width: 240px;
}

.about-page .t-h2 {
  text-align: left;
}
.about-page .about-container {
  gap: 48px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .about-page .about-container {
    flex-direction: row;
  }
}
.about-page .about-container .content {
  flex: 1;
}
.about-page .about-container .content .t-h4 {
  margin-top: 48px;
}
.about-page .about-container .content .button {
  display: inline-block;
}
.about-page .about-container .profiles {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.about-page .about-container .profiles .t-h2, .about-page .about-container .profiles p {
  width: 100%;
}
.about-page .about-container .profiles p {
  margin: 0 0 12px;
}
.about-page .about-container .profiles p.space-top {
  margin-top: 24px;
}
.about-page .about-container .profiles .profile {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-page .about-container .profiles .profile .pic {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(243, 142, 22, 0.2);
}
@media only screen and (min-width: 1024px) {
  .about-page .about-container .profiles .profile .pic {
    aspect-ratio: 4/3;
  }
}
.about-page .about-container .profiles .profile p {
  text-align: center;
  padding: 12px 0;
  margin: 0;
}
.about-page .about-container .profiles .profile .name, .about-page .about-container .profiles .profile .role {
  padding: 0;
}
.about-page .about-container .profiles .profile .role {
  font-size: 14px;
  color: #6D6D6D;
  padding-bottom: 12px;
}
.about-page .about-container .profiles .profile a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 2px;
  background: rgba(38, 38, 38, 0.5);
  color: #F38E16;
  transition: all 0.3s ease;
  border-radius: 24px;
  height: 48px;
  width: 48px;
}
.about-page .about-container .profiles .profile a:before {
  display: none;
}
.about-page .about-container .profiles .profile a img {
  width: 24px;
}
@media only screen and (min-width: 1024px) {
  .about-page .about-container .profiles .profile a:hover {
    background: rgba(38, 38, 38, 0.95);
    box-shadow: 0 4px 16px rgba(243, 142, 22, 0.3);
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  position: fixed;
  top: 12px;
  left: 8px;
  right: 8px;
  margin: 0;
  padding: 18px 24px;
  background: rgba(38, 38, 38, 0.3);
  z-index: 150;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.header .logo {
  height: 24px;
  transition: all 0.3s ease;
  padding: 0;
}
.header .logo:before {
  display: none;
  opacity: 0;
}
.header .logo img {
  height: 100%;
}
.header nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header nav ul {
  height: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  color: #E7E7E7;
}
@media only screen and (min-width: 768px) {
  .header nav ul {
    width: auto;
  }
}
.header nav ul li {
  padding: 12px 0;
  display: flex;
  justify-content: flex-end;
}
.header nav ul li a {
  padding: 6px 0;
  font-size: 16px;
  line-height: 24px;
}
.header nav .menu {
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header nav .menu .vector {
  position: relative;
  width: 16px;
  height: 1px;
  background-image: linear-gradient(300deg, #E44332 -18.36%, #F38E16 105%);
  transition: all 0.3s ease;
  z-index: 1;
}
.header nav .menu .vector.top {
  margin-left: 8px;
}
.header nav .menu .vector.middle {
  width: 100%;
  z-index: 2;
}
.header.active {
  background: #262626;
}
.header.active nav ul {
  padding: 12px 0;
  width: auto;
  height: 252px;
}
.header.active .menu .middle {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}
.header.active .menu .top {
  transform: rotate(-45deg);
  transform-origin: right 50%;
}
.header.active .menu .bottom {
  transform: rotate(-45deg);
  transform-origin: left 50%;
}
.header.active .logo {
  width: 0;
  opacity: 0.1;
}
@media only screen and (min-width: 768px) {
  .header.active .logo {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .header {
    left: 24px;
    right: 24px;
  }
  .header nav .menu {
    display: none;
  }
  .header nav ul {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .header nav ul li {
    padding: 0;
  }
}

footer {
  margin: 120px 24px 24px;
  padding: 0;
  background: rgba(38, 38, 38, 0.3);
  z-index: 150;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  gap: 48px;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
}
@media only screen and (min-width: 1024px) {
  footer {
    padding: 48px;
  }
}
@media only screen and (min-width: 1488px) {
  footer {
    margin: auto;
  }
}
footer .section {
  padding: 0;
  margin: 0;
}
footer .links {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  footer .links {
    flex-direction: row;
  }
}
footer .links ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  footer .links ul {
    width: 50%;
  }
}
footer .links ul li {
  height: 36px;
  display: flex;
  align-items: center;
}
footer .links ul li.active {
  color: #fff;
}
footer .links ul li p {
  color: #B0B0B0;
  margin: 0;
}
footer .links ul li a {
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
footer .brand {
  padding: 48px;
}
footer .brand .logo {
  width: 70%;
  text-align: center;
}
footer .brand .logo:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  footer {
    flex-direction: row;
  }
  footer .links {
    flex: 2;
  }
  footer .brand {
    flex: 1;
    align-items: flex-end;
  }
  footer .brand .logo {
    width: 100%;
  }
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  background: #262626;
  color: #fff;
  overflow-x: hidden;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

.main-container {
  padding-top: 120px;
  margin: auto;
  position: relative;
  overflow-x: hidden;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  max-width: 1440px;
  margin: auto;
}
@media only screen and (min-width: 1024px) {
  section {
    padding: 120px 48px;
  }
}
section .t-h1, section .t-h2, section .t-h3 {
  text-align: center;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol li {
  padding: 6px 0;
}

li {
  margin: 0;
  padding: 0;
}

.bg {
  position: absolute;
  z-index: -10;
}
.bg.bg-1 {
  left: -20px;
  top: -8px;
}
.bg.bg-2 {
  left: -295px;
  bottom: 0;
}
.bg.bg-3 {
  left: 200px;
  bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .bg.bg-3 {
    left: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .bg.bg-3 {
    left: 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .bg.bg-3 {
    left: 960px;
  }
}
@media only screen and (min-width: 1440px) {
  .bg.bg-3 {
    left: 1600px;
  }
}

b {
  color: grey;
}

.accent {
  font-weight: 500;
  background: rgba(243, 142, 22, 0.5);
  padding: 3px 4px;
}

#loom-companion-mv3 section {
  padding: 0;
}

/*# sourceMappingURL=main.css.map */
