.model1-band {
  display: flex;
  flex-direction: column;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3.2vw, 52px) clamp(22px, 3.2vw, 52px);
  border-bottom: 1px solid var(--security-line);
}

.model1-band-separator {
  width: 300px;
  height: 2px;
  background-color: #ccc;
  margin: 0 auto 24px auto;
}

/*.model1-band-border {
  border: 4px solid #F6F5F8;
  border-radius: 10px;
  width: min(1340px, 95%);
}*/

.model1-band h2,
.model1-band h1,
.model1-band>p,
.model1-band>span {
  padding: 0 28px;
}

.model1-band h2 {
  color: #999999;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 2.2vw, 30px);
}

.model1-band h1 {
  margin: 0 0 22px;
  color: #1c2433;
  font-size: clamp(2.6rem, 3vw, 4rem);
  line-height: 1.2;
  letter-spacing: -1px;
}

.model1-band p,
.model1-info p {
  max-width: 54ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.model1-info-standalone p {
  max-width: fit-content;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.model1-info-standalone-center p {
  max-width: fit-content;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.65;
}

.model1-info-standalone-transparent p {
  max-width: fit-content;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.65;
}

.model1-band h3 {
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
  color: #857a86;
  line-height: 1.6;
}

.model1-band h4 {
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
  color: #111;
  line-height: 1.6;
  margin-bottom: 20px;
}

.model1-band p,
.model1-band ul,
.model1-info p,
.model1-info-standalone p,
.model1-info-standalone-center p {
  color: #999999;
}

.model1-info-standalone-transparent p {
  color: #490656;
}

.model1-band>p {
  max-width: fit-content;
  color: #666666;
  line-height: 1.3;
  text-transform: uppercase;
}

.model1-band--cards,
.model1-list {
  display: grid;
  overflow-x: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}

.model1-band--cards {
  padding: 0 28px;
  gap: 20px;
}

.model1-band--cards3 {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.model1-band--cards2 {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.model1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.model1-grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 48px 24px 48px 64px;
  background-color: #210835;
}

.model1-grid5-element {
  display: flex;
  flex-direction: column;
}

.model1-grid5-element p {
  color: #f0ebf0;
  padding-right: 32px;
}

.model1-grid5-element:not(:last-child) {
  border-right: 1px solid #442e5b;
}

.model1-grid5-element-title {
  display: flex;
  flex-direction: column;
}

.model1-grid5-element-title h3 {
  color: #e0b281;
}

.model1-grid5-element-separator {
  width: 30px;
  height: 1px;
  background-color: #e0b281;
  margin-bottom: 20px;
}

.model1-grid-element {
  display: grid;
  grid-template-columns: 160px calc(100% - 160px);
  background-color: #F6F5F8;
}

.model1-grid-element-full {
  grid-column: 1 / -1;
}

.model1-grid-element-support {
  display: flex;
  justify-content: space-around;
  padding: 14px 0 28px 20px;
}

.model1-grid-element-support img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: 50% 50%;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
  overflow: visible;
}

.model1-grid-element-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 7px 0;
}

.model1-grid-element-content h2 {
  color: #585854;
  font-size: clamp(1rem, 1vw, 2.1rem);
  padding: 0;
  margin-top: 0;
  margin-bottom: 6px;
}

.model1-grid-element-content li {
  margin-bottom: 0px;
}

.model1-grid-element-double-ul {
  display: flex;
  gap: 80px;
}

.model1-grid-element-separator {
  height: 100%;
  width: 1px;
  background-color: #ddd;
}

.model1-list {
  grid-template-columns: 65% 35%;
  border: 4px solid #F6F5F8;
  margin-bottom: 30px;
  padding: 36px 36px 24px 36px;
}

.model1-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*grid-template-rows: repeat(2, 1fr);*/
}

.model1-checkbox {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.model1-checkbox-border {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
}

.model1-checkbox img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  object-position: center;
}

.model1-checkbox p {
  color: #585854;
}

.model1-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 2.2vw, 28px) clamp(42px, 4.2vw, 48px) clamp(32px, 2.2vw, 28px) clamp(47px, 5.7vw, 63px);
  background-color: #F6F5F8;
}

.model1-quote img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 16px;
  transform: rotate(180deg);
}

.model1-quote h1 {
  max-width: 10ch;
  color: #585854;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin-bottom: 0;
}

.model1-band-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px 28px 32px 28px;
  cursor: default;
  transition: transform 100ms ease-in-out;
}

.model1-band-card-title {
  display: flex;
  flex-direction: column;
}

.model1-band-card:hover {
  transform: translateY(-1px);
}

.model1-band-card h3,
.model1-info h3 {
  margin: 0 0 22px;
  color: #1c2433;
  font-size: clamp(1.5rem, 1.5vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.model1-info-standalone h3 {
  color: #1c2433;
  font-size: clamp(1.5rem, 1.5vw, 2.6rem);
  line-height: 1.6;
  letter-spacing: -0.065em;
  margin-bottom: 0px;
}

.model1-text-link {
  color: #121417;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}

.model1-text-link:hover {
  color: #490656;
}

.model1-band-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  /*background-color: #ddd;*/
  margin-bottom: 20px;
}

.model1-band-card>p {
  margin-bottom: 16px;
}

.model1-band-card__title {
  display: flex;
  flex-direction: column;
}

.model1-band-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #490656;
  border-radius: 999px;
  margin-bottom: 20px;
}

.model1-band-card__icon p {
  color: #ffffff;
  margin-right: 1px;
  /*margin-top: 0px;*/
}

.model1-band-card__separator {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 16px 0 16px 0;
}

.model1-info {
  display: grid;
  grid-template-columns: 73% 27%;
  border: 1px solid #ccc;
  border-radius: 16px;
  background-color: #F4F6F8;
  padding: 24px 28px;
}

.model1-info-standalone,
.model1-info-standalone-center,
.model1-info-standalone-transparent {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
}

.model1-info-standalone,
.model1-info-standalone-center {
  background-color: #F4F6F8;
}

.model1-info-standalone {
  border-left: 1px solid #490656;
}

.model1-info-standalone-center,
.model1-info-standalone-transparent {
  align-items: center;
}

.model1-info-standalone-transparent {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.model1-info-margin {
  margin: 0 28px;
}

.model1-info-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.model1-info-left img {
  aspect-ratio: 1/1;
  height: 100px;
  object-fit: contain;
  object-position: center;
  /*background-color: #ddd;*/
}

.model1-info-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.model1-info-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.model1-catchphrase {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.model1-catchphrase h3 {
  color: #585854;
  font-size: clamp(1.5rem, 1.5vw, 2.6rem);
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.model1-catchphrase p {
  max-width: fit-content;
  color: #585854;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.65;
  margin: 0;
}


.model1-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 28px 24px 28px;
}

.model1-intro h3 {
  color: #000;
  font-size: clamp(2.5rem, 2.5vw, 3.6rem);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.065em;
  margin-bottom: 50px;
}

.model1-intro p {
  max-width: fit-content;
  color: #585854;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.65;
  margin: 0 0 1rem 0;
}

.model1-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin: 10px 0;
}

.model1-grid--cards-spacing {
  padding: 0 28px;
  gap: 20px;
  margin: 0 0;
}

.model1-grid--card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
  padding: 44px 28px 44px 28px;
  cursor: default;
  transition: transform 100ms ease-in-out;
}

.model1-grid--card:hover {
  transform: translateY(-1px);
}

.model1-grid--cards-spacing .model1-grid--card {
  justify-content: space-around;
  padding: 28px 28px 32px 28px;
  border-radius: 10px;
  margin-top: 0px;
}

.model1-grid--card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 20px;
}

.model1-grid--card h4 {
  color: #000;
  font-size: clamp(1.2rem, 1.2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  padding: 0;
  margin-top: 0;
  margin-bottom: 6px;
}

.model1-grid--card h5 {
  color: #000;
  font-size: clamp(1.2rem, 1.2vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  padding: 0;
  margin: auto;
  /*margin-top: 0;
  margin-bottom: 6px;*/
}

.model1-grid--card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model1-grid--card-title h5 {
  color: #490656;
}

.model1-grid--card p {
  font-size: 0.9rem;
}

.model1-grid--card-separator {
  width: 20px;
  height: 1px;
  background-color: #490656;
  margin-top: 6px;
  margin-bottom: 24px;
}

.model1-enum2 {
  margin-top: 40px;
}

.model1-enum h1,
.model1-enum2 h1,
.model1-section h1 {
  font-size: clamp(2.7rem, 2.85vw, 3rem);
  line-height: 1.2;
  text-transform: capitalize;
  word-wrap: break-word;
  margin-bottom: 0px;
}

.model1-enum2 span {
  padding: 0 6px;
}

/* .model1-enum, */
.model1-section h1 {
  max-width: 46%;
}

.model1-section h1 {
  max-width: 40%;
}

.model1-enum2 h1 {
  max-width: 50%;
  color: #6b3e75;
  padding: 0;
  margin-bottom: 40px;
}

.model1-enum>p,
.model1-enum2>p,
.model1-section>p {
  text-transform: none;
  margin-top: 20px;
}

.model1-enum2 p {
  padding: 0;
}

.model1-qa--cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  /*grid-template-rows: repeat(3, 1fr);*/
  padding: 0 28px;
  gap: 20px;
  margin-top: 40px;
}

.model1-qa--card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 261px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px 28px 32px 28px;
  cursor: default;
  transition: transform 100ms ease-in-out;
}

.model1-qa--card h3 {
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 12px;
  padding: 8px 10px;
}

.model1-qa--card h4 {
  color: #000;
  margin-top: 12px;
}

.model1-qa--card p {
  margin-top: 6px;
  margin-bottom: 12px;
}

.model1-qa--card a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 12px;
}

/*.model1-qa--card-title {
  display: flex;
  flex-direction: column;
}*/

.model1-qa--card a:hover {
  color: #490656;
}

.model1-qa--card-expanded {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms ease-in-out;
}

/*.model1-qa--card-expanded-hide {
  max-height: 0;
}*/

.model1-qa--card-expanded-show {
  max-height: 721px;
  /* or any sufficiently large value to accommodate the content */
}

.model1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  gap: 18px;
  padding: 0 28px;
  /*margin-right: 28px;*/
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(73, 6, 86, 0.18);
}

.model1-button:hover {
  transform: translateY(-1px);
}

.model1-main-button {
  white-space: nowrap;
  min-width: 243px;
  color: #fff;
  background: linear-gradient(135deg, #6c138b, #490656);
}

.model1-main-button:hover {
  color: #fff;
}

.model1-paragraph,
.model1-cmp {
  width: 100%;
  align-items: center;
}

.model1-cmpgray {
  background-color: #eee;
}

.model1-paragraph__purple {
  background-color: #490656;
}

.model1-paragraph__purple h1,
.model1-paragraph__purple h2,
.model1-paragraph__purple p {
  color: #fff;
}

.model1-paragraph p:not(:last-child) {
  margin-bottom: 20px;
}

.model1-paragraph__content {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.model1-cmp__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}

.model1-cmp__content-element {
  width: 40%;
  padding: 32px 48px;
  border-radius: 6px;
}

.model1-cmp__content-element h3 {
  color: #490656;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.model1-cmp__content-element p {
  color: #111111;
  font-size: 1rem;
  margin-bottom: 6px;
}

.model1-cmp__content-element1 {
  height: 280px;
  background-color: #eee;
}

.model1-cmp__content-element2 {
  height: 270px;
  background-color: #fff;
}

.model1-cmp__content-arrow-right {
  display: flex;
}

.model1-cmp__content-arrow-bottom {
  display: none;
}

.model1-cmp__content-arrow-right img {
  width: 80px;
}

.model1-cmp__content-arrow-bottom img {
  width: 60px;
  margin: 20px 0;
}

.model1-paragraph__contentfull,
.model1-paragraph__contentfullcenter {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.model1-paragraph__contentfullcenter {
  align-items: center;
}

.model1-paragraph__contentfullcenter-separator {
  width: 50%;
  height: 2px;
  background-color: #999;
  margin: 24px 0 48px 0;
}

.model1-paragraph__content h1,
.model1-paragraph__contentfull h1,
.model1-paragraph__contentfullcenter h1 {
  letter-spacing: -2px;
  padding: 0;
}

.model1-paragraph__content h1,
.model1-paragraph__contentfull h1 {
  font-size: clamp(2.7rem, 2.85vw, 3rem);
}

.model1-paragraph__contentfullcenter h1 {
  font-size: clamp(3.2rem, 3.35vw, 3.5rem);
  text-align: center;
}

.model1-paragraph__contentfullcenter p {
  max-width: 80ch;
  color: #888;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
}

.model1-paragraph__content h2,
.model1-paragraph__contentfull h2 {
  padding: 0;
}

.model1-paragraph__content p,
.model1-paragraph__contentfull p {
  max-width: 80ch;
}

.model1-paragraph__contentfull h1 {
  max-width: 18ch;
}

.model1-paragraph__workflow,
.model1-paragraph__workflow-mobile {
  display: flex;
  width: fit-content;
  background-color: #490656;
  padding: 16px 32px;
  border-radius: 16px;
}

.model1-paragraph__workflow-mobile {
  display: none;
  flex-direction: column;
  width: 60%;
}

.model1-paragraph__workflow p,
.model1-paragraph__workflow-mobile p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.model1-paragraph__workflow-mobile p {
  margin-bottom: 10px !important;
}

.model1-paragraph__cards {
  display: grid;
  margin-top: 16px;
  margin-bottom: 16px;
}

.model1-paragraph__cards6 {
  grid-template-columns: repeat(6, 1fr);
}

.model1-paragraph__cards5 {
  grid-template-columns: repeat(5, 1fr);
}

.model1-paragraph__cards4 {
  grid-template-columns: repeat(4, 1fr);
}

.model1-paragraph__cards3 {
  grid-template-columns: repeat(3, 1fr);
}

.model1-paragraph__cards2 {
  grid-template-columns: repeat(2, 1fr);
}

.model1-paragraph__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px;
}

.model1-paragraph__cards6 .model1-paragraph__card:not(:last-child),
.model1-paragraph__cards4 .model1-paragraph__card:not(:last-child),
.model1-paragraph__cards5 .model1-paragraph__card:not(:last-child),
.model1-paragraph__cards3 .model1-paragraph__card:nth-child(1),
.model1-paragraph__cards3 .model1-paragraph__card:nth-child(2),
.model1-paragraph__cards3 .model1-paragraph__card:nth-child(4),
.model1-paragraph__cards3 .model1-paragraph__card:nth-child(5),
.model1-paragraph__cards2 .model1-paragraph__card:nth-child(1),
.model1-paragraph__cards2 .model1-paragraph__card:nth-child(3),
.model1-paragraph__cards2 .model1-paragraph__card:nth-child(5),
.model1-paragraph__cards2 .model1-paragraph__card:nth-child(7) {
  border-right: 1px solid #ddd;
}

.model1-paragraph__cards3 .model1-paragraph__card,
.model1-paragraph__cards2 .model1-paragraph__card {
  margin-bottom: 30px;
}

.model1-paragraph__card-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #490656;
  border-radius: 50%;
  margin-bottom: 16px;
}

.model1-paragraph__card-number p {
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 0px;
}

.model1-paragraph__card>img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  overflow: visible;
}

.model1-paragraph__card>h3 {
  color: #585854;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.model1-paragraph__cards5 .model1-paragraph__card>h3,
.model1-paragraph__cards4 .model1-paragraph__card>h3,
.model1-paragraph__cards3 .model1-paragraph__card>h3,
.model1-paragraph__cards2 .model1-paragraph__card>h3 {
  font-weight: 500;
  padding: 0 12px;
}

.model1-paragraph__card>p {
  color: #585854;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 0;
}

.model1-paragraph__cards2 .model1-paragraph__card>p {
  padding: 0 48px;
}

.model1-paragraph__card>a {
  color: #490656;
  text-decoration: none;
  font-weight: 500;
}

.model1-text-link:hover {
  color: #490656;
}

.model1-paragraph__card>a {
  font-size: 0.95rem;
}

.model1-paragraph__card-separator {
  width: 80%;
  height: 1px;
  background-color: #ddd;
  margin-top: 30px;
}

.model1-paragraph__separator {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 16px 0;
}

.model1-paragraph__line {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.model1-paragraph__line a {
  margin-top: 10px;
}

.model1-paragraph__center {
  align-self: center;
  font-weight: 600;
  text-align: center;
  margin-top: 20px !important;
}

.model1-image-title {
  display: flex;
  flex-direction: column;
  padding: 64px 0 64px 16px;
  background-color: #fbfafa;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.model1-image-separator1 {
  width: 30px;
  height: 3px;
  background-color: #b983d5;
  margin: 0px 28px 26px 28px;
}

.model1-image-separator2 {
  width: 60px;
  height: 3px;
  background-color: #d7b08d;
  margin: 20px 28px 40px 28px;
}

.model1-image-title>h3 {
  max-width: 27ch;
  color: #490656;
  font-size: clamp(1.6rem, 1.7vw, 2.7rem);
  font-weight: 600;
  line-height: 1.3;
  padding: 0 28px;
  margin-bottom: 2px;
}

.model1-image-title>p {
  color: #000;
  padding: 0 28px;
  margin-bottom: 20px;
}

.model1-image-title-section {
  display: flex;
  align-items: center;
  padding: 0 28px;
  margin-bottom: 16px;
}

.model1-image-title-section-separator {
  width: 30px;
  height: 4px;
  background-color: #490656;
  margin-right: 10px;
}

.model1-image-title-section h3 {
  color: #490656;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.model1-image-title-separator {
  width: 60px;
  height: 3px;
  background-color: #d7b08d;
  margin: 20px 28px 40px 28px;
}

.model1-catchline {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  padding: 32px 0;
  background-color: #f6f5fb;
  margin-bottom: 10px;
}

.model1-catchline-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
  border-right: 2px solid #e7e4ed;
}

.model1-catchline-title-separator {
  width: 30px;
  height: 3px;
  background-color: #b983d5;
  margin-bottom: 26px;
}

.model1-catchline-content {
  display: flex;
  flex-direction: column;
  padding: 12px 56px;
}

.model1-catchline-title>h3,
.model1-catchline-content>h3 {
  max-width: 25ch;
  color: #490656;
  font-size: clamp(1.6rem, 1.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2px;
}

.model1-catchline-content p {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.model1-catchline-content-separator {
  width: 60px;
  height: 3px;
  background-color: #d7b08d;
}

.model1-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  background-color: #f6f5fb;
  margin-top: 10px;
  margin-bottom: 10px;
}

.model1-questions-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px;
}

.model1-questions-title>h2 {
  max-width: 25ch;
  color: #000;
  font-size: clamp(1.6rem, 1.5vw, 2.5rem);
  line-height: 1.4;
  text-transform: none;
  padding: 0;
}

.model1-questions-title>h5 {
  font-size: clamp(1.2rem, 1.2vw, 2.2rem);
  line-height: 1.6;
}

.model1-questions-bubble {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #490656;
  border-radius: 30px;
  padding: 0 28px;
}

.model1-questions-bubble ol {
  color: white;
  font-size: 1rem;
  margin-bottom: 6px;
}

.model1-questions-bubble ol li {
  margin: 20px 0;
}

.model1-showcase-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 20px;
}

.model1-showcase-card {
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 30px;
}

.model1-showcase-card-title {
  display: flex;
  flex-direction: column;
}

.model1-showcase-card-title h2 {
  text-align: left !important;
  color: #e0b281;
  font-size: clamp(1.6rem, 1.6vw, 2.6rem);
  margin-bottom: 10px;
}

.model1-showcase-card-title-separator {
  width: 30px;
  height: 3px;
  background-color: #d7b08d;
  margin-bottom: 20px;
}

.model1-showcase-card>h1 {
  text-align: left !important;
  align-self: flex-start !important;
  font-size: clamp(1.6rem, 1.6vw, 2.6rem);
}

.model1-showcase-card>p {
  max-width: 40ch;
  font-size: 0.9rem;
}

.model1-showcase-card-blue>h1,
.model1-showcase-card-blue>p {
  color: #fff;
}

.model1-showcase-card-white>h1 {
  color: #130e2b;
}

.model1-showcase-card-white>p {
  color: #000;
}

.model1-paragraph__tab {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.model1-paragraph__tab-element {
  display: grid;
  grid-template-columns: 10% 90%;
  padding-right: 30px;
}

.model1-paragraph__tab-element:not(:last-child) {
  margin-bottom: 60px;
}

.model1-paragraph__tab-element-title {
  display: flex;
  flex-direction: column;
}

.model1-paragraph__tab-element-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #490656;
  border-radius: 50%;
}

.model1-paragraph__tab-element-number p {
  color: #fff;
  margin-right: 1px;
}

.model1-paragraph__tab-element-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: calc(100% - 32px);
  border-right: 2px solid #ddd;
}

.model1-paragraph__tab-element-title img {
  width: 130px;
  height: 130px;
}

.model1-paragraph__tab-element-content {
  display: flex;
  flex-direction: column;
}

.model1-paragraph__tab-element-content>h2 {
  color: #490656;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.model1-paragraph__tab-element-content-list {
  display: flex;
  justify-content: space-between;
}

.model1-paragraph__tab-element-content-list-cell {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.model1-paragraph__tab-element-content-list-cell:last-child {
  width: 15%;
}

.model1-paragraph__tab-element-content-list-cell h1 {
  /*max-width: 46ch;*/
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  line-height: 1.7;
}

.model1-paragraph__tab-element-content-list-cell p {
  color: #777;
  font-size: 0.9rem;
  text-transform: capitalize;
  line-height: 1.75;
  margin-bottom: 0 !important;
}

.model1-paragraph__tab-element-content-list-cell ul {
  color: #777;
  font-size: 0.9rem;
  padding-right: 32px;
}

.model1-paragraph__tab-element-content-list-cell ul li {
  margin-bottom: 3px;
}

.model1-paragraph__tab-element-content-list-note {
  display: flex;
  flex-direction: column;
  width: 200px;
  background-color: #eeeeee;
  border-radius: 16px;
  padding: 16px 12px;
}

.model1-paragraph__tab-element-content-list-note h3 {
  font-size: 0.95rem;
  text-transform: capitalize;
}

.model1-paragraph__tab-element-content-list-note p {
  text-transform: none;
}

@media (max-width: 1180px) {
  .model1-band {
    align-items: center;
  }

  .model1-band--cards,
  .model1-grid--cards,
  .model1-qa--cards,
  .model1-list,
  .model1-info,
  .model1-grid,
  .model1-grid5,
  .model1-grid-element,
  .model1-showcase-cards,
  .model1-questions,
  .model1-paragraph__cards,
  .model1-catchline,
  .model1-paragraph__tab-element {
    grid-template-columns: 1fr;
  }

  .model1-band--cards,
  .model1-list {
    margin: 40px auto;
  }

  .model1-band--cards,
  .model1-qa--cards {
    padding: 0;
  }

  .model1-band h2,
  .model1-band h1,
  .model1-band>p {
    text-align: center;
  }

  .model1-band>p {
    max-width: fit-content;
  }

  .model1-paragraph__tab-element-content-list,
  .model1-info-left,
  .model1-cmp__content {
    flex-direction: column;
  }

  .model1-info-right {
    margin-top: 20px;
  }

  .model1-checkboxes {
    grid-template-columns: 1fr;
    /*grid-template-rows: repeat(6, 1fr);*/
    order: 2;
  }

  .model1-checkbox-border {
    border-left: none;
    border-right: none;
  }

  .model1-quote {
    order: 1;
    align-items: center;
    margin-bottom: 36px;
  }

  .model1-grid-element {
    padding: 12px 0 6px 0;
  }

  .model1-grid-element-separator {
    display: none;
  }

  .model1-grid-element-support {
    padding-bottom: 0;
  }

  .model1-grid-element-support img {
    margin-bottom: 10px;
  }

  .model1-grid-element-content {
    padding: 0px 20px 7px 20px;
  }

  .model1-grid-element-double-ul {
    flex-direction: column;
    gap: 0;
  }

  .model1-grid-element-double-ul ul:first-child {
    margin-bottom: 0;
  }

  .model1-enum2 h1 {
    max-width: 100%;
  }

  .model1-enum h1,
  .model1-enum2 h1,
  .model1-section h1 {
    max-width: 100%;
  }

  .model1-paragraph__content,
  .model1-cmp__content {
    width: 90%;
  }

  .model1-paragraph__contentfull h1 {
    align-self: center;
  }

  .model1-paragraph__card {
    border-right: none !important;
  }

  .model1-paragraph__line-center {
    justify-content: center;
  }

  .model1-image-title {
    background-size: cover;
  }

  .model1-questions-title {
    padding: 56px 28px;
  }

  .model1-paragraph__cards2 .model1-paragraph__card>p {
    padding: 0;
  }

  .model1-paragraph__tab-element {
    padding-right: 0;
  }

  .model1-paragraph__tab-element-image {
    justify-content: center;
    border-right: none;
  }

  .model1-paragraph__tab-element-content-list,
  .model1-paragraph__tab-element-title {
    align-items: center;
  }

  .model1-paragraph__tab-element-content-list-cell {
    align-items: center;
    margin-bottom: 20px;
  }

  .model1-paragraph__tab-element-content-list-cell>p {
    text-align: center;
  }

  .model1-paragraph__tab-element-content-list-cell>ul {
    padding-left: 48px;
  }

  .model1-paragraph__tab-element-content-list-cell,
  .model1-paragraph__tab-element-content-list-cell:last-child {
    width: 90%;
  }

  .model1-paragraph__tab-element-content-list-note {
    width: 100%;
  }

  .model1-cmp__content-arrow-right {
    display: none;
  }

  .model1-cmp__content-arrow-bottom {
    display: flex;
  }

  .model1-cmp__content-element {
    width: 100%;
    height: auto;
  }

  .model1-paragraph__workflow {
    display: none;
  }

  .model1-paragraph__workflow-mobile {
    display: flex;
  }
}