@import url("https://fonts.cdnfonts.com/css/general-sans");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "General Sans", sans-serif;
}
:root {
  --primary-clr: #1f69da;
  --text-clr: #1a1c4a;
}

/* Audience CSS */
.banner {
  background-image: url(../images/audience-banner-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  position: relative;
}
.banner-content {
  max-width: calc(100% - 38%);
}
.banner-content h1 {
  font-size: 56px;
  color: white;
  font-weight: 300;
  line-height: 56px;
}
.banner .logos {
  display: flex;
  align-items: center;
  position: absolute;
  right: 40px;
  top: 30px;
  gap: 20px;
  font-size: 26px;
  color: white;
}
.banner .left-logo,
.banner .right-logo {
  max-width: fit-content;
}

/* overview-container */
.overview-container,
.key-container {
  background-image: url(../images/page-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 250px);
  padding: 40px;
}
.section-heading {
  font-size: 36px;
  color: var(--text-clr);
  font-weight: normal;
}
.brand-overView p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--text-clr);
  margin-bottom: 0;
}
.audience-section .card,
.segments-container .card {
  padding: 20px;
  background: rgba(255, 255, 255, 10%);
  border: 1px solid #cceaf1;
  border-radius: 10px;
  backdrop-filter: blur(3px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.051);
}
.audience-section .card .snap-box {
  border-radius: 10px;
  overflow: hidden;
  max-height: 350px;
}
.audience-section .card .content-info {
  border-top: 1px solid rgba(31, 106, 218, 10%);
  padding: 16px 10px;
}
.audience-section .card h4 {
  font-size: 28px;
  font-weight: 400;
  color: var(--text-clr);
}
.audience-section .card .card-content p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-clr);
  padding-right: 5rem;
  margin-bottom: 0;
}
.value-list,
.habit-list {
  list-style: none;
  border-top: 1px solid rgba(31, 106, 218, 10%);
  padding: 16px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.value-list li {
  background: var(--primary-clr);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  width: fit-content;
}
.habit-list {
  gap: 10px 20px;
}
.habit-list .habit-icon {
  clip-path: polygon(
    70.71% 100%,
    100% 70.71%,
    100% 29.29%,
    70.71% 0%,
    29.29% 0%,
    0% 29.29%,
    0% 70.71%,
    29.29% 100%
  );
  background: var(--primary-clr);
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.habit-list .hbt {
  max-width: calc(100% - 38%);
}
.habit-list .habit-name {
  font-size: 20px;
  color: var(--text-clr);
  font-weight: 200;
}
.psychographics .hbt {
  width: 40%;
}
/* whyIt-metters */
.whyIt-metters {
  background-image: url(../images/whyIt-mtrs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
}
.whyIt-metters h2 {
  font-size: 40px;
  color: white;
  font-weight: 400;
}
.matter-col {
  display: flex;
  align-items: center;
  gap: 20px;
}
.matter-col .matter-num {
  clip-path: polygon(
    70.71% 100%,
    100% 70.71%,
    100% 29.29%,
    70.71% 0%,
    29.29% 0%,
    0% 29.29%,
    0% 70.71%,
    29.29% 100%
  );
  color: var(--primary-clr);
  background: white;
  font-size: 26px;
  padding: 10px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matter-col p {
  color: white;
  font-size: 18px;
  font-weight: 200;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* Key Elements Page CSS Start */
.key-banner {
  background-image: url(../images/key-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  position: relative;
}
.key-banner .banner-content {
  max-width: calc(100% - 30%);
}
.key-card,
.help-card {
  padding: 20px;
  background: rgba(255, 255, 255, 14%);
  border: 1px solid #cceaf1;
  border-radius: 10px;
  backdrop-filter: blur(3px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.051);
}
.key-card .card-icon {
  clip-path: polygon(
    70.71% 100%,
    100% 70.71%,
    100% 29.29%,
    70.71% 0%,
    29.29% 0%,
    0% 29.29%,
    0% 70.71%,
    29.29% 100%
  );
  color: var(--primary-clr);
  background: var(--primary-clr);
  font-size: 26px;
  padding: 10px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.key-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-clr);
}
.key-card .card-ul {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--text-clr);
}
.key-card .card-ul li:not(:last-child) {
  margin-bottom: 8px;
}
.img-col {
  overflow: hidden;
  border-radius: 10px;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* Cultural Segments Page CSS */
.segments-banner {
  background-image: url(../images/cultural-segments.png);
}
.segments-banner .banner-content p {
  font-size: 22px;
  color: white;
  font-weight: 200;
}
.segments-container h3 {
  font-size: 24px;
  font-weight: 400;
}
.card-img {
  border-radius: 10px;
  overflow: hidden;
  max-height: 300px;
}
.card-content h4,
.crs-card .card-title h4 {
  font-size: 22px;
  color: var(--text-clr);
  font-weight: 400;
}
.card.info-card h4 {
  color: black;
  line-height: 32px;
}
.card.info-card h4 span {
  font-weight: 500;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* CRS™ Cultural Page CSS */
.crs-banner .banner-content {
  max-width: calc(100% - 30%);
}
.crs-card .card-img {
  height: 160px;
  max-width: 245px;
  overflow: hidden;
}
.crs-card .card-title h4 {
  line-height: 30px;
}
.crs-card ul.card-points {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  justify-content: space-between;
  margin-bottom: 0;
}
.crs-card ul.card-points li {
  width: 45%;
  font-size: 20px;
  color: var(--text-clr);
  font-weight: 300;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* How  We Help You Page CSS */
.howHelp-wrapper {
  background-image: url(../images/page-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  position: relative;
}
.howHelp-wrapper .logos {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 20px;
  right: 40px;
}
.head h1 {
  font-size: 56px;
  font-weight: 300;
  color: var(--text-clr);
}
.howHelp-wrapper .logos i {
  color: var(--primary-clr);
  font-size: 26px;
}
.help-card .card-content h4 {
  font-size: 46px;
  font-weight: 300;
}
.help-card .card-content p {
  font-size: 20px;
  font-weight: 200;
  color: var(--text-clr);
  line-height: 30px;
}
.help-card .card-img {
  max-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
}
.help-card .card-img img {
  max-width: 430px;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* Sample Audience Insights Page CSS */

.insight-container .card h4 {
  font-size: 46px;
  font-weight: 300;
  color: var(--text-clr);
}
.data-info {
  margin-top: 3rem;
}
.data-info h6 {
  font-size: 30px;
  font-weight: 300;
  color: var(--text-clr);
}
.insight-container table {
  border-collapse: collapse;
}
.insight-container table td,
th {
  border: 1px solid rgba(31, 105, 218, 10%);
  padding: 20px !important;
  background-color: transparent !important;
  text-align: center;
  vertical-align: middle;
  color: var(--text-clr) !important;
  font-size: 20px;
  font-weight: 300;
}
.insight-container table th {
  font-weight: 400;
}
.more-info p,
.more-info span {
  color: var(--text-clr);
  font-size: 22px;
}
.more-info p {
  font-weight: 200;
}
.more-info span {
  display: block;
  min-width: 120px;
}
.insight-container .card-footer {
  background: transparent;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 105, 218, 10%);
  font-size: 20px;
  color: var(--text-clr);
}
.insight-container .card-footer ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  font-weight: 300;
}
.insight-container .card-footer ul li:first-child {
  border-right: 1px solid rgba(31, 105, 218, 10%);
  padding-right: 15px;
}

/* -=-=-=--=-==========-=-=--=-=-=---=-= */
/* Multicultural Page CSS */

.card-head {
  text-align: center;
  color: var(--text-clr);
}
.card-head h6 {
  font-size: 32px;
  font-weight: 400;
}
.card-head h5 {
  font-size: 40px;
  font-weight: 500;
}
.dataPoints-col {
  margin-top: 50px;
}
.multicultural .col-content {
  color: var(--text-clr);
}
.multicultural .col-content p,
.dt-colRight p,
.right-col p {
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 30px;
  color: var(--text-clr);
}
/* .multicultural .col-img {
  max-width: 120px;
  margin: auto;
} */
.data-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.data-col .percent.download span {
  padding: 0 75px;
}
.data-col .percent h5,
.dt-row-col h5 {
  font-size: 24px;
  font-weight: 300;
}
.data-col .percent span {
  font-size: 12px;
  display: inline-block;
  line-height: 16px;
  font-weight: 300;
}

.dt-colRight .col-content span {
  font-size: 12px;
  line-height: normal;
  display: inline-block;
  font-weight: 200;
  min-height: 92px;
}

.right-col {
  border-left: 1px solid rgba(20, 71, 146, 0.1);
  padding: 0 20px 0 20px;
  height: 100%;
  text-align: center;
}
.right-col small {
  color: #41425c;
  font-weight: 300;
}
.pill {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid #cceaf1;
  background: #ffffff1c;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.062);
  backdrop-filter: blur(2px);
  width: fit-content;
  margin: 20px auto;
  color: var(--text-clr);
  font-weight: 300;
  font-size: 14px;
}

.chart-row {
  border-top: 1px solid rgba(20, 71, 146, 0.1);
  margin-top: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 71, 146, 0.1);
}
.chart-row p {
  color: var(--text-clr);
  font-weight: 300;
}
.border-right {
  border-right: 1px solid rgba(20, 71, 146, 0.1);
}
.percent-info small {
  color: var(--text-clr);
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
}
.dt-row {
  padding: 20px 0;
}
.dt-row-col {
  text-align: right;
  max-width: 100px;
  color: var(--text-clr);
}

.dt-row-col span {
  font-size: 12px;
  display: inline-block;
  line-height: 16px;
  font-weight: 300;
}
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-block .percent {
  max-width: 60%;
}
.border-top{
  border-top: 1px solid rgba(20, 71, 146, 0.1);;
}

/* .button-footer-main {
    padding-top: 10px;
    padding-bottom: 10px;
    position: sticky;
    bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
    background: linear-gradient(to right, rgb(222 238 240), rgb(240 245 249));
    box-shadow: 0px 0px 10px #00000021;
}

.button-footer-main .crs-report-btn-campaign .crs-report-btn,
.button-footer-main .crs-report-btn-sec .crs-report-btn,
.button-footer-main .deal-btn{
    width: 100% !important;
    min-width: 100%;
    margin-bottom: 0 !important;
}
.button-footer-main .crs-report-btn-sec a.crs-report-btn.start-evaluation-btn {
    width: 100% !important;
} */