/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* @media (min-width: 1200px) {
  .hidden-text {
    opacity: 0;
  }
} */


/* Begin - Scrolling Effects */

/* Base animation classes - CSS transitions like before */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-scale-up {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-scale-up.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0deg) translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transition-delay: 0s;
}

.reveal-fade.active {
  opacity: 1;
}

.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-blur.active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.reveal-float {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
  animation: none;
  transition-delay: 0s;
}

.reveal-float.active {
  opacity: 1;
  transform: translateY(0);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.reveal-bounce {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 0s;
}

.reveal-bounce.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-pulse {
  opacity: 0;
  transform: scale(1);
  transition: all 0.8s ease;
  transition-delay: 0s;
}

.reveal-pulse.active {
  opacity: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reveal-typewriter {
  opacity: 0;
  overflow: hidden;
  border-right: 2px solid;
  white-space: nowrap;
  animation: none;
  transition-delay: 0s;
}

.reveal-typewriter.active {
  opacity: 1;
  animation: typewriter 2s steps(30) forwards, blink 1s infinite;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.reveal-stick {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}

.reveal-stick.active {
  opacity: 1;
  transform: translateX(0);
  position: sticky;
  top: 20px;
}

.reveal-bg-color {
  background-color: transparent;
  transition: background-color 1s ease;
  transition-delay: 0s;
}

.reveal-bg-color.active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Speed variants */
.reveal-slow {
  transition-duration: 1.5s !important;
}

.reveal-fast {
  transition-duration: 0.5s !important;
}


/* Stagger class for automatic sequential animations */
.reveal-stagger > * {
  transition-delay: 0s;
}


/* Parallax sections */
.parallax-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-content {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  will-change: transform;
}

/* Responsive */
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* End - Scrolling Effects */


/* Begin - Branding Awareness LP Global Styles */

* {
  box-sizing: border-box;
}

.full-height {
  height: 100vh;
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* Prevent overscroll bounce on iOS */
html, body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.btn svg ,
.btn svg * {
    pointer-events: none;
}

#insent-iframe {
  display: none;
}

/* Add this class to sections that should have the overlay effect */
.slide-overlay {
  position: relative;
}

.slide-overlay + .section {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
}


/* Essential ScrollSmoother styles */
.brand-awareness-lp {
  margin: 0;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.lp-container,
.lp-footer {
  max-width: 1200px;
  padding-inline: 30px;
  margin-inline: auto;
}

.brand-awareness-lp #hs-eu-cookie-confirmation {
  display: none;
}


@media (max-width: 1366px) {
  #lp-main h1 {
      font-size: 72px;
      line-height: 75px;
  }
  #lp-main h2 {
      font-size: 58px;
      line-height: 61px;
  }
}

@media (max-width: 767px) {
  .lp-container,
  .lp-footer {
    padding-inline: 15px;
  }
  #lp-main h1 {
    font-size: 43px;
    line-height: 46px;
  }
  #lp-main h2 {
    font-size: 34px;
    line-height: 37px;
  }
  #lp-main h3 {
      font-size: 16px;
      line-height: 19px;
  }
  #lp-main h4 {
      font-size: 16px;
      line-height: 19px;
  }
  #lp-main p:not(.lp-footer__legal),
  #lp-main p:not(.lp-footer__legal) a {
      font-size: 14px;
      line-height: 20px;
  }
}

/* End - Branding Awareness LP Global Styles */


/* Begin - CB1-I1 Branding Awareness LP Module 1 */

.lp-hero__video-overlay-top {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}
.lp-hero__video-overlay-bottom {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(53, 255, 252, 0.97) 64.23%, #6DFFB2 86.43%);
  mix-blend-mode: plus-lighter;
  opacity: 0.3;
}
.lp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 160px;
  padding-top: 50px;
  z-index: 1;
}
.lp-hero__inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lp-hero__title {
  color: #FFF;
  text-align: center;
  font-size: 92px;
  font-style: normal;
  font-weight: 800;
  line-height: 80px;
  margin: 0px;
  padding-bottom: 20px;
}
.lp-hero__subtitle {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding-bottom: 45px;
}
.lp-hero__logo {
  margin-inline:auto;
  padding-bottom: 50px;
  text-align: center;
}
.lp-hero__logo svg{
  width: 280px;
  height: auto;
}
.lp-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  width: 100%;
}
.lp-hero__gartner-logo img{
  width: 150px;
  height: auto;
  flex-shrink: 0;
}
.lp-hero__reviews-logo img{
  width: 100px;
  height: 50px;
  flex-shrink: 0;
  aspect-ratio: 2/1;
}
.lp-hero__testimonial { 
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #77FFB0;
  text-align: center;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 25px;
  margin: 0px;
}
.lp-hero__testimonial .lp-hero__cite {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.lp-hero__icons {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  column-gap: 80px;
  row-gap: 20px;
  justify-content: center;
  padding: 0px 0px 30px 0px;
  margin: 0px;
  flex-wrap: wrap;
  cursor: pointer;
}
.lp-hero__icon svg .main-circle {
  transition: 0.3s ease all;
} 
.lp-hero__icon:hover svg .main-circle{ 
  fill: rgba(0, 0, 0, .5) !important;
  transition: 0.3s ease all;
}
.lp-hero__icons .lp-hero__icon svg { 
  width: 55px;
  height: 55px;
}
.lp-hero__icons .lp-hero__icon svg circle.highlight {
   display: none;
}
.lp-hero__icons .lp-hero__icon:not(.active) svg circle.main-circle {
   stroke: rgba(0, 0, 0, .7) !important;
}
.lp-hero__video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  object-fit: cover;
  -webkit-playsinline: true;
  playsinline: true;
  pointer-events: none;
}
.lp-hero__texts {
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: center;
  background: linear-gradient( to right, transparent 0%, rgba(0,0,0,.2) 10%, rgba(0,0,0,.5) 25%, rgba(0,0,0,.5) 75%, rgba(0,0,0,.2) 90%, transparent 100% );
}
.lp-hero__icons-text {
  display: flex;
  flex-direction: column;
}
.slider-main-wrapper {
  position: relative;
  display: inline-flex;
  margin: 0 auto;
}
.swiper-static-text {
  position: absolute;
  left: 0px;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 27px;
  text-transform: uppercase;
  top: 5px;
  z-index: 2;
}
.lp-hero__text {
  display: block;
  padding: 0px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 27px;
  text-transform: uppercase;
}
.lp-hero__text strong{
  color: #35FF94;
}
.lp-hero__scroll{
  display: flex;
  justify-content: center;
  padding-top: 38px;
}
.swiper-static-text {
  display: none;
}

/* Breakpoints */
@media (min-width: 1367px) {
  .lp-hero__texts {
    height: 37px !important;
    padding-top: 5px !important;
  }
}
@media (max-width: 1366px) {
   .lp-hero {
    padding-bottom: 50px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .lp-hero__top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .lp-hero__testimonial {
    order: -1;
    width: 100%;
  }
  .lp-hero__text {
    font-size: 16px;
    line-height: 23px;
  }
}
@media (max-width: 767px) {
  .lp-hero__gartner-logo,
  .lp-hero__reviews-logo {
    display: none;
  }
  .lp-hero__logo svg{
    width: 250px;
  }
  .lp-hero__testimonial .lp-hero__cite {
    line-height: 20px;
    padding-top: 10px;
  }
  .lp-hero__top {
    padding-bottom: 20px;
  }
  .lp-hero__icons {
    column-gap: 20px;
  }
  .next-line-cite-mobile {
    display: block;
  }
   .lp-hero__testimonial {
    font-size: 25px;
    line-height: 27px;
    letter-spacing: 1px;
  }
  .lp-hero__subtitle {
    padding-bottom: 25px;
  }
  .lp-hero__subtitle br {
    display: none;
  }
  .lp-hero__icons .lp-hero__icon svg { 
    width: 45px;
    height: 45px;
  }
  .lp-hero__text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* End - CB1-I1 Branding Awareness LP Module 1 */


/* Being - CB1-I3 Branding Awareness LP Module 2 */

.lp-soc {
  background: radial-gradient(50% 50% at 50% 50%, #162A47 0%, #000 100%);
  width: 100vw;
}
.lp-soc__inner {
  padding-top: 110px;
  padding-bottom: 110px;
  min-height: 101vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-soc__top .lp-soc__text {
  display: flex;
  flex-direction:row;
  justify-content: space-between;
  padding-bottom: 30px;
}
.lp-soc__top .lp-soc__heading {
  margin: 0;
  font-size: 78px;/* fluid scale from 2rem to 4rem */
  color: #FFF;
  font-style: normal;
  font-weight: 800;
  line-height: 80px; /* 102.564% */
}
.lp-soc__top img {
  justify-self: end;      
  width: 100%;
  max-width: 540px;       
  height: auto; 
  margin-inline: auto;
}
.lp-soc__top .lp-soc__copy {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin: 0px;
  padding-bottom: 30px;
}
.lp-soc__slides .lp-soc__heading {
  color: #35FF94;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin: 0;
  opacity: 0;
}
.lp-soc__slides .lp-soc__copy {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-bottom: 30px;
  margin: 0px;
  opacity: 0;
}
.lp-soc__mobile .lp-soc__slides .lp-soc__copy,
.lp-soc__mobile .lp-soc__slides .lp-soc__heading {
  opacity: 1;
}
.lp-soc__mobile .lp-soc__slides
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.lp-soc__slide .lp-soc__text {
  flex-direction:column;
  height: 100%;
}
.lp-soc__slide .lp-soc__text p:last-child {
  padding-bottom: 0px;
}
.lp-soc__slides {
  position: relative;
}
.lp-soc__slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-wrap: wrap;
}
.lp-soc__slide .lp-soc__visual {
  max-width: 50%;
  width: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
}
.lp-soc__slide .lp-soc__texts {
  max-width:50%;
  height: 400px;
  width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.lp-soc__slide .lp-soc__text {
  height: 100%; /* Change from 100vh to 100% */
  position: absolute; /* Add this */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-soc__slide .lp-soc__text.active .lp-soc__heading,
.lp-soc__slide .lp-soc__text.active .lp-soc__copy{
  opacity: 1;
  transform: scale(1);
}
.lp-soc__slide svg {
  height: auto;
  position: absolute;
}
.lp-soc__slide svg#animation-1 {
  width: 316px;
  height: 314px;
  left: calc(50% - 158px);
  top: calc(50% - 157px);
}
.lp-soc__slide svg#animation-2 {
  width: 266px;
  height: 176px;
  left: calc(50% - 133px);
  top: calc(50% - 88px);
}
.lp-soc__slide svg#animation-3 {
  width: 258px;
  height: 258px;
  left: calc(50% - 129px);
  top: calc(50% - 129px);
}
.lp-soc__slide svg#animation-4 {
  width: 200px;
  height: 200px;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
}
.lp-soc__slide svg#animation-1-mobile {
  width: 200px;
  height: 202px;
  left: calc(50% - 100px);
  top: calc(50% - 101px);
}
.lp-soc__slide svg#animation-2-mobile {
  width: 216px;
  height: 126px;
  left: calc(50% - 108px);
  top: calc(50% - 20px);
}
.lp-soc__slide svg#animation-3-mobile {
  width: 200px;
  height: 200px;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
}
.lp-soc__slide svg#animation-4-mobile {
  width: 150px;
  height: 150px;
  left: calc(50% - 75px);
  top: calc(50% - 75px);
}
.lp-soc__mobile {
  display: none;
}
.lp-soc__slide svg#animation-4,
.lp-soc__slide svg#animation-4-mobile {
  transform: translate(0px, 0px) !important;
}



/* Hide all SVG elements initially */
#animation-1 #eye-group, 
#animation-1 #cone, 
#animation-1 #laptop-group, 
#animation-1 #green-vertical-line, 
#animation-1 #green-horizontal-line, 
#animation-1 #green-circle, 
#animation-1 #plus-group, 
#animation-1 #mobile, 
#animation-1 #cloud {
  visibility: hidden; 
  opacity: 0;
}
#animation-2 #eye-lines,
#animation-2 #iris,
#animation-2 #iris-lines-group {
  visibility: hidden; 
  opacity: 0;
}
#animation-3 #points-group,
#animation-3 #external-lines-group,
#animation-3 #circles-group,
#animation-3 #internal-lines-group,
#animation-3 #central-circle,
#animation-3 #noun-layers-group {
  visibility: hidden; 
  opacity: 0;
}
#animation-4 #minute-hand,
#animation-4 #hour-hand,
#animation-4 #clock-external-arrow,
#animation-4 #center-circle {
  visibility: hidden; 
  opacity: 0;
}

/* Breakpoints */
@media (max-width: 1366px) {
   .lp-soc__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .lp-soc__top .lp-soc__text {
      flex-wrap: wrap;
  }
  .lp-soc__heading  {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .lp-soc__top .lp-soc__heading.responsive {
    display: block;
  }
  .lp-soc__slides .lp-soc__copy  {
    padding-bottom: 10px; 
  }
  .lp-soc__slide .lp-soc__visual {
      width: 100%;
      max-width: 100%;
      height: 325px; 
  }
  .lp-soc__slides {
    height: unset;
  }
  .lp-soc__slide .lp-soc__texts {
      width: 100%;
      max-width:100%;
      height: 300px;
  }
  .lp-soc__desktop {
    display: none; 
  }
  .lp-soc__mobile {
    display: block; 
  }
}
@media (max-width: 767px) {
  .lp-soc__slide svg#animation-1 {
    width: 200px;
    height: 202px;
    left: calc(50% - 100px);
    top: calc(50% - 101px);
  }
  .lp-soc__slide svg#animation-2 {
    width: 166px;
    height: 76px;
    left: calc(50% - 83px);
    top: calc(50% - 38px);
  }
  .lp-soc__slide svg#animation-3 {
    width: 158px;
    height: 158px;
    left: calc(50% - 79px);
    top: calc(50% - 79px);
  }
  .lp-soc__slide svg#animation-4 {
    width: 120px;
    height: 120px;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
  }
  .lp-soc__slide .lp-soc__visual {
      height: 250px; 
  }
   .lp-soc__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* End - CB1-I3 Branding Awareness LP Module 2 */



/* Begin - CB1-I4 Branding Awareness LP Module 3 */
.lp-use-cases {
  max-width: 100vw;
  width: 100%;
}
.lp-use-cases__title {
  font-size: 78px;/* fluid scale from 2rem to 4rem */
  font-style: normal;
  font-weight: 800;
  line-height: 80px; /* 102.564% */
  color: white;
  padding-top: 50px;
  width: 100%;
  text-align: center;
  top: 0px;
  position: absolute;
  margin: 0px;
  z-index: 2;
}
.lp-use-cases-swiper {
  width: 100%;
}
.lp-use-cases .swiper-button-next, 
.lp-use-cases .swiper-button-prev {
  color: #35ff94;
}
.lp-use-case__inner {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.lp-use-case__slide-overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  transition: 0.3s ease all;
}
.lp-use-case__inner.lp-use-case--hovered .lp-use-case__slide-overlay {
  background-color: rgba(0,0,0,0.4);
  transition: 0.3s ease all;
}
.lp-use-case__face {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  padding: 20px 80px;
  z-index: 1;
}
.lp-use-cases__item {
  height: 100%;
}
.lp-use-case__title {
  color: #35FF94;
  text-align: left;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 32px; /* 150% */
  margin: 0px;
  min-height: 70px;
}
.lp-use-case__line {
  display:block;
  width: 82px;
  height: 1px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 30px;
}
.lp-use-case__face {
  display: flex;
}
.lp-use-case__copy {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
  min-height: 400px;
}
.lp-use-case__copy a {
  color: #35FF94;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline; 
}
.lp-use-case__copy a:hover {
  text-decoration: none;
}
.lp-use-cases__mobile {
  display: none; 
}

/* Breakpoints */
@media (max-width: 1366px) {
  .lp-use-case__face {
    padding: 30px 30px 100px 30px;
  }
  .lp-use-cases__desktop {
    display: none; 
  }
  .lp-use-cases__mobile {
    display: block; 
  }
  .lp-use-case__copy {
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .lp-use-case__title {
    min-height: 30px;
  }
  .lp-use-case__copy {
    min-height: 300px;
  }
  .lp-use-case__face {
    padding: 30px 30px 30px 30px;
  }
}
/* End - CB1-I4 Branding Awareness LP Module 3 */


/* Being - CB1-I5 Branding Awareness LP Module 4 */
.lp-download__overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  transition: 0.3s ease all;
}
.lp-download__inner.lp-container {
  display:flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 38px;
  padding-bottom: 38px;
  width: calc(100% - 60px);
  position: relative;
  height: 100%;
}
.lp-download__inner .lp-download__wrapper {
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
   height: 400px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.lp-download__content {
  width: 580px;
  z-index: 2;
}
.lp-download__media {
  width: 620px;
  display: block;
  z-index: 2;
}
.lp-download__media img {
  width: 100%;
  height: auto;
}
.lp-download__title{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; /* 150% */
  text-transform: uppercase;
  margin:0;
  padding-bottom: 10px;
}
.lp-download__text{
  margin:0;
  color: #77FFB0;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.lp-download__second-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
  padding-bottom: 25px;
}
.lp-download__cta {
    display: inline-block;
    padding: 10px 35px;
    position: relative;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    border-radius: 100px;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0);
    border: 3px solid rgba(53, 255, 148, 1);
}
.lp-download__cta:hover{
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1);
    border: 3px solid rgba(255, 255, 255, 1);
}
.lp-download__modal-blocker {
  z-index: 5000;
  background: radial-gradient(50% 50% at 50% 50%, rgba(22, 42, 71, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  bottom: 0;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  display: none;
  padding: 25px 30px;
}
.lp-download__modal {
    max-width: 900px;
    z-index: 1000;
    box-shadow: none;
    position: relative;
    margin: 0 auto;
    background-color: black;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    padding: 25px;
}
.lp-download__team-image {
  margin: 0;
  text-align: center;
}
.lp-download__team-image img {
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 0 4px rgba(0, 0, 0, 0.8),
    0 0 0 6px rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}
.lp-download__team-social {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}
.lp-download__team-social a:hover .lp-download__social-icon {
  fill: rgba(53, 255, 148, 0.6);
  transition: all 0.3s linear 0s;
}
.lp-download__social-icon {
  fill: #35FF94;
  width: 25px;
  height: auto;
  transition: all 0.3s linear 0s;
}
.lp-download__team-social ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lp-download__team-social li {
  display: inline-block;
  margin: 0 10px;
}
.lp-download__modal-link,
.lp-download__modal-link-bio {
  color: #35FF94;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline; 
}
.lp-download__team-name {
  margin: 0px;
}
.lp-download__team-title {
  margin-top: 0px;
}
.lp-download__modal-link:hover,
.lp-download__modal-link-bio:hover {
  text-decoration: none;
}
.lp-download__close-modal {
  display: block;
  position: absolute;
  top: 15px;
  right: 25px;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transition: all .6s ease 0s;
}
.lp-download__close-icon-bar {
  background-color: #35FF94;
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
}
.lp-download__close-modal:hover .lp-download__close-icon-bar {
  transition: all 0.3s linear 0s;
  background-color: rgba(53, 255, 148, 0.6);
}
.lp-download__close-icon-bar.first {
  transform: rotate(45deg);
  top: 10px;
  transition: all 0.3s linear 0s;
}
.lp-download__close-icon-bar.last {
  transform: rotate(-45deg);
  top: 8px;
  transition: all 0.3s linear 0s;
}
.lp-download__mobile-image-img {
  object-fit: contain;
  margin-bottom: 40px;
}
.lp-download__mobile-image {
  display: flex;
  justify-content: center;
}

/* Breakpoints */
@media (min-width: 1367px) {
  .lp-download__modal-two-col {
    display: flex;
    column-gap: 50px;
  }
  .lp-download__modal-left {
    width: 400px;
  }
  .lp-download__team-social {
    justify-content: flex-start;
  }
  .lp-download__mobile-image  {
    display: none;
  }
}
@media (max-width: 1366px) {
  .lp-download__content {
    width: 100%;
    text-align: center;
  }
  .lp-download__inner .lp-download__wrapper {
    flex-wrap: wrap;
    background-position: center right;
  }
  .lp-download__overlay {
    background-color: rgba(0,0,0,0.65);
    transition: 0.3s ease all;
  }
  .lp-download__overlay {
    display: none;
  }
  .lp-download__wrapper {
    background-image: none !important;
  }
  .lp-download__mobile-image-img {
    max-width: 60%;
  }
  .lp-download__media {
    width: 100%;
    display: none;
  }
}
@media (max-width: 767px) {
  .lp-download__inner.lp-container {
    width: calc(100% - 30px);
  }
  .lp-download__close-modal {
    top: 35px;
    right: 35px;
  }
  .lp-download__text {
    font-size: 24px;
    line-height: 40px;
  }
  .lp-download__team-image img {
     max-width: 50%;
  }
  .lp-download__inner.lp-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .lp-download__close-modal {
    top: 0px;
    right: 0px;
  }
  .lp-download__mobile-image-img {
    max-width: 100%;
  }
  .lp-download__modal {
    padding: 0px;
  }  
}

/* End - CB1-I5 Branding Awareness LP Module 4 */


/* Begin - CB1-I6 Branding Awareness LP Module 5 */
.lp-testimonial{
  background: radial-gradient(50% 50% at 50% 50%, #162A47 0%, #000 100%);
}
.lp-testimonial__inner {
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 980px;
  width: 980px;
  margin-inline: auto;
  padding-inline: 30px;
}
.lp-testimonial__quote {
  color: #77FFB0;
  text-align: center;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 25px; /* 89.286% */
  padding:0;
  margin:0;
  display: flex;
  flex-direction: column;
}
.lp-testimonial__cite {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding-top: 15px;
}
.lp-testimonial__cite a {
  color: #35FF94;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.lp-testimonial__cite a:hover{
  text-decoration-line: none;
}
.lp-awards__groups {
  padding-top: 160px;
}
.lp-awards__headings{
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin-bottom: 30px;
}
.lp-awards__heading {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0px;
}
.lp-awards__list {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.lp-partners__heading{
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0px;
  padding-bottom: 40px;
}
.lp-partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-partners__list {
  align-items: center;
  display: flex;
   gap: 10px;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.lp-partners__logo--mandiant{
  width: 200px;
  height: 51px;
  flex-shrink: 0;
  aspect-ratio: 200/51;
}
.lp-partners__logo--cisco{
  width: 108px;
  height: 57px;
  flex-shrink: 0;
}
.lp-partners__logo--blackhat{
  width: 151px;
  height: 43px;
  flex-shrink: 0;
}
.lp-partners__logo--crowdstrike{
  width: 170px;
  height: auto;
  flex-shrink: 0;
  padding-top: 6px;
}

/* Breakpints */
@media (max-width: 1366px) {
  .lp-awards__list {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 50px;
    justify-content: center;
  }
  .lp-partners__list {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .lp-testimonial__inner {
    width: unset;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .lp-awards__headings {
    flex-wrap: wrap;
  }
  .lp-awards__groups {
    padding-top: 40px;
  }
  .lp-awards__heading {
    width: 100%;
  }
  .lp-awards__list {
    column-gap: 20px;
  }
  .lp-awards__list li:nth-child(2),
  .lp-awards__list li:nth-child(3),
  .lp-awards__list li:nth-child(4),
  .lp-awards__list li:nth-child(7),
  .lp-awards__list li:nth-child(8),
  .lp-awards__list li:nth-child(9) {
    display: none;
  }
  .lp-awards__list li img {
    max-width: 80px;
  }
  .lp-awards__headings {
    margin-bottom: 40px;
  }
  .lp-partners__list {
    flex-direction: column;
    gap: 50px;
  }
}

/* End - CB1-I6 Branding Awareness LP Module 5 */


/* Begin - CB1-I7 Branding Awareness LP Module 6 */

.lp-about {
  background-color: black;
}
.lp-about__first,
.lp-about__second {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-about__inner {
  width: calc(100% - 60px);
  align-items: center;
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  height: 100%;
}
.lp-about.second .lp-about__inner {
  flex-direction: column;
  justify-content: space-around;
}
.lp-about__media {
  margin: 0px;
  text-align: center;
}
.lp-about__first .lp-about__media img {
  width: 442px;
  height: auto;
}
.lp-about__second .lp-about__media img {
  width: 224px;
  height: auto;
}
.lp-about__heading {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform:uppercase;
  margin:0;
  padding-bottom: 20px;
}
.lp-about__copy {
  margin:0;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 20px;
}
.lp-about__copy:last-child {
  padding-bottom: 0px;
}
.lp-about__second .lp-about__copy a,
.lp-about__first .lp-about__copy a {
  color: #35FF94;
}
.lp-about__copy a {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-underline-position: from-font;
}
.lp-about__copy a:hover{
  text-decoration: none;
}
.lp-footer__pre {
  margin: 0px;
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.lp-footer__legal {
  margin: 0px;
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}

.lp-footer__legal:last-child {
  padding-bottom: 0px;
}
@media (min-width: 1367px) {
  .lp-about__first {
      gap: 60px;
  }
  .lp-about__second {
      gap: 140px;
  }
  .lp-about__media {
    width: calc(100% - 580px);
    text-align: right;
  }
  .lp-about__text {
    width: 580px;
    min-width: 580px;
  }
}
@media (max-width: 1366px) {
  .lp-about__media {
    width: 100%;
  }
  .lp-about__first .lp-about__media img {
    width: 250px;
    height: auto;
    padding-bottom: 20px;
  }
  .lp-about__second .lp-about__media img{
    width: 150px;
    height: auto;
    padding-bottom: 50px;
  }
  .lp-about__first,
  .lp-about__second {
     flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .lp-about__inner {
    width: calc(100% - 30px);
  }
  .lp-about__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .lp-about__first .lp-about__media img {
    width: 200px;
  }
  .lp-about__second .lp-about__media img{
    width: 100px;
     padding-bottom: 15px;
  }
  .lp-about.first .lp-about__text p:last-child {
    display: none;
  }
  .lp-footer__pre {
    font-size: 24px;
  }
  .lp-footer__pre {
    font-size: 20px;
  }
}

/* End - CB1-I7 Branding Awareness LP Module 6 */