@charset "UTF-8";
.slick-dots {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  display: block;
  position: relative;
  background-color: #404040;
  width: 8px;
  height: 8px;
  padding: 0;
  line-height: 200px;
  overflow: hidden;
  border-radius: 1rem;
  transition: width 0.5s ease, background-color 0.5s ease;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: #ffb758;
  width: 24px;
}

.prev.slick-arrow,
.next.slick-arrow {
  cursor: pointer;
}

/* stylelint-disable at-rule-disallowed-list */
.btn-secondary {
  all: unset;
  display: inline-block;
  word-break: break-word;
  white-space: normal;
  position: relative;
  text-align: center;
  font-size: 18px;
  color: white;
  background: black;
  overflow: hidden;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 13px 32px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
  border: none;
  line-height: 120%;
  transition: background-color 1.5s ease-in;
  border-style: hidden;
}
@media screen and (min-width: 576px) {
  .btn-secondary {
    white-space: nowrap;
  }
}
.btn-secondary::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 10px);
  height: 100%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: inset(0 100% 0 0 round 30px);
  transition: clip-path 0.5s ease;
  pointer-events: none;
  border-radius: 30px;
  padding: 15px 33px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border-style: hidden;
}
.btn-secondary:focus, .btn-secondary:hover {
  border: none;
  color: white;
  background-color: white;
}
.btn-secondary:focus::before, .btn-secondary:hover::before {
  clip-path: inset(0 0% 0 0 round 30px);
}

.btn-primary {
  all: unset; /* Reset all inherited styles */
  background-color: #ffb758;
  color: #0d0d0d;
  border-radius: 24px;
  border: 0;
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  /* Initial background and text color */
  background: #ffb758;
  color: #0d0d0d;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 24px;
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-primary:hover::before {
  left: 0;
}
.btn-primary:hover {
  color: #fff;
  background-color: #000; /* Smoothly transition the main background */
}
.btn-primary span {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.btn-orange {
  all: unset;
  display: inline-block;
  word-break: break-word;
  white-space: normal;
  position: relative;
  text-align: center;
  font-size: 18px;
  color: black;
  background: #ffb758;
  overflow: hidden;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 13px 32px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
  border: none;
  line-height: 120%;
  transition: background-color 1.5s ease-in;
  border-style: hidden;
}
@media screen and (min-width: 576px) {
  .btn-orange {
    white-space: nowrap;
  }
}
.btn-orange::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 10px);
  height: 100%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: inset(0 100% 0 0 round 30px);
  transition: clip-path 0.5s ease;
  pointer-events: none;
  border-radius: 30px;
  padding: 15px 33px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border-style: hidden;
}
.btn-orange:focus, .btn-orange:hover {
  border: none;
  color: black;
  background-color: white;
}
.btn-orange:focus::before, .btn-orange:hover::before {
  clip-path: inset(0 0% 0 0 round 30px);
}

.labeled-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .labeled-list {
    gap: 28px;
  }
}
.labeled-list .list-wrapper {
  display: flex;
  flex-flow: wrap;
  padding-left: 32px;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .labeled-list .list-wrapper {
    display: block;
  }
}
.labeled-list .list-wrapper li {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.32px;
  padding: 4px 0;
  color: #c2c2c2;
}
.labeled-list .list-wrapper.two-cols li {
  width: 50%;
}
.labeled-list .list-label {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  height: 30px;
  position: relative;
  padding-left: 16px;
  margin-left: 16px;
}
@media screen and (min-width: 1024px) {
  .labeled-list .list-label {
    height: 28px;
  }
}
.labeled-list .list-label::before {
  position: absolute;
  content: " ";
  width: 3px;
  border-radius: 1rem;
  background-color: #52f18f;
  height: 100%;
  left: 0;
  top: 0px;
}
.labeled-list a {
  position: relative;
}
.labeled-list a:hover {
  color: inherit;
}
.labeled-list a:hover::before {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1rem;
  display: block;
  bottom: 0;
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .labeled-list.two-cols .list-wrapper {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 32px;
         column-gap: 32px;
    list-style-position: inside;
  }
  .labeled-list.two-cols .list-wrapper li {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}

.list-toc {
  position: relative;
  left: 10px;
}

.card-top-icon {
  position: relative;
  padding-left: 24px;
}
.card-top-icon::before {
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #52f18f;
  border-radius: 9999px;
}
.card-top-icon .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 120% */
  padding-bottom: 14px;
}
.card-top-icon .icon {
  padding-bottom: 14px;
  display: inline-block;
}
.card-top-icon .icon::before {
  background-color: #52f18f;
  width: 32px;
  height: 32px;
}
.card-top-icon p {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  .card-top-icon p {
    line-height: 28px;
  }
}

.card-list .icon::before {
  background-color: #00ff80;
  width: 32px;
  height: 32px;
}

.page--pt {
  padding-top: 78px;
}
@media screen and (min-width: 1024px) {
  .page--pt {
    padding-top: 68px;
  }
}

a:hover {
  color: inherit;
}

.view-all {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .view-all {
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.64px;
  }
}
.view-all::after {
  font-family: "aw";
  content: "r";
  font-size: 24px;
}
.view-all:hover {
  color: inherit;
}

#lottie-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lottie-loader #lottie-animation {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lottie-loader #lottie-animation svg {
  width: 80vw;
  height: 40vh;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

@media screen and (min-width: 1024px) {
  #lottie-loader #lottie-animation svg {
    width: 50vw;
    height: 50vh;
  }
}
.table-policy {
  table-layout: fixed;
  width: 100%;
}
.table-policy tr {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.table-policy th, .table-policy td {
  padding: 16px 20px;
}
.table-policy td.right-column {
  color: var(--Light-Gray, #E2E2E2);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.table-policy td:first-child,
.table-policy th:first-child {
  width: 31.84%;
}

#masthead {
  transition: top 0.2s ease-in-out;
}

.section-notification-bar ~ #content .main_content_wrapper .homepage-new::before {
  top: 0px;
}
.section-notification-bar ~ #masthead {
  top: 32px;
}
.section-notification-bar .notification-bar {
  display: flex;
  width: 100%;
  height: 40px;
  padding: 0px 80px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #3b43fd;
}
.section-notification-bar .notification-bar div {
  color: var(--Shades-White, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 128.571% */
}
.section-notification-bar .notification-bar div a {
  color: var(--Shades-White, #fff);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

body.hide-bar #content .main_content_wrapper .homepage-new::before {
  top: 0;
}
body.hide-bar .section-notification-bar ~ #masthead {
  top: 0;
}

/** Blue bar **/
.topbar-mobile {
  display: none;
}

@media (max-width: 768px) {
  .topbar-desktop {
    display: none;
  }
  .topbar-mobile {
    display: block;
  }
  .section-notification-bar .notification-bar {
    padding: 0px 24px !important;
  }
}
.social-block .social-block-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.social-block .social-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.social-block .social-label .icon-arrow-right-long {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease;
  margin-left: 10px;
}
.social-block .social-label .icon-arrow-right-long::before {
  font-size: 20px;
}
.social-block .social-label:hover {
  color: #52f18f;
}
.social-block .social-label:hover .icon-arrow-right-long {
  max-width: 26px;
  opacity: 1;
}
.social-block .social-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.social-block .social-icons .icon {
  width: 24px;
  height: 24px;
}
.social-block .social-icons .icon::before {
  top: 0;
  left: 0;
  right: inherit;
  margin: 0;
  font-size: 24px;
}
.social-block .social-icons .icon:hover::before {
  color: #52f18f;
}

.card-grid-item .card--title {
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  padding-bottom: 16px;
}
.card-grid-item .card--title a:focus,
.card-grid-item .card--title a:hover {
  color: #52f18f;
}
.card-grid-item .card--title a {
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(3 * 32px * 1em);
  overflow-wrap: anywhere;
}
@supports (line-clamp: 3) {
  .card-grid-item .card--title a {
    display: block;
    line-clamp: 3;
  }
}
.card-grid-item .card--excerpt p {
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(3 * 24px * 1em);
  overflow-wrap: anywhere;
}
@supports (line-clamp: 3) {
  .card-grid-item .card--excerpt p {
    display: block;
    line-clamp: 3;
  }
}
@media screen and (min-width: 1024px) {
  .card-grid-item .card--excerpt p {
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(2 * 24px * 1em);
    overflow-wrap: anywhere;
  }
  @supports (line-clamp: 2) {
    .card-grid-item .card--excerpt p {
      display: block;
      line-clamp: 2;
    }
  }
}

.section-img-swap .img-swap-box-01,
.section-img-swap .img-swap-box-02,
.section-img-swap .img-swap-box-03,
.section-img-swap .img-swap-box-04 {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  border-radius: 1rem;
  transition: transform 1s ease, opacity 0.5s ease;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-img-swap {
  padding-bottom: 80px;
  background-image: url(../images/U.svg);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: 320px;
  background-size: 50%;
}
@media screen and (min-width: 1024px) {
  .section-img-swap {
    padding-bottom: 160px;
    background-position-y: 0;
    background-size: 400px;
  }
}
.section-img-swap .frame-top {
  position: relative;
  height: 50%;
}
.section-img-swap .frame-bottom {
  position: relative;
  height: 50%;
}
@media screen and (min-width: 1024px) {
  .section-img-swap .section--container {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    background-position-y: -60px;
    background-size: 500px;
  }
}
.section-img-swap .img-swap-box-01 {
  background-image: url(../images/section-img-swap/slider-01-a.png);
  width: 32%;
  aspect-ratio: 1;
  bottom: 30%;
  right: 50%;
  max-width: 200px;
}
.section-img-swap .img-swap-box-02 {
  background-image: url(../images/section-img-swap/slider-02-a.png);
  width: 31%;
  aspect-ratio: 25/31;
  border-radius: 1rem;
  bottom: -8%;
  left: 50%;
  max-width: 216px;
}
.section-img-swap .img-swap-box-03 {
  background-image: url(../images/section-img-swap/slider-03-a.png);
  width: 50%;
  max-width: 308px;
  aspect-ratio: 77/56;
  top: -30%;
  right: 50%;
}
.section-img-swap .img-swap-box-04 {
  max-width: 308px;
  background-image: url(../images/section-img-swap/slider-04-a.png);
  width: 52%;
  top: 10%;
  left: 50%;
  aspect-ratio: 77/56;
}
.section-img-swap .frame-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: 550px;
}
@media screen and (min-width: 1024px) {
  .section-img-swap .frame-wrapper {
    aspect-ratio: 4/3;
    height: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .section-img-swap .side-left {
    padding-right: 50px;
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .section-img-swap .side-left {
    padding-right: 124px;
  }
}
.section-img-swap .side-right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-img-swap .side-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-img-swap .side-description {
  padding-bottom: 40px;
}
.section-img-swap h3 {
  padding: 24px 0;
}
.section-img-swap h2 {
  padding: 24px 0;
}
.section-img-swap li {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  padding: 0 0 24px 0;
  color: #c2c2c2;
}
@media screen and (min-width: 1024px) {
  .section-img-swap li {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1%;
  }
}
.section-img-swap.step01 .img-swap-box-01,
.section-img-swap.step01 .img-swap-box-02,
.section-img-swap.step01 .img-swap-box-03,
.section-img-swap.step01 .img-swap-box-04, .section-img-swap.step02 .img-swap-box-01,
.section-img-swap.step02 .img-swap-box-02,
.section-img-swap.step02 .img-swap-box-03,
.section-img-swap.step02 .img-swap-box-04, .section-img-swap.step03 .img-swap-box-01,
.section-img-swap.step03 .img-swap-box-02,
.section-img-swap.step03 .img-swap-box-03,
.section-img-swap.step03 .img-swap-box-04, .section-img-swap.step04 .img-swap-box-01,
.section-img-swap.step04 .img-swap-box-02,
.section-img-swap.step04 .img-swap-box-03,
.section-img-swap.step04 .img-swap-box-04 {
  opacity: 1;
  animation: fadeIn 0.5s ease forwards;
}
.section-img-swap.step01 .img-swap-box-01 {
  transform: translate(100%, 60%);
  background-image: url(../images/section-img-swap/slider-01-b.png);
}
.section-img-swap.step01 .img-swap-box-02 {
  transform: translate(-100%, 80%);
  background-image: url(../images/section-img-swap/slider-02-b.png);
}
.section-img-swap.step01 .img-swap-box-03 {
  transform: translate(100%, 50%);
  background-image: url(../images/section-img-swap/slider-03-b.png);
}
.section-img-swap.step01 .img-swap-box-04 {
  transform: translate(-100%, -125%);
  background-image: url(../images/section-img-swap/slider-04-b.png);
}
.section-img-swap.step02 .img-swap-box-01 {
  transform: translate(0, 70%);
  background-image: url(../images/section-img-swap/slider-01-c.png);
}
.section-img-swap.step02 .img-swap-box-02 {
  transform: translate(0, 80%);
  background-image: url(../images/section-img-swap/slider-02-c.png);
}
.section-img-swap.step02 .img-swap-box-03 {
  transform: translate(100%, -80%);
  background-image: url(../images/section-img-swap/slider-03-c.png);
}
.section-img-swap.step02 .img-swap-box-04 {
  transform: translate(-100%, 20%);
  background-image: url(../images/section-img-swap/slider-04-c.png);
}
.section-img-swap.step03 .img-swap-box-01 {
  transform: translate(100%, 175%);
  background-image: url(../images/section-img-swap/slider-01-d.png);
}
.section-img-swap.step03 .img-swap-box-02 {
  transform: translate(-100%, -20%);
  background-image: url(../images/section-img-swap/slider-02-d.png);
}
.section-img-swap.step03 .img-swap-box-03 {
  transform: translate(100%, -40%);
  background-image: url(../images/section-img-swap/slider-03-d.png);
}
.section-img-swap.step03 .img-swap-box-04 {
  transform: translate(-100%, -20%);
  background-image: url(../images/section-img-swap/slider-04-d.png);
}
.section-img-swap.step04 .img-swap-box-01 {
  transform: translate(0, 10%);
  background-image: url(../images/section-img-swap/slider-01-a.png);
}
.section-img-swap.step04 .img-swap-box-02 {
  transform: translate(0, 5%);
  background-image: url(../images/section-img-swap/slider-02-a.png);
}
.section-img-swap.step04 .img-swap-box-03 {
  transform: translate(0, 10%);
  background-image: url(../images/section-img-swap/slider-03-a.png);
}
.section-img-swap.step04 .img-swap-box-04 {
  transform: translate(0, 5%);
  background-image: url(../images/section-img-swap/slider-04-a.png);
}
.section-img-swap .country-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-img-swap .country-list li {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .section-img-swap .country-list li {
    width: 100%;
  }
}

.section-vertical-slider > div {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  .section-vertical-slider > div {
    flex-flow: column;
  }
}
.section-vertical-slider .left {
  width: 30%;
  padding-right: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: left;
  gap: 8px;
}
@media only screen and (max-width: 1200px) {
  .section-vertical-slider .left {
    width: 90%;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .section-vertical-slider .left {
    padding: 0;
    gap: 0;
    width: 60%;
    margin-bottom: 24px;
  }
}
.section-vertical-slider .vertical-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  --mask-height: 200px;
  mask-image: linear-gradient(to bottom, transparent, black var(--mask-height), black calc(100% - var(--mask-height)), transparent);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black var(--mask-height), black calc(100% - var(--mask-height)), transparent);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .section-vertical-slider .vertical-slider-wrapper {
    width: 66%;
  }
}
.section-vertical-slider .clients-grid-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.section-vertical-slider .clients-grid-container.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.section-vertical-slider .clients-grid-container .partner-slide {
  display: flex;
  flex-flow: row;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}
.section-vertical-slider .clients-grid-container .partner-slide > div {
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  width: 200px;
  height: auto;
  min-height: 160px;
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .section-vertical-slider .clients-grid-container .partner-slide > div {
    width: 100%;
    height: auto;
  }
}
.section-vertical-slider .clients-grid-container .partner-slide > div img {
  width: 80%;
}
.section-vertical-slider .clients-grid-container .partner-slide > div span {
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .section-vertical-slider .clients-grid-container .partner-slide {
    grid-template-columns: auto auto;
    display: grid;
  }
}
@media only screen and (max-width: 1200px) {
  .section-vertical-slider .clients-grid-container {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  .section-vertical-slider .clients-grid-container {
    width: 100%;
  }
}
.section-vertical-slider .clients-grid-container.news-room-version img {
  max-width: 80px;
}

.page-template-template-algoworks-rebranding .py-small {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .py-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.page-template-template-algoworks-rebranding .pb-small, .section-scroll-accordion .content-left, .section-scroll-accordion .left-info, .section-carousel-cards .true_to_your_name h2 {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-small, .section-scroll-accordion .content-left, .section-scroll-accordion .left-info, .section-carousel-cards .true_to_your_name h2 {
    padding-bottom: 32px;
  }
}

.page-template-template-algoworks-rebranding .pb-medium {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-medium {
    padding-bottom: 40px;
  }
}

/* Desktop/Heading/Display 01 */
.homepage-new .typo-display h1 {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 48px;
}
@media screen and (min-width: 1024px) {
  .homepage-new .typo-display h1 {
    font-size: 72px;
    line-height: 88px;
  }
}

/* Heading/H1 */
.section-carousel-cards .true_to_your_name h2 {
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  font-feature-settings: "liga" off, "clig" off;
}
@media screen and (min-width: 1024px) {
  .section-carousel-cards .true_to_your_name h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 64px;
    letter-spacing: -0.1px;
  }
}

/* Heading/H2 */
/* Heading/H2 */
/* Mobile/Heading/H4 */
/* Heading/Subheader L Medium */
/* Desktop/Heading/LABEL Regular */
/* Desktop/Paragraph/XL Medium */
/* Desktop/Paragraph/L Extra Bold */
.section-related-insights .navigation a, .section-related-insights .insight-title {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 133.333% */
  text-transform: capitalize;
}
@media screen and (min-width: 1024px) {
  .section-related-insights .navigation a, .section-related-insights .insight-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
  }
}

.section-row-list .list ul li {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}
@media screen and (min-width: 1024px) {
  .section-row-list .list ul li {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Desktop/Paragraph/Default Regular */
.section-scrollable-slides .card-bubble .card-text {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Desktop/Paragraph/S Bold */
/* Mobile/Paragraph/Default Regular */
.page-contact h1, .page-thank-you h1, .page404-main h1, .page-privacy-policy h1, .page-terms-of-service h1 {
  font-size: 40px;
  line-height: 120%;
}

.section-carousel-cards {
  padding-top: 40px;
  padding-bottom: 80px;
}
.section-carousel-cards h2.highlight {
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 72px;
  line-height: 88px;
}
@media screen and (min-width: 1024px) {
  .section-carousel-cards {
    padding-top: 76px;
    padding-bottom: 96px;
  }
}
.section-carousel-cards .true_middle_wrap {
  display: flex;
  gap: 24px;
  flex-flow: column;
}
@media screen and (min-width: 1024px) {
  .section-carousel-cards .true_middle_wrap {
    display: flex;
    justify-content: space-around;
    flex-flow: row;
    gap: 32px;
    width: 100%;
  }
}
.section-carousel-cards .true_to_your_name h2 {
  text-align: center;
}
.section-carousel-cards .card {
  background-color: #1a1a1a;
  padding: 32px;
  border-radius: 40px;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1024px) {
  .section-carousel-cards .card {
    padding: 40px 56px;
  }
}

.section-services-list {
  padding: 32px 16px;
  background-color: #1e1e1e;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .section-services-list {
    margin-bottom: 0;
    padding: 48px 48px;
  }
}
.section-services-list h4 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  padding-bottom: 24px;
  max-width: 325px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .section-services-list h4 {
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    letter-spacing: 1.08px;
    padding-bottom: 32px;
    max-width: 100%;
  }
}
.section-services-list ul {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 1200px) {
  .section-services-list ul {
    display: block;
    -moz-columns: 3;
         columns: 3;
  }
}
@media only screen and (max-width: 768px) {
  .section-services-list ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px;
    margin-top: 0;
  }
}
.section-services-list ul li {
  list-style: none;
  display: inline-block;
  padding-left: 12px;
  font-size: 18px;
  position: relative;
}
.section-services-list ul li::before {
  content: " ";
  width: 3px;
  border-radius: 1rem;
  background-color: #52f18f;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .section-services-list ul li {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    padding: 0 12px;
    display: block;
    margin: 20px 0;
  }
}

.section-priorities .section--container {
  display: flex;
  flex-flow: column;
  gap: 36px;
}
@media screen and (min-width: 1024px) {
  .section-priorities .section--container {
    gap: 16px;
    flex-flow: row;
  }
}
.section-priorities .priorities-left {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left {
    padding-top: 96px;
  }
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-left {
    padding: 0;
    width: 100%;
  }
}
.section-priorities .priorities-left h3 {
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-left h3 {
    margin-bottom: 0;
    padding-top: 0;
  }
}
.section-priorities .priorities-left .priorities-tabs {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs {
    position: relative;
    overflow-x: inherit;
    width: inherit;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-left: 32px;
    gap: 32px;
  }
  .section-priorities .priorities-left .priorities-tabs::before {
    top: 0;
    left: 0;
    content: "";
    width: 8px;
    height: 40px;
    background-color: #52F18F;
    position: absolute;
    border-radius: 1rem;
    transition: transform 0.7s ease;
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs::after {
    top: 0;
    left: 3px;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #CCCCCC;
    position: absolute;
    border-radius: 1rem;
    opacity: 0.25;
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs.tab1::before {
    transform: translateY(0);
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs.tab2::before {
    transform: translateY(74px);
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs.tab3::before {
    transform: translateY(144px);
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs.tab4::before {
    transform: translateY(216px);
  }
}
.section-priorities .priorities-left .priorities-tabs .prio-tab {
  white-space: nowrap;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  height: 40px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #C2C2C2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: font-size 0.7s ease, line-height 0.7s ease;
}
.section-priorities .priorities-left .priorities-tabs .prio-tab:hover {
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs .prio-tab:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs .prio-tab {
    border: none;
    border-radius: inherit;
    padding: 0;
    font-size: 24px;
    line-height: 180%;
    letter-spacing: 0.48px;
    justify-content: flex-start;
    cursor: pointer;
    color: #D1D1D1;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 43.2px */
    letter-spacing: 0.48px;
  }
}
.section-priorities .priorities-left .priorities-tabs .prio-tab.active {
  background: #52F18F;
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-left .priorities-tabs .prio-tab.active {
    color: #52f18f;
    background-color: inherit;
    font-family: Inter;
    font-size: 28px;
    font-weight: 800;
    line-height: 40px;
  }
}
.section-priorities .priorities-left .priorities-tabs .prio-tab.active:hover {
  text-decoration: none;
}
.section-priorities .priorities-right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-priorities .priorities-right {
    min-height: 680px;
  }
}
.section-priorities .priorities-right .prio-content {
  display: flex;
  flex-flow: column;
  gap: 48px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-right .prio-content {
    gap: 36px;
  }
}
.section-priorities .priorities-right .prio-content .prio-text {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-right .prio-content .prio-text {
    gap: 36px;
  }
}
.section-priorities .priorities-right .prio-content .prio-text span {
  font-weight: 800;
  font-size: 32px;
  line-height: 44px;
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-right .prio-content .prio-text span {
    font-size: 28px;
    line-height: 36px;
  }
}
.section-priorities .priorities-right .prio-content .prio-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #c2c2c2;
}
.section-priorities .priorities-right .prio-content .prio-text .prio-title {
  width: auto;
}
@media only screen and (max-width: 768px) {
  .section-priorities .priorities-right .prio-content .prio-text .prio-title {
    width: auto;
  }
}
.section-priorities .prio-img img {
  width: 100%;
  aspect-ratio: 342/200;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .section-priorities .prio-img img {
    max-width: 632px;
  }
}
.section-priorities .section--label {
  display: block;
}
@media screen and (min-width: 1024px) {
  .section-priorities .section--label {
    display: block;
  }
}
.section-priorities .headline {
  padding-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .section-priorities .headline {
    padding-bottom: 48px;
    padding-right: 20px;
  }
}

.section-business .boxes-content {
  display: flex;
  padding: 80px 0px 0px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media screen and (min-width: 1024px) {
  .section-business .boxes-content {
    flex-direction: row;
  }
}
.section-business .boxes-content .box {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  background: #1e1e1e;
  border-radius: 40px;
}
.section-business .boxes-content .box .box-text {
  color: var(--Light-Gray, #E2E2E2);
}

.section-menu-links .section--container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-menu-links .section--container {
    flex-direction: row;
  }
}
.section-menu-links .side-left {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-menu-links .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-menu-links .side-left {
    width: 640px;
  }
}
.section-menu-links .side-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .section-menu-links .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-menu-links .side-right {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .section-menu-links .side-right {
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-menu-links .side-text {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 5);
  }
}
@media screen and (min-width: 1440px) {
  .section-menu-links .side-text {
    width: 533.3333333333px;
  }
}
@media screen and (min-width: 1024px) {
  .section-menu-links .labeled-list {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 3);
  }
}
@media screen and (min-width: 1440px) {
  .section-menu-links .labeled-list {
    width: 320px;
  }
}

.section-video-cards {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .section-video-cards .section--headline {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 9);
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) {
  .section-video-cards .section--headline {
    width: 960px;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-cards .section--description {
    max-width: 80%;
  }
}
.section-video-cards .box-item {
  width: 100%;
  gap: 7px;
  border-radius: 16px;
  aspect-ratio: auto;
  padding: 16px 0;
  height: auto;
  display: flex;
  flex-flow: column;
  background-color: #3b43fd;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 133px;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .section-video-cards .box-item {
    flex: 1;
    flex-flow: column;
    min-height: auto;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 333.5px;
    aspect-ratio: 1.263;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-cards .box-item.box-1 {
    transform: translateX(200%);
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-cards .box-item.box-2 {
    --overlay-alpha: 0.2;
    background: linear-gradient(0deg, rgba(0, 0, 0, var(--overlay-alpha)) 0%, rgba(0, 0, 0, var(--overlay-alpha)) 100%), #3b43fd;
    transform: translateX(100%);
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-cards .box-item.box-3 {
    --overlay-alpha: 0.4;
    background: linear-gradient(0deg, rgba(0, 0, 0, var(--overlay-alpha)) 0%, rgba(0, 0, 0, var(--overlay-alpha)) 100%), #3b43fd;
    z-index: 0;
  }
}
.section-video-cards .icon::before {
  background-color: #52f18f;
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1200px) {
  .section-video-cards .icon::before {
    width: 80px;
    height: 80px;
  }
}
.section-video-cards .box-title {
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media screen and (min-width: 1200px) {
  .section-video-cards .box-title {
    font-size: 48px;
    line-height: 72px;
    letter-spacing: 0.48px;
  }
}
.section-video-cards .threeBoxes {
  flex-flow: column;
  padding: 0 24px;
  gap: 16px;
  opacity: 1;
  display: flex;
  position: relative;
  justify-content: center;
  margin-top: -10%;
  box-sizing: border-box;
  width: 100%;
  z-index: 5;
}
.section-video-cards .threeBoxes p {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 28px;
  font-family: Inter;
}
@media screen and (min-width: 1024px) {
  .section-video-cards .threeBoxes p {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
    letter-spacing: 0.48px;
  }
}
.section-video-cards .threeBoxes.animated {
  animation: none;
}
@media screen and (min-width: 1024px) {
  .section-video-cards .threeBoxes.animated {
    opacity: 1;
    animation: fadeInRight 1s ease-in;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-cards .threeBoxes {
    display: flex;
    flex-flow: row;
    gap: 32px;
    position: relative;
    justify-content: center;
    margin-top: -140px;
    padding: 0 80px;
    box-sizing: border-box;
    width: 100%;
    opacity: 1;
    z-index: 5;
  }
}

.section-cta-cards .insights-contents {
  display: flex;
  flex-flow: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .insights-contents {
    flex-flow: row;
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .insights-contents > div {
    width: 50%;
    max-width: 392px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 12px;
  }
}
.section-cta-cards .insights-contents img {
  width: 100%;
}
.section-cta-cards .insights-heading {
  display: flex;
  flex-flow: column;
  gap: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .insights-heading {
    width: 33.3333333333%;
    justify-content: center;
    gap: 32px;
  }
}
.section-cta-cards .insights-item {
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.section-cta-cards .headline {
  color: #fff;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: 0.84px;
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .headline {
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}
.section-cta-cards .viewall {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .section--container {
    display: flex;
    flex-flow: row;
  }
}
.section-cta-cards .insights-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
@media screen and (min-width: 1024px) {
  .section-cta-cards .insights-description {
    font-size: 18px;
    line-height: 32px; /* 177.778% */
    letter-spacing: 0.18px;
  }
}

.homepage-new .section6 .opaque-container.expanded {
  border-radius: 0 !important;
  padding: 100px 80px;
  margin: 0 auto;
  /* max-width: 1440px; */
  background-size: 39%;
  background-position-x: 77%;
  background-position-y: 103%;
  transition: 2s;
  height: 100vh;
}

.homepage-new .section6 .opaque-container.expanded > div {
  max-width: 1440px;
  margin: 0 auto;
  /* transition: 2s; */
  padding: 0 128px;
}

.homepage-new .section6 .content-carousel .tab-content {
  padding: 0;
}

.homepage-new .section6 .opaque-container span.colorGreen {
  font-size: 64px;
  line-height: 72px;
  font-weight: 900;
}

.homepage-new .section6 .tabs-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.homepage-new .section6 .tabs-container div.tab {
  font-size: 16px;
  font-weight: 400;
  color: #c2c2c2;
  white-space: nowrap;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  cursor: pointer;
}

.homepage-new .section6 .tabs-container div.tab:hover {
  background-color: #fff;
  color: #000;
  font-weight: 700;
}

.homepage-new .section6 .tabs-container div.tab::before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.homepage-new .section6 .tabs-container .tab.active {
  font-weight: 700;
  background-color: #52f18f;
  color: #000;
}

.homepage-new .section6 .content-carousel {
  padding: 36px 0;
}

.homepage-new .section6 .content-carousel .slide-text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 0px;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .homepage-new .section6 .content-carousel .slide-text {
    padding-right: 100px;
  }
}
.homepage-new .section6 .content-carousel .slide-text .tab-headline h2 {
  font-size: 28px;
  line-height: 36px;
}
@media screen and (min-width: 1024px) {
  .homepage-new .section6 .content-carousel .slide-text .tab-headline h2 {
    font-size: 38px;
    line-height: 120%;
  }
}

.homepage-new .section9 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.96;
  border-radius: 40px;
}

.section-our-work {
  overflow: hidden;
}
.section-our-work .section6-nav {
  flex-flow: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .section-our-work .section6-nav {
    flex-flow: row;
  }
}
.section-our-work .tab-headline {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section-our-work .tab-headline {
    font-size: 40px;
    line-height: 48px; /* 120% */
    letter-spacing: 1.6px;
    margin-bottom: 32px;
  }
}
.section-our-work .section-label {
  width: 100%;
  text-align: center;
  display: block;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-our-work .section-label {
    display: flex;
    min-width: 107px;
    width: inherit;
    align-items: center;
    padding-bottom: 0;
    margin-right: 14px;
  }
}
.section-our-work .slide-media {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-our-work .slide-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .section-our-work .slide-media img {
    max-width: 529px;
  }
}
.section-our-work .slide-text {
  width: 100%;
}
.section-our-work .slide-text img {
  width: 100%;
  height: 33.6px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .section-our-work .slide-text img {
    height: 56px;
  }
}
.section-our-work .slide-text h3 {
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section-our-work .slide-text h3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.section-our-work .colorGreen {
  padding-top: 16px;
  color: var(--Green, #52f18f);
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px; /* 112.5% */
}
@media screen and (min-width: 1024px) {
  .section-our-work .colorGreen {
    padding-top: 32px;
  }
}
.section-our-work .tab-content > div {
  display: flex;
  flex-flow: column-reverse;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .section-our-work .tab-content > div {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
}
.section-our-work .opaque-container {
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: 130px;
  background-image: url(../images/pillMobile.svg);
  background-size: 40%;
  background-color: #1e1e1e;
  border-radius: 40px;
  transition: 2s;
  padding: 36px 24px;
  padding-bottom: 0px !important;
}
@media screen and (min-width: 1024px) {
  .section-our-work .opaque-container {
    padding: 48px;
    background-image: url(../images/pill.svg);
    background-position-x: 90%;
    background-position-y: 150px;
    background-size: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .section-our-work .opaque-container {
    background-position-y: 120px;
  }
}
.section-our-work .tabs-container {
  overflow-x: scroll;
  scrollbar-width: none;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.section-our-work .tabs-container div.tab {
  margin-right: 4px;
}
.section-our-work .tabs-container div.tab.active:hover {
  background-color: #52f18f;
}
.section-our-work .logo-wrapper {
  padding-bottom: 32px;
}
.section-our-work .logo-wrapper img {
  width: auto;
  height: 56px;
}

.section-scroll-accordion {
  display: flex;
  align-items: center;
  padding-bottom: 180px;
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion {
    min-height: 800px;
    height: 100vh;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .section--container {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .section--label {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .section-content {
    min-height: 700px;
    display: flex;
    flex-wrap: wrap;
  }
}
.section-scroll-accordion .content-left {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .content-left {
    flex: 1 1 50%;
    box-sizing: border-box;
    position: sticky;
    top: 20vh;
    gap: 32px;
    justify-content: center;
  }
}
.section-scroll-accordion .content-right {
  position: sticky;
  top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .content-right {
    flex: 1 1 50%;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding-bottom: 0;
    position: relative;
    padding-top: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .accordion-wrapper {
    width: 100%;
  }
}
.section-scroll-accordion .left-description {
  width: 87%;
}
.section-scroll-accordion .left-info {
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .left-info {
    max-width: 90%;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 16px;
  }
}
.section-scroll-accordion .expandable-title {
  color: #c2c2c2;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  transition: font-size 0.3s ease-in;
}
@media screen and (min-width: 1024px) {
  .section-scroll-accordion .expandable-title {
    font-size: 24px;
  }
}
.section-scroll-accordion .stats-wrapper {
  padding: 24px;
  margin: 40px 0 56px;
  border-radius: 16px;
  display: inline-block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
}
.section-scroll-accordion .stats-value {
  color: #52f18f;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px;
  padding-bottom: 8px;
}
.section-scroll-accordion .stats-info {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 133.333% */
}
.section-scroll-accordion .item-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.6s ease-in, opacity 0.3s ease-in;
  position: relative;
  padding-right: 8px;
  padding-bottom: 30px;
  --mask-height: 30px;
  --scrollbar-width: 8px;
  --mask-image-content: linear-gradient(
    to bottom,
    black calc(100% - var(--mask-height)),
    transparent
  );
  --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
  --mask-image-scrollbar: linear-gradient(black, black);
  --mask-size-scrollbar: var(--scrollbar-width) 100%;
  mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  mask-position: 0 0, 100% 0;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  -webkit-mask-position: 0 0, 100% 0;
  -webkit-mask-repeat: no-repeat, no-repeat;
}
.section-scroll-accordion .expandable-item.active .expandable-title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 48px;
}

.section-video-stats .section--label {
  padding-bottom: 34px;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .section--label {
    padding-bottom: 16px;
  }
}
.section-video-stats .abt_details {
  padding-bottom: 16px;
  color: #fff;
}
.section-video-stats .section2-top {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .section2-top {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 24px 0 64px;
  }
}
@media screen and (min-width: 1024px) {
  .section-video-stats .section2-top div {
    width: 47%;
  }
}
.section-video-stats .blue-container {
  padding: 36px 24px 24px;
  background-color: #3b43fd;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .blue-container {
    padding: 64px 48px 48px;
  }
}
.section-video-stats .video-mask {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  height: 712px;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .video-mask {
    height: 485px;
  }
}
.section-video-stats .video-mask video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  filter: grayscale(100%);
  min-height: 500px;
  -o-object-position: center -40px;
     object-position: center -40px;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .video-mask video {
    min-height: auto;
    -o-object-position: center center;
       object-position: center center;
    height: 480px;
  }
}
.section-video-stats .video-mask::after {
  content: " ";
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgb(0, 0, 0) 80%);
  border-radius: 32px;
  pointer-events: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 99%;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .video-mask::after {
    background: rgba(0, 0, 0, 0.7);
  }
}
.section-video-stats .cards-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  height: 712px;
  padding: 48px 16px 16px 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .cards-wrapper {
    flex-flow: row;
    height: auto;
    bottom: 0;
    top: inherit;
    justify-content: center;
    padding: 48px;
  }
}
.section-video-stats .card-grid-item {
  display: flex;
  height: 104px;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-grid-item {
    width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    padding: 8px 8px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.section-video-stats .card-grid-item img {
  display: flex;
  width: 96px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.15px;
  flex-shrink: 1;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-grid-item img {
    width: 168px;
    height: 96px;
  }
}
.section-video-stats .card-grid-item p {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-grid-item p {
    font-family: Inter;
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.18px;
    padding-top: 8px;
    width: 144px;
  }
}
.section-video-stats .card-grid-item span {
  font-size: 36px;
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-grid-item span {
    font-size: 48px;
    font-weight: 900;
  }
}
.section-video-stats .card-item {
  display: flex;
  height: 104px;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(45px);
  backdrop-filter: blur(45px);
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-item {
    width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    padding: 8px 8px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.section-video-stats .card-item img {
  display: flex;
  width: 96px;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.15px;
  flex-shrink: 1;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-item img {
    width: 168px;
    height: 96px;
  }
}
.section-video-stats .card-item p {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}
@media screen and (min-width: 1024px) {
  .section-video-stats .card-item p {
    font-family: Inter;
    font-size: 18px;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.18px;
    padding-top: 8px;
    width: 144px;
  }
}
.section-video-stats .section2-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  position: relative;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .section-video-stats .section2-bottom {
    height: 485px;
  }
}

@media screen and (min-width: 1024px) {
  .section-side-list .section8-content {
    display: flex;
    flex-flow: row;
  }
}
.section-side-list .card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-side-list .section8-content-left {
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-side-list .section8-content-left {
    width: 42%;
    margin-right: 8%;
    min-height: 585px;
  }
}
@media screen and (min-width: 1024px) {
  .section-side-list .section8-content-left > div {
    position: sticky;
    top: 200px;
  }
}
.section-side-list .cards-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-side-list .cards-list-wrapper {
    gap: 64px;
  }
}
.section-side-list .section--label {
  padding-bottom: 28px;
}

.section-leadership-carousel .btn-next, .section-leadership-carousel .btn-prev {
  display: none;
  position: absolute;
  top: calc(50% - 60px);
  width: 48px;
  height: 48px;
  z-index: 1;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  left: -20px;
}
.section-leadership-carousel .btn-next::before, .section-leadership-carousel .btn-prev::before {
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}

.section-leadership-carousel {
  overflow: hidden;
}
.section-leadership-carousel .swiper {
  padding: 1rem 0;
  overflow: inherit;
}
.section-leadership-carousel .swiper-slide {
  width: auto; /* important for slidesPerView: 'auto' */
  max-width: 380px; /* adjust to your preferred card width */
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}
.section-leadership-carousel img {
  cursor: pointer;
  width: 308px;
  height: 400px;
  border-radius: 32px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.section-leadership-carousel img:hover {
  filter: grayscale(0);
}
.section-leadership-carousel .swiper-progress {
  height: 8px;
  width: 100%;
  background: #1c1c1c; /* background track */
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  width: calc(100vw - 48px);
}
@media screen and (min-width: 768px) {
  .section-leadership-carousel .swiper-progress {
    width: calc(100vw - 160px);
  }
}
@media screen and (min-width: 1024px) {
  .section-leadership-carousel .swiper-progress {
    display: none;
  }
}
.section-leadership-carousel .swiper-progress::before {
  content: " ";
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 4px;
}
.section-leadership-carousel .swiper-progress-bar {
  height: 100%;
  background: #2fd163; /* green */
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 25px;
  position: relative;
}
.section-leadership-carousel .btn-prev {
  transform: rotate(-180deg);
}
@media screen and (min-width: 1024px) {
  .section-leadership-carousel .btn-prev {
    display: inherit;
  }
  .section-leadership-carousel .btn-prev.swiper-button-disabled {
    display: none;
  }
}
.section-leadership-carousel .btn-prev::before {
  left: calc(50% - 12px);
}
.section-leadership-carousel .btn-next {
  left: calc(100vw - 205px);
}
@media screen and (min-width: 1024px) {
  .section-leadership-carousel .btn-next {
    display: block;
    left: calc(100vw - 230px);
  }
  .section-leadership-carousel .btn-next.swiper-button-disabled {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .section-leadership-carousel .btn-next {
    left: 1250px;
  }
}
.section-leadership-carousel .btn-next::before {
  left: calc(50% - 10px);
}
.section-leadership-carousel .leader-info {
  padding-top: 16px;
  text-align: left;
}
.section-leadership-carousel .leader-info .name {
  padding-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .section-leadership-carousel .leader-info .name {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
}

@media screen and (min-width: 1024px) {
  .section-two-cols .cols-wrapper {
    display: flex;
    flex-flow: row;
  }
}
@media screen and (min-width: 1024px) {
  .section-two-cols .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-two-cols .side-left {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .section-two-cols .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-two-cols .side-right {
    width: 640px;
  }
}

.section-line-list .list-wrapper {
  background-color: #1e1e1e;
  border-radius: 40px;
  padding: 48px 0;
}
.section-line-list .line-list {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
}
.section-line-list li {
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  margin: 8px 0;
  border-left: 3px solid #52f18f;
  padding-left: 12px;
}

.section-scrollable-slides {
  width: 100%;
}
.section-scrollable-slides.active-1 .slider-01 .scrollable-wrapper {
  margin-top: -72px;
  padding-top: 102px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides.active-1 .slider-01 .scrollable-wrapper {
    height: calc(100% + 40px);
  }
}
.section-scrollable-slides.active-2 .slider-01 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #3b43fd;
}
.section-scrollable-slides.active-2 .slider-02 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), #3b43fd;
}
.section-scrollable-slides.active-2 .slider-02 .scrollable-wrapper {
  margin-top: -72px;
  padding-top: 102px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides.active-2 .slider-02 .scrollable-wrapper {
    height: calc(100% + 40px);
  }
}
.section-scrollable-slides.active-2 .slider-03 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #3b43fd;
}
.section-scrollable-slides.active-3 .slider-01 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), #3b43fd;
}
.section-scrollable-slides.active-3 .slider-02 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #3b43fd;
}
.section-scrollable-slides.active-3 .slider-03 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), #3b43fd;
}
.section-scrollable-slides.active-3 .slider-03 .scrollable-wrapper {
  margin-top: -72px;
  padding-top: 102px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides.active-3 .slider-03 .scrollable-wrapper {
    height: calc(100% + 40px);
  }
}
.section-scrollable-slides .side-text {
  padding-right: 0;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-text {
    padding-right: 48px;
  }
}
.section-scrollable-slides .side-text p {
  padding-bottom: 10px;
}
.section-scrollable-slides .section--container {
  position: relative;
  display: flex;
  gap: 60px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .section--container {
    display: block;
  }
}
.section-scrollable-slides .slider {
  border-radius: 40px;
  background-color: #3b43fd;
  padding: 24px;
  bottom: 0;
  width: 100%;
  transition: background 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .slider {
    overflow: hidden;
    position: absolute;
    min-height: 144px;
    padding: 24px 40px;
  }
}
.section-scrollable-slides .slider-label-wrapper {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  padding-bottom: 40px;
  padding-top: 16px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .slider-label-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    display: inline-block;
    min-height: 10px;
    width: 100%;
  }
}
.section-scrollable-slides .slider-01 {
  bottom: 216px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .slider-02 {
    bottom: 144px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #3b43fd;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .slider-03 {
    bottom: 72px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), #3b43fd;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .cols-wrapper {
    height: 0;
    display: flex;
    flex-flow: row;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 5);
  }
}
@media screen and (min-width: 1440px) {
  .section-scrollable-slides .side-left {
    width: 533.3333333333px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-left {
    padding-top: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 7);
  }
}
@media screen and (min-width: 1440px) {
  .section-scrollable-slides .side-right {
    width: 746.6666666667px;
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-right {
    padding-top: 26px;
    padding-bottom: 30px;
  }
}
.section-scrollable-slides .cards-wrapper {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .cards-wrapper {
    padding-bottom: 64px;
  }
}
.section-scrollable-slides .card-bubble {
  display: flex;
  padding: 32px 28px;
  flex-direction: column;
  gap: 16px;
  border-radius: 40px;
  background-color: #0d0d0d;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .card-bubble {
    flex-direction: row;
  }
}
.section-scrollable-slides .card-bubble .card-title {
  margin: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
}
.section-scrollable-slides .card-bubble .card-content {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.section-scrollable-slides .card-bubble .card-text {
  color: #e2e2e2;
}
.section-scrollable-slides .card-bubble .icon-wrapper .icon::before {
  background-color: #52f18f;
  width: 32px;
  height: 32px;
}
.section-scrollable-slides .side-title {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .side-title {
    padding-bottom: 48px;
    padding-right: 20px;
  }
}
.section-scrollable-slides .scrollable-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: top 0.5s ease-in, padding-top 0.5s ease-in;
  display: flex;
  flex-direction: column;
  padding-right: 8px;
  padding-top: 30px;
  padding-bottom: 30px;
  --mask-height: 30px;
  --scrollbar-width: 8px;
  --mask-image-content: linear-gradient(
    to bottom,
    transparent,
    black var(--mask-height),
    black calc(100% - var(--mask-height)),
    transparent
  );
  --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
  --mask-image-scrollbar: linear-gradient(black, black);
  --mask-size-scrollbar: var(--scrollbar-width) 100%;
  mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  mask-position: 0 0, 100% 0;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  -webkit-mask-position: 0 0, 100% 0;
  -webkit-mask-repeat: no-repeat, no-repeat;
}
.section-scrollable-slides .scrollable-wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .scrollable-wrapper {
    height: calc(100% - 72px);
  }
}
@media screen and (min-width: 1024px) {
  .section-scrollable-slides .labeled-list {
    padding-bottom: 20px;
  }
}
.section-scrollable-slides .slide-icon::before {
  width: 80px;
  height: 80px;
  background-color: #52f18f;
}
.section-scrollable-slides .bubbles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1200px) {
  .section-scrollable-slides .bubbles-wrapper {
    flex-direction: row;
  }
}

.card-square {
  display: flex;
  padding: 24px 24px 40px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  min-height: 400px;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(0, 0, 0, 0.7);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
}
@media screen and (min-width: 1024px) {
  .card-square {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .card-square {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .card-square {
    aspect-ratio: 1/1;
  }
}
.card-square .description {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media screen and (min-width: 1024px) {
  .card-square .description {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 4);
  }
}
@media screen and (min-width: 1440px) {
  .card-square .description {
    width: 426.6666666667px;
  }
}
@media screen and (min-width: 1024px) {
  .card-square .description {
    width: 416px;
  }
}

.svg-check-badge::before {
  width: 48px;
  height: 48px;
  background-color: #52f18f;
}

.section-video-mask {
  height: 100vh;
  display: flex;
  align-items: center;
}
.section-video-mask video {
  width: 100%;
  aspect-ratio: 342/600;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .section-video-mask video {
    height: 100%;
    aspect-ratio: initial;
  }
}
.section-video-mask .section-wrapper {
  position: relative;
}
.section-video-mask .animation-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 24px 24px 80px;
  display: flex;
  align-items: end;
}
@media screen and (min-width: 1024px) {
  .section-video-mask .animation-wrapper {
    padding-bottom: 24px;
  }
}
.section-video-mask .cols-wrapper {
  width: 100%;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.section-video-mask .side-left {
  display: flex;
  align-items: center;
}
.section-video-mask .swiper-wrapper {
  height: 210px;
}
@media screen and (min-width: 1024px) {
  .section-video-mask .swiper-wrapper {
    height: 350px;
  }
}
.section-video-mask .left-text {
  color: #0d0d0d;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  padding-right: 6px;
  display: flex;
  align-items: center;
  height: 100%;
  height: 42px;
}
@media screen and (min-width: 1024px) {
  .section-video-mask .left-text {
    font-size: 52px;
    height: 70px;
  }
}
.section-video-mask .swiper {
  pointer-events: none;
}
.section-video-mask .swiper-slide {
  transition-delay: 1s;
  transition: color 0.5s ease, opacity 7s ease-out;
  color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .section-video-mask .swiper-slide {
    font-size: 52px;
  }
}
.section-video-mask .swiper-slide.active-center {
  color: #000;
}
.section-video-mask .active-top {
  opacity: 0;
}

.section-blocks-lists .list-label {
  margin: 0;
}
.section-blocks-lists .list-wrapper {
  padding-left: 12px;
}
.section-blocks-lists .labeled-list {
  padding-bottom: 38px;
}
@media screen and (min-width: 1024px) {
  .section-blocks-lists .labeled-list {
    padding-bottom: 0;
  }
}
.section-blocks-lists .labeled-list:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 576px) {
  .section-blocks-lists .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .section-blocks-lists .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 66px 16px;
    max-width: 950px;
    margin: 0 auto;
  }
}

.section-fade-in {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-fade-in .fades-wrappers {
  position: relative;
}
.section-fade-in .fade-in-wrapper {
  position: absolute;
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) scale3d(0.7, 0.7, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.section-fade-in .headline h1 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  .section-fade-in .headline h1 {
    font-size: 52px;
    line-height: 64px;
    letter-spacing: -1.5px;
  }
}
.section-fade-in .fade-in-wrapper-two {
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0) scale3d(0.7, 0.7, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.section-fade-in .fade-in-wrapper-two .headline {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  .section-fade-in .fade-in-wrapper-two .headline {
    font-size: 52px;
    line-height: 64px;
    letter-spacing: -1.5px;
  }
}

.section-row-list .list {
  padding: 32px 16px;
  background-color: #1e1e1e;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .section-row-list .list {
    margin-bottom: 0;
    padding: 48px 48px;
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .section-row-list .list ul {
    justify-content: space-between;
  }
}
.section-row-list .list ul li {
  list-style: none;
  display: inline-block;
  padding-left: 12px;
  position: relative;
  flex: 1 1 calc(50% - 12px);
  min-width: 0;
}
.section-row-list .list ul li::before {
  content: " ";
  width: 3px;
  border-radius: 1rem;
  background-color: #52f18f;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .section-row-list .list ul li.fixed-row {
    min-width: 170px;
    width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .section-row-list .list ul li {
    flex: none;
    padding: 0 12px;
    display: block;
    margin: 6px 0;
  }
}
.section-row-list .list-wrapper {
  margin: 0 auto;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .section-row-list .list-wrapper {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 10);
  }
}
@media screen and (min-width: 1440px) {
  .section-row-list .list-wrapper {
    width: 1066.6666666667px;
  }
}
.section-row-list .list-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.section-news-card .news-card {
  display: flex;
  padding: 36px 24px 24px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  border-radius: 30px;
  background: var(--Charcoal, #1E1E1E);
}
@media screen and (min-width: 1024px) {
  .section-news-card .news-card {
    padding: 64px 48px;
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .section-news-card .side-left {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .section-news-card .side-left .card-img {
    display: none;
  }
}
.section-news-card .side-right {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-news-card .side-right {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 50%;
  }
}
.section-news-card .side-right .card-img {
  flex: 1;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .section-news-card .side-right .card-img iframe {
    width: 493px;
    height: 493px;
    max-width: 100%;
    display: block;
  }
}
.section-news-card .side-right img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-news-card .card-img {
  width: 100%;
}
.section-news-card .card-img img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.section-news-card .social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.section-news-card .icons-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.section-news-card .icons-wrapper .icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.section-news-card .icons-wrapper .icon::before {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 0;
  top: 20px;
}
.section-news-card .icons-wrapper a:hover {
  color: #52f18f !important;
}
.section-news-card .card-date {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
.section-news-card .read-more a {
  color: var(--Electric-Lime, #52F18F);
  /* Desktop/Paragraph/Default Bold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.section-news-card .read-more img {
  padding-left: 8px;
}
.section-news-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-digital-assets .assets-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .section-digital-assets .assets-wrapper {
    flex-direction: row;
    gap: 10px;
  }
}
.section-digital-assets .asset {
  width: 100%;
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .section-digital-assets .asset {
    width: 33.3333333333%;
  }
}
.section-digital-assets .asset::before {
  content: " ";
  width: 3px;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  background-color: #52F18F;
  left: 0;
}

@media screen and (min-width: 1024px) {
  .section-succeed-with-ai {
    padding-bottom: 240px;
  }
}
.section-succeed-with-ai .section-content {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 1024px) {
  .section-succeed-with-ai .section-content {
    flex-flow: row;
  }
}
.section-succeed-with-ai .section-content .section-left {
  width: 100%;
  margin-right: 8%;
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .section-succeed-with-ai .section-content .section-left {
    width: 42%;
    padding-top: 160px;
    min-height: 780px;
  }
}
.section-succeed-with-ai .section-content .section-right .ai-list {
  display: flex;
  padding: 36px 0px 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex: 1 0 0;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .section-succeed-with-ai .section-content .section-right .ai-list {
    padding: 160px 0px 0;
    gap: 64px;
  }
}
.section-succeed-with-ai .section-content .section-right .ai-list .ai-list-item {
  display: flex;
  width: 100%;
  padding-right: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  color: var(--Electric-Lime, #52F18F);
  /* Mobile/Heading/H4 */
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 140% */
}
@media screen and (min-width: 1024px) {
  .section-succeed-with-ai .section-content .section-right .ai-list .ai-list-item {
    color: var(--Electric-Lime, #52F18F);
    /* Desktop/Heading/H4 */
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px; /* 142.857% */
  }
}
.section-succeed-with-ai .section-content .section--label {
  padding-bottom: 28px;
}
.section-succeed-with-ai .section-content .cards-list-wrapper {
  gap: 64px;
}
@media screen and (min-width: 1024px) {
  .section-succeed-with-ai .sticky-side {
    position: sticky;
    top: 300px;
  }
}

.section-onerow-list .section--container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-onerow-list .section--container {
    flex-direction: row;
  }
}
.section-onerow-list .row-title {
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .section-onerow-list .row-title {
    padding-bottom: 0;
    min-width: 200px;
  }
}
.section-onerow-list .row-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-onerow-list .row-list {
    flex-direction: row;
  }
}
.section-onerow-list .row-item {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
  display: flex;
  border-right: 1px solid #E2E2E2;
}
@media screen and (min-width: 1024px) {
  .section-onerow-list .row-item {
    padding-bottom: 0;
  }
}
.section-onerow-list .row-item:last-child {
  border-right: none;
}
.section-onerow-list .row-idx {
  font-size: 10px;
}

.section-hero-text {
  padding: 65px 0;
}
@media screen and (min-width: 1024px) {
  .section-hero-text {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.section-hero-text .hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .section-hero-text .hero-wrapper {
    gap: 32px;
  }
}
.section-hero-text .section--headline {
  text-align: center;
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section-hero-text .section--headline {
    padding-bottom: 32px;
  }
}

.section-insights {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .section-insights {
    padding-top: 96px;
  }
}
.section-insights .categories--menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: hidden;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .section-insights .categories--menu {
    margin-right: -87px;
  }
}
@media screen and (min-width: 1400px) {
  .section-insights .categories--menu {
    margin-right: calc(-1 * (100vw - 1280px) / 2);
  }
}
.section-insights .categories--label {
  color: #c2c2c2;
}
.section-insights .card-img {
  padding-bottom: 25px;
}
.section-insights .card-img img {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
  width: 100%;
  border-radius: 16px;
}
.section-insights .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 48px;
  padding-top: 32px;
}
@media screen and (min-width: 1024px) {
  .section-insights .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 80px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.section-insights .insights--more {
  margin-top: 48px;
  text-align: center;
}
.section-insights .pills-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 8px;
  padding-left: 20px;
  --mask-height: 20px;
  --scrollbar-width: 8px;
  --mask-image-content: linear-gradient(
    to right,
    transparent,
    black var(--mask-height)
  );
  --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
  --mask-image-scrollbar: linear-gradient(black, black);
  --mask-size-scrollbar: var(--scrollbar-width) 100%;
  mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  mask-position: 0 0, 100% 0;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  -webkit-mask-position: 0 0, 100% 0;
  -webkit-mask-repeat: no-repeat, no-repeat;
}
@media screen and (min-width: 1024px) {
  .section-insights .pills-wrapper {
    padding-right: 87px;
  }
}
@media screen and (min-width: 1400px) {
  .section-insights .pills-wrapper {
    padding-right: calc((100vw - 1280px) / 2);
  }
}
.section-insights .pills-wrapper::-webkit-scrollbar {
  display: none;
}
.section-insights .pills-wrapper .pill {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
  color: #c2c2c2;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-insights .pills-wrapper .pill:hover {
  background-color: #fff;
  color: #000;
  font-weight: 700;
}
.section-insights .pills-wrapper .pill.is-active {
  background-color: #52f18f;
  color: #000;
  font-weight: 700;
}
.section-insights .pills-wrapper .pill .pill-bg-text {
  display: block;
  font-weight: 700;
  opacity: 0;
  margin-top: -24px;
}
.section-insights .insights--more a {
  display: inline-block;
}
.section-insights .card-grid-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.section-insights .card-grid-item:hover .card--title a {
  color: #52f18f;
}
.section-insights .card-grid-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-insights .card-grid-item.is-visible .card-img img {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .section-insights .card-grid-item.is-visible .card-img img {
    max-height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section-insights .hidden {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .section-insights .card-grid-item {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}

.section-cta .section-headline {
  margin: 0;
}
.section-cta .cta-container {
  display: flex;
  flex-direction: column;
  padding: 36px 24px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .section-cta .cta-container {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    border-radius: 32px;
    padding: 64px;
    box-sizing: border-box;
  }
}
.section-cta .cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .section-cta .cta-text {
    gap: 8px;
    text-align: left;
  }
}
.section-cta .cta-actions {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .section-cta .cta-actions {
    width: auto;
    text-align: right;
  }
}
.section-cta.orange .cta-container {
  background-color: #ffb758;
}
.section-cta.orange .cta-container h3,
.section-cta.orange .cta-container p {
  color: #000;
}
.section-cta.orange .section-headline {
  color: #000;
}
.section-cta.orange .section-description {
  color: #000;
}
.section-cta.blue .cta-container {
  background-color: #3B43FD;
}
.section-cta.blue .section-description {
  color: #fff;
}

.section-page-title .title {
  padding-top: 68px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .section-page-title .title {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 10);
  }
}
@media screen and (min-width: 1440px) {
  .section-page-title .title {
    width: 1066.6666666667px;
  }
}
@media screen and (min-width: 1024px) {
  .section-page-title .title {
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.section-page-title .title h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 64px;
}
@media only screen and (max-width: 768px) {
  .section-page-title .title h1 {
    padding-top: 68px;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px; /* 125% */
  }
}

.section-cta-subscribe {
  padding-bottom: 80px;
}
.section-cta-subscribe .cta-subscribe-wrapper {
  border-radius: 32px;
  background: #3B43FD;
  padding: 36px 24px;
}
@media screen and (min-width: 1024px) {
  .section-cta-subscribe .cta-subscribe-wrapper {
    padding: 64px;
  }
}
.section-cta-subscribe .cta-headline {
  padding-bottom: 32px;
  text-align: center;
}
.section-cta-subscribe .cta-form {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .section-cta-subscribe .cta-form {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
  }
}
.section-cta-subscribe input {
  all: revert;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  padding: 0 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: none;
  color: #fff;
  height: 46px;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: calc(100% - 30px);
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .section-cta-subscribe input {
    width: auto;
    margin-bottom: 0;
    min-width: 376px;
  }
}
.section-cta-subscribe input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.section-cta-subscribe input::placeholder {
  color: #fff;
  opacity: 1;
}
.section-cta-subscribe input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.section-cta-subscribe input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.section-cta-subscribe input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.section-cta-subscribe .cta-submitted {
  display: none;
}
.section-cta-subscribe.submitted .cta-content {
  display: none;
}
.section-cta-subscribe.submitted .cta-submitted {
  display: block;
  text-align: center;
}
.section-cta-subscribe .svg-check-badge {
  text-align: center;
  margin-bottom: 32px;
}
.section-cta-subscribe .submitted-title {
  margin-bottom: 16px;
}
.section-cta-subscribe .wysija-submit {
  all: unset;
  display: inline-block;
  word-break: break-word;
  white-space: normal;
  position: relative;
  text-align: center;
  font-size: 18px;
  color: white;
  background: black;
  overflow: hidden;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 13px 32px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
  border: none;
  line-height: 120%;
  transition: background-color 1.5s ease-in;
  border-style: hidden;
}
@media screen and (min-width: 576px) {
  .section-cta-subscribe .wysija-submit {
    white-space: nowrap;
  }
}
.section-cta-subscribe .wysija-submit::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 10px);
  height: 100%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: inset(0 100% 0 0 round 30px);
  transition: clip-path 0.5s ease;
  pointer-events: none;
  border-radius: 30px;
  padding: 15px 33px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border-style: hidden;
}
.section-cta-subscribe .wysija-submit:focus, .section-cta-subscribe .wysija-submit:hover {
  border: none;
  color: white;
  background-color: white;
}
.section-cta-subscribe .wysija-submit:focus::before, .section-cta-subscribe .wysija-submit:hover::before {
  clip-path: inset(0 0% 0 0 round 30px);
}
.section-cta-subscribe .wysija-paragraph {
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .section-cta-subscribe .wysija-paragraph {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-cta-subscribe .widget_wysija {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
}
.section-cta-subscribe .btn-secondary {
  display: block;
}

.section-author .author-wrapper {
  border-radius: 30px;
  background: #1e1e1e;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-author .author-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
  }
}
.section-author .author-wrapper::before {
  z-index: 0;
  content: " ";
  background-image: url(../images/author-bg.svg);
  position: absolute;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: -30%;
  width: 42%;
}
@media screen and (min-width: 1024px) {
  .section-author .author-wrapper::before {
    background-position-x: -20px;
    background-position-y: 36px;
    width: 290px;
    left: 0;
    top: 0;
  }
}
.section-author .author-bio {
  position: relative;
  z-index: 1;
}
.section-author .author-image {
  z-index: 1;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-author .author-image {
    flex: 0 0 252px;
    max-width: 220px;
    padding-bottom: 0;
  }
}
.section-author .author-name {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .section-author .author-info {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.section-author img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-insight-main .section--label {
  padding-bottom: 24px;
}
.section-insight-main .card-insight-main {
  display: flex;
  padding: 24px 24px 40px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  border-radius: 30px;
  background: #1e1e1e;
}
@media screen and (min-width: 1024px) {
  .section-insight-main .card-insight-main {
    flex-direction: row;
    padding: 64px 48px;
  }
}
@media screen and (min-width: 1024px) {
  .section-insight-main .card-side-left {
    width: 50%;
  }
}
.section-insight-main .card-side-left .card-img {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-insight-main .card-side-left .card-img {
    display: none;
  }
}
.section-insight-main .card-side-left img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 73/50;
}
.section-insight-main .card-side-right {
  display: none;
}
.section-insight-main .card-side-right img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 73/50;
}
@media screen and (min-width: 1024px) {
  .section-insight-main .card-side-right {
    display: block;
    width: 50%;
  }
}
.section-insight-main .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .section-insight-main .card-body {
    gap: 24px;
  }
}
.section-insight-main .card-date {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-quote {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-quote {
    padding-bottom: 160px;
  }
}
.section-quote .quote-wrapper {
  position: relative;
  padding-left: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.section-quote .quote-wrapper::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: #52f18f;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}
.section-quote .quote-text {
  padding-top: 24px;
  padding-bottom: 24px;
}
.section-quote .quote-author {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.section-quote .quote-role {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.section-quote .icon-quote::before {
  shape-rendering: geometricPrecision;
  background-color: #52f18f;
  width: 31px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-related-insights {
  padding-bottom: 64px;
}
.section-related-insights .insight-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-heading {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 4);
  }
}
@media screen and (min-width: 1440px) {
  .section-related-insights .insight-heading {
    width: 426.6666666667px;
  }
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-heading {
    padding-right: 20px;
  }
}
.section-related-insights .navigation {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.section-related-insights .navigation a {
  position: relative;
}
.section-related-insights .navigation a::after {
  font-family: "aw";
  content: "r";
  font-size: 22px;
  top: 0;
  position: absolute;
  margin-left: 10px;
  font-weight: 100;
  transition: font-size 0.25s ease, color 0.25s ease;
}
.section-related-insights .navigation a:focus, .section-related-insights .navigation a:active, .section-related-insights .navigation a:hover {
  color: #52f18f;
}
.section-related-insights .navigation a:focus::after, .section-related-insights .navigation a:active::after, .section-related-insights .navigation a:hover::after {
  content: "q";
  font-size: 23px;
}
.section-related-insights .insight-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-related-insights .insight-title a:focus, .section-related-insights .insight-title a:active, .section-related-insights .insight-title a:hover {
  color: #52f18f;
  text-decoration: underline;
}
.section-related-insights .insight-image {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-image {
    height: 270px;
  }
}
.section-related-insights .insight-image img {
  border-radius: 16px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-image img {
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .section-related-insights .related-insights-wrapper {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-list {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .section-related-insights .insight-list {
    width: 853.3333333333px;
  }
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-list {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .section-related-insights .insight-item {
    flex: 1 1 0;
  }
}

.section-social-share {
  padding-bottom: 64px;
  padding-top: 64px;
}

.section-business .boxes-content, .section-icon-box .boxes-content {
  display: flex;
  padding: 80px 0px 0px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media screen and (min-width: 1024px) {
  .section-business .boxes-content, .section-icon-box .boxes-content {
    flex-direction: row;
  }
}
.section-business .boxes-content .box, .section-icon-box .boxes-content .box {
  display: flex;
  padding: 48px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  background: #1e1e1e;
  border-radius: 40px;
}
.section-business .boxes-content .box .box-text, .section-icon-box .boxes-content .box .box-text {
  color: var(--Light-Gray, #E2E2E2);
}

/* Icon box CSS only */
@media only screen and (max-width: 768px) {
  .section-icon-box h3 {
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .section-icon-box .boxes-content {
    padding: 36px 0 0;
    gap: 24px;
  }
}
.section-icon-box .box {
  gap: 0 !important;
}
@media only screen and (max-width: 768px) {
  .section-icon-box .box {
    padding: 36px 24px !important;
  }
}
.section-icon-box .box .box-icon {
  padding-bottom: 24px;
}
.section-icon-box .box .box-icon-title {
  padding-bottom: 16px;
}
.section-icon-box .box .box-icon-title h4 {
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  letter-spacing: 1.08px;
  text-transform: uppercase;
}
.section-icon-box .box .box-icon-subtitle {
  padding-bottom: 16px;
}
.section-icon-box .box .box-icon-subtitle h5 {
  color: var(--White, #FFF);
  /* Desktop/Heading/H4 */
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px; /* 142.857% */
  margin: 0;
}
.section-icon-box .box .box-icon-text p {
  color: var(--Light-Gray, #E2E2E2);
  /* Desktop/Paragraph/L Regular */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.section-posts-grid {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-posts-grid {
    padding-bottom: 160px;
  }
}
.section-posts-grid .categories--menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: hidden;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .section-posts-grid .categories--menu {
    margin-right: -87px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .section-posts-grid .categories--menu {
    margin-right: calc(-1 * (100vw - 1280px) / 2);
  }
}
.section-posts-grid .categories--label {
  color: #c2c2c2;
}
.section-posts-grid .card-img {
  padding-bottom: 25px;
}
.section-posts-grid .card-img img {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
  width: 100%;
  border-radius: 16px;
}
.section-posts-grid .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .section-posts-grid .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 80px;
  }
}
.section-posts-grid .grid--more {
  text-align: center;
}
.section-posts-grid .pills-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 8px;
  padding-left: 20px;
  --mask-height: 20px;
  --scrollbar-width: 8px;
  --mask-image-content: linear-gradient(
    to right,
    transparent,
    black var(--mask-height)
  );
  --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
  --mask-image-scrollbar: linear-gradient(black, black);
  --mask-size-scrollbar: var(--scrollbar-width) 100%;
  mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  mask-position: 0 0, 100% 0;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
  -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
  -webkit-mask-position: 0 0, 100% 0;
  -webkit-mask-repeat: no-repeat, no-repeat;
}
@media screen and (min-width: 1024px) {
  .section-posts-grid .pills-wrapper {
    padding-right: 87px;
  }
}
@media screen and (min-width: 1400px) {
  .section-posts-grid .pills-wrapper {
    padding-right: calc((100vw - 1280px) / 2);
  }
}
.section-posts-grid .pills-wrapper::-webkit-scrollbar {
  display: none;
}
.section-posts-grid .pills-wrapper .pill {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
  color: #c2c2c2;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-posts-grid .pills-wrapper .pill:hover {
  background-color: #fff;
  color: #000;
  font-weight: 700;
}
.section-posts-grid .pills-wrapper .pill.is-active {
  background-color: #52f18f;
  color: #000;
  font-weight: 700;
}
.section-posts-grid .pills-wrapper .pill .pill-bg-text {
  display: block;
  font-weight: 700;
  opacity: 0;
  margin-top: -24px;
}
.section-posts-grid .grid--more a {
  display: inline-block;
}
.section-posts-grid .card-grid-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
  width: 100%;
}
.section-posts-grid .card-grid-item:hover .card--title a {
  color: #52f18f;
}
.section-posts-grid .card-grid-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-posts-grid .card-grid-item.is-visible .card-img img {
  opacity: 1;
}
.section-posts-grid .hidden {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .section-posts-grid .card-grid-item {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}

.section--img-stats .card-quote, .section--img-stats .card-stat {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.1);
  box-shadow: 12px 24px 32px 0 rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
}

.section--img-stats .section--wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 24px;
  padding: 24px;
  justify-content: space-between;
  background: radial-gradient(54.09% 93.69% at 39.84% 7.25%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%), var(--bg-img) lightgray 50%/cover no-repeat;
  background-blend-mode: multiply, normal;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .section--img-stats .section--wrapper {
    flex-direction: row;
    padding: 48px;
    gap: 0;
  }
}
.section--img-stats .side-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 150px;
}
@media screen and (min-width: 1024px) {
  .section--img-stats .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section--img-stats .side-left {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .section--img-stats .side-left {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section--img-stats .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 4);
  }
}
@media screen and (min-width: 1440px) {
  .section--img-stats .side-right {
    width: 426.6666666667px;
  }
}
.section--img-stats .cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--img-stats .typo-stat {
  color: #52f18f;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px; /* 112.5% */
  letter-spacing: 0.64px;
}
.section--img-stats .pills {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.section--img-stats .pill {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  padding: 8px 24px;
}
.section--img-stats .pill:hover {
  background-color: #fff;
  color: #000;
  font-weight: 800;
}
.section--img-stats .section--label {
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .section--img-stats .section--label {
    padding-bottom: 16px;
  }
}
.section--img-stats .title {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section--img-stats .title {
    padding-bottom: 48px;
  }
}

.section-hero-stats {
  position: relative;
  padding: 200px 0 80px;
}
.section-hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 640px;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--bg-img), var(--bg-img); /* fallback/second layer */
  background-size: auto, auto, cover, cover;
  background-position: center, center, 50% 50%, 50% 50%;
  background-repeat: no-repeat;
  background-blend-mode: normal, multiply, normal, normal;
}
.section-hero-stats > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats {
    padding-top: 416px;
  }
}
.section-hero-stats .content-wrapper {
  padding: 32px;
  border-radius: 40px;
  background: #1e1e1e;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .content-wrapper {
    padding: 48px;
  }
}
.section-hero-stats .top {
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .top {
    flex-direction: row;
  }
}
.section-hero-stats .top .side-left {
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .top .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 5);
  }
}
@media screen and (min-width: 1440px) {
  .section-hero-stats .top .side-left {
    width: 533.3333333333px;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .top .side-left {
    padding-bottom: 0;
  }
}
.section-hero-stats .top .side-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .top .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 7);
  }
}
@media screen and (min-width: 1440px) {
  .section-hero-stats .top .side-right {
    width: 746.6666666667px;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .top .side-right {
    justify-content: flex-end;
  }
}
.section-hero-stats .middle {
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
}
.section-hero-stats .middle .title {
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .middle .title {
    padding-right: 20px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .middle {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .middle .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 5);
  }
}
@media screen and (min-width: 1440px) {
  .section-hero-stats .middle .side-left {
    width: 533.3333333333px;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .middle .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 7);
  }
}
@media screen and (min-width: 1440px) {
  .section-hero-stats .middle .side-right {
    width: 746.6666666667px;
  }
}
.section-hero-stats .cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .cards {
    flex-direction: row;
  }
}
.section-hero-stats .card-stat {
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  background: #0d0d0d;
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  text-align: center;
  min-width: 250px;
}
.section-hero-stats .stat-value {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #52f18f;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.section-hero-stats .pills {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .section-hero-stats .pills {
    justify-content: flex-end;
  }
}
.section-hero-stats .pill {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  padding: 8px 24px;
}
.section-hero-stats .pill:hover {
  background-color: #fff;
  color: #000;
  font-weight: 800;
}

.section-text {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-text {
    padding-bottom: 160px;
  }
}
.section-text .content-wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .section-text .content-wrapper {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .section-text .content-wrapper {
    width: 853.3333333333px;
  }
}
.section-text .section--label {
  padding-bottom: 16px;
}
.section-text .heading {
  padding-bottom: 24px;
}
.section-text .sub-heading {
  padding-bottom: 24px;
}
.section-text p {
  padding-bottom: 10px;
}

.section-fullwidth-img {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-fullwidth-img {
    padding-bottom: 160px;
  }
}
.section-fullwidth-img img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-two-cols-img {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-two-cols-img {
    padding-bottom: 160px;
  }
}
.section-two-cols-img .sides-wrapper {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-two-cols-img .sides-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .section-two-cols-img .side-left {
    display: flex;
    flex: 1 1 50%;
  }
}
@media screen and (min-width: 1024px) {
  .section-two-cols-img .side-right {
    display: flex;
    flex: 1 1 50%;
  }
}
.section-two-cols-img img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section-side-img-text {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section-side-img-text {
    padding-bottom: 160px;
  }
}
.section-side-img-text .sides-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .sides-wrapper {
    flex-direction: row;
  }
}
.section-side-img-text .side-text {
  padding-right: 10px;
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .side-text {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-side-img-text .side-text {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .side-text {
    padding-right: 20px;
  }
}
.section-side-img-text .side-text .section--img {
  display: block;
}
.section-side-img-text .side-text .section--img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .side-text .section--img {
    display: none;
  }
}
.section-side-img-text .side-img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .side-img {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .section-side-img-text .side-img {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .section-side-img-text .side-img {
    display: flex;
    justify-content: flex-end;
  }
}
.section-side-img-text .side-img .section--img {
  width: 100%;
}
.section-side-img-text .side-img img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-side-img-text .section--label {
  padding-bottom: 16px;
}
.section-side-img-text .section--title {
  padding-bottom: 40px;
}

.section-img-slider .logos-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  --mask-width: 100px;
  mask-image: linear-gradient(to right, transparent, black var(--mask-width), black calc(100% - var(--mask-width)), transparent);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent, black var(--mask-width), black calc(100% - var(--mask-width)), transparent);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}
.section-img-slider .logos-carousel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.section-img-slider .logos-carousel.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.section-img-slider .logos-carousel-wrapper {
  min-height: 120px;
}
@media only screen and (max-width: 768px) {
  .section-img-slider .logos-carousel-wrapper img {
    height: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .section-img-slider .logos-carousel-wrapper {
    min-height: 64px;
  }
}
.section-img-slider .logo-item {
  width: 150px !important;
  height: 64px;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .section-img-slider .logo-item {
    width: 200px !important;
    margin: 0;
    height: 96px;
    min-height: 96px;
  }
}
.section-img-slider .icon-img {
  width: auto;
  height: 100%;
  max-height: 64px;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .section-img-slider .icon-img {
    max-height: 92px;
  }
}
.section-img-slider .img-wrapper {
  margin-left: 22px;
  margin-right: 22px;
}

@media screen and (min-width: 1024px) {
  .section-everyday-ai .section-right, .section-everyday-ai .section-left {
    width: 50%;
  }
}

.homepage-new .section-everyday-ai {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .homepage-new .section-everyday-ai {
    padding-top: 160px;
  }
}
.section-everyday-ai .btn-secondary {
  min-width: 246px;
}
.section-everyday-ai .description {
  padding-bottom: 32px;
}
.section-everyday-ai .description * {
  color: #000;
}
.section-everyday-ai .actions {
  padding-bottom: 18px;
}
.section-everyday-ai .headline * {
  color: #000;
}
.section-everyday-ai .top-logo {
  padding-top: 16px;
}
.section-everyday-ai .section--container {
  gap: 16px;
  display: flex;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  transition: 2s ease;
  flex-flow: column;
}
@media screen and (min-width: 1024px) {
  .section-everyday-ai .section--container {
    flex-flow: row;
    gap: 16px;
    width: 100%;
  }
}
.section-everyday-ai .section-left {
  background-color: #52f18f;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-sizing: border-box;
  border-radius: 24px;
  padding: 36px 32px;
}
@media screen and (min-width: 1024px) {
  .section-everyday-ai .section-left {
    height: 632px;
    padding: 16px 32px;
  }
}
.section-everyday-ai .section-right img {
  width: 100%;
  border-radius: 24px;
  height: 376px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .section-everyday-ai .section-right img {
    border-radius: 40px;
  }
}
.section-everyday-ai .testimonial-carousel {
  width: calc(100% + 60px);
}
.section-everyday-ai .testimonial-slide span {
  padding: 0 40px;
  display: inline-block;
}
.section-everyday-ai .testimonial-content {
  border-radius: 24px;
  background-color: #1e1e1e;
  height: 240px;
  text-align: center;
  padding: 16px 32px;
  margin-top: 16px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .section-everyday-ai .testimonial-content {
    border-radius: 40px;
    gap: 24px;
  }
}

.page-style-guide {
  padding-top: 90px;
}
.page-style-guide .section--container {
  padding: 80px 0px;
}
.page-style-guide .icon::before {
  color: #fff;
}
.page-style-guide input {
  color: #000;
}
.page-style-guide .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
}
.page-style-guide .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.page-style-guide .icon-item span {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-bottom: 6px;
}
.page-style-guide .row {
  display: flex;
  padding: 10px 0;
  margin: 0;
}
.page-style-guide .row span {
  display: inline-block;
  background-color: rgba(0, 255, 255, 0.341);
  text-align: center;
  outline: 1px solid white;
}

.glyphs.character-mapping li {
  margin: 0 30px 20px 0;
  display: inline-block;
  width: 90px;
}

.glyphs.character-mapping .icon {
  margin: 10px 0 10px 15px;
  padding: 15px;
  position: relative;
  width: 55px;
  height: 55px;
  color: #162a36 !important;
  overflow: hidden;
  border-radius: 3px;
  font-size: 32px;
}

.glyphs.character-mapping .icon svg {
  fill: #000;
}

.glyphs.character-mapping input {
  margin: 0;
  padding: 5px 0;
  line-height: 12px;
  font-size: 12px;
  display: block;
  width: 100%;
  border: 1px solid #d8e0e5;
  border-radius: 5px;
  text-align: center;
  outline: 0;
}

.glyphs.character-mapping input:focus {
  border: 1px solid #fbde4a;
  box-shadow: inset 0 0 3px #fbde4a;
}

.glyphs.character-mapping input:hover {
  box-shadow: inset 0 0 3px #fbde4a;
}

.glyphs.css-mapping {
  margin: 0 0 60px 0;
  padding: 30px 0 20px 30px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid #d8e0e5;
  border-radius: 3px;
}

.glyphs.css-mapping li {
  margin: 0 30px 20px 0;
  padding: 0;
  display: inline-block;
  overflow: hidden;
}

.glyphs.css-mapping .icon {
  margin: 0;
  margin-right: 10px;
  padding: 13px;
  height: 50px;
  width: 50px;
  color: #162a36 !important;
  overflow: hidden;
  float: left;
  font-size: 24px;
}

.page404 {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: auto;
  margin-bottom: 80px;
  min-height: auto;
  min-width: 350px;
}
@media screen and (min-width: 1024px) {
  .page404 {
    flex-direction: row;
    min-height: 800px;
  }
}
.page404 .side-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .page404 .side-left {
    display: block;
    width: 50vw;
  }
}
.page404 .side-right {
  width: 100%;
  padding: 20px 24px 0;
}
@media screen and (min-width: 1024px) {
  .page404 .side-right {
    width: 50vw;
    padding-top: 100px;
    display: initial;
    flex: 1;
    height: 100%;
  }
}
.page404 .side-right-wrapper {
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .page404 .side-right-wrapper {
    max-width: 630px;
    min-height: 650px;
  }
}
.page404 .page404-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 120px;
}
@media screen and (min-width: 1024px) {
  .page404 .page404-main {
    min-height: 600px;
    padding-bottom: 200px;
    padding-top: 140px;
  }
}
.page404 .page404-main p {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  padding-bottom: 32px;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .page404 .page404-main p {
    margin-bottom: 0;
    padding-bottom: 16px;
  }
}
.page404 .page404-main p:first-of-type {
  padding-bottom: 12px !important;
}
@media only screen and (max-width: 768px) {
  .page404 .page404-main .btn-primary {
    margin-top: 20px;
  }
}
.page404 .page404-main .error-page-button span {
  color: #000;
}
.page404 .page404-main .error-page-button::before {
  background-color: #fff;
}
.page404 h1 {
  letter-spacing: 0%;
  padding-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .page404 h1 {
    margin-top: 80px;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
}

.motion-ball {
  position: relative;
  background-image: url("../images/404/bg-404.png");
  background-size: 300px auto;
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 0;
  width: 350px;
  height: auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-height: 265px;
}
@media screen and (min-width: 1024px) {
  .motion-ball {
    background-size: 120% auto;
    background-position-x: 120%;
    background-position-y: 280%;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    max-width: 800px;
  }
}

#motionPath {
  fill: none;
  stroke: none;
}

#track {
  position: absolute;
  aspect-ratio: 567.86/788.98;
  width: 178px;
  height: auto;
  top: -32px;
  left: 64px;
}
@media screen and (min-width: 1024px) {
  #track {
    width: 72%;
    left: initial;
    top: -36%;
    right: 27%;
  }
}

#circle {
  background-color: #3B43FD;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1024px) {
  #circle {
    width: 80px;
    height: 80px;
  }
}

.trail {
  width: 30px;
  height: 30px;
  background-color: #3B43FD;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .trail {
    width: 80px;
    height: 80px;
  }
}

.ai-page .section-fade-in {
  margin-top: -50vh;
}
.ai-page .boxes-content {
  display: flex;
  flex-flow: row;
  gap: 32px;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .ai-page .boxes-content {
    flex-flow: column;
    gap: 24px;
    margin-top: 0;
  }
}
.ai-page .boxes-content .box {
  border-radius: 40px;
  padding: 48px 32px;
  display: flex;
  flex-flow: column;
  gap: 16px;
  background-color: #1e1e1e;
}
@media only screen and (max-width: 768px) {
  .ai-page .boxes-content .box {
    padding: 36px 24px;
    border-radius: 32px;
  }
  .ai-page .boxes-content .box:first-child {
    margin-top: 24px;
  }
}
.ai-page .boxes-content .box img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
.ai-page .boxes-content .box span {
  font-weight: 800;
  font-size: 28px;
  line-height: 40px;
}
@media only screen and (max-width: 768px) {
  .ai-page .boxes-content .box span {
    font-size: 20px;
    line-height: 28px;
  }
}
.ai-page .boxes-content .box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #c2c2c2;
}
.ai-page .section-parallel-text > div {
  display: flex;
  flex-flow: row;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .ai-page .section-parallel-text > div {
    flex-flow: column;
    gap: 0;
  }
}
.ai-page .section-parallel-text .side-left {
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin-right: 48px;
}
@media screen and (min-width: 1024px) {
  .ai-page .section-parallel-text .side-left {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .ai-page .section-parallel-text .side-left {
    width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .ai-page .section-parallel-text .side-right {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 6);
  }
}
@media screen and (min-width: 1440px) {
  .ai-page .section-parallel-text .side-right {
    width: 640px;
  }
}
.ai-page .section-parallel-text .side-right p {
  color: #c2c2c2;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .ai-page .section-parallel-text .side-right p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .ai-page .section-services-list {
    margin-top: 0;
  }
}

.cookies-wrap .container {
  max-width: 848px;
  margin-bottom: 96px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap .container {
    padding: 0 24px;
    margin-bottom: 48px;
  }
}
.cookies-wrap h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 120%;
  padding: 80px 0;
  margin-top: 104px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap h2 {
    padding: 40px 0 52px 0;
    font-size: 32px;
    line-height: 40px;
  }
}
.cookies-wrap h3 {
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap h3 {
    font-size: 20pz;
  }
}
.cookies-wrap p {
  color: #e2e2e2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cookies-wrap ul {
  padding-left: 16px;
}
.cookies-wrap li {
  color: #e2e2e2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  list-style: disc;
  margin-bottom: 10px;
}
.cookies-wrap .cookies-section {
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap .cookies-section {
    margin-bottom: 32px;
  }
}
.cookies-wrap .cookies-subsection {
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap .cookies-subsection {
    margin-bottom: 24px;
  }
}
.cookies-wrap th,
.cookies-wrap td {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
@media only screen and (max-width: 768px) {
  .cookies-wrap th,
  .cookies-wrap td {
    padding: 16px;
  }
}
.cookies-wrap th {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap th {
    font-size: 16px;
    line-height: 24px;
  }
}
.cookies-wrap th.left-column {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap th.left-column {
    width: 40%;
  }
}
.cookies-wrap td.left-column {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 768px) {
  .cookies-wrap td.left-column {
    font-size: 14px;
    line-height: 20px;
  }
}
.cookies-wrap td.right-column, .cookies-wrap td.right-column li {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #e2e2e2;
}

.aboutus-new {
  padding-top: 85px;
}
@media screen and (min-width: 768px) {
  .aboutus-new {
    padding-top: 93px;
  }
}
@media screen and (min-width: 1024px) {
  .aboutus-new {
    padding-top: 100px;
  }
}
.aboutus-new .section-cta {
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .aboutus-new .section-cta {
    padding-bottom: 160px;
  }
}

.page-contact .section--container,
.page-thank-you .section--container {
  padding-top: 63px;
}
.page-contact .section--label,
.page-thank-you .section--label {
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .page-contact .side-wrapper,
  .page-thank-you .side-wrapper {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 5);
  }
}
@media screen and (min-width: 1440px) {
  .page-contact .side-wrapper,
  .page-thank-you .side-wrapper {
    width: 533.3333333333px;
  }
}
.page-contact .headline,
.page-thank-you .headline {
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page-contact .headline,
  .page-thank-you .headline {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 1024px) {
  .page-contact .side-right,
  .page-thank-you .side-right {
    min-height: 812px;
    display: flex;
    align-items: center;
  }
}
.page-contact::before,
.page-thank-you::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 1300px;
  height: 100%;
  background-image: url(../images/contactdesktop.svg);
  background-position: 0 -320px;
  background-repeat: no-repeat;
  background-size: 120% 120%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .page-contact::before,
  .page-thank-you::before {
    background-size: 900px 1200px;
    background-position: -30px -200px;
    min-height: 940px;
  }
}
@media screen and (min-width: 1024px) {
  .page-contact .section--container,
  .page-thank-you .section--container {
    display: flex;
  }
}
.page-contact .side-left,
.page-thank-you .side-left {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .page-contact .side-left,
  .page-thank-you .side-left {
    align-items: center;
  }
}
.page-contact .contact-footer,
.page-thank-you .contact-footer {
  display: flex;
  padding-bottom: 120px;
}
.page-contact .form-wrapper,
.page-thank-you .form-wrapper {
  display: flex;
  width: 100%;
  padding: 24px 24px 32px 24px;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(0, 0, 0, 0.7);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  margin-bottom: 80px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.page-contact input,
.page-contact textarea,
.page-thank-you input,
.page-thank-you textarea {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  resize: none; /* optional for textarea */
  outline: none; /* if you want to remove focus outline */
  position: relative;
  z-index: 1;
}
.page-contact .input-text,
.page-thank-you .input-text {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(194, 194, 194, 0.3);
  background: #1E1E1E;
}
.page-contact .input-text input,
.page-thank-you .input-text input {
  padding: 34px 16px 22px;
  border-radius: 12px;
  width: 100%;
}
.page-contact .input-textarea,
.page-thank-you .input-textarea {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(194, 194, 194, 0.3);
  background: #1E1E1E;
  height: 172px;
  padding-top: 12px;
}
.page-contact .input-textarea textarea,
.page-thank-you .input-textarea textarea {
  width: 100%;
  height: 140px;
  padding: 0 16px 12px 16px;
  margin-top: 14px;
}
.page-contact .input-label,
.page-thank-you .input-label {
  position: absolute;
  top: 0;
  padding: 12px 16px;
  color: #E2E2E2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: font-size 0.5s ease;
  z-index: 0;
}
.page-contact .input-label.focused,
.page-thank-you .input-label.focused {
  color: #E2E2E2;
  font-size: 12px;
  padding-top: 8px;
}
.page-contact .form-group,
.page-thank-you .form-group {
  padding-bottom: 16px;
  margin-bottom: 0;
}
.page-contact .form-group.has-error,
.page-thank-you .form-group.has-error {
  padding-bottom: 30px;
}
.page-contact .form-group:has(.wpcf7-not-valid-tip),
.page-thank-you .form-group:has(.wpcf7-not-valid-tip) {
  padding-bottom: 30px;
}
.page-contact .form-btn,
.page-thank-you .form-btn {
  text-align: center;
}
.page-contact .block-icon,
.page-thank-you .block-icon {
  padding-bottom: 16px;
}
.page-contact .block-info,
.page-thank-you .block-info {
  padding-bottom: 24px;
}
.page-contact .block-title,
.page-thank-you .block-title {
  padding-bottom: 8px;
}
.page-contact .thank-you-box,
.page-thank-you .thank-you-box {
  display: none;
  padding: 24px 24px 40px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(0, 0, 0, 0.7);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  min-height: 400px;
  margin-bottom: 40px;
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 1024px) {
  .page-contact .thank-you-box,
  .page-thank-you .thank-you-box {
    min-height: 582px;
  }
}
.page-contact .wpcf7-not-valid-tip,
.page-thank-you .wpcf7-not-valid-tip {
  position: absolute;
  display: block;
  left: 0;
  bottom: -24px;
  padding-left: 8px;
}

body.form-remove .page-contact .form-wrapper {
  opacity: 0;
}

body.form-add-thank-you .page-contact .form-wrapper {
  display: none;
}
body.form-add-thank-you .page-contact .thank-you-box {
  display: flex;
  opacity: 0;
}

body.form-show-thank-you .page-contact .form-wrapper {
  display: none;
}
body.form-show-thank-you .page-contact .thank-you-box {
  display: flex;
  opacity: 1;
}

.page-thank-you .thank-you-box {
  display: flex;
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .page-services .section-scrollable-slides {
    position: absolute;
    width: 100%;
    bottom: -150px;
  }
}
.page-services .active-slide-1 .slider-01 .cols-wrapper {
  height: calc(100vh - 248px);
}
.page-services .active-slide-2 .slider-02 .cols-wrapper {
  padding-top: 16px;
  height: calc(100vh - 248px);
}
.page-services .active-slide-3 .slider-03 .cols-wrapper {
  height: calc(100vh - 248px);
}
.page-services .section-menu-links {
  padding-top: 0;
  padding-bottom: 232px;
}
@media screen and (min-width: 1024px) {
  .page-services .section-menu-links {
    padding-top: 0;
    padding-bottom: 160px;
  }
}
.page-services .section--scroll-wrapper.active-slide .section-two-cols {
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .page-services .scroller-wrapper-ontop .section-two-cols {
    padding-top: 25vh;
  }
}
@media (min-width: 1024px) and (min-height: 800px) {
  .page-services .scroller-wrapper-ontop .section-two-cols {
    padding-top: 33.7vh;
  }
}
@media screen and (min-width: 1024px) {
  .page-services .screen-slide {
    height: 100vh;
  }
}
.page-services .section--slide-center {
  position: relative;
  padding-top: 132px;
  padding-bottom: 132px;
}
@media screen and (min-width: 1024px) {
  .page-services .section--slide-center {
    position: absolute;
    width: 100%;
    top: 100px;
    height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.page-services .section-img-slider {
  margin-top: 200px;
}
@media screen and (min-width: 1024px) {
  .page-services .section-img-slider {
    padding-bottom: 160px;
  }
}

.page-press-release {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .page-press-release {
    padding-top: 100px;
  }
}

.artical_press_release_wrapper {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .artical_press_release_wrapper {
    padding-top: 100px;
  }
}
.artical_press_release_wrapper .top-newsroom {
  color: var(--Electric-Lime, #52F18F);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  padding-right: 142px;
  align-items: center;
  gap: 8px;
  padding-top: 40px;
}
.artical_press_release_wrapper p.article-date {
  color: var(--White, #FFF);
  /* Desktop/Paragraph/L Bold */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  padding-top: 40px;
  padding-bottom: 16px;
}
.artical_press_release_wrapper h2.py-small {
  padding-bottom: 0;
}
.artical_press_release_wrapper .intro {
  color: #ffffff;
  /* Desktop/Paragraph/L Extra Bold */
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px; /* 155.556% */
}
.artical_press_release_wrapper .article-excerpt {
  color: var(--Light-Gray, #E2E2E2);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.artical_press_release_wrapper .article-excerpt a {
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 1px;
  color: #E2E2E2;
}
.artical_press_release_wrapper .article-excerpt a:hover {
  color: #52F18F;
}
.artical_press_release_wrapper .video-rectangle {
  border-radius: 24px;
  background: var(--true-black-000, #000);
  width: 342px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle {
    width: 1064px;
    height: 600px;
  }
}
.artical_press_release_wrapper .video-rectangle #top-svg {
  position: absolute;
  right: 5%;
  width: 236px;
  height: 133px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle #top-svg {
    width: auto;
    height: auto;
  }
}
.artical_press_release_wrapper .video-rectangle #middle-svg {
  position: absolute;
  right: 21%;
  width: 127px;
  height: 58px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle #middle-svg {
    position: absolute;
    right: 21%;
    width: auto;
    height: auto;
  }
}
.artical_press_release_wrapper .video-rectangle .play-button {
  position: absolute;
  top: 35%;
  left: 40%;
  width: 54px;
  height: 54px;
  border-radius: 50%; /* Circle shape */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Optional shadow */
  cursor: pointer;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(0, 0, 0, 0.6);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(37.5px);
          backdrop-filter: blur(37.5px);
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle .play-button {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
  }
}
.artical_press_release_wrapper .video-rectangle .play-button svg {
  width: 24px;
  height: 24px;
  display: block;
}
.artical_press_release_wrapper .video-rectangle .video-logo-title {
  padding-left: 18px;
  position: absolute;
  top: 52%;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle .video-logo-title {
    padding-left: 64px;
  }
}
.artical_press_release_wrapper .video-rectangle .video-logo-title .video-title {
  color: var(--White, #FFF);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 0;
  padding-bottom: 18px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle .video-logo-title .video-title {
    font-size: 72px;
    line-height: 88px;
  }
}
.artical_press_release_wrapper .video-rectangle .video-logo-title img {
  width: 214px;
  height: 38px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .video-rectangle .video-logo-title img {
    width: auto;
    height: auto;
  }
}
.artical_press_release_wrapper .press_release_details p {
  margin-top: 16px;
}
.artical_press_release_wrapper .article_press_release {
  padding-top: 64px;
}
.artical_press_release_wrapper .article_press_release h2 {
  color: #FFF;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 100% */
}
.artical_press_release_wrapper .article_press_release p {
  margin-bottom: 16px;
}
.artical_press_release_wrapper .article_press_release p.article-last-p {
  margin-bottom: 0;
}
.artical_press_release_wrapper .article_press_release p.article-read-more {
  color: var(--Light-Gray, #E2E2E2);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.artical_press_release_wrapper .article_press_release p.article-read-more a {
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 1px;
  color: #E2E2E2;
}
.artical_press_release_wrapper .article_press_release p.article-read-more a:hover {
  color: #52F18F;
}
.artical_press_release_wrapper ul {
  padding-left: 20px;
  list-style-type: disc;
}
.artical_press_release_wrapper ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 32px;
}
.artical_press_release_wrapper .article-blockquote {
  padding: 64px 32px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .article-blockquote {
    padding: 64px 80px;
  }
}
.artical_press_release_wrapper .article-blockquote .testimonial-block {
  color: #fff;
  padding-left: 8px;
  max-width: 720px;
  font-family: "Inter", sans-serif;
  position: relative;
  border-radius: 8px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-bar {
  width: 4px;
  height: 100%;
  background-color: #00FF8F;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box {
  position: relative;
  padding: 0 24px 24px 24px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .quote-mark {
  font-size: 40px;
  color: #00FF8F;
  line-height: 1;
  margin-bottom: 8px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .quote-mark img {
  vertical-align: top;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .quote-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  font-style: normal;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .quote-text {
    font-size: 28px;
    line-height: 40px;
  }
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .avatars {
  position: absolute;
  top: -16px;
  right: 16px;
  display: flex;
  gap: 4px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .quote-box .avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #00FF8F;
  background-color: #fff;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .author-info .author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.artical_press_release_wrapper .article-blockquote .testimonial-block .author-info .author-photo:hover {
  filter: grayscale(0);
}
.artical_press_release_wrapper .share-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.artical_press_release_wrapper .section-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--Charcoal, #1E1E1E);
}
.artical_press_release_wrapper .section-about .about-wrapper {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.artical_press_release_wrapper .section-about .about-wrapper h2 {
  height: 96px;
}
@media screen and (min-width: 1024px) {
  .artical_press_release_wrapper .section-about .about-wrapper {
    padding: 32px 108px 64px 64px;
  }
}
.artical_press_release_wrapper .video-container {
  margin: 0 auto;
  position: relative;
  width: 80%;
  padding-bottom: 50%; /* 16:9 ratio = 9 / 16 * 100 */
  height: 0;
  overflow: hidden;
}
.artical_press_release_wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-insights {
  margin-top: 77px;
}
@media screen and (min-width: 1024px) {
  .page-insights {
    margin-top: 99px;
  }
}
.page-insights .card-insights img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.page-dreamforce {
  /*slider starts*/
  /*slider closed*/
  /* Swipe background */
  /* On hover, move background */
  /* Change text color on hover */
  /* ✅ Visible BG Icon Behind Contact Form */
  /* team-section style */
  /* approach */
  /* value-section */
  /* responsive */
  /* .footer .footer--social a.icon:hover::before {
      color: #52f18f;
  } */
  /*.icon-youtube:before {
      content: "";
      background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113203/youtube.png);
      position: absolute;
  }

  .icon-instagram:before {
      content: "";
      background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113153/instagram.png);
      position: absolute;
  }

  .icon-facebook:before {
      content: "";
      background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113140/facebook.png);
      position: absolute;
  }

  .icon-x:before {
      content: "";
      background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113249/x.png);
      position: absolute;
  }

  .icon-linkedin-alt:before {
      content: "";
      background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113214/linkedin.png);
      position: absolute;

  }*/
  /*  */
  /*.footer .footer--social a.icon:hover::before {
    color: #52f18f;
  }*/
  /*.icon-youtube:before {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113203/youtube.png);
    position:absolute;
  }

  .icon-instagram:before {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113153/instagram.png);
    position:absolute;
  }

  .icon-facebook:before {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113140/facebook.png);
    position:absolute;
  }

  .icon-x:before {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113249/x.png);
    position: absolute;
  }

  .icon-linkedin-alt:before {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/29113214/linkedin.png);
    position: absolute;

  }*/
  /*second last section start*/
  /* Responsive for small screens */
  /*second last section closed*/
  /*media queries start*/
  /* Extra small devices (phones, less than 576px) */
  /* Small phones like iPhone SE (320px) */
  /* Phones in portrait (up to 480px) */
  /* Phones in landscape (up to 768px) */
  /* Tablets (portrait) (≥576px and ≤767px) */
  /* Tablets (landscape) (≥768px and ≤991px) */
  /*media queries closed*/
  /* Popup overlay styles */
  /* Overlay */
}
.page-dreamforce .discType {
  list-style: disc;
  padding-left: 19px;
}
.page-dreamforce .wpcf7-form-control-wrap.fName,
.page-dreamforce .wpcf7-form-control-wrap.fName {
  margin-bottom: 17px;
}
.page-dreamforce .wpcf7-not-valid-tip {
  padding-left: 12px;
  font-size: 12px;
}
.page-dreamforce .wpcf7-not-valid-tip {
  color: #fff;
}
.page-dreamforce .wpcf7 input::-moz-placeholder {
  color: #fff;
}
.page-dreamforce .wpcf7 input::placeholder {
  color: #fff;
}
.page-dreamforce .testimonial-carousel .slick-dots {
  margin: 0px auto 0px;
}
.page-dreamforce .testimonial-slide.slick-slide {
  padding-left: 25px;
  padding-right: 25px;
}
.page-dreamforce a:focus {
  color: #fff;
}
.page-dreamforce .section--container .cols-desktop-9 .meet-the-team-hdg {
  padding-bottom: 20px;
}
.page-dreamforce .section--container .cols-desktop-9 .attend-hdg {
  padding-bottom: 60px;
}
.page-dreamforce .section-cards-slider.section--pb {
  padding-top: 60px;
}
.page-dreamforce .content_details .summit-partner {
  text-transform: uppercase;
  padding-bottom: 24px;
}
.page-dreamforce .section5-left.section-left .description.typo-p-l {
  color: #000;
}
.page-dreamforce .section--container .left .section--label {
  text-align: left;
}
.page-dreamforce .section-cards-slider .slider-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.page-dreamforce .section-cards-slider .card-slider {
  display: flex;
  width: 308px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(45px);
  backdrop-filter: blur(45px);
}
.page-dreamforce .section-cards-slider .card-title {
  color: #52f18f;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 64px;
}
.page-dreamforce .button-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  width: 228px;
  text-align: center;
  justify-content: center;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  margin: 0 auto;
}
.page-dreamforce .button-swipe {
  position: relative;
  z-index: 2;
  padding: 12px 30px;
  font-size: 16px;
  background-color: transparent;
  color: #000;
  border: none;
  cursor: pointer;
}
.page-dreamforce .button-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  z-index: 1;
  transition: left 0.4s ease;
}
.page-dreamforce .button-wrapper:hover::before {
  left: 0;
}
.page-dreamforce .button-wrapper:hover .button-swipe {
  color: #000;
}
.page-dreamforce .button-wrapper {
  background-color: rgb(255, 183, 88);
}
.page-dreamforce .read-more {
  position: relative;
  display: inline-block;
}
.page-dreamforce .arrow-icon {
  position: absolute;
  top: 8px;
  left: 80px;
  transition: transform 0.3s ease;
  width: 18px;
  height: auto;
  margin-left: 8px;
}
.page-dreamforce .arrow-icon.hover {
  opacity: 0;
  top: 8px;
}
.page-dreamforce .read-more:hover .normal {
  opacity: 0;
  transform: translateX(5px);
  /* transform: scale(1.3); */
}
.page-dreamforce .read-more:hover .hover {
  opacity: 1;
  /* transform: scale(1.3); */
  transform: translateX(5px);
}
.page-dreamforce .read-more:hover {
  color: #52f18f;
}
.page-dreamforce .section--label {
  text-align: center;
}
.page-dreamforce .cta-actions {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.page-dreamforce .cta-container .cta-actions {
  padding-top: 1px;
}
.page-dreamforce .approach-text .cta-actions,
.page-dreamforce .content-box .cta-actions {
  justify-content: left;
}
.page-dreamforce .subtitle-align {
  text-align: center;
}
.page-dreamforce .hdg-align {
  text-align: center;
}
.page-dreamforce .desc-align {
  text-align: center;
}
.page-dreamforce .card .card-image .image-overlay p.tagline {
  font-size: 14px;
  font-weight: 600;
}
.page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-radius: 16px;
  -webkit-backdrop-filter: blur(90px);
          backdrop-filter: blur(90px);
  width: 90%;
}
.page-dreamforce .team-section.section--pb .container {
  width: 93%;
}
.page-dreamforce .Contact_form_wrapper .container {
  width: 90%;
}
.page-dreamforce .header_wrapper {
  padding-top: 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.page-dreamforce div.approach-image::before {
  content: "";
  position: absolute;
  top: 295px;
  width: 100%;
  height: 69%;
  background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/07/13150530/vector.svg) no-repeat center center;
  background-size: contain;
  z-index: -1;
  transform: scale(1.5) translate(-24%, -30%);
}
.page-dreamforce div.info-icon {
  padding-bottom: 10px;
}
.page-dreamforce .card-top-icon .card-title {
  font-size: 27px;
  font-weight: 800;
  line-height: 40px;
  padding-bottom: 14px;
}
.page-dreamforce .card-top-icon p {
  font-size: 18px;
}
.page-dreamforce p.attend-hdg {
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  padding-bottom: 50px;
  color: #fff;
}
.page-dreamforce .team-section.section--pb p.meet-the-team {
  font-weight: 400;
  color: white;
  text-align: center;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.page-dreamforce .team-section.section--pb p.meet-the-team-hdg {
  font-size: 40px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: 0px;
  text-align: center;
  padding-bottom: 20px;
}
.page-dreamforce .team-section.section--pb p.meet-the-team-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  padding-left: 150px;
  padding-right: 70px;
  padding-bottom: 40px;
}
.page-dreamforce .team-section.section--pb p.meet-the-team-role {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
}
.page-dreamforce .section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  flex-wrap: wrap;
}
.page-dreamforce .image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  padding-left: 50px;
}
.page-dreamforce .image-wrapper::before {
  content: "";
  position: absolute;
  top: 176px;
  left: 83;
  width: 100%;
  height: 100%;
  background: url("../wp-content/themes/algoworks-child-theme/assets/images/vector.svg") no-repeat center center;
  background-size: contain;
  z-index: -1;
  transform: scale(1.5) translate(-30%, -30%);
}
.page-dreamforce .image-box {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  border-radius: 20px;
  z-index: 1;
  position: relative;
  top: 0px;
  left: -93px;
}
.page-dreamforce .content-box {
  max-width: 600px;
}
.page-dreamforce .content-box h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0px;
}
.page-dreamforce .content-box p {
  margin-bottom: 15px;
  line-height: 28px;
  color: #e2e2e2;
  font-size: 18px;
  font-weight: 400;
}
.page-dreamforce .btn {
  background-color: #f7b03c;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.page-dreamforce div.image-box img {
  width: 319px;
  height: 319px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .page-dreamforce .section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .page-dreamforce .image-wrapper {
    width: 260px;
    height: 260px;
  }
  .page-dreamforce .image-wrapper::before {
    transform: scale(1.6) translate(-40%, -40%);
  }
  .page-dreamforce .content-box {
    text-align: center;
  }
}
.page-dreamforce .Contact_form_wrapper {
  background-color: #0f0f0f;
  margin-top: -102px;
  padding: 130px 0;
}
.page-dreamforce .Contact_form_details .content_details {
  margin-top: 87px;
}
.page-dreamforce .Contact_form_details .Contact_form.form-box {
  margin-top: 87px;
}
.page-dreamforce .Contact_form_wrapper:after {
  content: "";
  background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/30094050/algo_icon.svg);
  position: absolute;
  top: 0;
  right: 0;
  width: 885px;
  height: 749px;
  background-repeat: no-repeat;
}
.page-dreamforce .Contact_form_details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 100%;
  margin: auto;
  align-items: flex-start;
}
.page-dreamforce .content_details {
  flex: 1 1 30%;
}
.page-dreamforce .Contact_form {
  flex: 1 1 30%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
}
.page-dreamforce .Contact_form::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 300px;
  height: 300px;
  background-image: url("https://stage.algoworks.com/wp-content/themes/algoworks-child-theme/assets/algoworks/images/SuperGraphic.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.page-dreamforce .content_details h1 {
  font-weight: 800;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  color: white;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page-dreamforce .content_details h1 {
    font-size: 28px;
    line-height: 36px;
    width: 64%;
  }
}
.page-dreamforce .content_details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(226, 226, 226);
  padding-bottom: 48px;
}
.page-dreamforce .info {
  display: flex;
  flex-direction: row;
  gap: 12%;
  margin-bottom: 1rem;
}
.page-dreamforce .info.mobile {
  display: none;
}
.page-dreamforce .info-item .info-icon img {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}
.page-dreamforce .value h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
  padding-bottom: 1px;
  color: White;
}
@media screen and (max-width: 768px) {
  .page-dreamforce .value h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.page-dreamforce .value p {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0px;
  color: White;
}
@media screen and (max-width: 768px) {
  .page-dreamforce .value p {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-dreamforce .form-box h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #fff;
}
.page-dreamforce .form-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  color: rgb(194, 194, 194);
  padding-bottom: 24px;
}
.page-dreamforce form {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.page-dreamforce input,
.page-dreamforce select {
  padding: 12px 16px;
  background-color: #2a2a2a;
  color: white;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}
.page-dreamforce input::-moz-placeholder {
  color: rgb(255, 255, 255);
}
.page-dreamforce input::placeholder {
  color: rgb(255, 255, 255);
}
.page-dreamforce .input-row {
  display: flex;
  gap: 10px;
}
.page-dreamforce .input-row input {
  flex: 1;
}
.page-dreamforce button {
  background: rgb(255, 183, 88);
  color: #000;
  padding: 12px 24px;
  width: 228px;
  text-align: center;
  justify-content: center;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 32px;
}
.page-dreamforce button:hover {
  background: rgb(255, 183, 88);
}
.page-dreamforce .team-section,
.page-dreamforce .approach-section {
  background-color: #0f0f0f;
}
.page-dreamforce .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  padding-bottom: 32px;
  margin: 0px;
}
.page-dreamforce .heading {
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0px;
  color: rgb(255, 255, 255);
  padding-bottom: 32px;
  margin: 0px;
}
.page-dreamforce .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(226, 226, 226);
  margin: 0;
  padding-bottom: 64px;
}
.page-dreamforce .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.page-dreamforce .team-card {
  border-radius: 12px;
  padding: 0px 0px 20px 0px;
  /* width: calc(100% / 4); */
  width: 30%;
  text-align: left;
}
.page-dreamforce .team-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}
.page-dreamforce .team-card h3 {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #fff;
}
.page-dreamforce .role {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
}
.page-dreamforce .bio {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(194, 194, 194);
}
.page-dreamforce .approach-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
}
.page-dreamforce .approach-image {
  /* flex: 1 1 400px; */
  /* max-width: 500px; */
  width: 45%;
}
.page-dreamforce .approach-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.page-dreamforce .approach-text {
  flex: 1 1 400px;
  max-width: 500px;
}
.page-dreamforce .approach-text .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  padding-bottom: 24px;
}
.page-dreamforce .approach-text h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0px;
  color: #fff;
  padding-bottom: 16px;
}
.page-dreamforce .approach-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #e2e2e2;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page-dreamforce .approach-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.page-dreamforce .value-section {
  padding: 60px 20px;
  margin: auto;
  background-color: #0f0f0f;
}
.page-dreamforce .value-header p {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding-bottom: 24px;
  margin: 0;
}
.page-dreamforce .value-header h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0px;
  color: rgb(255, 255, 255);
  margin: 0;
  padding-bottom: 80px;
}
.page-dreamforce .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.page-dreamforce .card_box {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-dreamforce .card-icon {
  font-size: 24px;
  color: #00ff88;
  /* Use green tone as seen in icons */
}
.page-dreamforce .card_box h3 {
  font-weight: 800;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0px;
  vertical-align: bottom;
  padding-bottom: 16px;
  margin: 0;
  color: rgb(255, 255, 255);
}
.page-dreamforce .card_box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
.page-dreamforce .card_box ul li {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgb(226, 226, 226);
}
@media (max-width: 900px) {
  .page-dreamforce .card_box {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-dreamforce .container {
    flex-direction: column;
  }
  .page-dreamforce .input-row {
    flex-direction: column;
  }
  .page-dreamforce .info {
    flex-direction: row;
    gap: 0;
  }
  .page-dreamforce .team-grid {
    display: block;
  }
  .page-dreamforce .team-card {
    width: 100%;
  }
  .page-dreamforce .approach-section {
    flex-direction: column;
    text-align: center;
  }
  .page-dreamforce .approach-text {
    max-width: 90%;
    flex: 1 1 1px !important;
  }
  .page-dreamforce .section-text.section--pb {
    position: relative;
    top: -50px;
    padding-bottom: 0px;
  }
  .page-dreamforce .value-section {
    padding-top: 0px;
    padding: 0px 2px;
  }
  .page-dreamforce .section-awards .pb-32 {
    padding-bottom: 0px !important;
  }
}
.page-dreamforce .Contact_form_wrapper {
  padding-top: 105px;
}
.page-dreamforce .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 0.5rem 1rem;*/
  padding: 32px !important;
  border-radius: 16px !important;
  height: 72px !important;
  max-width: 100%;
  overflow: hidden;
}
.page-dreamforce .logo {
  display: flex;
  align-items: center;
  color: #00ff99;
  font-weight: bold;
  font-size: 14px;
  gap: 8px;
}
.page-dreamforce .contact-btn {
  background-color: #f5b942;
  padding: 13px 30px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
@media (max-width: 680px) {
  .page-dreamforce .header_wrap {
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  .page-dreamforce .contact-btn {
    width: 100%;
    text-align: center;
  }
}
.page-dreamforce #masthead,
.page-dreamforce .home-footer {
  display: none;
}
.page-dreamforce .footer .contact-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .contact-title {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 1px;
  }
}
.page-dreamforce .footer .phone-mail a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.page-dreamforce .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: #0d0d0d;
  padding: 64px 0 32px 0;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer {
    padding: 0 0 24px 0;
  }
}
.page-dreamforce .footer .footer-content {
  display: flex;
  flex-flow: row;
  gap: 16px;
  margin-bottom: 40px !important;
}
@media only screen and (max-width: 1024px) {
  .page-dreamforce .footer .footer-content {
    margin-bottom: 0;
    padding: 24px;
    flex-flow: column;
  }
}
.page-dreamforce .footer .contact_details {
  width: 100%;
}
.page-dreamforce .footer .contact_details .footer-right {
  display: flex;
  flex-flow: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.page-dreamforce .footer .contact_details .footer-right a {
  width: 24px;
  height: 24px;
}
.page-dreamforce .footer .footer-left {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .footer-left {
    margin-bottom: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
  }
}
.page-dreamforce .footer .footer-left img {
  height: 56px;
  width: 56px;
}
.page-dreamforce .footer .phone-mail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-dreamforce .footer .phone-mail a {
  display: flex;
  align-items: center;
  min-height: 40px;
}
.page-dreamforce .footer .phone-mail a:hover,
.page-dreamforce .footer .phone-mail a:focus {
  color: #fff;
}
.page-dreamforce .footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
    flex-flow: column;
    gap: 24px;
  }
}
.page-dreamforce .footer .footer-bottom .footer-bottom-images {
  display: flex;
  flex-flow: row;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-bottom .footer-bottom-images {
    width: 100%;
    justify-content: space-between;
  }
}
.page-dreamforce .footer .footer-bottom .bottom_section {
  color: #c2c2c2;
}
.page-dreamforce .footer .footer-bottom .bottom_section a {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 0 8px;
}
.page-dreamforce .footer .footer-bottom .bottom_section a:hover,
.page-dreamforce .footer .footer-bottom .bottom_section a:focus {
  color: #c2c2c2;
  text-decoration: underline;
}
.page-dreamforce .footer .footer-bottom .bottom_section span {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 0 8px;
}
.page-dreamforce .footer .footer-details-wrapper {
  padding: 32px;
  background-color: #1e1e1e;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .footer-details-wrapper {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-details-wrapper {
    padding: 32px 24px;
    flex-flow: column;
  }
}
.page-dreamforce .footer .contact-title {
  padding: 16px 0;
  letter-spacing: inherit;
  vertical-align: middle;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .contact-title {
    margin-right: 64px;
  }
}
.page-dreamforce .footer .contact-title a:hover,
.page-dreamforce .footer .contact-title a:focus {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .logo-img {
    margin-right: 20px;
  }
}
.page-dreamforce .footer .footer--social {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}
.page-dreamforce .footer .footer--social a.icon::before {
  top: inherit;
  margin: 0;
  right: inherit;
  width: inherit;
  height: inherit;
  font-size: 24px;
}
.page-dreamforce a {
  color: #fff;
  text-decoration: none;
}
.page-dreamforce .submit_btn input[type=text] {
  color: black !important;
}
.page-dreamforce .section-side-img {
  position: relative;
}
.page-dreamforce .submit_btn input {
  color: black !important;
}
.page-dreamforce .section-side-img {
  position: relative;
}
.page-dreamforce .section--two-cols {
  display: flex;
  align-items: center;
}
.page-dreamforce .section--two-cols .side-img img {
  position: relative;
  z-index: 9;
}
.page-dreamforce .section-side-img .section--container:after {
  content: "";
  background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/30173119/precision.svg);
  position: absolute;
  top: -165px;
  right: 0;
  width: 23%;
  height: 749px;
  background-repeat: no-repeat;
  z-index: 1;
}
.page-dreamforce .wpcf7 img.ajax-loader {
  display: block;
}
.page-dreamforce .Contact_form {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9;
  padding: 24px 24px 0px 24px;
}
.page-dreamforce .Contact_form_wrapper:after {
  content: "";
  background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/04/30094050/algo_icon.svg);
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 749px;
  background-repeat: no-repeat;
}
.page-dreamforce .Contact_form {
  background-color: rgba(32, 32, 32, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
.page-dreamforce .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  height: 75px;
  max-width: 100%;
  overflow: hidden;
}
.page-dreamforce .logo {
  display: flex;
  align-items: center;
  color: #00ff99;
  font-weight: bold;
  font-size: 14px;
  gap: 8px;
}
.page-dreamforce .contact-btn {
  background-color: #f5b942;
  padding: 13px 30px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
@media (max-width: 680px) {
  .page-dreamforce .header_wrap {
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  .page-dreamforce .contact-btn {
    width: 100%;
    text-align: center;
  }
}
.page-dreamforce #masthead,
.page-dreamforce .home-footer {
  display: none;
}
.page-dreamforce .footer .contact-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .contact-title {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 1px;
  }
}
.page-dreamforce .footer .phone-mail a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.page-dreamforce .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: #0d0d0d;
  padding: 64px 0 32px 0;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer {
    padding: 0 0 24px 0;
  }
}
.page-dreamforce .footer .footer-content {
  display: flex;
  flex-flow: row;
  gap: 16px;
  margin-bottom: 40px !important;
}
@media only screen and (max-width: 1024px) {
  .page-dreamforce .footer {
    margin-bottom: 0;
    padding: 24px;
    flex-flow: column;
  }
}
.page-dreamforce .footer .contact_details {
  width: 100%;
}
.page-dreamforce .footer .contact_details .footer-right {
  display: flex;
  flex-flow: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.page-dreamforce .footer .contact_details .footer-right a {
  width: 24px;
  height: 24px;
}
.page-dreamforce .footer .footer-left {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .footer-left {
    margin-bottom: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
  }
}
.page-dreamforce .footer .footer-left img {
  height: 56px;
  width: 56px;
}
.page-dreamforce .footer .phone-mail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-dreamforce .footer .phone-mail a {
  display: flex;
  align-items: center;
  min-height: 40px;
}
.page-dreamforce .footer .phone-mail a:hover,
.page-dreamforce .footer .phone-mail a:focus {
  color: #fff;
}
.page-dreamforce .footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
    flex-flow: column;
    gap: 24px;
  }
}
.page-dreamforce .footer .footer-bottom .footer-bottom-images {
  display: flex;
  flex-flow: row;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-bottom .footer-bottom-images {
    width: 100%;
    justify-content: space-between;
  }
}
.page-dreamforce .footer .footer-bottom .bottom_section {
  color: #c2c2c2;
}
.page-dreamforce .footer .footer-bottom .bottom_section a {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 0 8px;
}
.page-dreamforce .footer .footer-bottom .bottom_section a:hover,
.page-dreamforce .footer .footer-bottom .bottom_section a:focus {
  color: #c2c2c2;
  text-decoration: underline;
}
.page-dreamforce .footer .footer-bottom .bottom_section span {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #c2c2c2;
  margin: 0 8px;
}
.page-dreamforce .footer .footer-details-wrapper {
  padding: 32px;
  background-color: #1e1e1e;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .footer-details-wrapper {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
}
.page-dreamforce .footer .contact-title {
  padding: 16px 0;
  letter-spacing: inherit;
  vertical-align: middle;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .contact-title {
    margin-right: 64px;
  }
}
.page-dreamforce .footer .contact-title a:hover,
.page-dreamforce .footer .contact-title a:focus {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .page-dreamforce .footer .logo-img {
    margin-right: 20px;
  }
}
.page-dreamforce .footer .footer--social {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}
.page-dreamforce .footer .footer--social a.icon::before {
  top: inherit;
  margin: 0;
  right: inherit;
  width: inherit;
  height: inherit;
  font-size: 24px;
}
.page-dreamforce a {
  color: #fff;
  text-decoration: none;
}
.page-dreamforce .submit_btn input {
  color: black !important;
  padding: 11px 24px !important;
}
.page-dreamforce .slider-wrapper {
  width: 106% !important;
  overflow: auto !important;
  padding-bottom: 25px;
}
.page-dreamforce ::-webkit-scrollbar {
  height: 3px;
  border: 1px solid #d5d5d5;
  visibility: hidden;
}
.page-dreamforce .select-wrap:after {
  top: 9px !important;
  color: white !important;
  z-index: 9 !important;
}
.page-dreamforce .section-our-work {
  display: none;
}
@media only screen and (max-width: 768px) {
  .page-dreamforce .footer .footer-details-wrapper {
    padding: 32px 24px;
    flex-flow: column;
  }
  .page-dreamforce .Contact_form_details {
    display: block;
  }
  .page-dreamforce .Contact_form_wrapper:after {
    content: "";
    background: url(https://liveimages.algoworks.com/new-algoworks/wp-content/uploads/2025/05/09142105/contactbg.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 749px;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .page-dreamforce .info.mobile {
    justify-content: space-between;
    display: flex;
    margin-top: 50px;
    gap: 18px !important;
  }
  .page-dreamforce .info {
    display: none;
  }
  .page-dreamforce .section--two-cols {
    display: block;
  }
  .page-dreamforce .section-side-img .section--container:after {
    display: none;
  }
  .page-dreamforce .section-side-img .side-right {
    margin-top: 40px;
  }
  .page-dreamforce .approach-text {
    text-align: left;
  }
  .page-dreamforce .cards-list-wrapper {
    padding-top: 40px;
  }
  .page-dreamforce .section-awards .card-icon-black {
    width: 160px !important;
  }
  .page-dreamforce .Contact_form_wrapper {
    padding: 80px 0;
  }
  .page-dreamforce .approach-section {
    padding: 0px 20px;
  }
  .page-dreamforce .section-text .section--headline.py-64 {
    padding-top: 10px !important;
    padding-bottom: 0px !important;
  }
  .page-dreamforce .section-awards .card--text {
    font-size: 12px !important;
  }
  .page-dreamforce .section-awards .card--icon {
    padding-bottom: 20px !important;
  }
  .page-dreamforce .approach-section .approach-text p {
    margin-bottom: 0;
  }
  .page-dreamforce .header_wrap {
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(45px);
            backdrop-filter: blur(45px);
    z-index: 9;
    position: relative;
  }
}
@media only screen and (max-width: 500px) {
  .page-dreamforce .Contact_form_wrapper:after {
    width: 70%;
  }
}
.page-dreamforce .card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.page-dreamforce .card {
  width: 354px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-dreamforce .card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 16px;
}
.page-dreamforce .image-overlay {
  background: linear-gradient(to right, #000066, rgba(0, 0, 0, 0.8));
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
}
.page-dreamforce .tagline {
  color: white;
  font-weight: bold;
  font-size: 15px;
}
.page-dreamforce .tagline .highlight {
  color: #36d399;
}
.page-dreamforce .featured-insights {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  padding-bottom: 55px;
}
.page-dreamforce .card-content {
  padding: 20px;
  padding-left: 5px;
}
.page-dreamforce .card-content h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 15px;
}
.page-dreamforce .read-more {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.page-dreamforce .read-more span {
  font-size: 16px;
}
@media (max-width: 768px) {
  .page-dreamforce .card-section {
    flex-direction: column;
    align-items: center;
  }
  .page-dreamforce .featured-insights {
    text-align: left;
  }
  .page-dreamforce .header_wrapper {
    padding-top: 12px;
  }
  .page-dreamforce .card {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .page-dreamforce {
    /* styles for very small phones */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .orangebtn {
    padding: 15px 43px;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team {
    text-align: left;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-hdg {
    text-align: left;
    font-size: 33px;
    line-height: 40px;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-desc {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-dreamforce .approach-text h2 {
    font-size: 23px;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
  .page-dreamforce .header_wrap {
    flex-direction: row;
  }
}
@media (max-width: 320px) {
  .page-dreamforce {
    /* styles for tiny screens */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team {
    text-align: left;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-hdg {
    text-align: left;
    font-size: 33px;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-desc {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-dreamforce .approach-text h2 {
    font-size: 23px;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
  .page-dreamforce .header_wrap {
    flex-direction: row;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 0px;
  }
  .page-dreamforce .header_wrap div.logo a img {
    width: 90%;
  }
  .page-dreamforce .header_wrap div.logo {
    width: 58%;
  }
  .page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .page-dreamforce .header_wrapper .container .header_wrap div.logo img {
    width: 100%;
  }
  .page-dreamforce .header_wrapper .container .header_wrap div.logo {
    width: 51%;
  }
  .page-dreamforce .header_wrapper .container .header_wrap a.orangebtn {
    padding: 15px 10px;
    font-size: 14px;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 0px;
  }
  .page-dreamforce .header_wrap div.logo a img {
    width: 90%;
  }
  .page-dreamforce .header_wrap div.logo {
    width: 58%;
  }
  .page-dreamforce .Contact_form_details .content_details {
    margin-top: 45px;
  }
  .page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: 100%;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
}
@media (min-width: 376px) and (max-width: 480px) and (orientation: portrait) {
  .page-dreamforce {
    /* portrait phone styles */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .header_wrap div.logo {
    width: 58%;
  }
  .page-dreamforce .header_wrap div.logo a img {
    width: 90%;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team {
    text-align: left;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-hdg {
    text-align: left;
    font-size: 33px;
  }
  .page-dreamforce .team-section.section--pb p.meet-the-team-desc {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-dreamforce .approach-text h2 {
    font-size: 23px;
  }
  .page-dreamforce .header_wrap {
    flex-direction: row;
  }
  .page-dreamforce .orangebtn {
    padding: 15px 15px;
    font-size: 15px;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 0px;
  }
  .page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: 100%;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .page-dreamforce {
    /* landscape phone styles */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
  .page-dreamforce .header_wrap {
    flex-direction: row;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 0px;
  }
  .page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .page-dreamforce {
    /* tablet portrait styles */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .approach-image {
    width: 100%;
  }
  .page-dreamforce .header_wrap {
    flex-direction: row;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 0px;
  }
  .page-dreamforce .cxs_landing_content_wrapper .header_wrapper div.container {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .page-dreamforce {
    /* tablet landscape styles */
  }
  .page-dreamforce div.approach-image::before {
    background: none;
    width: auto;
  }
  .page-dreamforce .Contact_form_details .Contact_form.form-box {
    margin-top: 87px;
  }
}
@media (min-width: 820px) and (max-width: 991.98px) {
  .page-dreamforce .approach-image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-dreamforce .Contact_form_wrapper .container {
    width: 96%;
  }
  .page-dreamforce .approach-image {
    width: 96%;
  }
}
.page-dreamforce .select-wrap select {
  border-radius: 11px !important;
  background: #1e1e1e !important;
}
.page-dreamforce .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.page-dreamforce .popup-form {
  background: linear-gradient(145deg, #0a0a0a, #0c3c2c);
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(0, 255, 150, 0.2);
}
.page-dreamforce .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.83);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.page-dreamforce .popup-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  color: #fff;
  position: relative;
}
.page-dreamforce .close-btn {
  position: absolute;
  right: 9px;
  top: 5px;
  font-size: 40px;
  cursor: pointer;
}
.page-dreamforce #popupOverlay .button-wrapper {
  position: relative;
  top: 20px;
}
@media screen and (max-width: 1025px) {
  .page-dreamforce #popupOverlay .popup-form input[type=text],
  .page-dreamforce #popupOverlay .popup-form input[type=email],
  .page-dreamforce #popupOverlay .popup-form select,
  .page-dreamforce #popupOverlay .popup-form textarea {
    height: 40px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
  }
  .page-dreamforce #popupOverlay .button-wrapper {
    height: 38px;
  }
  .page-dreamforce #popupOverlay .submit_btn input {
    font-size: 14px;
    top: -5px;
  }
}
@media screen and (max-width: 768px) {
  .page-dreamforce .wpcf7-form-control-wrap.lName input {
    margin-bottom: 16px;
  }
}
.page-dreamforce body:has(.overlay[style*="display: flex"]) {
  overflow: hidden;
}
.page-dreamforce body:has(.overlay.active) {
  overflow: hidden;
}
.page-dreamforce .Dreamforce_info .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.page-dreamforce .Dreamforce_info {
  margin-bottom: 110px !important;
}
.page-dreamforce .Dreamforce_info .content {
  flex: 1 1 480px;
  padding-right: 90px;
}
.page-dreamforce .Dreamforce_info .content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 120%;
}
.page-dreamforce .Dreamforce_info .subtext {
  font-size: 18px;
  line-height: 28px;
  color: #e2e2e2;
  margin-bottom: 40px;
}
.page-dreamforce .Dreamforce_info h3 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  margin-bottom: 24px;
}
.page-dreamforce .Dreamforce_info .expectations {
  list-style-type: disc;
  margin-bottom: 40px;
}
.page-dreamforce .Dreamforce_info .expectations li {
  font-size: 18px;
  line-height: 28px;
  color: #e2e2e2;
  margin-bottom: 0px;
  margin-left: 23px;
}
.page-dreamforce .Dreamforce_info .location .icon {
  margin-bottom: 16px;
}
.page-dreamforce .Dreamforce_info .location strong {
  color: #fff;
}
.page-dreamforce .loc_details {
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #ffffff;
  width: 50%;
}
.page-dreamforce .Dreamforce_info .image-section {
  flex: 1 1 445px;
  text-align: right;
}
.page-dreamforce .Dreamforce_info .image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1240px) {
  .page-dreamforce .Dreamforce_info .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 110%;
  }
  .page-dreamforce .Dreamforce_info .subtext {
    font-size: 18px;
    line-height: 28px;
    color: #e2e2e2;
    margin-bottom: 30px;
  }
  .page-dreamforce .Dreamforce_info h3 {
    font-size: 26px;
    margin-bottom: 22px;
  }
  .page-dreamforce .Dreamforce_info .expectations {
    list-style-type: disc;
    margin-bottom: 35px;
  }
}
@media (max-width: 1180px) {
  .page-dreamforce .Dreamforce_info .content h2 {
    font-size: 32px;
    margin-bottom: 18px;
    line-height: 100%;
  }
  .page-dreamforce .Dreamforce_info .subtext {
    font-size: 16px;
    line-height: 24px;
    color: #e2e2e2;
    margin-bottom: 24px;
  }
  .page-dreamforce .Dreamforce_info h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .page-dreamforce .Dreamforce_info .expectations {
    list-style-type: disc;
    margin-bottom: 24px;
  }
}
@media (max-width: 1080px) {
  .page-dreamforce .Dreamforce_info .content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 36px;
  }
  .page-dreamforce .Dreamforce_info h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .page-dreamforce .loc_details {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1061px) {
  .page-dreamforce .Dreamforce_info .image-section {
    text-align: center !important;
    padding-bottom: 36px !important;
    width: 100%;
  }
  .page-dreamforce .Dreamforce_info .container {
    flex-direction: column-reverse !important;
  }
  .page-dreamforce .loc_details {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1900px) {
  .page-dreamforce .Dreamforce_info .image-section img {
    height: 580px !important;
  }
}
@media (min-width: 1670px) {
  .page-dreamforce .Dreamforce_info {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 768px) {
  .page-dreamforce .Dreamforce_info .content,
  .page-dreamforce .Dreamforce_info .image-section {
    flex: 1 1 100%;
    padding: 0;
  }
  .page-dreamforce .Dreamforce_info .image-section {
    margin-top: 30px;
    text-align: center;
  }
  .page-dreamforce .Dreamforce_info .content {
    padding-right: 0;
  }
}
.page-dreamforce .content_details h1 + p {
  padding-bottom: 24px !important;
}
.page-dreamforce .card-content .read-more {
  border-bottom: 0 !important;
}
@media (min-width: 768px) {
  .page-dreamforce .value a h4:hover {
    color: #52f18f !important;
  }
}
.page-dreamforce .value a p {
  display: none;
}
.page-dreamforce .card-content .read-more {
  color: #52f18f !important;
}
@media (max-width: 1023px) {
  .page-dreamforce .alignnone {
    margin: 0 0px 0px 0 !important;
  }
}

.page-blog {
  padding-top: 90px;
}
.page-blog .ts-fab-wrapper {
  display: none;
}
.page-blog .section-breadcrumb {
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-blog .section-breadcrumb .section--container {
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .page-blog .section-breadcrumb .section--container {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .page-blog .section-breadcrumb .section--container {
    width: 853.3333333333px;
  }
}
.page-blog .section-breadcrumb a {
  color: var(--Light-Gray, #e2e2e2);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.page-blog .blog--heading .section--container {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .page-blog .blog--heading .section--container {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .page-blog .blog--heading .section--container {
    width: 853.3333333333px;
  }
}
.page-blog .blog--heading .section--container .blog-title h1 {
  padding-top: 28px;
  padding-bottom: 0;
  color: #fff;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 48px */
}
@media only screen and (max-width: 768px) {
  .page-blog .blog--heading .section--container .blog-title h1 {
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
  }
}
.page-blog .blog--body a:hover,
.page-blog .blog--body a:focus,
.page-blog .blog--body a:active {
  color: #52f18f;
  text-decoration: none;
}
.page-blog .blog--body p {
  padding: 10px 0;
}
.page-blog .blog--body h2 {
  position: 12px 0;
  padding-top: 10px;
  padding-bottom: 20px;
}
.page-blog .blog--body h1 {
  padding-top: 28px;
  padding-bottom: 0;
  color: #fff;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 48px */
}
@media only screen and (max-width: 768px) {
  .page-blog .blog--body h1 {
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
  }
}
.page-blog .blog--body h2 {
  padding-top: 24px;
  padding-bottom: 0;
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 137.5% */
}
@media only screen and (max-width: 768px) {
  .page-blog .blog--body h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px; /* 133.333% */
  }
}
.page-blog .blog--body h3 {
  padding-top: 20px;
  padding-bottom: 0;
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 133.333% */
}
@media only screen and (max-width: 768px) {
  .page-blog .blog--body h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px; /* 133.333% */
  }
}
.page-blog .blog--body h4,
.page-blog .blog--body h5,
.page-blog .blog--body h6 {
  color: var(--Light-Gray, #e2e2e2);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 155.556% */
}
@media only screen and (max-width: 768px) {
  .page-blog .blog--body h4,
  .page-blog .blog--body h5,
  .page-blog .blog--body h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
  }
}
.page-blog .blog--body .section--container {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .page-blog .blog--body .section--container {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .page-blog .blog--body .section--container {
    width: 853.3333333333px;
  }
}
.page-blog .section-cta .section--container {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .page-blog .section-cta .section--container {
    width: calc((100vw - 2 * 5.5555555556vw) / 12 * 8);
  }
}
@media screen and (min-width: 1440px) {
  .page-blog .section-cta .section--container {
    width: 853.3333333333px;
  }
}
.page-blog img {
  width: 100%;
  height: auto;
}
.page-blog .blog-date {
  padding-bottom: 24px;
}
.page-blog .blog-title {
  padding-bottom: 24px;
}
.page-blog .blog-author {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  text-transform: capitalize;
  color: #52f18f;
}
.page-blog .blog--heading {
  padding-bottom: 32px;
}
.page-blog .blog--img {
  padding-bottom: 64px;
}
.page-blog .blog--img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.page-blog .section--container .container {
  all: unset;
}
.page-blog .section--container .row {
  all: unset;
}
.page-blog .section--container .col-md-12 {
  all: unset;
  width: inherit;
}
.page-blog .section--container .col-md-12 .section-quote {
  padding-left: 0;
  padding-right: 0;
}
.page-blog .section--container .col-md-12 .section-quote .quote-wrapper {
  max-width: inherit;
}
.page-blog .section--container .col-md-12 .section--container {
  all: unset;
  width: inherit;
  padding: 0;
  margin: 0;
}
.page-blog ul {
  padding-left: 24px;
  list-style: disc;
}
.page-blog ul li {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.page-blog ol {
  padding-left: 10px;
  list-style: decimal;
  margin-left: 1.5rem;
}
.page-blog ol li {
  display: list-item;
  margin-top: 10px;
  margin-bottom: 10px;
}

.homepage-new {
  position: relative;
  padding-top: 85px;
}
@media screen and (min-width: 768px) {
  .homepage-new {
    padding-top: 93px;
  }
}
.homepage-new:before {
  content: " ";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url(../../algoworks/images/SuperGraphic.svg);
  z-index: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.9;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .homepage-new:before {
    background-size: auto;
  }
}
.homepage-new .section-row-list {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .homepage-new .section-row-list {
    padding-top: 160px;
    padding-bottom: 0;
  }
}
.post-type-archive-case-studies .main-content-wrapper {
  padding-top: 93px;
}

* {
  color: inherit;
}

.hidden {
  display: none;
}

.page-template-template-algoworks-rebranding .text-opaque,
.page-template-template-algoworks-rebranding p.text-opaque {
  color: #e2e2e2;
}
.page-template-template-algoworks-rebranding .py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .py-40 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-template-template-algoworks-rebranding .py-40 p:not(:last-child) {
  padding-bottom: 24px;
}
.page-template-template-algoworks-rebranding .py-68 {
  padding-top: 68px;
  padding-bottom: 68px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .py-68 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
.page-template-template-algoworks-rebranding .py-80-176 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .py-80-176 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.page-template-template-algoworks-rebranding .py-64 {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .py-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.page-template-template-algoworks-rebranding .pt-16-24 {
  padding-top: 16px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pt-16-24 {
    padding-top: 24px;
  }
}
.page-template-template-algoworks-rebranding .center {
  margin: 0 auto;
}
.page-template-template-algoworks-rebranding .m-0 {
  margin: 0;
}
.page-template-template-algoworks-rebranding .px-20 {
  padding-left: 20px;
  padding-right: 20px;
}
.page-template-template-algoworks-rebranding .pb-16 {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-16 {
    padding-bottom: 28px;
  }
}
.page-template-template-algoworks-rebranding .pb-24 {
  padding-bottom: 24px;
}
.page-template-template-algoworks-rebranding .pb-16-32 {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-16-32 {
    padding-bottom: 32px;
  }
}
.page-template-template-algoworks-rebranding .pb-16-24 {
  padding-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-16-24 {
    padding-bottom: 24px;
  }
}
.page-template-template-algoworks-rebranding .pb-16-all {
  padding-bottom: 16px;
}
.page-template-template-algoworks-rebranding .pb-32 {
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-32 {
    padding-bottom: 64px;
  }
}
.page-template-template-algoworks-rebranding .pb-32-all {
  padding-bottom: 32px;
}
.page-template-template-algoworks-rebranding .pb-36-mobile {
  padding-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-36-mobile {
    padding-bottom: inherit;
  }
}
.page-template-template-algoworks-rebranding .pb-36 {
  padding-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-36 {
    padding-bottom: 40px;
  }
}
.page-template-template-algoworks-rebranding .pb-48 {
  padding-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .pb-48 {
    padding-bottom: 64px;
  }
}
.page-template-template-algoworks-rebranding .grid-medium {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .grid-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 69px; /* 64px between rows, 69px between columns */
  }
}
.page-template-template-algoworks-rebranding .heading-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .heading-padding {
    padding-top: 105px;
    padding-bottom: 96px;
  }
}
.page-template-template-algoworks-rebranding .page-services .heading-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .page-services .heading-padding {
    padding-top: 132px;
    padding-bottom: 132px;
  }
}
@media screen and (min-width: 576px) {
  .page-template-template-algoworks-rebranding .hide-sm {
    display: none;
  }
}
.page-template-template-algoworks-rebranding .hide-desktop {
  display: inherit;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .hide-desktop {
    display: none;
  }
}
.page-template-template-algoworks-rebranding .only-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-template-template-algoworks-rebranding .only-desktop {
    display: inherit;
  }
}
.page-template-template-algoworks-rebranding .default-content p:not(:last-child) {
  padding-bottom: 12px;
}
.page-template-template-algoworks-rebranding .default-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.page-template-template-algoworks-rebranding .default-content ul li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}
.page-template-template-algoworks-rebranding .default-content h5 {
  color: var(--Light-Gray, #e2e2e2);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin: 32px 0 16px 0;
}
.page-template-template-algoworks-rebranding .default-content h5:first-of-type {
  margin-top: 0;
}
.page-template-template-algoworks-rebranding .default-content h5.color-white {
  color: #ffffff;
}
.page-template-template-algoworks-rebranding .default-content h5.no-margin {
  margin-bottom: 0;
}
.page-template-template-algoworks-rebranding .default-content h6 {
  color: var(--Light-Gray, #e2e2e2);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 155.556% */
  padding-bottom: 16px;
}
.page-template-template-algoworks-rebranding .default-content a {
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 1px;
  color: #e2e2e2;
}
.page-template-template-algoworks-rebranding .default-content a:hover {
  color: #52f18f;
}
.page-template-template-algoworks-rebranding.main--top-padding .main-content-wrapper {
  padding-top: 93px;
}
/*# sourceMappingURL=main.css.map */
