body {
  background-color: #ffffff;
}

/* general styles */
#frameworks_wrapper .b2b-cta {
  background-color: #ffffff;
  color: #4C12A1 !important;
  border: 2px solid #4C12A1 !important;
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  padding: 10px 30px;
  display: block;
  width: auto;
  max-width: max-content;
}
#frameworks_wrapper .b2b-cta:hover {
  background-color: #f2f2f2;
}

/*breadcrumb styles*/
.breadcrumb {
	margin: 8px 0 16px 0;
}

.breadcrumb.why {
  margin-bottom: 0px;
  border-bottom: 0px;
  padding-top: 8px;
}
.breadcrumb h4 {
  font-size: 13px;
  font-weight: normal;
  margin: 0 4px 4px 4px;
  color: #213038;
}
.breadcrumb a {
  text-decoration: none;
  color: #4C12A1;
}
.breadcrumb a:after {
  font-family: 'fontAwesome';
  content: "\f105";
  padding-left: 0.7em;
  padding-right: 0.3em;
  font-size: 120%;
}
/*end of breadcrumb styles*/
#frameworks_wrapper {
  padding: 0px 8px;
}
#frameworks_wrapper .intro-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
#frameworks_wrapper .intro-image {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}
#frameworks_wrapper .paragraph-wrapper {
  max-width: 60%;
  margin: auto;
  text-align: center;
  margin: 40px auto;
}
#frameworks_wrapper .paragraph-wrapper.second {
  max-width: 600px;
}
#frameworks_wrapper .desktop {
  display: block;
  width: 100%;
  border-radius: 8px;
}
#frameworks_wrapper .mobile {
  display: none;
}
#frameworks_wrapper .why-b2b {
  background-color: #F4F4F4;
  margin: 40px 0px;
  height: max-content;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#frameworks_wrapper .b2b-benefits-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;  
  margin: 40px auto;
}
#frameworks_wrapper .benefits-wrapper {
  display: flex;
  gap: 32px;
  margin: 32px auto;
}
#frameworks_wrapper .benefits-wrapper .b2b-benefit {
  flex: 1 1 100%;
}
#frameworks_wrapper .partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
#frameworks_wrapper .partner-block {
  box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 32px 16px;
}
#frameworks_wrapper .partner-block .partner-logo {
  display: block;
  margin: auto;
  max-width: 300px;
  max-height: 100px;
  width: 100%;
}
/* form */
#frameworks_wrapper #frameworks-form-wrapper {
  background-color: #f0f0f0;
  margin: 0px;
  height: max-content;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#wcb .form-wrap div.section:first-of-type {
  justify-content: flex-start;
}
#wcb .form-wrap #findstore {
  margin: 32px 0;
}
/* Smooth continuous scroll */
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* depends on how many items you duplicate */
}


@media only screen and (min-width:1026px) {
  #frameworks_wrapper .marquee-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  #frameworks_wrapper .marquee-item {
    width: 25%;
  }
  #frameworks_wrapper .marquee-content .marquee-logo {
    max-width: 300px;
    max-height: 100px;
    margin: auto;
    display: block;
  }   
}


@media only screen and (max-width:1025px) {
  #frameworks_wrapper .marquee-container {
    position: relative;
    left: 50%;
    right: 50%;
    margin: 100px auto;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow: hidden;
    margin-top: 20px;
      margin-bottom: 40px;
  }
  #frameworks_wrapper .marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 30s linear infinite;
    gap: 10px; /* cleaner spacing */
  }
    
  #frameworks_wrapper .marquee-item {
    width: 25%;
    padding: 1rem;
    box-sizing: border-box;
    white-space: nowrap;
    display: flex;
    justify-content: space-around;
    align-self: center;
  }

  #frameworks_wrapper .marquee-content .marquee-logo {
    max-width: 300px;
    max-height: 100px;
  }

}

@media screen and (max-width:899px) {
  #frameworks_wrapper .intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
  }
  #frameworks_wrapper .intro-section div,
  #frameworks_wrapper .intro-image {
    width: 100%;
    max-width: 60%;
    text-align: center;
  }  
  #frameworks_wrapper .intro-image {
    max-width: 500px;
  }
  #frameworks_wrapper .intro-section div .b2b-cta {
    margin: auto;
  }
}

@media screen and (max-width:599px) {
  #frameworks_wrapper .partners-grid {
    grid-template-columns: auto;
  }
  #frameworks_wrapper .benefits-wrapper {
    flex-direction: column;
  }
  #frameworks_wrapper .intro-section div,
  #frameworks_wrapper .intro-image {
    max-width: 100%;
  }  
  #frameworks_wrapper .paragraph-wrapper {
    max-width: 90%;
  }
}