.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 15px 80px 15px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}

.hero-content {
    flex-basis: 50%;
    padding-right: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.subtitle {
    font-size: 1.25em;
    color: #333;
    margin-bottom: 1em;
}

.hero-buttons .btn {
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: bold;
}


.logo-image {
    flex-basis: 50%;
    text-align: right;
}

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

.feature-section {
    text-align: center;
    align-items: center;
    display: flex;
    background-color:#f9f9f9;
    justify-content: space-between;
    padding:  100px 15px 0px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-text {
    flex-basis: 50%;
    max-width: 50%;
}

.feature-text h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0.5em;
    margin: auto;
    text-align: center;
}

.feature-text p {
    font-size: 1.25em;
    color: #333;
}

.feature-images {
    flex-basis: 50%;
    max-width: 50%;
    text-align: right;
}

.feature-images img {
    max-width: 100%;
    height: auto;
    display: inline-block; /* or block if you prefer */
}

/* Add responsive adjustments if necessary */
@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        text-align: center;
    }

    .feature-text, .feature-images {
        flex-basis: 100%;
        max-width: 100%;
    }

    .feature-images img {
        margin-top: 20px;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content, .logo-image {
        flex-basis: 100%;
        text-align: center;
    }
    .hero-content {
        padding: 0;
        order: 2; /* Image will be on top on mobile */
    }
    .logo-image {
        order: 1;
    }
    .hero-buttons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
}


.trusted-by-section {
    background-color: #fff; /* Change this to match your page's design */
    text-align: center;
    padding: 40px 0;
}

.trusted-by-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 15px 0px;
    
}

.trusted-by-section h2 {
    color: #333; /* Change this to match your page's design */
    font-size: 1.5em;
    margin-bottom: 20px;
}

.trusted-by-section .logos img {
    max-height: 50px; /* Adjust as needed */
    max-width: 100%;
    margin: 0 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trusted-by-section .logos {
    padding: 0px 10px;
}

.trusted-by-section .logos img:hover {
    opacity: 1;
}

.performance-challenges-section {
    background-color: #fff; /* Adjust the background color as needed */
    padding: 50px 0;
    text-align: center;
}

.performance-challenges-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 15px 0px;
    
}

.performance-challenges-section h2 {
    color: #333; /* Adjust the font color as needed */
    font-size: 2em;
    margin-bottom: 20px;
}

.performance-challenges-section p {
    color: #333; /* Adjust the font color as needed */
    font-size: 1em;
    margin-bottom: 30px;
}

.performance-challenges-section .visual-elements {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.performance-challenges-section .technology-screenshot {
    max-width: 100%;
    height: auto;
    margin: 0 15px;
}

.performance-challenges-section .statistics .statistic {
    margin: 20px;
    text-align: center;
}

.performance-challenges-section .statistics .percentage {
    font-size: 3em;
    font-weight: bold;
}

.performance-challenges-section .user-feedback .user-image {
    border-radius: 50%; /* Circular image */
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    margin-bottom: 15px;
}
.benefits-section {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
    padding: 50px 15px;
}


.benefits-section50 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px 15px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

.benefit-item {
    background-color: #ffffff; /* or any color that fits your design */
    border-radius: 10px; /* Optional, for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional, for a subtle shadow */
    padding: 20px;
    text-align: center;
    flex-basis: calc(33.333% - 20px); /* adjust the spacing between items */
    margin: 10px; /* adjust the spacing between items */
}

.benefit-item .icon {
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.5rem!important;
    font-weight: 700!important;
    color: #333333; /* or any color that fits your design */
    margin: 1rem 0;
}

.benefit-item p {
    color: #333666; /* or any color that fits your design */
    font-size: 14px; /* adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-section {
        flex-direction: column;
    }

    .benefit-item {
        flex-basis: auto;
        margin-bottom: 20px;
    }
}


.benefit-item50 {
    background-color: #ffffff; /* or any color that fits your design */
    border-radius: 10px; /* Optional, for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional, for a subtle shadow */
    padding: 20px;
    text-align: center;
    flex-basis: calc(46% - 20px); /* adjust the spacing between items */
    margin: 10px; /* adjust the spacing between items */
}

.benefit-item50 .icon {
    margin: 15px;
    min-height:120px;
    max-height:120px;
}

.benefit-item50 h3 {
    color: #333333; /* or any color that fits your design */
    margin-bottom: 10px;
}

.benefit-item50 p {
    color: #333666; /* or any color that fits your design */
    font-size: 14px; /* adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-section {
        flex-direction: column;
    }

    .benefit-item50 {
        flex-basis: auto;
        margin-bottom: 20px;
    }
}
.landing-page-features-section {
    background-color: #fff; /* Adjust to match your design */
    padding: 50px 0;
    text-align: center;

}

.landing-page-features-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 15px 20px 15px;
    
}

.landing-page-features-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

.landing-page-features-section p {
    color: #333;
    margin-bottom: 30px;
}

.landing-page-features-section .features {
align-items: start;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

.landing-page-features-section .feature-item {
    background-color: #fff;
    flex-basis: calc(33.333% - 20px);
    margin: 10px;
    min-height: 250px;
    padding: 20px;
    text-align:left;
    position: relative; /* Continue to use relative positioning */

}

.landing-page-features-section .feature-icon {
    width: 50px; /* Adjust as needed */
    margin-bottom: 15px;
}

.landing-page-features-section h3 {
    color: #333;
      font-weight: 900;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.landing-page-features-section .feature-item p {
    color: #333;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-page-features-section .features {
        flex-direction: column;
    }

    .landing-page-features-section .feature-item {
        flex-basis: auto;
        margin-bottom: 20px;

    }
}


.landing-page-library-section {
    background-color: #fff; /* Adjust to match your design */
    padding: 10px 0;
    text-align: center;

}

.landing-page-library-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 15px 0px;
    
}

.landing-page-library-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

.landing-page-library-section h3 {
    color: #333;
    font-weight:900;
padding-top:25px;
    font-size: 1.5em;
    margin-bottom: 20px;
}


.landing-page-library-section p {
    color: #333;
    margin-bottom: 0px;
}

.landing-page-library-section .features {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-page-library-section .feature-item {
    background-color: #fff;
    flex-basis: calc(33.333% - 20px);
    margin: 10px;
    min-height: 225px;
    padding: 20px 0px;
    position: relative; /* Continue to use relative positioning */
 /* border-right: 2px solid transparent;  */ /* Add a transparent right border */
}

.landing-page-library-section .feature-item::after {
    content: '';
    position: absolute;
    top: 50%; /* Center the border vertically */
    right: 0; /* Align to the right side */
    transform: translateY(-50%); /* Offset by half its own height to truly center */
    height: 80px; /* Height of the custom border */
  /*  width: 2px; 
    background-color: #e9e9e9;  */
}

/* Optional: Clearfix to ensure the container wraps around floated children if needed */
.landing-page-library-section::after {
    content: '';
    display: block;
    clear: both;
}

/* Ensure that the last feature-item in a row does not have a right border */
.landing-page-library-section .feature-item:last-child::after,
.landing-page-library-section .feature-item:nth-child(3n)::after {
    background-color: transparent;
}
.landing-page-library-section .feature-icon {
    width: 50px; /* Adjust as needed */
    margin-bottom: 15px;
}

.landing-page-library-section h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.landing-page-library-section .feature-item p {
    color: #333;
    font-size: 1em;
    padding: 0px 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-page-library-section .features {
        flex-direction: column;
          align-items: center;
    }

    .landing-page-library-section .feature-item {
        flex-basis: auto;
        margin-bottom: 20px;

    }
}

.customer-stories-section {
    background-color: #ffffff; /* Adjust the color to fit your branding */
    padding: 40px 0;
    text-align: center;
}

.customer-stories-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 15px 0px;
    
}

.customer-stories-section h2 {
    margin-bottom: 30px;
    font-size: 2em;
}

.stories-grid {
    display: flex;
    justify-content: space-around;
    margin: 0 -15px;
}

.story {
    background: #fff;
    margin: 0 15px;
    flex-basis: 30%; /* Adjust based on your design */
    border-radius: 10px; /* Optional */
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional */
}

.story img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    padding: 15px;
    text-align: left; /* Align text to the left inside the story card */
}

.story h3 {
    color: #333; /* Adjust to fit your branding */
    font-size: 1.25em;
    margin-bottom: 10px;
}

.story p {
    color: #333; /* Adjust to fit your branding */
    font-size: 1em;
    margin-bottom: 20px;
}

.read-more {
    color: #0062cc; /* Adjust to fit your branding */
    text-decoration: none;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stories-grid {
        flex-direction: column;
    }

    .story {
        flex-basis: auto;
        margin-bottom: 20px;
    }
}
.demo-request-section {
        background-size: cover;
    color: #fff;
    text-align: center;
      background-color: #0077bd;
  position: relative;

}


.demo-request-section::before,
.demo-request-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 40px; /* Curve height */
  background: inherit;
}

.demo-request-section::before {
  top: 0;
  background: #fff;
  border-radius: 0 0 40px 40px / 0 0 40px 40px;
}
.demo-request-section::after {
  bottom: 0;
  background:#fff;
  border-radius: 40px 40px 0 0 / 40px 40px 0 0;
}

.demo-request-section .container {
  position: relative; /* Ensure the container is above the pseudo-elements */
  z-index: 4;
  /* Your styles for the container */
}

.demo-request-overlay {
      padding: 100px 0;
   background-size: cover;
}
.demo-request-section .container {
    max-width: 1000px;
    height: fit-content;
    margin: 0 auto;
    padding: 50px 15px 0px;   
}

.demo-request-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.demo-request-section p {
    margin-bottom: 30px;
}

.cta-buttons {
    display: inline-block;
}

.cta-button {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0077bd; /* Adjust the background color to match your design */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.cta-button.demo {
    background-color: #c53f97; /* Color for demo button */
}

.cta-button.contact {
    background-color: #0077bd; /* Color for contact button */
}

.cta-button:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        display: block;
    }

    .cta-button {
        margin: 10px auto;
        display: block;
    }
}


.hero-simple-section {
        background-size: cover;
    color: #fff;
    text-align: center;
      background-color: #0077bd;
    position: relative;
    margin-top: 80px;
}

.hero-simple-section .bottom-curve {
    background-color: #fff;
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0!important;
    z-index: 3;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.hero-simple-overlay {
      padding: 100px 0;
   background-size: cover;
}
.hero-simple-section .container {
    max-width: 1000px;
    height:25vh;
    margin: 0 auto;
    padding: 80px 15px 0px;   
}

.hero-simple-section h1 {
    font-size: 3em;
}

.hero-simple-section p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

@media (min-width: 1000px) {
.logo-ticker-section {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 80px 15px 0px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 1000px; /* This is the viewport width */
    margin: 30px auto;
}

.logo-ticker-text {
    flex-basis: 50%;
    max-width: 1000px;
    margin: 0px 15px;
}

.logo-ticker-text h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 0.5em;
}


.logo-ticker-section .logo-ticker {
     display: flex;
    margin: auto;
    Max-width: 950px;
    min-width: 950px;
    justify-content: space-between;
    will-change: transform; 
  }

.logo-ticker-section .logo-image {
display: inline-block;
    flex: 0 0 auto;
    height: auto;
    margin: 10px 0px;
    opacity: 1;
    width: 140px;
}
}

@media (max-width: 1000px) {
.two-column-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }}

@media (min-width: 1000px) {
.two-column-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }


}


.two-column-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.two-column-section .container-level {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
    align-items: center;
}


@media (max-width: 1000px) {
.two-column-section .content-column {
margin: auto;
    max-width: 80vw;
    min-width: 80vw;
}

.two-column-section .content-column h3 {
  text-align:center;
  }

.two-column-section .content-column img {
    max-width: 70vw;
    min-width: 70vw;
    margin:auto;
  }

.two-column-section .content-column .leftimg img {
display:none;
  }
  }



@media (min-width: 1000px) {

.two-column-section .content-column .col3  {
   display:none;
  }
.two-column-section .content-column .rightimg img {
   display:none;
  }


}


@media (max-width: 1000px) {
.logo-ticker-section {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 80px 15px 0px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 80%; /* This is the viewport width */
    margin: 10px auto;
}

.logo-ticker-text {
    flex-basis: 50%;
    max-width: 50%;
}

.logo-ticker-text h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}


.logo-ticker-section .logo-ticker {
    display: flex;
Margin:auto;
Max-width:1000px;
Overflow:hidden;
    will-change: transform;
    /* No need for overflow-x or white-space since this is for the container */
}

.logo-ticker-section .logo-image {
    display: inline-block;
    margin-top: 40px;
    margin-right: 20px; /* Space between logos */
    width: 80px; /* Width of each logo */
    height: auto; /* Maintain aspect ratio */
    flex: 0 0 auto;
    opacity: 1;
}
}


.onecol-section {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 80px 15px 0px;
    flex-direction: column;
    
}

.onecol-section-no-marginbottom {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 80px 15px 0px 15px;
    flex-direction: column;
}



@media (max-width: 1000px) {

.onecol-text {
    max-width: 100%;
}

.onecol-text h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}


.onecol-text p {
    font-size: 1em;
    color: #333;
}
}


@media (min-width: 1000px) {

.onecol-text {
    flex-basis: 50%;
    max-width: 1000px;
padding: 0px 15px;
}

.onecol-text h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 0.5em;
}


.onecol-text p {
    font-size: 1em;
    color: #333;
}
}



.onecol-images {
    flex-basis: 50%;
    max-width: 50%;
    text-align: right;
}

.onecol-images img {
    max-width: 120%;
    height: auto;
    display: inline-block; /* or block if you prefer */
}

/* Add responsive adjustments if necessary */
@media (max-width: 1000px) {
    .onecol-section {
        flex-direction: column;
        text-align: center;
    }

    .onecol-text, .feature-images {
        flex-basis: 100%;
        max-width: 100%;
    }

    .onecol-images img {
        margin-top: 20px;
    }
}

@media (max-width: 1000px) {
.quote-section {
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
    max-width: 80%;
    border-radius: 10px;
    margin: 110px auto;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    position: relative; /* To position the image absolutely within this section */
  }}

@media (min-width: 1000px) {
.quote-section {
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
    max-width: 800px;
    border-radius: 10px;
    margin: 80px auto 0px;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    position: relative; /* To position the image absolutely within this section */
  }}

.quote-text {
    flex-basis: 50%;
    max-width: 80%;
    padding-top: 20px;
}

.quote-text h3 {
    font-size: 1em !important;
    color: #333;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.quote-text h4 {
    font-size: 0.8em !important;
    color: #333;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.quote-text p {
    font-size: 1em;
    color: #333;
}

.quote-image-wrapper {
    position: absolute; /* Position the image absolutely to the top left corner */
    top: 0;
    left: 0;
     transform: translate(-29%, -40%);
}

.quote-decoration-image {
    max-width: 100px; /* Adjust the size as needed */
    height: auto;
    display: block; /* Use block to ensure it sits on its own line */
}


.column {
    flex: 1; /* Each column will take equal space */
    padding: 15px;
}

.First-column {
    flex-basis: 50%; /* Adjust the width of the image column */
}

.first-column h2 {
    font-size: 2em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
    margin-bottom: 20px;
}

.first-column h3 {
    font-size: 1.5em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
    margin-bottom: 20px;
}

.first-column p {
    font-size: 1em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
}

.second-column {
    flex-basis: 50%; /* Adjust the width of the text column */
}

.second-column h2 {
    font-size: 2em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
    margin-bottom: 20px;
}

.second-column h3 {
    font-size: 1.5em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
    margin-bottom: 20px;
}

.second-column p {
    font-size: 1em; /* Adjust font size as needed */
    color: #333; /* Adjust font color as needed */
}

/* Add responsive adjustments if necessary */
@media (max-width: 64em) {
    .container {
        flex-direction: column;
        align-items:center;
        text-align:center;
    padding: 40px 15px 0px;
    
    }

    .column {
        flex-basis: 100%; /* Columns will stack on top of each other on smaller screens */
    }
}


.faq-section {
    margin: 20px auto;
    max-width: 1000px;
    padding: 80px 15px 0px;
}



.faq-question {
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    user-select: none;
    margin-left: auto;
}

.faq-answer {
    font-size: 1rem;
    border-top: none;
    padding: 15px;
    display: none;
}

.text-answer {
    font-size: 1rem;
    border-top: none;
    padding: 15px;
}

.text-answer p {
    font-size: 1rem;
}

.faq-answer ul {
    padding-left: 20px;
}

/* When the answer is visible */
.faq-answer[hidden] {
    display: block;
}

/* Styling when the question is expanded */
.faq-question[aria-expanded="true"] .faq-toggle {
    content: "-";
}

.hs-form-private {
max-width:450px!important;
}



.hs-button {
background-color: #b34288!important;
    border: 2px solid #b34288!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #fff!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}

.hs-button:hover {
    cursor: pointer;
background-color: #fff!important;
    border: 2px solid #b34288!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #b34288!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}


.hs-button-2 {
background-color: #003d6a!important;
    border: 2px solid #003d6a!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #fff!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}

.hs-button-2:hover {
    cursor: pointer;
background-color: #fff!important;
    border: 2px solid #003d6a!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #003d6a!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}


.hs-form__actions__submit, .hs-form__actions__next {
    background: #b34288!important;
    border-color: #b34288!important;
    color: #ffffff;
    font-family: Hind;
    line-height: 15px;
    font-size: 15px;
}

.hero_button_2!important .hs-button:hover {
    cursor: pointer;
background-color: #fff!important;
    border: 2px solid #b34288!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #b34288!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}



.hero_button_2!important .hs-button {
background-color: #b34288!important;
    border: 2px solid #b34288!important;
    border-radius: 25px!important;
    box-shadow: 0 4px 16px rgba(0,51,102,.2)!important;
    color: #fff!important;
    display: inline-block!important;
    font-family: FSMeTrial,Arial,Helvetica Neue,sans-serif;
        font-size: 1rem !important;
    font-weight: 700;
    line-height: 1;
    text-align: center!important;
    margin: 20px 0px;
    max-width: 450px;
    min-width: 179px;
    padding: 0.87719rem;
}


.hs-opt_in_to_emails .inputs-list {
    display: flex;
    align-items: center; /* This will vertically align the checkbox with the label text */
}

.hs-opt_in_to_emails .hs-input {
    margin-right: 8px; /* Adjust the space between the checkbox and the label text */
}


/* Resources */
.resource-cards-section {
  max-width:1000px;
margin:50px auto;
    text-align: center;
    align-items: center;
}

.resource-cards-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 0.5em;
}

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px; /* Adjust the spacing between cards as necessary */
    text-align: left;
    align-items: start;
}

.resource-card {
  background-color: #fff;
  border-radius: 10px;
  flex-basis: calc(33.333% - 20px); /* for 3 columns */
  margin-bottom: 20px; /* Space below each card */
  overflow: hidden; /* Ensures the image doesn't overflow the border radius */
}

.resource-card-image {
  width: 100%;
  height: 150px; /* Adjust height as necessary */
  background-size: cover;
  background-position: center;
}

.resource-card-content {
  padding: 20px;
}

.resource-card-tag,
.resource-card-date {
  display: block;
  margin-bottom: 10px; /* Spacing between tag/date and title */
}

.resource-card-title {
  margin-bottom: 15px; /* Spacing between title and description */
}

.resource-card-description {
  margin-bottom: 20px; /* Spacing between description and CTA */
}

.resource-card-cta {
  display: inline-block;
  text-decoration: none;
  color: #fff; /* Learning Pool's vibrant blue */
  background-color: #c53f97; /* Learning Pool's striking pink */
  padding: 10px ;
border-radius:8px;
}

.go812842568 {
    border-radius: 25px;
}

.go812842568 .rich-text{
    color:#666!important;
}



/* Learning Pool Download page */
.download-module {
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .5);
    display: flex;
    flex-wrap: wrap;
    min-height: 60vh;
    padding: 40px;
    margin: 80px auto;
    align-items: center;
    align-content: center;
    max-width:1200px;
}

.download-left-column {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    flex: 1;
    margin:auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
    align-content: center;
}

.download-left-column .icon-library {
 fill:  #0069b4;
width: 55px;
margin: 20px 0;
}

.download-right-column {
    flex: 1;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    overflow: hidden; /* Ensure the border radius is applied to the content inside */
    margin: 0; /* Remove any margin around the column */
    padding: 0; /* Remove any padding inside the column */
}

.download-right-column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #003d6a, #003d6a);
    opacity: 0.8;
    z-index: 1;
    border-radius: 18px; /* Ensure the gradient follows the border radius */
}

.form-right-column {
    flex: 1;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    overflow: hidden; /* Ensure the border radius is applied to the content inside */
    margin: 0; /* Remove any margin around the column */
    padding: 0; /* Remove any padding inside the column */
}

.form-right-column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f3f3f3;
    opacity: 0.8;
    z-index: 1;
    border-radius: 18px; /* Ensure the gradient follows the border radius */
}

.download-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 55vh;
    z-index: 2; /* Bring the image in front of the gradient */
}

.download-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 75vh;
    z-index: 2; /* Bring the image in front of the gradient */
}


.download-image img {
    width: 30vw;
    height: auto;
    object-fit: cover;
}

.download-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #272727;
}

.download-description {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #272727;
}

.cta-button {
    background-color: #0072bc;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005f99;
}

@media (max-width: 768px) {
    .download-module {
        flex-direction: column;
        align-items: center;
    }

    .download-left-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .download-right-column {
        display: none;
    }

    .download-left-column .download-image {
        display: flex;
        margin-bottom: 20px;
    }

    .download-image img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        margin-bottom: 20px;
    }
}