/*
Theme Name: twentytwentyfour-child
Template: twentytwentyfour
*/

@import url("https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

:root {
  --Gray-Colours-2: #666;
  --Neutral-Text-Med-Emphasis: #767d89;
  --font-teachers: "Teachers";
  --Gray-Colours-1: #000;
  --Neutral-Text-High-Emphasis: #464b53;
  --font-lexend: "Lexend Deca";
  --icon-spark: url("./images/spark.svg");
  --icon-spark-small: url("./images/spark-small.svg");
  --icon-spark-small_orange: url("./images/spark-small-orange.svg");
  --icon-spark_orange: url("./images/spark-orange.svg");
  --icon-spark_yellow: url("./images/spark-yellow.svg");
  --icon-spark_purple: url("./images/spark-purple.svg");
  --icon-spark_dark_purple: url("./images/spark-dark-purple.svg");
  --icon-spark_green: url("./images/spark-green.svg");
  --icon-bulb: url("./images/bulb.svg");
  --icon-calendar: url("./images/calendar.png");
  --icon-black-arrow: url("./images/black-arrow.svg");
}

header {
  width: 100%;
}

header .container {
  width: 100%;
  max-width: 1286px;
  margin: 0 auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.container.full {
  max-width: 100%;
}

a:focus,
a:focus-within,
input:focus,
input:focus-within,
textarea:focus,
textarea:focus-within,
select:focus,
select:focus-within {
  outline: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-teachers);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-lexend);
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: inherit;
}

body {
  font-family: var(--font-teachers);
  background-color: var(--White);
  font-size: 16px;
  overflow-x: hidden;
}

a {
  cursor: pointer !important;
  text-decoration: none;
  display: block;
}

button:focus,
button:focus-within {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  cursor: pointer;
}

button:not(.submit-btn) {
  border: none;
}

.header-section {
  padding: 2.1875em 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  max-width: 7.3125em;
  width: 100%;
  height: auto;
}

.header-right {
  display: flex;
  align-items: flex-end;
  gap: 3.1875em;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5em;
  margin-bottom: -12px;
}

nav.navbar-menu a:hover {
  color: #1481dc;
}

nav.navbar-menu a:hover svg path {
  stroke: #1481dc;
}

a.navbar-link.active svg {
  transform: rotate(180deg);
}

.navbar-item {
  position: relative;
}

.navbar-item.active {
  color: var(--Primary);
  font-weight: 700;
}

.navbar-link:hover {
  color: var(--Primary);
}

.green-btn {
  padding: 0.84375em 1.375em;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1000;
  position: relative;
}

.hamburger.open .line1 {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.open .line2 {
  opacity: 0;
}

.hamburger.open .line3 {
  transform: translateY(-9px) rotate(45deg);
}

.navbar-item.active {
  color: #5f8b3c;
  font-weight: 600;
  position: relative;
}

.navbar-item.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-link {
  color: var(--Gray-Colours-2);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 12px;
}

/* .navbar-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: #5f8b3c;
  border-radius: 10px;
  transition: width 0.25s ease;
  top: 31px;
} */

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  list-style: none;
  margin: 0;
  min-width: 11.75em;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 12px;
  border-top: 1px solid var(--Neutral-Text-Med-Emphasis);
  border-right: 2px solid var(--Neutral-Text-Med-Emphasis);
  border-bottom: 2px solid var(--Neutral-Text-Med-Emphasis);
  border-left: 1px solid var(--Neutral-Text-Med-Emphasis);
}

.dropdown-menu li a.active {
  color: #1481dc;
}

.dropdown-menu li a {
  color: var(--Gray-Colours-2);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.navbar-item.dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0) scale(0.8);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 999;
  transform-origin: top center;
}

.navbar-item.dropdown:hover .dropdown-menu,
.navbar-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.navbar-item.dropdown .dropdown-arrow svg {
  transition: transform 0.3s ease;
}

.navbar-item.dropdown:hover .dropdown-arrow svg,
.navbar-item.dropdown:focus-within .dropdown-arrow svg {
  transform: rotate(180deg);
}

.navbar-item.dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #000;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger.change .line1 {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.change .line2 {
  opacity: 0;
}

.hamburger.change .line3 {
  transform: translateY(-9px) rotate(45deg);
}

.navbar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
}

.navbar-item.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.header-section .btn {
  font-size: 0.875em;
  height: 3.15em;
  padding: 0 1.43em;
}

.btn {
  border-radius: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 0.89;
  height: 3.12em;
  padding: 0 1.15em;
}

.black-btn {
  background: var(--Gray-Colours-1);
  color: #fff;
}

.white-btn {
  color: var(--Gray-Colours-1);
  background: #fff;
  border-width: 1px 1px 4px 1px;
  border-style: solid;
  border-color: #000000;
}

.blue-btn {
  background-color: #1481dc;
  color: #fff;
}

.white-btn svg path {
  fill: black;
}

.white-btn.btn-with-image {
  display: flex;
  padding: 0 3em 0 1.5em;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 62px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 4px solid #000;
  border-left: 1px solid #000;
  background: #fff;
  position: relative;
  overflow: hidden;
  font-weight: 700;
}

.white-btn.btn-with-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: auto;
}

.btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-buttons {
  display: none;
  margin-top: 20px;
  flex-direction: column;
  gap: 10px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo img {
  max-width: 180px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact br {
  display: none;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social a img {
  width: 40px;
  height: 40px;
}

.footer-navigation {
  display: flex;
  gap: 56px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-column h4 {
  color: var(--Gray-Colours-1);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-column li a {
  color: var(--Neutral-Text-High-Emphasis);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.footer-nav-column li a:hover {
  color: #1481dc;
}

.footer-bottom {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.legal {
  display: flex;
  align-items: center;
}

.footer-left .footer-logo img {
  max-width: 22.9375em;
  width: 100%;
}

.footer-contact a {
  color: var(--Gray-Colours-1);
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.44;
  display: flex;
  align-items: center;
  gap: 12px;
}

footer.wp-block-template-part .footer {
  padding: 3.75em 0;
}

.footer-bottom p {
  color: var(--Gray-Colours-1);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
}

.legal a {
  color: var(--Neutral-Text-High-Emphasis);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.legal a:not(:last-child):after {
  content: "";
  width: 1px;
  height: 24px;
  background: var(--Gray-Colours-2);
  display: inline-block;
  margin: 0 6px;
}

.legal br {
  display: none;
}

.primary-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.primary-banner-content .right-content {
  position: relative;
  right: 0;
  max-width: 44.5em;
  width: 100%;
}

.primary-banner-content .left-content p {
  color: var(--Gray-Colours-2);
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.4;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.primary-banner-section {
  width: 100%;
}

.primary-banner-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-top: 10%;
}

.primary-banner-content .left-content {
  width: 50%;
  padding-left: calc((100vw - 1140px) / 2);
  padding-top: 5.5em;
}

.primary-banner-content .right-content {
  width: 50%;
}

.primary-banner-content .right-content img {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  color: var(--Gray-Colours-1);
  font-size: 2.75em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
}

h2 {
  color: var(--Gray-Colours-1);
  text-align: center;
  font-size: 2.625em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  text-transform: capitalize;
}

h3 {
  color: var(--Gray-Colours-1);
  font-weight: 600;
  font-size: 2.25em;
  line-height: 1.4;
  text-transform: capitalize;
}

h4 {
  color: var(--Gray-Colours-1);
  font-weight: 600;
  font-size: 2em;
  line-height: 1.4;
  text-transform: capitalize;
}

.icon {
  position: relative;
  margin-left: 10px;
}

.icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.icon-spark::before {
  background-image: var(--icon-spark);
  left: -18px;
  top: -12px;
  width: 30px;
  height: 30px;
}

.icon-bulb::before {
  background-image: var(--icon-bulb);
}

h1:has(img) img {
  display: inline-block;
  max-width: 385px;
  width: 100%;
  position: relative;
  top: 3px;
}

.icon-bulb::before {
  background-image: var(--icon-bulb);
  left: unset;
  right: -70px;
  width: 54px;
  height: 59px;
  background-size: contain;
  top: -30px;
}

.primary-banner-section {
  position: relative;
}

.primary-banner-section:before {
  content: "";
  background-image: url(./images/pattern-top.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.primary-banner-content .left-content h1 + p {
  margin: 1em 0 2em;
}

body.toggle-sidebar {
  overflow: hidden;
}

.curve-pattern {
  padding: 7.5em 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.curve-pattern:before,
.curve-pattern:after {
  content: "";
  background-image: url("./images/white-curve.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1px;
  width: 100%;
  height: 10.4375em;
}

.pattern-bg-one {
  background-image: url("./images/benefits.svg");
}

.curve-pattern:after {
  transform: rotate(180deg);
  bottom: -2px;
  top: unset;
}

.section-content,
.single-post-content {
  padding: 7.5em 0;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 3.75em 0 2.5em;
}

.benefits-card {
  display: flex;
  padding: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  border-top: 1px solid #000;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  border-left: 1px solid #000;
  background: #fff;
}

.benefits-card .card-label {
  color: #000000;
  font-size: 1.5em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

.card-image img {
  max-width: 100%;
  width: 100%;
  height: 7.5em;
  object-fit: contain;
}

.icon-spark.spark-yellow::before {
  background-image: var(--icon-spark_yellow);
}

.icon-spark.spark-purple::before {
  background-image: var(--icon-spark_purple);
}

.icon-spark.spark-dark-purple::before {
  background-image: var(--icon-spark_dark_purple);
  transform: none;
}

.icon-spark.spark-orange::before {
  background-image: var(--icon-spark_orange);
}

.icon-spark.spark-green::before {
  background-image: var(--icon-spark_green);
}

.icon.icon-spark.bottom.right::before {
  top: unset !important;
  left: unset !important;
  bottom: -12px !important;
  right: -26px !important;
  transform: rotate(180deg);
}

.color-black {
  color: black;
}

.features-section h2 {
  color: black;
}

section.features-section {
  padding: 5em 0;
}

.features-cards {
  margin-top: 5.625em;
  display: flex;
  flex-direction: column;
  gap: 5.625em;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.feature-card p {
  font-weight: 500;
  color: var(--Gray-Colours-2);
  font-size: 1.25em;
  line-height: 1.4;
}

.feature-card .feature-image img {
  aspect-ratio: 461 / 339;
}

.feature-content {
  width: clamp(300px, 90%, 429px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card.even {
  flex-direction: row-reverse;
}

.pattern-bg-two {
  background-image: url("./images/matrix-bg-2.png") !important;
}

.pattern-bg-four,
section.form-section.curve-pattern.join-pilot-program {
  background-image: url("./images/pattern-bg-four.png") !important;
}

.success-numbers-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 7.5625em;
}

.success-numbers-section .left-content p {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.4;
  color: white;
}

.matrics-card {
  width: 100%;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  background: #ffffff;
  display: flex;
  align-items: center;
  border-radius: 24px;
  padding: 2em;
  position: relative;
  gap: 2em;
}

.matrics-card p span:has(img) {
  width: 64px;
  height: 76px;
}

.matrics-card p span:has(img) img {
  width: 100%;
  height: auto;
}

.matrics-card h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 2.75em;
  line-height: 1.4;
  text-transform: capitalize;
}

.matrics-card h4 + p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  text-transform: capitalize;
}

.matrics-card p:has(span):has(img) {
  position: absolute;
}

.matrics-card p:has(span.top.left) {
  top: -60px;
  left: -40px;
}

.matrics-card p:has(span.bottom.left) {
  bottom: -14px;
  right: -22px;
}

.curve-pattern h2 {
  color: white;
}

section.benefits-section .btn-wrap {
  justify-content: center;
}

.success-numbers-section .left-content p {
  margin: 16px 0 28px;
}

.matrics-card:nth-of-type(2) {
  margin-left: -40px;
}

.matrics-card:nth-of-type(3) {
  margin-left: 40px;
}

.testimonials-section .section-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5em;
}

.testimonials-section .section-header p:has(img) img {
  max-width: 24.5em;
  width: 100%;
  margin-left: auto;
}

.testimonial-item {
  gap: 1.5em;
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 1px;
  padding: 1em;
  border-style: solid;
  border-color: #000000;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-author {
  background: #c8e6ff;
  gap: 12px;
  border-radius: 12px;
  padding: 0.75em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-image img {
  min-width: 36px;
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

p.author-name {
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1.4;
  font-family: var(--font-lexend);
  color: #000000;
}

p.author-designation {
  font-weight: 500;
  font-size: 0.75em;
  line-height: 1.4;
  color: #333333;
}

blockquote.testimonial-quote {
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1.4;
  color: #666666;
  margin: 0.85em 0 1.71em;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-section .section-content {
  padding-top: 1.9375em;
}

.testimonials-section .section-header p:has(img) {
  margin-right: 24px;
  display: flex;
  align-items: flex-end;
}

.desktop-view {
  display: grid !important;
}
.mobile-view {
  display: none !important;
}

@media (max-width: 767px) {
  .desktop-view {
    display: none !important;
  }
  .mobile-view {
    display: block !important;
  }
}

.testimonials-wrapper.mobile-view {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  background: #9500f0 !important;
}

.swiper-pagination-bullet:focus {
  outline: none;
}

section.form-section.curve-pattern {
  background-image: url("./images/contact-us-bg.svg");
}

.curve-pattern.no-bottom-curve:after {
  content: none;
}

.curve-pattern.no-top-curve:before {
  content: none;
}

.icon.icon-spark.right.top:before {
  left: unset;
  right: -19px;
  transform: rotate(90deg);
  top: -2px;
}

.form-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: flex-end;
  /* gap: 5.125em; */
  gap: 11.125em;
}

.form-section .right-content {
  position: relative;
}

.form-section .right-content > div {
  position: relative;
  padding: 2em 1.8em;
  border-radius: 24px;
  background-color: white;
  z-index: 1;
  border-width: 1px 4px 4px 1px;
}

.form-section .right-content * {
  position: relative;
  z-index: 20;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  opacity: 1;
  padding: 17px 20px 17px 20px;
  border: 1.2px solid black !important;
  gap: 10px;
  border-radius: 12px;
  border-width: 1px;
  width: 100%;
}

input::placeholder,
textarea::placeholder,
.wpcf7 select:has(option:first-child:checked),
input::-webkit-datetime-edit {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 2px;
  color: #b0b0b0;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 24px;
  gap: 12px;
  border-radius: 62px;
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 4px;
  border-left-width: 1.5px;
  border-color: black;
}

.wpcf7-form .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* margin-top: 32px; */
}

.form-note {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #666666;
}

.form-section .section-content .left-content p {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 1.4;
  color: #fff7ea;
  padding-top: 0.7em;
}

.form-section .section-content .left-content p:has(img) {
  margin-top: 2.5em;
}

.form-section .section-content .left-content p:has(img) img {
  max-width: 23.75em;
  width: 100%;
  height: auto;
}

.form-section .right-content:before {
  content: url(./images/left-spark.svg);
  position: absolute;
  left: -60px;
  top: 0;
}

.form-section .right-content:after {
  content: url(./images/right-spark.svg);
  position: absolute;
  bottom: 38px;
  right: -50px;
}

.form-section .right-content > div:before {
  content: url(./images/left-spark-badge.svg);
  position: absolute;
  left: -14px;
  top: -18px;
}

.form-section .right-content > div:after {
  content: url(./images/right-spark-badge.svg);
  position: absolute;
  /* bottom: 38px;
  right: -21px; */
  /* bottom: 20px; */
  bottom: 38px;
  right: -21px;
  z-index: 99;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap select {
  color: #999;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  right: 25.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-top: 0;
}

.submit-btn br,
.wpcf7 p:has(.wpcf7-submit) {
  display: none;
}

.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("./images/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

input[type="date" i]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("./images/calendar.png");
  background-repeat: no-repeat;
  background-position: 0 !important;
  background-size: 16px;
  cursor: pointer;
}

.secondary-banner-section {
  padding: 4em 0 0;
}

.secondary-banner-content p:has(img) img {
  max-width: 718px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.content-block-section p {
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.4;
  text-align: center;
  color: white;
}

.content-block-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5em;
}

.step-card {
  padding: 2em 1.25em 1.5em 1.25em;
  gap: 0.75em;
  border-radius: 24px;
  border-right-width: 4px !important;
  border-bottom-width: 4px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-card.step-Blue {
  border: 1px solid #70beff;
  background-color: #c8e6ff;
}

.step-card.step-Orange {
  border: 1px solid #ffb572;
  background-color: #ffe3be;
}

.step-card.step-Green {
  border: 1px solid #6be08f;
  background-color: #c4ffc4;
}

.step-card.step-Violet {
  border: 1px solid #cb80ff;
  background-color: #edd4ff;
}

.step-card.step-Yellow {
  border: 1px solid #f4d67b;
  background-color: #fef6dc;
}

.step-card h3 {
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}

.step-card.step-Blue h3 {
  color: #1481dc;
}
.step-card.step-Orange h3 {
  color: #f17b00;
}
.step-card.step-Green h3 {
  color: #11ab40;
}
.step-card.step-Violet h3 {
  color: #9500f0;
}
.step-card.step-Yellow h3 {
  color: #9c5819;
}

.step-icon {
  position: absolute;
  top: -65px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.step-card p {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  color: #666666;
}

.steps-section .section-header + div {
  margin-top: 8.25em;
}

.subtitle {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  text-align: center;
  color: #666666;
}

.steps-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.steps-for-educator .steps-wrapper {
  grid-template-columns: repeat(3, 1fr);
}

.steps-for-educator .step-card {
  padding-top: 4em;
}

.curve-pattern .subtitle {
  color: white;
}

.video-block h2 + p {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.4;
  text-align: center;
  color: #666666;
  margin-top: 0.89em;
}

.dark-background .video-block h2 + p {
  color: white;
}

.video-wrapper {
  max-width: 61.25em;
  width: 100%;
  height: 34.5em;
  border-radius: 24px;
  margin: 3.75em auto 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-wrapper iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.quote-block {
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-left-width: 1px;
  padding: 2em;
  gap: 1em;
  border-width: 1px 3px 3px 1px;
  border-style: solid;
  background-color: white;
}

.quote-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.quote-block-wrap {
  max-width: 61.25em;
  width: fit-content;
  /* width: 100%; */
  margin: 0 auto;
}

.quote-block-wrap .btn-wrap {
  margin-top: 1.5em;
}

.quote-block blockquote {
  font-weight: 600;
  font-style: Italic;
  font-size: 1.25em;
  line-height: 1.4;
  color: #000;
}

.quote-character {
  display: flex;
  justify-content: flex-end;
  position: relative;
  right: -5em;
  display: none !important;
}

.quote-character img {
  max-width: 17.625em;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  z-index: 2;
}

.video-overlay::before {
  content: url(./images/play-icon.svg);
  /* width: 4.75em;
  height: 4.75em; */
  display: block;
}

.schedule-demo p {
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.4;
  text-align: center;
  color: white;
}

.schedule-demo .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
}

.pt-none {
  padding-top: 0 !important;
}
.pr-none {
  padding-right: 0 !important;
}
.pb-none {
  padding-bottom: 0 !important;
}
.pl-none {
  padding-left: 0 !important;
}

.video-highlights-section:not(.dark-background) .section-content {
  padding: 3.75em 0;
}

.content-block-section .icon.icon-spark.bottom.right::before {
  bottom: -11px !important;
  right: -12px !important;
  transform: rotate(180deg);
}

/* key benefits */

.secondary-banner-content p:has(img) img.only-image {
  max-width: 100%;
}

/*  */

.acf-tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 2.125em;
  gap: 0.9375em;
}

.acf-tab {
  display: none;
}

.acf-tab.active {
  display: block;
}

/*  */

.success-keys {
  background-attachment: fixed;
  position: relative;
}

.success-keys .section-content h2 + p {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.44;
  text-transform: capitalize;
  color: white;
  margin-top: 0.67em;
}

.success-key-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 1.875em 2em 0 2em;
  border-radius: 32px;
  background: white;
  border: 1px solid black;

  position: sticky;
  top: 0;
  z-index: 1;

  transition: top 0.1s ease-out;
}

.success-key-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875em;
  position: relative;
}

/* Container */
.success-key-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.875em;
  padding-top: 3.75em;
}

.success-key-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 1.875em 2em 0 2em;
  border-radius: 32px;
  background: white;
  border: 1px solid black;
  transform-origin: top center;
  transition: transform 0.15s ease-out;
  position: sticky;
  top: 0;
  margin-bottom: 1em;
}

.success-key-item h2 {
  color: black;
}

.success-key-item p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  color: #666666;
  margin-top: 0.67em;
}

.key-image img {
  aspect-ratio: 400/390;
}

.success-key-item .content {
  max-width: 640px;
  width: 100%;
  padding-bottom: 2.5em;
}

.pattern-bg-three {
  background-image: url("./images/pattern-bg-three.png");
}

.success-keys .icon.icon-spark.bottom.right::before {
  bottom: -10px !important;
  right: -16px !important;
}

.tabs-wrap {
  border-radius: 24px;
  margin-top: 3.75em;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-image-source:
    linear-gradient(0deg, #ffb572, #ffb572),
    linear-gradient(0deg, #000000, #000000);
  padding: 2.125em;
}

.acf-tabs-content h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.07;
  text-transform: capitalize;
}

.acf-tabs-content p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  margin-top: 0.6em;
  color: #666666;
}

.acf-tabs-nav li {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  border-width: 1px 2px 2px 1px;
  border-style: solid;
  border-color: #000000;
  border-radius: 100px;
  padding: 12px;
  cursor: pointer;
}

.acf-tabs-nav li.active {
  color: white;
  border-color: transparent;
}

.quote-block svg {
  min-width: 45px;
  width: 45px;
  height: 34px;
}

.quote-block {
  position: relative;
}

.tools-and-setup-options .tool-setup-item {
  border-radius: 44px;
  background-color: white;
  padding: 4.625em 0 4.625em 7em;
  position: relative;
}

.tools-and-setup-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  margin-top: 3.75em;
}

.tools-and-setup-options .tool-setup-item .tool-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.tools-and-setup-options .tool-setup-item .tool-icon img {
  width: 120px;
  height: 120px;
}

.tools-and-setup-options .tool-setup-item.odd .tool-icon {
  left: -60px;
}

.tools-and-setup-options .tool-setup-item.even .tool-icon {
  right: -60px;
}

.tools-and-setup-options .tool-setup-item h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.07;
  text-transform: capitalize;
}

.tools-and-setup-options .tool-setup-item ul li {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  color: #000000;
}

.tools-and-setup-options .tool-setup-item ul li + li {
  margin-top: 12px;
}

.tools-and-setup-options .tool-setup-item h4 {
  margin-bottom: 16px;
}

.tools-and-setup-options .tool-setup-item ul {
  list-style-position: inside;
  margin-left: 12px;
}

.tools-and-setup-options .tool-setup-item ul {
  list-style: none;
  padding-left: 0;
}

.tools-and-setup-options .tool-setup-item ul li {
  padding-left: 20px;
  position: relative;
}

.tools-and-setup-options .tool-setup-item ul li::before {
  content: "•";
  color: #000000;
  position: absolute;
  left: 0;
}

.bracket-pattern {
  position: absolute;
  top: -39px;
  right: -43px;
}

.security-compliance-section table tbody tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

.security-compliance-section table tbody tr td {
  border-radius: 24px;
  gap: 8px;
  padding: 1em;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}

.security-compliance-section table,
.security-compliance-section table * {
  height: auto !important;
}

.security-compliance-section p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  text-align: center;
  color: #666666;
}

.security-compliance-section table {
  margin: 2.5em 0 1.25em;
}

.security-compliance-section {
  font-weight: 500;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  color: #666666;
}

.security-compliance-section h5 {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.44;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-top: 0.67em;
  margin-bottom: 3.3em;
}

.security-compliance-section h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #666666;
}

.security-compliance-section .btn-wrap {
  margin-top: 3.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-support-section .section-content h2 + p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 12px;
}

.setup-step-wrap .setup-step {
  border-radius: 44px;
  padding: 4.8125em 1.5em 2.3125em;
  position: relative;
}

.setup-step-wrap .setup-step p:has(img) {
  width: 48px;
  height: 48px;
  margin: 24px auto 0;
}

.setup-step-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  margin: 6em 0 3.75em;
}

.setup-step-wrap h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.07;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.setup-step p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.number-pattern {
  position: absolute;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}

.setup-step-wrap > div:not(:first-child):not(:last-child) {
  margin-top: 44px;
}

.support-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  text-align: center;
  color: #ffffff;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}

.section-content h2 + p:has(.highlighted-card) {
  margin-top: 3.75em;
  position: relative;
}

.why-it-matters-section .matter-card {
  position: relative;
}

.why-it-matters-section .matter-card::before,
.why-it-matters-section .matter-card::after {
  content: url("./images/bracket-blue.svg");
  display: block;
  position: absolute;
  left: -10px;
  top: -15px;
}

.why-it-matters-section .matter-card::after {
  top: unset;
  left: unset;
  right: -10px;
  bottom: -15px;
  transform: rotate(180deg);
}

.why-it-matters-section .matter-card {
  border-width: 1px 4px 4px 1px;
  border-radius: 24px;
  padding: 1.7em;
  background-color: #ffffff;
  border-style: solid;
  max-width: 946px;
  width: 100%;
  margin: 3.75em auto 0;
  display: block;
  border-color: #f17b00;
}

.why-it-matters-section .matter-card p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  color: #666666;
}

/*  */

.pillers-accordion {
  max-width: 946px;
  margin: 2.5em auto 0;
}

.accordion-item {
  border: 2px solid #eee;
  border-top-width: 1px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 1px;
  border-radius: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2.125em;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.accordion-title-wrap {
  text-align: left;
}

.accordion-title-wrap h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: capitalize;
}

.accordion-title-wrap p {
  font-weight: 600;
  font-size: 1.25em;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000000;
  margin-top: 4px;
}

.accordion-icon {
  margin-left: auto;
  font-size: 1.125em;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #ffffff;
}

.accordion-content p,
.accordion-content ul li {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.4;
  color: #666666;
}

.accordion-content p:last-child {
  padding-bottom: 32px;
}

.accordion-content ul li + li {
  margin-top: 10px;
}

.accordion-content > * {
  padding: 0 1.5em 1.5em 6.2em;
}

.accordion-content > p {
  padding-bottom: 16px;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-number,
.value-number {
  position: relative;
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.26px #000;
  text-stroke: 1.26px #000;
  background: transparent;
  border: none;
}

/* main stroked text */
.accordion-number .num-text {
  position: relative;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1.26px #000;
  text-stroke: 1.26px #000;
}

.accordion-number::after {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -45%);
  z-index: 1;
  color: var(--shadow-color, #f59e0b);
  font-size: inherit;
  font-weight: inherit;
  -webkit-text-stroke: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.learning-pillars-section .section-content h2 + p {
  margin-top: 3.75em;
}

.learning-pillars-section .section-content p:has(span.subtitle) .subtitle {
  color: #d7d7d7;
}

.learning-pillars-section
  .section-content
  p:has(span.subtitle)
  + p:has(span.subtitle) {
  margin-top: 16px;
}

/* ==================== */

.post-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6.0625em;
}
.post-category a {
  font-weight: 700;
  font-size: 1em;
  color: white;
  line-height: 1.5;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-width: 1px 2px 2px 1px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 100px;
  padding: 8px 16px 8px 16px;
  display: inline-flex;
}

.post-card h2 {
  text-align: left;
}

.post-card .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 582px;
  width: 100%;
}

.post-card .right-side {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
}

.post-card .right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p.post-excerpt {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.44;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: white;
  text-align: left;
}

.latest-posts-slider .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #ffffff !important;
  margin: 0 8px !important;
}

.latest-posts-slider .swiper-pagination {
  display: flex;
  top: 97% !important;
}

/*  */

.post-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.post-showcase-select,
.article-filters select,
.article-filters input {
  height: 3.56em;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.33;
  color: #464b53;
  border-width: 2px 3px 3px 2px;
  padding: 0 1.34em;
  border-style: solid;
  border-color: #767d89;
}

.post-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5em;
  row-gap: 3.75em;
}

.post-showcase-thumb {
  width: 100%;
  max-width: 364px;
  height: 315px;
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
}

.post-showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-showcase-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.71;
  text-transform: uppercase;
  margin-bottom: 0.86em;
  color: #f17b00;
  border: 1px solid #f17b00;
  padding: 4px 12px;
  border-radius: 100px;
}

.post-showcase-excerpt {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.4;
  letter-spacing: 0%;
  color: #666666;
  margin-top: 0.67em;
}

.post-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.85em;
  font-size: 0.875em;
  color: #4c97ff;
  text-decoration: none;
}

.post-showcase-heading {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1.33;
  text-transform: capitalize;
  color: #050506;
}

.post-showcase-link {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.44;
}

.cat-label {
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.33;
  letter-spacing: 0%;
  color: #000000;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.post-showcase-select,
.article-filters select,
.article-filters input,
.choices  {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6673 9.33398V1.33398L8.00065 6.66732L1.33398 1.33398V9.33398L8.00065 14.6673L14.6673 9.33398Z' stroke='%23464B53' stroke-width='2.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 16px;
  padding-right: 55px;
  min-width: 310px;
}

.article-filters input {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13.5C5 14.6162 5.21986 15.7215 5.64702 16.7528C6.07419 17.7841 6.70029 18.7211 7.48959 19.5104C8.27889 20.2997 9.21592 20.9258 10.2472 21.353C11.2785 21.7801 12.3838 22 13.5 22C14.6162 22 15.7215 21.7801 16.7528 21.353C17.7841 20.9258 18.7211 20.2997 19.5104 19.5104C20.2997 18.7211 20.9258 17.7841 21.353 16.7528C21.7801 15.7215 22 14.6162 22 13.5C22 12.3838 21.7801 11.2785 21.353 10.2472C20.9258 9.21592 20.2997 8.27889 19.5104 7.48959C18.7211 6.70029 17.7841 6.07419 16.7528 5.64702C15.7215 5.21986 14.6162 5 13.5 5C12.3838 5 11.2785 5.21986 10.2472 5.64702C9.21592 6.07419 8.27889 6.70029 7.48959 7.48959C6.70029 8.27889 6.07419 9.21592 5.64702 10.2472C5.21986 11.2785 5 12.3838 5 13.5Z' stroke='%23464B53' stroke-width='2.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M27 27L20 20' stroke='%23464B53' stroke-width='2.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: right 12px center;
}

.article-filters input::placeholder {
  font-weight: 600;
  font-size: 1em;
  line-height: 1.3;
  color: #464b53;
  letter-spacing: unset;
}

.post-showcase-select:focus,
.post-showcase-select:focus-within,
.article-filters select:focus,
.article-filters select:focus-within {
  outline: none;
}

.post-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  grid-column: 1 / span 3;
  margin-top: 8em;
}

.post-loader span {
  font-size: 1.3em;
  font-weight: 600;
  color: black;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #f17b00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.math-education-form .section-content {
  align-items: center;
}

.form-section .right-content .icon-spark::before {
  background-image: var(--icon-spark-small);
  top: -48px;
  left: -48px;
}

.wpcf7 button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ======== */

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3.75em;
}

.latest-posts-grid .post-showcase-thumb {
  border-radius: 0;
  max-width: 100%;
  width: 100%;
  height: 21.875em;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
  border: none;
}

.post-showcase-content {
  padding: 24px;
  background-color: white;
  border-radius: 0 0 16px 16px;
}

/*  */

.article-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.article-filters {
  margin: 3em 0 2.5em;
}

.research-articles-cards ul li {
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-radius: 24px;
  border-top-width: 1px;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-left-width: 1px;
  background: #ffffff;
  border-width: 1px 3px 3px 1px;

  border-style: solid;

  border-color: #666666;
}

.research-articles-list {
  list-style: none;
  padding: 0;
}

.research-article-item,
.download-file .download-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-icon {
  min-width: 6.25em;
  width: 6.25em;
  height: 6.25em;
}

.article-title {
  margin: 0;
  flex-grow: 1;
}

ul.research-articles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.research-article-item h3 {
  color: #050506;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3;
  text-transform: capitalize;
}

.no-article-found {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5em 0;
}

.no-article-found p {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

/* ======= */

.post-featured-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 453px;
  height: auto;
  object-fit: cover;
  border-radius: 44px;
  border-style: solid;
  border-width: 1px 4px 5px 1px;
  border-color: #000;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
}

.category-badge {
  display: inline-block;
  background-color: #eaf4ff;
  color: #0073aa;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 6px 6px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-badge:hover {
  background-color: #0073aa;
  color: #ffffff;
}

.single-banner {
  background-image: url("./images/post-banner.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
  padding: 11.9375em 0 7.5em;
  position: relative;
}

.single-banner .container {
  height: 100%;
  display: flex;
}

.single-banner h1 {
  margin: auto auto 0;
  color: #ffffff;
  max-width: 80%;
  width: 100%;
  text-align: center;
}

.post-featured-image {
  margin-bottom: 2.5em;
}

.post-categories .post-showcase-badge {
  margin-bottom: 0;
}

.post-content h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  text-transform: capitalize;
  color: #050506;
}

.post-content h4 strong {
  font-weight: 500;
}

.post-content h4 + p {
  margin-top: 12px;
}

.post-content .quote-block-wrap {
  max-width: 100%;
  width: 100%;
  margin: 34px 0;
}

.post-content > p {
  color: #666666;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
}

.post-social {
  margin: 3.375em 0;
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.post-social .social-label {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #666666;
}

/*  */

section.form-section.form-alone .section-content {
  grid-template-columns: 100%;
}

.form-section.form-alone .right-content > div {
  border-width: 1px 4px 4px 1px;
  padding: 2.125em 1.5em;
  border-style: solid;
  border-color: #000000;
}

.form-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.form-row > p {
  width: 100%;
}

.form-section.form-alone .right-content:before,
.form-section.theme-orange .right-content:before {
  content: url(./images/left-spark-orange.svg);
}

.form-section.form-alone .right-content:after,
.form-section.theme-orange .right-content:after {
  content: url(./images/right-spark-orange.svg);
  bottom: -7px;
}

.form-section.form-alone .right-content > div:before,
.form-section.theme-orange .right-content > div:before {
  content: url(./images/left-spark-badge-orange.svg);
}

.form-section.form-alone .right-content > div:after,
.form-section.theme-orange .right-content > div:after {
  content: url(./images/right-spark-badge-orange.svg);
  bottom: -6px;
}

.form-section.form-alone .right-content > div:after {
  bottom: -11px;
}

.related-posts-grid.post-showcase-grid {
  margin-top: 2.5em;
}

.related-posts-grid.post-showcase-grid .post-showcase-heading {
  color: #ffffff;
}

.related-posts-grid.post-showcase-grid .post-showcase-excerpt {
  color: #d7d7d7;
}

.gradient-bg {
  background-image: url("./images/gradient-bg.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top;
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 7.5em;
  padding-top: 15em;
  overflow: hidden;
}

.gradient-bg h2 {
  color: #ffffff;
}

.gradient-bg .related-posts .section-content {
  padding-top: 0;
}

.form-section.form-alone .icon {
  margin-left: 0;
}

/* test */

.faq-tabs {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 2.3125em 0 1.5em;
}

.faq-tab {
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid #ffffff !important;
}

.faq-tab.active {
  background-color: #ffffff;
  color: #464b53;
}

.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-answer h4 {
  display: none;
}

.faq-item {
  gap: 8px;
  border-radius: 24px;
  padding: 2.125em;
  background: #ffffff;
  border-width: 1px 3px 3px 1px;
  border-style: solid;
  border-color: #767d89;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faq-question h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3;
  text-transform: capitalize;
  color: #464b53;
}

.faq-answer p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 140%;
  color: #666666;
  margin-top: 8px;
}

.faq-content .faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item.active .faq-question h4 {
  color: #4c97ff;
}

.faq-item.active {
  border-color: #ffb572;
}

.video-block iframe {
  visibility: hidden;
}
.video-wrapper iframe {
  visibility: visible;
}

.tutorials-guides-section .video-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3.125em;
}

.tutorials-guides-section .video-wrapper {
  height: 26.25em;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  background-color: #000000;
  margin: 0 0 16px;
}
.tutorials-guides-section .video-cards h6 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
  color: #050506;
}

.cf7-file {
  width: 100%;
  height: 55px;
  border: 1.5px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 50px 0 18px;
  font-size: 15px;
  color: transparent;
  cursor: pointer;
  background-color: #fff;
}
.cf7-file::before {
  content: "Attach File";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1em;
  line-height: 1.375;
  letter-spacing: 2px;
  color: #b0b0b0;
  pointer-events: none;
}
.cf7-file::after {
  content: url("./images/upload.svg");
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.cf7-file::-webkit-file-upload-button {
  display: none;
}
.cf7-file::file-selector-button {
  display: none;
}

/*  */

.form-section.theme-blue .right-content:before {
  content: url(./images/left-spark-blue.svg);
}

.form-section.theme-blue .right-content:after {
  content: url(./images/right-spark-blue.svg);
}

.form-section.theme-blue .right-content > div:before {
  content: url(./images/left-spark-badge-blue.svg);
}

.form-section.theme-blue .right-content > div:after {
  content: url(./images/right-spark-badge-blue.svg);
}

.form-section .right-content .icon {
  margin-left: 0;
}

.form-section.theme-blue .right-content .icon-spark::before {
  background-image: var(--icon-spark-small_orange);
}

.form-section .section-content .left-content p:has(img) img.ticket-image {
  max-width: 18em;
}

.form-section .right-content h4 {
  margin-bottom: 32px;
}

.form-section.contact-sales.curve-pattern:before {
  content: none;
}

.form-section.contact-sales .left-content .icon {
  margin-left: 0;
}

.form-section .right-content h2 {
  margin-bottom: 32px;
}

.form-section.contact-sales
  .section-content
  .left-content
  p:has(img.calculation-image) {
  margin-top: 0;
  padding-top: 0;
  max-width: 149px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 40px;
}

.form-section.theme-orange.contact-sales {
  padding: 0;
}

.form-section.contact-sales .section-content .left-content p:has(img) img {
  max-width: 18.75em;
  width: 100%;
  height: auto;
}

.form-section.contact-sales .section-content {
  align-items: flex-start;
}

.form-section.contact-sales .form-note {
  color: #b0b0b0;
}

.team-wrap {
  display: flex;
  flex-direction: column;
  gap: 3em;
  margin-top: 3.75em;
}

.team-member {
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 40px;
  padding: 2em;
  display: flex;
  gap: 2.5em;
  background-color: #2a2a2a;
  backdrop-filter: blur(40px);
  align-items: flex-start;
}

.team-member .left-content {
  width: 22.3125em;
  padding: 0.75em 0.75em 1.5em 0.75em;
  border-radius: 24px;
}

.team-member .left-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
}
.team-member h4 {
  font-weight: 500;
  font-size: 2em;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
}

.team-member .right-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.team-image {
  width: 18.75em;
  height: 18.75em;
  margin-bottom: 10px;
  border-radius: 24px;
  overflow: hidden;
}

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

.team-wrap .team-member:nth-of-type(even) {
  flex-direction: row-reverse;
}

.team-member .right-content p + p {
  margin-top: 16px;
}

.team-member .left-content.theme-Blue {
  background-color: #1481dc;
}

.team-member .left-content.theme-Green {
  background-color: #11ab40;
}

.team-member .left-content.theme-Blue .team-image {
  background-color: #c8e6ff;
}

.team-member .left-content.theme-Green .team-image {
  background-color: #c4ffc4;
}

a:not(.btn):hover {
  color: #1481dc;
}

.btn svg {
  transition: transform 0.3s ease-in-out;
}

.btn:hover svg {
  transform: translateX(5px);
}

.title-image img {
  max-width: 850px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.mission-vision-section:not(.curve-pattern) .section-content {
  padding-top: 2.5em !important;
}

.mission-vision-section.curve-pattern .section-content {
  padding-top: 0 !important;
}

.card-content {
  position: relative;
  border-radius: 44px;
  padding: 2.75em;
  margin-top: 2.5em;
}

.card-content.theme-Orange {
  background-color: #ffe3be;
  box-shadow: 4px 4px 0px 0px #f17b00;
}

.card-content.theme-Green {
  background-color: #c4ffc4;
  box-shadow: 4px 4px 0px 0px #11ab40;
}

.card-content p,
.card-content ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
}

.card-content ul {
  list-style-position: inside;
  padding-left: 16px;
  margin: 16px 0;
}

.card-content ul {
  margin-left: 16px;
  list-style-position: outside;
}

.core-values-wrap .core-value {
  border-radius: 24px;
  padding: 1.5em;
  background: #ffffff;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.core-values-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.core-value .content h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
}

.core-value .content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  margin-top: 8px;
}

.value-number.theme-Green {
  background-color: #c4ffc4;
}

.value-number.theme-Orange {
  background-color: #ffe3be;
}

.value-number.theme-Purple {
  background-color: #edd4ff;
}

.value-number.theme-Blue {
  background-color: #c8e6ff;
}

.value-number::after {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -45%);
  z-index: 1;
  color: #f59e0b;
  font-size: inherit;
  font-weight: inherit;
  -webkit-text-stroke: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-number.theme-Green::after {
  color: #11ab40;
}

.value-number.theme-Orange::after {
  color: #f17b00;
}

.value-number.theme-Purple::after {
  color: #9500f0;
}

.value-number.theme-Blue::after {
  color: #1481dc;
}

.value-number {
  z-index: 1;
}

.value-number::after {
  z-index: -1;
}

section.mission-vision-section {
  overflow: hidden;
}

.built-card {
  background: #ffffff;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  border-radius: 24px;
  padding: 2.125em 2.75em;
  margin-top: 2.5em;
  position: relative;
}

.built-card p {
  font-weight: 500;
  font-size: 1.25em;
  line-height: 140%;
}

.built-card p + p {
  margin-top: 30px;
}

.built-wrap {
  position: relative;
}

.why-it-matters-section .matter-card p + p {
  margin-top: 12px;
}

.fit-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin: 1.75em 0 3.75em;
}

.fit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(50% - 12px);
  gap: 12px;
  border-top-width: 1px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 1px;
  border-radius: 24px;
  padding: 1.5em;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
}

.fit-card p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #000000;
}

.fit-icon {
  min-width: 4em;
  width: 4em;
  height: 4em;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-1 .fit-icon {
  background: #cff5d4;
}
.theme-2 .fit-icon {
  background: #e5d8ff;
}
.theme-3 .fit-icon {
  background: #ffe6b3;
}
.theme-4 .fit-icon {
  background: #d6ecff;
}
.theme-5 .fit-icon {
  background: #ffd6d6;
}

.fit-note {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  margin-bottom: 1.2em;
}

.pilot-fit-section h4 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.7;
  text-align: center;
  text-transform: capitalize;
  margin-top: 2.5em;
}

.pilot-fit-section p:has(.subtitle) {
  margin-top: 1.25em;
}

.pilot-fit-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.work-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 3.125em;
}

.work-card {
  gap: 6px;
  padding: 1.875em 2em 1.875em 2em;
  border-top-width: 1px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 1px;
  border-radius: 24px;
  border-width: 1px 4px 4px 1px;
  border-style: solid;
  border-color: #000000;
  background-color: #ffffff;
}

.work-card h4 {
  font-weight: 700;
  font-size: 1.625em;
  line-height: 1.4;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.work-card p .subtitle {
  color: #666666 !important;
}

.form-section.join-pilot-program .section-content {
  align-items: flex-start;
}

.form-section.join-pilot-program .right-content h4 {
  font-size: 1.5em;
  padding-top: 1em;
}

.form-section.join-pilot-program .right-content .icon-spark::before {
  content: none;
}

.form-section.theme-green .right-content:before {
  content: url(./images/left-spark-green.svg);
}

.form-section.theme-green .right-content:after {
  content: url(./images/right-spark-green.svg);
  bottom: -7px;
}

.form-section.theme-green .right-content > div:before {
  content: url(./images/left-spark-badge-green.svg);
  top: -5px;
}

.form-section.theme-green .right-content > div:after {
  content: url(./images/right-spark-badge-green.svg);
  bottom: -16px;
}

.field-label {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 16px;
  color: #464b53;
}

/* .wpcf7-list-item .wpcf7-list-item-label{
  display: flex;
  align-items: center;
} */

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  gap: 24px;
}

.wpcf7-form-control-wrap::after {
  content: none;
}

.wpcf7-list-item input[type="checkbox"] {
  min-width: 20px !important;
  width: 20px !important;
  height: 20px !important;
  padding: 0;
  border: 1.5px solid #9197a1 !important;
  border-radius: 4px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  vertical-align: middle;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-top: 3px;
}

.wpcf7-list-item input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #0073e6;
  border-color: #0073e6;
}

.wpcf7-list-item input[type="checkbox"]:checked::before {
  opacity: 1;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  color: #464b53;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

span.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  align-items: flex-start;
}

.wpcf7-acceptance .wpcf7-list-item-label a {
  display: inline;
  text-decoration: underline;
}

.form-note br {
  display: none;
}

.form-section.join-pilot-program .section-content .left-content p:has(img) {
  margin-top: 6em;
}

.form-section.join-pilot-program h2 span {
  margin-left: 0;
}

.receives-ask-section .setup-step-wrap .setup-step {
  border-radius: 44px;
  padding: 4.8125em 1.5em 2.3125em;
  position: relative;
  border: 1px solid #000000;
}

.setup-step-wrap.ask-steps {
  grid-template-columns: repeat(2, 1fr);
}

.setup-step-wrap.ask-steps .number-pattern {
  display: none;
}

.setup-step-wrap.ask-steps > div:not(:first-child):not(:last-child) {
  margin: 0;
}

.setup-step-wrap.ask-steps .setup-step {
  padding: 2.625em;
}

.setup-step-wrap.ask-steps h4 {
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
}

.receives-ask-section p.support-description {
  color: #050506;
  font-weight: 600;
  font-size: 1.5em;
  text-transform: capitalize;
  max-width: 100%;
}

.setup-step-wrap.ask-steps {
  margin-top: 3.75em;
}

.ask-content:before {
  content: "";
  background-image: url(./images/ask-pattern.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
  width: 100%;
  height: 150px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -50px;
}

.receives-ask-section {
  position: relative;
  overflow: hidden;
}

.legal-content ul {
  list-style-position: outside;
}

.legal-content p,
.legal-content ul li,
.legal-content ol li,
.legal-content ul li ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}

.legal-content ul li ul {
  list-style-type: disc;
}
.legal-content p {
  margin-top: 12px;
}

.legal-content p + h4 {
  margin-top: 32px;
  margin-bottom: 8px;
}
.legal-content ul,
.legal-content ol {
  list-style-position: outside;
  margin: 12px 0 12px 24px;
}

.legal-content h4 {
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.4;
  color: #000000;
  margin: 1.6em 0 0.8em;
}

.legal-content h4:nth-of-type(1) {
  margin-top: 0;
}

.legal-content h4 + p {
  margin-top: 0;
}

.legal-content ol {
  list-style-position: inside;
  list-style-type: none;
  margin-left: 20px;
  margin-top: 20px;
}

/* upto 1920px */

section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1921px) {
  .primary-banner-content .left-content {
    padding-left: 4em;
  }
  .curve-pattern:after {
    bottom: -4px;
  }
}

.why-built-section .icon.icon-spark.bottom.right::before {
  transform: none;
}

.legal-content p strong {
  font-weight: 600;
}

.legal-content p a,
.legal-content ul li a {
  display: inline;
}

.legal-content ul li a,
.legal-content p a {
  color: #1481dc;
  text-decoration: underline;
}

.single-banner.legal-banner {
  padding: 11.9375em 0 11.375em;
}

.legal-content ol li ol {
  list-style-type: disc;
}

.wpcf7-list-item-label {
  display: inline;
}

.wpcf7-list-item-label a {
  display: inline !important;
  white-space: nowrap;
}

.wpcf7-list-item-label br {
  display: none;
}

.legal-content h4 {
  font-family: var(--font-teachers);
}

/* table */

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d7d7d7;
  margin: 2em 0;
}

.legal-content table tbody tr:first-child td {
  background-color: #f9f9fb;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0%;
  color: #000000;
  text-align: left;
  vertical-align: top;
}

.legal-content table tbody td {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #d7d7d7;
  padding: 14px 16px;
}

.legal-content table tbody td:first-child {
  font-weight: 500;
  color: #111;
  width: 22%;
}

.legal-content table tbody td:nth-child(2) {
  width: 45%;
}

.legal-content table tbody td:last-child {
  width: 33%;
}

.legal-content table tbody tr {
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .legal-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }
}

.legal-content table::-webkit-scrollbar {
  height: 8px;
}

.legal-content table::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 10px;
}

.legal-content table::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #c7cbd1, #9aa0a6);
  border-radius: 10px;
}

.legal-content table::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #9aa0a6, #6b7280);
}

.legal-content table {
  scrollbar-width: thin;
  scrollbar-color: #9aa0a6 #f1f3f5;
}

.legal-content strong {
  font-weight: 600;
}

.legal-content ul li,
.legal-content ol li {
  line-height: 1.7;
}

body.page-template-legal-template .footer {
  border-top: 1px solid #d7d7d7;
}

p:has(a > img) {
  pointer-events: none;
}

p.form-note {
  top: 10px;
}

.btn:disabled:hover svg {
  transform: none;
}

/* .wpcf7-not-valid-tip{
  position: absolute !important;
} */

.tutorials-guides-section .icon.icon-spark.bottom.right::before {
  bottom: -8px !important;
  right: -18px !important;
}

.form-section.theme-orange.contact-sales .left-content p {
  color: #ffffff;
}

a.navbar-link.active {
  color: #1481dc;
}

a.navbar-link.active svg path {
  stroke: #1481dc;
}

.form-section.pattern-bg-four,
.why-it-matters-section.curve-pattern.pattern-bg-four,
.pilot-works.curve-pattern.pattern-bg-three,
section.form-section.curve-pattern.join-pilot-program,
section.steps-section.curve-pattern.pattern-bg-six,
.success-numbers-section {
  background-size: 100% 100%;
}

.receives-ask-section .support-description {
  color: #050506;
}

.help-center.form-section .right-content > div,
.math-education-form.form-section .right-content > div {
  padding: 2.75em;
}

.help-center.form-section .right-content:after {
  bottom: 100px;
}

.help-center.form-section .right-content > div:after {
  bottom: 101px;
  z-index: 99;
}

.help-center.form-section .right-content .icon-spark::before,
.math-education-form.form-section .right-content .icon-spark::before {
  top: -62px;
  left: -62px;
}

.form-section.curve-pattern.help-center,
.pattern-bg-five {
  background-image: url("./images/pattern-bg-five.png") !important;
}

.pattern-bg-six {
  background-image: url("./images/pattern-bg-six.png");
}

.math-education-form.form-section .right-content > div:after {
  bottom: 38px;
}

.success-numbers-section {
  background-image: url("./images/matrix-bg-1.png");
}

.accordion-content ul {
  margin-left: 16px;
}

.content-block-section span.icon.icon-spark.bottom.right.spark-orange {
  margin-left: 0 !important;
}

a.btn.white-btn.btn-with-image:hover img {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

/* maps */

.map_box {
  border-radius: 24px;
  padding: 117px 24px;
  background-color: #ffffff;
  position: relative;
  box-shadow: 4px 4px 0px 0px #000000;
}

.choices {
  position: absolute;
  left: 25px;
  top: 24px;
}

section.alignment-resources-section {
  background-color: #f7f7f7;
}

.map_wrapper {
  margin-top: 3.75em;
  flex-wrap: nowrap;
  align-items: flex-start;
}

span.note {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #666666;
  padding: 0 16px;
}

.map_box.igm_content_left_2_3 {
  width: 100% !important;
  margin: 0;
  max-width: 57% !important;
}

.igm_content_right_1_3 {
  max-width: 41% !important;
  width: 100% !important;
}

.map-at-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 4px 4px 0px 0px #000000;
  padding: 16px;
}

.igm_content_gutter {
  width: 24px !important;
}

/*  */

.map-at-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.map-at-state-img {
  width: 60px;
}

.map-at-title {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.4;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin: 0;
  text-align: left;
}

.map-at-state-img {
  width: 100%;
  height: 100%;
  background-color: #f7f7f6;
}
.map-at-blue {
  color: #2b7fff;
}

.map-at-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #666666;
}

.map-at-divider {
  margin: 20px 0;
  background-color: #d7d7d7;
}

.map-at-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.map-at-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.map-at-icon::before {
  content: "";
  position: absolute;
  inset: 0;

  background-color: #1481dc;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M26.3333 23.6673H7.66667C6.19391 23.6673 5 24.8612 5 26.334V10.334C5 6.56274 5 4.67713 6.17157 3.50556C7.34315 2.33398 9.22876 2.33398 13 2.33398H21C23.5141 2.33398 24.7712 2.33398 25.5523 3.11504C26.3333 3.89608 26.3333 5.15316 26.3333 7.66732V23.6673Z'/%3E%3Cpath d='M19.3333 26.666H10' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M26.6654 29.3327H7.9987C6.52594 29.3327 5.33203 28.1388 5.33203 26.666M5.33203 26.666C5.33203 25.1932 6.52594 23.9993 7.9987 23.9993H26.6654V7.99935C26.6654 5.48519 26.6654 4.22811 25.8843 3.44707C25.1032 2.66602 23.8462 2.66602 21.332 2.66602H13.332C9.56079 2.66602 7.67518 2.66602 6.5036 3.83759C5.33203 5.00916 5.33203 6.89478 5.33203 10.666V26.666Z'/%3E%3Cpath d='M26.0013 24C26.0013 24 24.668 25.0171 24.668 26.6667C24.668 28.3163 26.0013 29.3333 26.0013 29.3333'/%3E%3C/svg%3E")
    no-repeat center / 24px 24px;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M26.3333 23.6673H7.66667C6.19391 23.6673 5 24.8612 5 26.334V10.334C5 6.56274 5 4.67713 6.17157 3.50556C7.34315 2.33398 9.22876 2.33398 13 2.33398H21C23.5141 2.33398 24.7712 2.33398 25.5523 3.11504C26.3333 3.89608 26.3333 5.15316 26.3333 7.66732V23.6673Z'/%3E%3Cpath d='M19.3333 26.666H10' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M26.6654 29.3327H7.9987C6.52594 29.3327 5.33203 28.1388 5.33203 26.666M5.33203 26.666C5.33203 25.1932 6.52594 23.9993 7.9987 23.9993H26.6654V7.99935C26.6654 5.48519 26.6654 4.22811 25.8843 3.44707C25.1032 2.66602 23.8462 2.66602 21.332 2.66602H13.332C9.56079 2.66602 7.67518 2.66602 6.5036 3.83759C5.33203 5.00916 5.33203 6.89478 5.33203 10.666V26.666Z'/%3E%3Cpath d='M26.0013 24C26.0013 24 24.668 25.0171 24.668 26.6667C24.668 28.3163 26.0013 29.3333 26.0013 29.3333'/%3E%3C/svg%3E")
    no-repeat center / 24px 24px;
}

.map-at-item h4 {
  font-weight: 600;
  font-size: 1.25em;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000000;
}

.map-at-item p {
  font-weight: 500;
  font-size: 1em;
  line-height: 140%;
  letter-spacing: 0%;
  color: #666666;
}

.blue-bg {
  background: #c8e6ff;
}
.orange-bg {
  background: #ffe3be;
}
.green-bg {
  background: #c4ffc4;
}
.purple-bg {
  background: #edd4ff;
}

.map-at-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.map-at-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1481dc;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M26.3333 23.6673H7.66667C6.19391 23.6673 5 24.8612 5 26.334V10.334C5 6.56274 5 4.67713 6.17157 3.50556C7.34315 2.33398 9.22876 2.33398 13 2.33398H21C23.5141 2.33398 24.7712 2.33398 25.5523 3.11504C26.3333 3.89608 26.3333 5.15316 26.3333 7.66732V23.6673Z'/%3E%3Cpath d='M19.3333 26.666H10' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M26.6654 29.3327H7.9987C6.52594 29.3327 5.33203 28.1388 5.33203 26.666M5.33203 26.666C5.33203 25.1932 6.52594 23.9993 7.9987 23.9993H26.6654V7.99935C26.6654 5.48519 26.6654 4.22811 25.8843 3.44707C25.1032 2.66602 23.8462 2.66602 21.332 2.66602H13.332C9.56079 2.66602 7.67518 2.66602 6.5036 3.83759C5.33203 5.00916 5.33203 6.89478 5.33203 10.666V26.666Z'/%3E%3Cpath d='M26.0013 24C26.0013 24 24.668 25.0171 24.668 26.6667C24.668 28.3163 26.0013 29.3333 26.0013 29.3333'/%3E%3C/svg%3E")
    no-repeat center / 24px 24px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M26.3333 23.6673H7.66667C6.19391 23.6673 5 24.8612 5 26.334V10.334C5 6.56274 5 4.67713 6.17157 3.50556C7.34315 2.33398 9.22876 2.33398 13 2.33398H21C23.5141 2.33398 24.7712 2.33398 25.5523 3.11504C26.3333 3.89608 26.3333 5.15316 26.3333 7.66732V23.6673Z'/%3E%3Cpath d='M19.3333 26.666H10' stroke='black' stroke-linecap='round'/%3E%3Cpath d='M26.6654 29.3327H7.9987C6.52594 29.3327 5.33203 28.1388 5.33203 26.666M5.33203 26.666C5.33203 25.1932 6.52594 23.9993 7.9987 23.9993H26.6654V7.99935C26.6654 5.48519 26.6654 4.22811 25.8843 3.44707C25.1032 2.66602 23.8462 2.66602 21.332 2.66602H13.332C9.56079 2.66602 7.67518 2.66602 6.5036 3.83759C5.33203 5.00916 5.33203 6.89478 5.33203 10.666V26.666Z'/%3E%3Cpath d='M26.0013 24C26.0013 24 24.668 25.0171 24.668 26.6667C24.668 28.3163 26.0013 29.3333 26.0013 29.3333'/%3E%3C/svg%3E")
    no-repeat center / 24px 24px;
}

.blue-bg {
  background-color: #c8e6ff;
}
.blue-bg::before {
  background-color: #1481dc;
}

.orange-bg {
  background-color: #ffe3be;
}
.orange-bg::before {
  background-color: #f17b00;
}

.green-bg {
  background-color: #c4ffc4;
}
.green-bg::before {
  background-color: #11ab40;
}

.purple-bg {
  background-color: #edd4ff;
}
.purple-bg::before {
  background-color: #9500f0;
}

/*  */

.why-it-matters-section.curve-pattern.pattern-bg-five.has-gray:after {
  background-image: url("./images/gray-curve.svg");
}

section.learning-pillars-section.curve-pattern.pattern-bg-three:before {
  background-image: url("./images/gray-curve.svg");
}


.choices{
    border-width: 1px 3px 3px 1px;
    border-style: solid;
    border-color: #FF8F55;
    border-radius: 16px;
    padding: 10px 16px;
    min-width: 180px !important;
    width: 240px !important;
    font-weight: 600;
    font-size: 1.125em;
    line-height: 24px;
    letter-spacing: 0%;
}


.choices__inner {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: inherit;
    min-height: unset;
}

.igm_select_container {
    margin-bottom: 0;
}

.choices[data-type*=select-one]:after{
  content: none;
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0;
}

.choices__list--single {
    display: inline-block;
    padding: 0;
    width: 100%;
}

.choices__list--dropdown{
  width: 230px !important;
  left: 6px !important;
  right: 0 !important;
  top: 120% !important;
}

.map-icon {
    min-width: 100px;
    height: 100px;
    border-radius: 16px;
}

.map-icon img{
  border-radius: 16px;
}


/*  */
