/*    HERO NAV    */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0px 120px 0px;
  background: var(--mof-blue-900);
}
.hero-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 320px;
}
.hero-sec-conte {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-sec-conte h1 {
  position: relative;
  color: var(--mof-blue-500);
  font-family: montserrat;
  font-size: 48px;
  font-weight: 800;
  padding-bottom: 24px;
}
.hero-sec-conte p {
  font-size: 21px;
  padding: 0 16px;
  color: white;
}
.hero-nav {
  display: flex;
  padding-top: 72px;
}
.hero-nav > * {
  display: flex;
  margin: 0 4px;
}
.hero-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 144px;
  cursor: pointer;
}
.hero-nav-item > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--mof-blue-600);
  border-width: 2px;
  border-color: var(--mof-blue-500);
  border-style: solid;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-nav-item > div svg {
  width: 94%;
  height: 94%;
}
.hero-nav-item p {
  display: flex;
  align-items: center;
  min-height: 38px;
  font-family: poppins;
  font-size: 14.5px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.hero-nav-item > svg {
  opacity: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -22px;
  transform: rotate(90deg);
  color: var(--mof-blue-hov-tx);
  transition:
    bottom 300ms ease-out,
    opacity 300ms;
}
.hero-nav-item:hover > div {
  border-color: var(--mof-blue-hov-tx);
  color: var(--mof-blue-hov-tx);
  background-color: var(--mof-blue-hov);
}
.hero-nav-item:hover > svg {
  opacity: 1;
  bottom: -28px;
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0px 40px 0px;
  }
  .hero-sec-conte {
    padding: 0 40px;
  }
  .hero-nav {
    flex-wrap: wrap;
    width: 520px;
    justify-content: center;
  }
  .hero-nav-item {
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 48px 0px 20px 0px;
  }
  .hero-sec-conte {
    padding: 0;
  }
  .hero-sec-conte h1 {
    font-size: 36px;
  }
  .hero-sec-conte p {
    font-size: 18px;
  }
  .hero-nav {
    padding-top: 49px;
  }
  .hero-nav {
    width: auto;
  }
  .hero-nav > * {
    margin: 0 4px;
  }
  .hero-nav-item {
    width: 110px;
  }
  .item-case {
    width: 140px;
  }
  .hero-nav-item p {
    font-size: 14px;
  }
}

/* HERO FOOTFALL */

.hero-footfall-conte {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-footfall-conte > div {
  width: 50%;
}
.badge-wrapp {
  display: flex;
  align-items: center;
  font-family: opensans;
  font-size: 16px;
  color: var(--mof-blue-500);
  font-weight: 500;
}
.badge-wrapp > p {
  margin-right: 12px;
}
@media (max-width: 640px) {
  .badge-wrapp {
    flex-direction: column;
    align-items: flex-start;
  }
  .badge-wrapp > p {
    margin-bottom: 9px;
  }
}
.hero-footfall-left > .wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.hero-footfall-left h1 {
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 900;
  color: var(--mof-blue-500);
  margin-top: 12px;
}
.hero-footfall-left .wrapper > p {
  color: white;
  font-size: 21px;
  padding-top: 12px;
}
.hero-footfall-right {
  animation: osci-y 800ms ease-in-out infinite alternate;
}
@keyframes osci-y {
  0% {
    transform: translateY(-6px);
  }
  1000% {
    transform: translateY(6px);
  }
}
.hero-footfall-right img {
  width: 100%;
}
@media (max-width: 1280px) {
  .hero-section-foot {
    padding: 80px 0px 60px 0;
  }
}
@media (max-width: 1024px) {
  .hero-footfall-conte {
    flex-direction: column;
    padding: 0 16px;
  }
  .hero-footfall-conte > div {
    width: 100%;
  }
  .hero-footfall-right img {
    max-width: 640px;
    transform: translateX(-20px);
    margin-top: 32px;
  }
}
@media (max-width: 640px) {
  .hero-section-foot {
    padding: 40px 0px 32px 0;
  }
  .hero-footfall-left h1 {
    line-height: 48px;
  }
  .hero-footfall-left .wrapper > p {
    font-size: 16px;
  }
  .hero-footfall-right img {
    max-width: 640px;
    transform: translateX(0px);
    margin-top: 20px;
  }
}

/*     Feature item      */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: white;
  border-top: 10px solid var(--slate-50);
  padding: 144px 0px;
}
.feat-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
}
.feat-top-l {
  max-width: 720px;
}
.feat-top-r {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-top-r img {
  position: absolute;
  width: 350px;
  height: auto;
  top: -72px;
  right: -64px;
}
@media (max-width: 1530px) {
  .feature-item {
    padding: 96px 0;
  }
  .feat-top {
    padding: 0 56px;
  }
  .feat-top-r img {
    right: -8px;
  }
}
@media (max-width: 1280px) {
  .feature-item {
    padding: 64px 0;
  }
  .feat-top {
    padding: 0 56px;
  }
  .feat-top-l {
    max-width: 640px;
  }
  .feat-top-r img {
    width: 300px;
    top: -64px;
    right: -8px;
  }
}
@media (max-width: 1024px) {
  .feat-top-l {
    max-width: 640px;
  }
  .feat-top-r img {
    width: 256px;
    top: -54px;
    right: -8px;
  }
}
@media (max-width: 900px) {
  .feat-top-l {
    max-width: 520px;
  }
}
@media (max-width: 768px) {
  .feature-item {
    padding: 64px 0;
  }
  .feat-top {
    padding: 0 36px;
  }
  .feat-top-l {
    max-width: none;
  }
  .feat-top-l h1 {
    max-width: 520px;
  }
  .feat-top-r img {
    width: 196px;
    top: -74px;
    right: -8px;
  }
}
@media (max-width: 640px) {
  .feature-item {
    padding: 80px 0 64px 0;
  }
  .feat-top {
    padding: 0 16px;
  }
  .feat-top-l {
    max-width: none;
  }
  .feat-top-r img {
    width: 136px;
    top: -82px;
    right: -8px;
  }
}
.feat-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 80px;
}
.feat-bottom-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.feat-footfall-wrapper {
  margin: 0 auto 40px auto;
  justify-content: center;
}
.feat-bottom-conte {
  position: relative;
  max-width: 1024px;
  overflow: hidden;
}
.feat-slide {
  position: relative;
  display: flex;
  max-width: 100%;
  left: 0;
  transition: left 450ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-slide img {
  width: 100%;
  height: auto;
}
.feat-bottom p {
  transform: scale(0.85);
}
.feat-slides-btns {
  display: flex;
  padding: 8px 0;
}
.feat-slides-btns a {
  width: 16px;
  height: 16px;
  background-color: var(--mof-slate-200);
  border-radius: 100px;
  margin: 0 8px;
}
.feat-slides-btns a:hover {
  background-color: var(--mof-blue-400);
}
.feat-slides-btns a.active {
  background-color: var(--mof-blue-700);
}
.feat-slides-btns a.active:hover {
  background-color: var(--mof-blue-700);
  cursor: default;
}
.slide-arw {
  padding: 12px;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.slide-arw a {
  width: 100%;
  height: 100%;
}
.slide-arw img {
  width: 100%;
  height: 100%;
  transition: transform 350ms;
  cursor: pointer;
}
.slide-arw img:hover {
  transform: scale(1.1);
}

@media (max-width: 1440px) {
  .feat-bottom-conte {
    max-width: 860px;
  }
  .slide-arw {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 1280px) {
  .feat-bottom-conte {
    max-width: 720px;
  }
  .slide-arw {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 768px) {
  .feat-footfall-wrapper {
    padding-bottom: 40px;
  }
  .slide-arw {
    padding: 4px;
    width: 48px;
    height: 48px;
  }
  .feat-bottom {
    padding-top: 36px;
  }
}
@media (max-width: 640px) {
  .feat-bottom {
    padding-top: 20px;
  }
  .slide-arw {
    position: absolute;
    bottom: -60px;
  }
  .slide-arw-r {
    right: 0;
  }
}
@media (max-width: 640px) {
  .feat-footfall-wrapper {
    padding-bottom: 16px;
  }
}

/*    Use Case   */

.uses-item {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: white;
  border-top: 10px solid var(--slate-50);
  padding: 144px 0px;
}
.uses-wrapper {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 60px;
}
.uses-l {
  flex-grow: 1;
}
.uses-r {
  position: relative;
  width: fit-content;
  height: fit-content;
  flex-shrink: 0;
  padding-left: 80px;
}
.uses-r img {
  border-radius: 20px;
}
.uses-r .case-icon {
  left: auto;
  right: -30px;
}
.case-reverse .uses-wrapper {
  flex-direction: row-reverse;
}
.case-reverse .uses-r {
  flex-direction: row-reverse;
  padding-left: 0px;
  padding-right: 80px;
}
.case-reverse .case-icon {
  left: -30px;
  right: auto;
}
@media (max-width: 1440px) {
  .uses-item {
    padding: 96px 0px;
  }
}
@media (max-width: 1280px) {
  .uses-item {
    padding: 80px 0px;
  }
  .uses-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 1024px) {
  .uses-item {
    padding: 60px 0px;
  }
  .uses-wrapper,
  .case-reverse .uses-wrapper {
    flex-direction: column-reverse;
    max-width: 900px;
  }
  .uses-r,
  .case-reverse .uses-r {
    padding: 0;
    padding-bottom: 40px;
  }
  .uses-r .case-icon,
  .case-reverse .case-icon {
    left: auto;
    right: -35px;
    bottom: 20px;
  }
}
@media (max-width: 640px) {
  .uses-wrapper {
    padding: 0 20px;
  }
  .uses-r img {
    width: 100%;
    height: 100%;
  }
}

/* Terms  */
.main-terms {
  background-image: url(../images/hero-legal-bg.svg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.terms-cols > div:last-of-type {
  margin-left: 56px;
}
@media (max-width: 1024px) {
  .terms-cols > div:last-of-type {
    margin-left: 0px;
  }
}

/*  FOTTFALL HOME OVER  */
.home-products-wrapper {
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.home-products-wrapper .title-footfall,
.home-products-wrapper .sec-subtitle {
  max-width: 880px;
  padding: 20px 20px 0px 20px;
}
.home-products {
  padding-top: 60px;
}
.home-prod-item {
  pointer-events: none;
}
.home-prod-item img {
  height: 100%;
  width: auto;
}
@media (max-width: 1024px) {
  .home-products-wrapper {
    padding-top: 0px;
  }
}
@media (max-width: 768px) {
  .home-products {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 32px;
  }
}
@media (max-width: 640px) {
  .home-products {
    padding-top: 24px;
  }
  .home-prod-item img {
    left: auto;
  }
  .home-prod-item div {
    justify-content: center;
  }
}

/*   */
.home-uses > div {
  box-shadow: 0px 0px 6px #0000000f;
  border-radius: 19px !important;
  text-align: left;
  overflow: hidden;
}
.home-uses .img {
  transform: translateX(-10px);
}
@media (max-width: 640px) {
  .home-uses > div {
    border-radius: 6px;
    box-shadow: 0px 0px 2px #0000000f;
  }
}
.sources-items {
  margin-top: 28px;
}
.sources-item {
  display: flex;
  align-items: center;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.sources-item > img {
  margin-right: 12px;
}

/*   */

.section-impact {
  background-color: var(--mof-blue-900);
  margin-top: 60px;
  padding-bottom: 48px;
}
.section-impact .section-head h1 {
  color: var(--mof-blue-500);
}
.section-impact .section-head h2 {
  color: white;
}
.section-impact h3 {
  margin-bottom: 8px;
}
.section-impact .home-products {
  padding-top: 0;
}
.impact-img {
  display: block !important;
  background-color: transparent !important;
  width: 74px !important;
  height: 74px !important;
}
.section-impact .home-prod-item:last-of-type {
  background-color: #067aff;
  color: white !important;
}
.section-impact .home-prod-item:last-of-type h3,
.section-impact .home-prod-item:last-of-type p {
  color: white !important;
}
.section-impact .home-prod-item .arw {
  width: 32px;
  height: 36px;
  right: -20px;
}
@media (max-width: 768px) {
  .section-impact .home-prod-item .arw {
    display: none;
  }
}

.measure-items {
  margin-top: 32px;
}
.measure-items > div {
  margin-bottom: 24px;
}
.measure-items > div:last-of-type {
  margin-bottom: 9px;
}

/*  Measure  */
.measure-item {
  display: flex;
  align-items: center;
}
.measure-item > img {
  margin-right: 12px;
}
.measure-item > div > p:first-of-type {
  font-family: Montserrat;
  font-weight: 700;
}
.home-uses-measure {
  margin-bottom: -56px;
}
.uses-right-vertical-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .left-measure {
    display: none;
  }
}
@media (max-width: 768px) {
  .home-uses-measure {
    margin-bottom: -32px;
  }
}
@media (max-width: 640px) {
  .home-uses-measure {
    margin-bottom: -24px;
  }
}

/*   */

.section-why {
  background-color: white;
  margin-top: 90px;
  padding: 80px 0;
}
.section-why .sec-subtitle {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.why-wrapper {
  width: 100%;
  margin: 0px auto;
  padding: 0 32px;
}
.why-content {
  width: 100%;
  display: flex;
  background-color: var(--mof-blue-900);
  border-radius: 40px;
  padding: 40px 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0px auto;
}

.why-items {
  flex-grow: 1;
}
.why-image {
  max-width: 314px;
}
.why-image > img {
  width: 100%;
  height: auto;
}
.why-item {
  display: flex;
  margin-bottom: 28px;
}
.why-item-content {
  padding: 2px 16px 0 16px;
  color: white;
}
.why-item-content > h3 {
  font-family: Montserrat;
  color: #63afff;
  font-size: 32px;
}

@media (max-width: 1024px) {
  .why-wrapper {
    padding: 0 24px;
  }
  .why-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .why-image {
    max-width: 240px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .section-why {
    margin-top: 40px;
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  .why-content {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .why-wrapper {
    padding: 0 16px;
  }
  .why-image {
    max-width: 180px;
    margin-bottom: 20px;
  }
  .why-item-content {
    padding: 2px 0 0 12px;
  }
  .why-item-content > h3 {
    font-size: 24px;
  }
  .why-item > img {
    width: 32px;
    height: 32px;
  }
}

/* ============================== */
/*  QUESTIONS GRID (Performance)  */
/* ============================== */

.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.question-card {
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 300ms,
    box-shadow 300ms;
}
.question-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.question-item {
  font-family: montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--slate-700);
}
@media (max-width: 1024px) {
  .questions-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
}
@media (max-width: 640px) {
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .question-card {
    padding: 20px 16px;
  }
  .question-item {
    font-size: 15px;
  }
}

/* ================================ */
/*  VIDEO WRAPPER (Audiences page)  */
/* ================================ */

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.video-wrapper video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  .video-wrapper {
    padding: 0 16px;
  }
  .video-wrapper video {
    border-radius: 10px;
  }
}

/* ================================== */
/*  STEP ITEMS (Audiences / OOH)      */
/* ================================== */

.step-tit {
  font-family: montserrat;
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-500);
}
