.module-split {
  color:#401E5B;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
   margin:30px 0;
   border: 1px solid var(--Kelly-100, #EBFFF4);
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.module-split.visible {
  opacity: 1;
  transform: translateY(0);
}

.module-content {
  width: 50%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.module-icon {
  width: 40px;
  height: auto;
}

.module-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color:#401E5B;
}

.module-body {
  font-size: 28px;
line-height: normal;
  margin-bottom: 32px;
  font-weight:300;
}
.module-content button {
  font-size: 18px;
  font-weight: 600;
  width: 189px;
  padding: 12px 35px;
  border: 1px solid black;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  display: block;
  transition: all 0.25s ease;
}

.module-content button:hover {
  background-color: #401E5B;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


.module-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-image img {
  max-width: 100%;
  height: auto;
}



.module-green .module-content {
  background-color: #2DE381;
}

.module-blue .module-content {
  background-color: #00E0FF;
}

.module-pink .module-content {
  background-color: #FF99A5;
}

@media (max-width: 700px) {
  .module-split {
    flex-direction: column;
  }

  .module-image,
  .module-content {
    width: 100%;
  }

  .module-image img {
    width: 100%;
    height: auto;
  }
}






.img-replacement {
    width: 1200px;
    height: 600px;
    position: relative;
}
.img-replacement img {
    visibility: hidden;
}
.img-replacement::after {
    content: '';
    background-image: url(//halcyon.eco/hubfs/Hubspot%20Preview%20image-purple.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px); /* Start the element 20px down from its final position */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeftToRight > div {
  opacity: 0;
  transform: translateX(-200px); 
}
#product-features{
opacity:0; 
}

@keyframes fadeInLeftToRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeChildren div {
  opacity: 0;
  transform: translateX(-100px);
}
.fade {
  opacity:0;
  animation: fadeIn 1s ease-in-out forwards;
}

.fadeLtoR{
  opacity: 0; 
  animation: fadeInLeftToRight 1s ease-in-out forwards;
}

.fadeUp{
  opacity: 0; 
  animation: fadeInUp 1s ease forwards; 
}

.fadeLeftToRight > div:nth-child(1) { animation-delay: 0.2s; }
.fadeLeftToRight > div:nth-child(2) { animation-delay: 0.6s; }
.fadeLeftToRight > div:nth-child(3) { animation-delay: 0.10s; }
.fadeLeftToRight > div:nth-child(4) { animation-delay: 1.2s; }
.fadeLeftToRight > div:nth-child(5) { animation-delay: 1.2s; }
.fadeLeftToRight > div:nth-child(6) { animation-delay: 1.2s; }


/* Hero */
.hero-Title{
  color: #F25064;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 118px; /* 98.333% */
  text-align:left;
  width: 72%;
  max-width:989px;
  word-wrap: normal;
  padding-bottom:380px;
}

.hero-Description{
  color: #D9D2DE;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.3; /* 130% */
  letter-spacing: 0.4px;
  text-align:left;
  max-width:402px;
}


.button{
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #F25064;
}
.button:hover {
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #ff8392;
}
.button-wrapper{
  padding-top:45px;
}


.demo-button {
  display: inline-block;
    padding: 7.5px 35px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  border: 3px solid white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.demo-button:hover {
    padding: 7.5px 35px;
  font-size: 20px;
  font-weight: 700;
  background-color: white;
   border: 3px solid white;
  color: #330e5c; /* Adjust based on your dark purple bg */
}

/* Product Features */
#product-Feature-Header{
  padding-bottom:70px;
}
.product-features-header h1{
  padding-left 5px;
}

.product-feature-title {
  color: #FF8391;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  letter-spacing: 0.36px;
}

.product-feature-subtitle {
  color: #D9D2DE;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 40px;
  font-style: normal;
  font-weight: 200;
  line-height: 48px; /* 120% */
}

.feature-title-block {
  display: flex;
  flex-flow: column;
  gap: 10px;
  padding: 40px 20px;
}

.feature-title-column-1-line {
  border-top: 1px solid #664B7C80;
}

.feature-section {
  display: flex;
}
.feature-section > .feature-image {
  display: flex;
  box-sizing: border-box;
  flex-flow: column;
}

.feature-section > div:first-child{
  padding: 40px 20px;
}

.feature-section > div:first-child {
    flex-grow: .55;
}

.feature-section > div:nth-child(2) {
  border-top: 1px solid #664B7C80;
  width: 50px;
}

.feature-section > div:nth-child(3) {
  width: 225px;
  border-top: 1px solid #664B7C80;
  border-left: 1px dashed #664B7C80;
  border-right: 1px dashed #664B7C80;
  padding: 20px 20px 240px 20px;
}

.feature-section > div:nth-child(4) {
  border-top: 1px solid #664B7C80;
  flex: 1;
}

.feature-number {
  padding: 20px 20px 20px 0px;
  color: #FF8391;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 100% */
}
.feature-image {
  align-items: center;
  flex-flow: column;
}

.feature-bullets-title {
  color: #FF8391;
  padding: 20px;
  font-size: 24px;
  font-style: normal;
  line-height: 24px; /* 100% */
  height: 120px;
}

.feature-bullets {
  padding-left: 20px;
  display: flex;
  flex-flow: row;
  gap: 10px;
  border-top: 1px dashed #664B7C;
  padding-top: 5px;
}

.feature-bullets > div:first-child {
  width: 55px;
  padding-top: 0px;
  box-sizing: border-box;
  padding-left: 0px;
  color: #FF8391;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 200% */
}

.feature-bullet-title {
  padding-bottom: 20px;
  max-width: 450px;
  color: #D9D2DE;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}

.feature-content {
  padding-left: 0px;
}
.feature-content h2 {
  font-size: 2em; /* Adjust the size as needed */
  margin-top: 0;
  padding-bottom: 100px;
}
.feature-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.feature-content p {
  padding-top: 0.5em; /* Adjust the padding as needed */
  border-top: 1px dashed #664B7C; /* Adjust the color as needed */
  padding-left: 5px;
}

.number-container{
 height:100%;
 border-right: 1px dashed #4c2a64; /* Solid top border */
}

.headerBox {
  width: 50%;
  min-width: 300px;
}

.blog-listing__post-title-link, .button {
    text-decoration: none;
}
.benefits-Text-Container{
  padding-top:30px;
  max-width: 438px;
  flex-shrink: 0;
}
.benefits-Text-Header{
  color: #FF8391;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
.benefits-Text{
  color: #D9D2DE;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 22px;
}
.core-Values-Subtitle{
  color: #D9D2DE;
  font-family: "Aktiv Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 100;
  line-height: 48px; /* 120% */
  padding-bottom:45px;
  box-sizing: border-box;  
}


@media (max-width: 768px) {
  .dnd_area-row-1-padding {
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .feature-section > .feature-image {
    padding-bottom: 320px;
  }

  .feature-section > div:first-child {
    display: none;
  }

  .feature-section > div:nth-child(2) {
    display: none;
  }
  .feature-section > div:nth-child(3) {
    width: 150px;
  }
  #product-features-header > div:nth-child(3) {
    display: none;
  }
  .feature-section {
    flex-direction: row;
    padding-left: 0;
    padding-bottom: 100px;
  }
   .feature-section h2 {
     padding-bottom: 5px;
  }
  .feature-section > div:nth-child(3) {
    border: none;
  }
  
  .feature-bullets {
    border: none;
    padding-left:10px;
  }
  
  .feature-bullet-title {
    border-top: 1px dashed #664B7C;
    max-width: 450px;
    padding-right: 35px;
  }
  .feature-bullets-title {
    padding-left:10px;
  }

  .feature-number, .feature-image, .feature-content {
    width: 100%;
    border-left: none;
    padding:0;
    margin: 0;
  }
  .feature-image img {
    margin: 0 auto;
    max-width: 100px; /* Adjust the max-width as needed */
    height: auto;
    padding-left: 20px;
  }
.product-features-header{
    border: none;
  }
 .formText{
   padding-right: 0px;
}
  .hero-Title {
    color: #F25064;
    font-family: "Aktiv Grotesk";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 130px;
    width: 100%;
  }
  .hero-Description{
    color: #D9D2DE;
    font-family: "Aktiv Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3; /* 135.714% */
    letter-spacing: 0.28px;
  }
  .core-Values-Subtitle {
    color: #D9D2DE;
    font-family: "Aktiv Grotesk";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-bottom:0px;
  }
  .benefits-Text {
    color: #D9D2DE;
    font-family: "Aktiv Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding-bottom: 50px;
  }
  .hero-Container{
    margin-top: -50px;
  }
  .dnd_area-row-0-background-image {
    background-size: contain !important;
}
  .dnd_area-row-0-margin {
    margin-top: 0 !important;
}
  .cell_17113330995082-padding {
    padding-top: 0px !important;
}
}