/*/ FONTS IMPORT /*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700;9..40,800;9..40,900&display=swap");
/*/ FONTS IMPORT LOCAL /*/
@font-face {
  font-family: "";
  src: url("../font/");
}
/*/ VARIABLES /*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
}

.theme-text {
  font-weight: 300;
  line-height: 24px;
}

.container {
  max-width: 1440px;
}

a {
  transition: 0.2s ease-in;
  color: #fff;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
  color: #fff;
}

h2 {
  font-size: 36px;
  font-weight: 750;
}

h3 {
  font-size: 24px;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*/ THEME VIDEO LINK /*/
.theme-video-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  transition: 0.1s ease-in;
}
.theme-video-link img {
  width: 24px;
  transition: 0.2s ease-in;
}
.theme-video-link:hover img {
  filter: brightness(0.8);
}

/*/ THEME BUTTON /*/
.theme-button {
  padding: 8px 20px;
  background: linear-gradient(180deg, var(--myColor1) 0%, var(--myColor2) 100%);
  font-family: "JUST Sans Variable";
  font-size: 17px;
  display: inline-block;
  transition: --myColor1 0.5s, --myColor2 0.2s, transform 0.2s ease-in;
  border-radius: 99px;
  text-decoration: none;
}
.theme-button:hover {
  --myColor1: #F8C86A;
  --myColor2: #F6A400;
  transform: translateY(-1px);
}

@property --myColor1 {
  syntax: "<color>";
  initial-value: #F6A400;
  inherits: false;
}
@property --myColor2 {
  syntax: "<color>";
  initial-value: #F8C86A;
  inherits: false;
}
/*/ BURGER TRIGGER /*/
.burger-trigger {
  position: relative;
  height: 22px;
  width: 30px;
  z-index: 15;
  margin-right: 12px;
  display: none;
  cursor: pointer;
}
.burger-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 9.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 9.5px;
}

/*/ THEME STYLING /*/
.theme-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  padding: 40px 0;
}
.theme-header-wrapper {
  display: flex;
  justify-content: space-between;
}
.theme-header-wrapper-logo {
  width: 200px;
}
.theme-header-wrapper-navmenu {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.16) 63.94%);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}
.theme-header-wrapper-navmenu ul {
  position: relative;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-column-gap: 46px;
       column-gap: 46px;
  align-items: center;
}
.theme-header-wrapper-navmenu ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}
.theme-header-wrapper-navmenu ul li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  border-radius: 99px;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.theme-header-wrapper-navmenu ul li a:hover::after {
  height: 3px;
  opacity: 1;
}
.theme-header-wrapper-navmenu ul .menu-indicator {
  position: absolute;
  height: 3px;
  bottom: -1px;
  left: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.theme-header-wrapper-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.theme-hero {
  z-index: 5;
  top: 0;
  position: relative;
  background: radial-gradient(circle at 99% 100%, #ff9900, transparent 30%), radial-gradient(circle at 92% 74%, #ff0066, transparent 49%), radial-gradient(circle at -28% -27%, #6600ff, transparent 50%);
  background-color: #0f0c29;
  /* base color */
  text-align: center;
}
.theme-hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
  min-height: 680px;
  max-height: 1000px;
}
.theme-hero-wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  max-width: 890px;
}
.theme-hero-wrapper-text {
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 0 24px 0;
  max-width: 770px;
}
.theme-hero-wrapper-buttons {
  display: flex;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
.theme-hero-wrapper-brands {
  margin-top: 58px;
  display: flex;
  align-items: center;
  -moz-column-gap: 68px;
       column-gap: 68px;
}
.theme-hero-wrapper-brands-single {
  opacity: 0.5;
  max-height: 44px;
  transition: 0.1s ease-in;
}
.theme-hero-wrapper-brands-single img {
  height: 100%;
}
.theme-hero-wrapper-brands-single:hover {
  opacity: 1;
}
.theme-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/noise.svg");
  background-repeat: repeat;
  opacity: 0.24;
  pointer-events: none;
  z-index: 1;
}

.theme-report {
  position: relative;
  z-index: 15;
  top: -150px;
  margin-bottom: -150px;
}
.theme-report-image {
  border-radius: 20px;
  border: 16px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px -20px 200px 0px rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
}
.theme-report-image img {
  border-radius: 8px;
  position: relative;
  width: calc(100% + 2px);
  left: -1px;
  height: calc(100% + 2px);
  top: -1px;
}
.theme-report-content-text {
  padding-bottom: 4px;
}

.theme-workflow {
  padding: 120px 0 42px 0;
}
.theme-workflow h2 {
  text-align: center;
}
.theme-workflow .subheader {
  text-align: center;
  margin: 0;
  width: 60%;
}
.theme-workflow .texts {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.theme-workflow-card {
  height: 100%;
  border-radius: 4px;
  box-shadow: 0px 4px 20px 0px rgba(46, 20, 60, 0.1);
  padding: 16px 16px 40px 20px;
  padding-bottom: 0px;
}
.theme-workflow-card-link {
  color: #000;
  text-decoration: none;
}
.theme-workflow-card-link-top {
  display: flex;
  justify-content: space-between;
}
.theme-workflow-card-link-top h3 {
  max-width: 170px;
  padding-top: 24px;
}
.theme-workflow-card-link-top-icon {
  width: 40px;
  transition: 0.2s ease-in;
}
.theme-workflow-card-link-text {
  padding: 8px 4px 12px 0;
  font-size: 16px;
}
.theme-workflow-card-link-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  color: #E62353;
  text-decoration: none;
  font-size: 16px;
}
.theme-workflow-card-link-link img {
  width: 14px;
  transition: 0.2s ease-in;
}
.theme-workflow-card-link:hover {
  color: #000;
  transform: translateY(-5px);
}
.theme-workflow-card-link:hover .theme-workflow-card-link-link {
  color: #E62353;
}
.theme-workflow-card-link:hover .theme-workflow-card-link-link img {
  transform: translateX(3px);
}
.theme-workflow-card-link:hover .theme-workflow-card-link-top-icon {
  filter: brightness(0.8);
}

.theme-image_content {
  padding: 44px 0 75px 0;
}
.theme-image_content-image {
  border-radius: 8px;
  background: #D9D9D9;
  overflow: clip;
  aspect-ratio: 580/468;
}
.theme-image_content-image img {
  height: 100%;
}
.theme-image_content-content-text {
  padding: 20px 0 24px 0;
}
.theme-image_content-content-brands {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-top: 50px;
}
.theme-image_content-content-brands-single {
  max-width: 240px;
}

.theme-testimonials {
  padding: 75px 0 60px 0;
}
.theme-testimonials h2 {
  text-align: center;
  margin-bottom: 90px;
}
.theme-testimonials-grid {
  margin: 0 -15px 0 -15px;
  display: block;
}
.theme-testimonials-grid-sizer {
  width: 50%;
}
.theme-testimonials-grid-item {
  width: calc(50% - 30px);
  border-radius: 8px;
  border: 1px solid #DADADA;
  padding: 40px 32px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.theme-testimonials-grid-item-name {
  font-weight: 750;
}
.theme-testimonials-grid-item-logo {
  margin-top: 8px;
  max-height: 50px;
  max-width: 170px;
}

.theme-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 99% 113%, #ff9900, transparent 17%), radial-gradient(circle at 92% 122%, #ff0066, transparent 49%), radial-gradient(circle at -28% -27%, #6600ff, transparent 39%);
  background-color: #0f0c29;
  /* base color */
  padding: 40px 0;
  border-radius: 8px;
  box-shadow: 0px 4px 80px 0px rgba(46, 20, 60, 0.4);
  text-align: center;
}
.theme-cta-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/noise.svg");
  background-repeat: repeat;
  opacity: 0.24;
  pointer-events: none;
  z-index: 1;
}
.theme-cta-wrapper h2 {
  color: #fff;
  max-width: 630px;
}
.theme-cta-wrapper-buttons {
  display: flex;
  -moz-column-gap: 28px;
       column-gap: 28px;
  margin-top: 24px;
}

.theme-faq {
  padding: 130px 0 110px 0;
}
.theme-faq h2 {
  text-align: center;
}
.theme-faq-wrapper {
  padding-top: 27px;
}
.theme-faq-wrapper-accordion {
  border-top: 1px solid #EAE7EB;
  border-bottom: 1px solid #EAE7EB;
  height: 100%;
}
.theme-faq-wrapper-accordion-item {
  padding: 20px 12px 20px 0;
}
.theme-faq-wrapper-accordion-item.active .theme-faq-wrapper-accordion-item-header::after {
  transform: scaleY(1);
}
.theme-faq-wrapper-accordion-item:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}
.theme-faq-wrapper-accordion-item-header {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.theme-faq-wrapper-accordion-item-header::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  position: absolute;
  right: 0;
  color: #000;
  transition: 0.2s ease-in-out;
  transform: scaleY(-1);
}
.theme-faq-wrapper-accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  padding-right: 20px;
}
.theme-faq-wrapper-accordion-item-body p {
  margin: 0;
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
}

.theme-footer {
  background: rgba(46, 20, 60, 0.04);
}
.theme-footer-container {
  padding: 64px 0px 20px;
  display: flex;
  justify-content: space-between;
}
.theme-footer-name {
  font-size: 24px;
  font-weight: 600;
}
.theme-footer-description {
  color: #000;
  font-size: 18px;
}
.theme-footer-contact {
  margin-top: 12px;
}
.theme-footer-contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-footer-contact-point:not(:last-child) {
  margin-bottom: 12px;
}
.theme-footer-contact-point p {
  margin: 0;
}
.theme-footer-contact-point a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
.theme-footer-menu-title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.theme-footer-menu ul {
  padding: 0;
  list-style: none;
}
.theme-footer-menu ul li:not(:last-child) {
  margin-bottom: 12px;
}
.theme-footer-menu ul a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
.theme-footer-socials {
  padding: 0px 0px 64px;
  position: relative;
  overflow: hidden;
}
.theme-footer-socials i {
  font-size: 24px;
  color: #000000;
  margin-right: 12px;
}
.theme-footer-socials::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/footereye.svg");
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  transform: translate(50%);
  top: 50%;
}
.theme-footer-bottom {
  background: rgba(46, 20, 60, 0.1);
  padding: 10px 0px;
}
.theme-footer-bottom p {
  margin: 0;
}
.theme-footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-footer-bottom-container-right ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}
.theme-footer-bottom-container-right ul a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

/*/ Media Query /*/
@media screen and (max-width: 992px) {
  .theme-workflow-card {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .theme-header-wrapper-navmenu {
    display: none;
  }
  .theme-header-wrapper-right {
    display: none;
  }
  .burger-trigger {
    display: block;
  }
  .theme-image_content-content {
    margin-top: 32px;
  }
  .theme-image_content-content-brands {
    padding-top: 0px;
  }
}
@media screen and (max-width: 576px) {
  .theme-header-wrapper {
    justify-content: center;
  }
  .theme-hero-wrapper h1 {
    font-size: 36px;
  }
  .theme-hero-wrapper-brands {
    margin-top: 24px;
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
  .theme-report h2 {
    font-size: 32px;
  }
  .theme-report-image {
    margin-top: 50px;
  }
  .theme-testimonials-grid-item {
    padding: 20px 16px 20px 16px;
    width: 100%;
  }
  .theme-testimonials-grid-item-logo {
    max-height: 40px;
    max-width: 100px;
  }
  .theme-workflow .subheader {
    width: 100%;
  }
  .theme-cta-wrapper h2 {
    font-size: 28px;
  }
  .theme-footer-container {
    flex-direction: column;
  }
  .theme-footer-contact-point:last-child {
    margin-bottom: 24px;
  }
  .theme-footer-socials::after {
    transform: translate(45%);
  }
  .theme-footer-bottom-container {
    display: block;
  }
  .theme-footer-bottom-container-right ul {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */