html {
  font-size: 100%
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Lato', sans-serif
}

.pageheader {
  position: relative;
  background: linear-gradient(135deg, #1b2a3e 0%, #243650 60%, #2a1a35 100%);
  padding: 0;
  overflow: hidden
}

.pageheader::before {
  content: '';
  position: absolute;
  top: -32px;
  right: -32px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #4599ef21 0%, #fb0c8314 100%);
  border-radius: 38px;
  pointer-events: none
}

.pageheader::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4599EF 0%, #FB0C83 100%);
  pointer-events: none
}

.brandblock {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 32px 16px;
  max-width: 1024px;
  margin: 0 auto
}

.brandmark {
  background-color: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  flex-shrink: 0
}

.brandmark img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block
}

.brandruler {
  border: none;
  border-top: 1px solid #4599ef38;
  margin: 0 32px;
  max-width: calc(1024px - 64px);
  margin-left: auto;
  margin-right: auto
}

.primarynav {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 32px 32px
}

.primarynav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.primarynav ul li {
  display: block
}

.primarynav ul li a {
  display: block;
  color: #ECF0F6;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1), border-color .35s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.primarynav ul li a:hover,
.primarynav ul li a:focus {
  color: #4599EF;
  border-color: #4599ef66;
  background: #4599ef14;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  outline: none
}

.primarynav ul li a:focus {
  box-shadow: 0 0 0 3px #4599ef59
}

.primarynav ul li.activepage a {
  color: #4599EF;
  border-color: #4599ef4d;
  background: #4599ef1a
}

@media (max-width: 768px) {
  .brandblock {
    padding: 16px 16px 8px
  }

  .brandruler {
    margin-left: 16px;
    margin-right: 16px;
    max-width: calc(100% - 32px)
  }

  .primarynav {
    padding: 8px 16px 16px
  }

  .primarynav ul {
    gap: 4px
  }

  .primarynav ul li a {
    font-size: 16px;
    padding: 8px
  }

  .brandmark {
    width: 72px;
    height: 72px
  }

  .brandmark img {
    width: 60px;
    height: 60px
  }
}

@media (max-width: 320px) {
  .primarynav ul {
    flex-direction: column
  }
}

.pagefooter {
  background: linear-gradient(160deg, #1b2a3e 0%, #243650 50%, #1a1e2e 100%);
  padding: 32px 32px 16px;
  position: relative;
  overflow: hidden
}

.pagefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FB0C83 0%, #4599EF 100%);
  pointer-events: none
}

.footerinner {
  max-width: 1024px;
  margin: 0 auto
}

.footerbrandrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px
}

.footerruler {
  border: none;
  border-top: 1px solid #4599ef38;
  width: 100%;
  margin: 0 0 16px
}

.footerbrandmark {
  background-color: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  flex-shrink: 0
}

.footerbrandmark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block
}

.footercolumns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px
}

.footercolumn {
  flex: 1 1 200px;
  min-width: 160px
}

.footercolumnlabel {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ECF0F6;
  line-height: 1.45;
  margin: 0 0 16px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.footertext {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f6bf;
  line-height: 1.7;
  margin: 0 0 8px
}

.footerlink {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f6bf;
  line-height: 1.7;
  text-decoration: none;
  padding: 4px 0;
  transition: color .25s ease-in-out
}

.footerlink:hover,
.footerlink:focus {
  color: #4599EF;
  outline: none;
  box-shadow: none
}

.footerlink:focus {
  box-shadow: 0 0 0 3px #4599ef59;
  border-radius: 5px
}

.footernav ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footernav ul li {
  display: block
}

.footerbottom {
  border-top: 1px solid #4599ef26;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center
}

.footercopyright {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f680;
  line-height: 1.45;
  margin: 0
}

.footeryear {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f680;
  line-height: 1.45;
  margin: 0
}

@media (max-width: 768px) {
  .pagefooter {
    padding: 32px 16px 16px
  }

  .footercolumns {
    flex-direction: column;
    gap: 16px
  }

  .footerbottom {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 320px) {
  .footercolumn {
    min-width: 100%
  }
}

.consentbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 4000;
  background: #1b2a3e;
  border-bottom: 2px solid #4599EF;
  box-shadow: 2px 12px 48px -1px #4599ef21;
  width: 100%;
  display: none
}

.consentbarinner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 32px
}

.consentheadline {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ECF0F6;
  line-height: 1.45;
  margin: 0 0 8px
}

.consentdescription {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f6cc;
  line-height: 1.7;
  margin: 0 0 16px
}

.consentactions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px
}

.consentbuttonaccept,
.consentbuttondeny {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.45;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.consentbuttonaccept {
  color: #4599EF
}

.consentbuttondeny {
  color: #ecf0f6bf
}

.consentbuttonaccept:hover,
.consentbuttonaccept:focus {
  color: #ECF0F6;
  outline: none;
  box-shadow: 0 0 0 3px #4599ef59;
  border-radius: 5px
}

.consentbuttondeny:hover,
.consentbuttondeny:focus {
  color: #FB0C83;
  outline: none;
  box-shadow: 0 0 0 3px #fb0c8340;
  border-radius: 5px
}

.consentdetailstoggle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f680;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
  transition: color .25s ease-in-out
}

.consentdetailstoggle:hover,
.consentdetailstoggle:focus {
  color: #4599EF;
  outline: none;
  box-shadow: 0 0 0 3px #4599ef40;
  border-radius: 5px
}

.consentpanel {
  margin-top: 16px;
  padding: 16px;
  background: #4599ef12;
  border-radius: 8px
}

.consentpanel[hidden] {
  display: none
}

.consenttogglerow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px
}

.consenttogglelabel {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ECF0F6;
  line-height: 1.45
}

.consenttoggleinput {
  width: 20px;
  height: 20px;
  accent-color: #4599EF;
  cursor: pointer;
  flex-shrink: 0
}

.consentrequiredlabel {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ecf0f680;
  line-height: 1.45
}

@media (max-width: 768px) {
  .consentbarinner {
    padding: 16px
  }
}

.agreement-text {
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px;
  color: #2a2d35;
  line-height: 1.7;
  font-size: 16px
}

.agreement-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px
}

.agreement-text ul,
.agreement-text ol {
  margin-bottom: 16px;
  padding-left: 32px
}

.agreement-text li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px
}

.agreement-text ul li {
  list-style-type: disc
}

.agreement-text ol li {
  list-style-type: decimal
}

.agreement-text ul ul,
.agreement-text ol ol,
.agreement-text ul ol,
.agreement-text ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.agreement-text em,
.agreement-text i {
  font-style: italic;
  color: #3a3f4a
}

.agreement-text a {
  color: #4599EF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .28s ease-in-out, text-decoration-color .28s ease-in-out
}

.agreement-text a:hover {
  color: #FB0C83;
  text-decoration-color: #FB0C83
}

.agreement-text a:visited {
  color: #2d6db5
}

.agreement-text div {
  margin-bottom: 16px
}

.agreement-text div+div {
  margin-top: 8px
}

@media (max-width: 768px) {
  .agreement-text {
    padding: 16px
  }

  .agreement-text ul,
  .agreement-text ol {
    padding-left: 16px
  }
}

@media (max-width: 320px) {
  .agreement-text {
    padding: 8px
  }
}

.learningprogram {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: clip
}

.learningprogram ::selection {
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  color: #fff
}

.learningprogram .bentogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 32px 0 16px;
  position: relative
}

.learningprogram .bentogrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #4599ef12 0%, transparent 70%);
  pointer-events: none;
  z-index: 0
}

.learningprogram .bentoimagecell {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  z-index: 1
}

.learningprogram .bentoimagecell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.learningprogram .bentoimagecell:hover img {
  transform: scale(1.03)
}

.learningprogram .imagevignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 40%, #1e325061 100%);
  pointer-events: none
}

.learningprogram .imagecaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4599efe0;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  padding: 16px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 14px 14px
}

.learningprogram .bentoimagecell:hover .imagecaption {
  transform: translateY(0)
}

.learningprogram .bentoheadcell {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: #ECF0F6;
  border-radius: 14px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 2px 2px 4px -1px #4599ef14
}

.learningprogram .bentoheadcell::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 50% 50%, #fb0c8321 0%, transparent 70%);
  border-radius: 38px;
  pointer-events: none
}

.learningprogram .blobdecor {
  position: absolute;
  border-radius: 38px;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0
}

.learningprogram .blobdecor.blobblue {
  width: 80px;
  height: 80px;
  background: #4599ef26;
  bottom: -16px;
  left: 16px
}

.learningprogram .blobdecor.blobpink {
  width: 60px;
  height: 60px;
  background: #fb0c831c;
  top: 8px;
  right: 32px
}

.learningprogram .bentoheadcell .programlabel {
  font-size: 16px;
  line-height: 1.45;
  color: #FB0C83;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1
}

.learningprogram .bentoheadcell h1 {
  font-size: 42px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 300;
  letter-spacing: .04em;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.learningprogram .bentoheadcell h1 span.dashaccent {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #4599EF;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.learningprogram .bentometacell {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  z-index: 1
}

.learningprogram .metaitem {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.learningprogram .metaitem .metalabel {
  font-size: 16px;
  line-height: 1.45;
  color: #6a7d92
}

.learningprogram .metaitem .metavalue {
  font-size: 30px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 600
}

.learningprogram .metaitem .metavalue sup {
  font-size: 16px;
  color: #4599EF;
  font-weight: 400
}

.learningprogram .sectdivider {
  width: 100%;
  height: 2px;
  background: radial-gradient(circle at 50% 50%, #4599EF 0%, transparent 80%);
  margin: 32px 0;
  border: none
}

.learningprogram .programdetail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 32px 0;
  position: relative
}

.learningprogram .programdetail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #fb0c830a 0%, transparent 65%);
  pointer-events: none
}

.learningprogram .detailbody {
  position: relative;
  z-index: 1
}

.learningprogram .detailbody h2 {
  font-size: 30px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 300;
  letter-spacing: .05em;
  margin: 0 0 16px
}

.learningprogram .detailbody .bodytext {
  font-size: 16px;
  line-height: 1.7;
  color: #2e3f52;
  margin-bottom: 16px
}

.learningprogram .modulelist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.learningprogram .modulelist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ECF0F6;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  transition: box-shadow .28s ease-in-out, background .28s ease-in-out
}

.learningprogram .modulelist li:hover {
  background: #fff;
  box-shadow: 2px 5px 14px -1px #4599ef14
}

.learningprogram .checkmark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #4599EF;
  position: relative;
  margin-top: 2px
}

.learningprogram .checkmark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #4599EF;
  border-bottom: 2px solid #4599EF;
  transform: rotate(-45deg)
}

.learningprogram .pullquotepanel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.learningprogram .pullquote {
  background: #1b2a3b;
  border-radius: 14px;
  padding: 32px;
  color: #ECF0F6;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: .03em;
  box-shadow: 2px 12px 48px -1px #4599ef21;
  position: relative;
  overflow: hidden
}

.learningprogram .pullquote::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 50% 50%, #4599ef2e 0%, transparent 70%);
  border-radius: 38px;
  pointer-events: none
}

.learningprogram .pullquote .accentword {
  color: #4599EF
}

.learningprogram .faqpanel {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: inset 2px 2px 4px -1px #fb0c8314
}

.learningprogram .faqpanel h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #FB0C83;
  font-weight: 600;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .07em
}

.learningprogram .faqlist {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.learningprogram .faqitem {
  border-radius: 8px;
  overflow: hidden
}

.learningprogram .faqitem input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.learningprogram .faqtoggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ECF0F6;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 500;
  transition: background .26s ease-in-out, color .26s ease-in-out;
  user-select: none;
  border: 2px solid transparent
}

.learningprogram .faqtoggle:focus {
  outline: none;
  border-color: #4599EF;
  box-shadow: 0 0 0 3px #4599ef2e
}

.learningprogram .faqtoggle:hover {
  background: #dce4ef
}

.learningprogram .faqarrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative
}

.learningprogram .faqarrow::before,
.learningprogram .faqarrow::after {
  content: "";
  position: absolute;
  background: #4599EF;
  border-radius: 5px;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.learningprogram .faqarrow::before {
  width: 10px;
  height: 2px;
  top: 7px;
  left: 3px
}

.learningprogram .faqarrow::after {
  width: 2px;
  height: 10px;
  top: 3px;
  left: 7px
}

.learningprogram .faqanswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), padding .28s ease-in-out;
  font-size: 16px;
  line-height: 1.7;
  color: #2e3f52;
  background: #f4f7fb;
  border-radius: 0 0 8px 8px;
  padding: 0 16px
}

.learningprogram .faqitem.open .faqanswer {
  max-height: 300px;
  padding: 12px 16px
}

.learningprogram .faqitem.open .faqarrow::after {
  transform: rotate(90deg)
}

.learningprogram .faqitem.open .faqtoggle {
  background: #dce4ef;
  border-radius: 8px 8px 0 0
}

.learningprogram .dotdecor {
  position: absolute;
  pointer-events: none;
  z-index: 0
}

.learningprogram .dotdecor svg {
  display: block
}

.learningprogram .howtosteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px
}

.learningprogram .stepcard {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1), transform .32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.learningprogram .stepcard:hover {
  box-shadow: 2px 12px 48px -1px #4599ef21;
  transform: translateY(-2px)
}

.learningprogram .stepcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  border-radius: 5px 5px 0 0
}

.learningprogram .stepnumber {
  font-size: 42px;
  line-height: 1.15;
  color: #ECF0F6;
  font-weight: 700
}

.learningprogram .stepcard h5 {
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 600;
  margin: 0
}

.learningprogram .stepcard p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5e72;
  margin: 0
}

.learningprogram .ratingrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  background: #ECF0F6;
  border-radius: 8px
}

.learningprogram .ratingbig {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b2a3b
}

.learningprogram .ratingdetail {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5e72
}

.learningprogram .stardots {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: 4px
}

.learningprogram .stardot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #4599EF
}

.learningprogram .stardot.half {
  background: linear-gradient(90deg, #4599EF 50%, #ECF0F6 50%);
  border: 1px solid #4599EF
}

.learningprogram .ctarow {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap
}

.learningprogram .btnprimary {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #4599EF;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid #4599EF;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .28s ease-in-out, background .28s ease-in-out;
  background-image: linear-gradient(90deg, #4599EF 0%, #4599EF 100%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-position: left center
}

.learningprogram .btnprimary:hover {
  color: #fff;
  background-size: 100% 100%
}

.learningprogram .btnprimary:focus {
  outline: none;
  box-shadow: 0 0 0 3px #4599ef40
}

.learningprogram .btnsecondary {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #FB0C83;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid #FB0C83;
  cursor: pointer;
  text-decoration: none;
  transition: color .32s cubic-bezier(0.4, 0, 0.2, 1), background .32s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: linear-gradient(90deg, #FB0C83 0%, #FB0C83 100%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-position: left center
}

.learningprogram .btnsecondary:hover {
  color: #fff;
  background-size: 100% 100%
}

.learningprogram .btnsecondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px #fb0c8333
}

@media (max-width: 768px) {
  .learningprogram .bentogrid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto
  }

  .learningprogram .bentoimagecell {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    height: 220px
  }

  .learningprogram .bentoheadcell {
    grid-column: 1 / 2;
    grid-row: 2 / 3
  }

  .learningprogram .bentometacell {
    grid-column: 1 / 2;
    grid-row: 3 / 4
  }

  .learningprogram .programdetail {
    grid-template-columns: 1fr
  }

  .learningprogram .howtosteps {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 320px) {
  .learningprogram .bentogrid {
    padding: 16px 0 8px;
    gap: 8px
  }

  .learningprogram .bentoheadcell h1 {
    font-size: 30px
  }

  .learningprogram .howtosteps {
    grid-template-columns: 1fr
  }

  .learningprogram .ctarow {
    flex-direction: column
  }
}

.launch {
  max-width: 100%;
  overflow-x: hidden
}

.launch .launchinner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.launch ::selection {
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  color: #fff
}

@keyframes shadowpulse {

  0%,
  100% {
    box-shadow: 2px 5px 14px -1px #4599ef14
  }

  50% {
    box-shadow: 2px 12px 48px -1px #4599ef21
  }
}

.launch .titlesplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.launch .titleleft {
  background: #ECF0F6;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.launch .titleleft::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  width: 80px;
  height: 100%;
  background: #ECF0F6;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2
}

.launch .titleright {
  background: #1a2540;
  padding: 32px 32px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.launch .titlerightdeco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.launch .titlerightdeco svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%
}

.launch .titlemain {
  font-size: 58px;
  line-height: 1.15;
  color: #1a2540;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.launch .titlemain sup {
  font-size: 16px;
  color: #4599EF;
  font-weight: 600;
  letter-spacing: .5px;
  vertical-align: super
}

.launch .titlequote {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a6b;
  max-width: 380px;
  margin-bottom: 32px
}

.launch .titlebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  width: fit-content
}

.launch .titlebadgedot {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #4599EF;
  flex-shrink: 0
}

.launch .titlebadgetext {
  font-size: 16px;
  color: #1a2540;
  font-weight: 600
}

.launch .titleimgwrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1
}

.launch .titleimgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.4) contrast(1.1);
  display: block
}

.launch .titleimgoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #4599ef2e 0%, #1a25408c 100%);
  z-index: 2
}

.launch .titleslogan {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 32px;
  z-index: 3
}

.launch .titleslogantext {
  font-size: 30px;
  line-height: 1.45;
  color: #fff;
  font-weight: 300;
  letter-spacing: .02em
}

.launch .titleslogantext em {
  color: #4599EF;
  font-style: normal;
  font-weight: 600
}

.launch .geomotif {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  overflow: hidden
}

.launch .geomotif span {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: #4599EF;
  flex-shrink: 0;
  opacity: .4
}

.launch .geomotif span.active {
  opacity: 1;
  background: #FB0C83
}

.launch .divdotdash {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden
}

.launch .divdotdash i {
  display: inline-block;
  background: #4599EF;
  border-radius: 38px;
  flex-shrink: 0;
  opacity: .3
}

.launch .divdotdash i.dot {
  width: 4px;
  height: 4px;
  border-radius: 5px
}

.launch .divdotdash i.dash {
  width: 12px;
  height: 2px;
  border-radius: 5px
}

.launch .experiencesection {
  background: #fff;
  padding: 32px 0
}

.launch .experiencegrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

.launch .experiencetext {
  padding: 16px 0
}

.launch .experiencetag {
  font-size: 16px;
  color: #FB0C83;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  display: block
}

.launch .experienceh {
  font-size: 42px;
  line-height: 1.15;
  color: #1a2540;
  font-weight: 700;
  margin-bottom: 16px
}

.launch .experiencebody {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a6b;
  margin-bottom: 16px
}

.launch .experiencepull {
  float: right;
  width: 42%;
  margin-left: 16px;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.45;
  color: #4599EF;
  font-weight: 300;
  font-style: italic
}

.launch .experiencecards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch .expcard {
  background: #ECF0F6;
  border-radius: 14px;
  padding: 16px;
  box-shadow: inset 2px 2px 4px -1px #4599ef14;
  transition: box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shadowpulse 3s ease-in-out infinite
}

.launch .expcard:nth-child(2) {
  animation-delay: 1s
}

.launch .expcard:nth-child(3) {
  animation-delay: 2s
}

.launch .expcardnum {
  font-size: 42px;
  line-height: 1.15;
  color: #4599EF;
  font-weight: 800;
  display: block
}

.launch .expcardlabel {
  font-size: 16px;
  line-height: 1.45;
  color: #1a2540;
  font-weight: 600;
  margin-bottom: 4px;
  display: block
}

.launch .expcardtext {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a6b
}

.launch .expimgwrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 2px 12px 48px -1px #4599ef21;
  position: relative
}

.launch .expimgwrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch .expimgwrap:hover img {
  transform: scale(1.03)
}

.launch .hesitationsection {
  background: #ECF0F6;
  padding: 32px 0;
  position: relative
}

.launch .hesitationsplit {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: center
}

.launch .hesitationimgside {
  position: relative
}

.launch .hesitationimgwrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 5px 14px -1px #fb0c8314
}

.launch .hesitationimgwrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block
}

.launch .hesitationfloat {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #FB0C83;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 2px 12px 48px -1px #fb0c8321;
  max-width: 180px
}

.launch .hesitationfloattext {
  font-size: 16px;
  color: #fff;
  line-height: 1.45;
  font-weight: 600
}

.launch .hesitationtext {
  padding: 8px 0
}

.launch .hesitationh {
  font-size: 42px;
  line-height: 1.15;
  color: #1a2540;
  font-weight: 700;
  margin-bottom: 16px
}

.launch .hesitationbody {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a6b;
  margin-bottom: 16px
}

.launch .hesitationpull {
  float: right;
  width: 38%;
  margin-left: 16px;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.45;
  color: #FB0C83;
  font-weight: 300;
  font-style: italic
}

.launch .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.launch .checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a6b
}

.launch .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #4599EF;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.launch .checkmark::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid #4599EF;
  border-bottom: 2px solid #4599EF;
  transform: rotate(-45deg) translateY(-1px);
  display: block
}

.launch .approachsection {
  background: #1a2540;
  padding: 32px 0;
  position: relative;
  overflow: hidden
}

.launch .approachdeco {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, #4599ef1f 0%, transparent 70%);
  pointer-events: none
}

.launch .approachtopdeco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at center, #fb0c8314 0%, transparent 70%);
  pointer-events: none
}

.launch .approachhead {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1
}

.launch .approachsuptitle {
  font-size: 16px;
  color: #4599EF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: block;
  margin-bottom: 8px
}

.launch .approachh {
  font-size: 42px;
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px
}

.launch .approachsub {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffffa6;
  max-width: 560px;
  margin: 0 auto
}

.launch .approachthreecol {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px
}

.launch .approachcard {
  background: #ffffff0f;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  transition: background .28s ease-in-out, box-shadow .28s ease-in-out;
  cursor: default
}

.launch .approachcard:active {
  background: #ffffff26
}

.launch .approachcard:hover {
  background: #ffffff1a;
  box-shadow: 2px 12px 48px -1px #4599ef21
}

.launch .approachcardicon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #4599ef26;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.launch .approachcardicon svg {
  width: 22px;
  height: 22px
}

.launch .approachcardh {
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  display: block
}

.launch .approachcardtext {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffffa6
}

.launch .iconstrip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap
}

.launch .iconitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto
}

.launch .iconitemsvg {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: #4599ef1f;
  display: flex;
  align-items: center;
  justify-content: center
}

.launch .iconitemlabel {
  font-size: 16px;
  color: #ffffffb3;
  text-align: center;
  font-weight: 500;
  max-width: 80px;
  line-height: 1.45
}

.launch .symrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px
}

.launch .symicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fb0c8326;
  display: flex;
  align-items: center;
  justify-content: center
}

.launch .symtext {
  font-size: 16px;
  color: #fffc;
  font-weight: 600;
  text-align: center
}

.launch .approachimgrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1
}

.launch .approachimgbox {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 2px 5px 14px -1px #4599ef14
}

.launch .approachimgbox img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch .approachimgbox:hover img {
  transform: scale(1.04)
}

.launch .btnprimary {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #4599EF;
  color: #4599EF;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .28s ease-in-out, background .28s ease-in-out
}

.launch .btnprimary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4599EF;
  transition: left .32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.launch .btnprimary:hover::before {
  left: 0
}

.launch .btnprimary:hover {
  color: #fff
}

.launch .btnprimary span {
  position: relative;
  z-index: 1
}

.launch .splithbg {
  background: linear-gradient(to bottom, #ECF0F6 50%, #fff 50%)
}

@media (max-width: 768px) {
  .launch .titlesplit {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .launch .titleleft::after {
    display: none
  }

  .launch .titleright {
    padding: 32px;
    min-height: 320px
  }

  .launch .titlemain {
    font-size: 42px
  }

  .launch .titleslogan {
    bottom: 32px;
    left: 32px;
    right: 32px
  }

  .launch .titleslogantext {
    font-size: 16px
  }

  .launch .experiencegrid {
    grid-template-columns: 1fr
  }

  .launch .hesitationsplit {
    grid-template-columns: 1fr
  }

  .launch .hesitationfloat {
    position: static;
    margin-top: 16px;
    max-width: 100%
  }

  .launch .approachthreecol {
    grid-template-columns: 1fr
  }

  .launch .approachimgrow {
    grid-template-columns: 1fr
  }

  .launch .iconstrip {
    gap: 16px
  }

  .launch .experiencepull,
  .launch .hesitationpull {
    float: none;
    width: 100%;
    margin-left: 0;
    font-size: 16px
  }
}

@media (max-width: 320px) {
  .launch .titlemain {
    font-size: 30px
  }

  .launch .experienceh,
  .launch .hesitationh,
  .launch .approachh {
    font-size: 30px
  }

  .launch .launchinner {
    padding: 0 8px
  }
}

.contactus {
  background: #fff;
  overflow-x: clip;
  padding: 0
}

.contactus .pagetop {
  background: linear-gradient(180deg, #4599EF22 0%, #FB0C8311 40%, transparent 100%);
  padding: 32px 16px 16px;
  position: relative
}

.contactus .pagetop::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #4599EF18 0%, transparent 70%);
  pointer-events: none
}

.contactus .pagetop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #FB0C8312 0%, transparent 70%);
  pointer-events: none
}

.contactus .pageinner {
  max-width: 1024px;
  margin: 0 auto
}

.contactus .pagelabel {
  font-size: 16px;
  color: #4599EF;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  line-height: 1.45
}

.contactus .pagetop .pagetitle {
  font-size: 42px;
  line-height: 1.15;
  color: #1b2540;
  font-weight: 700;
  margin: 0 0 8px;
  max-width: 560px
}

.contactus .pagetop .pagesub {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4560;
  max-width: 480px;
  margin: 0 0 16px
}

.contactus .bracketframe {
  display: inline-block;
  position: relative;
  padding: 8px 16px
}

.contactus .bracketframe::before,
.contactus .bracketframe::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #4599EF;
  border-style: solid
}

.contactus .bracketframe::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px
}

.contactus .bracketframe::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0
}

.contactus .twocolumn {
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start
}

.contactus .contactdetails {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contactus .detailcard {
  background: #ECF0F6;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  position: relative;
  overflow: hidden
}

.contactus .detailcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  border-radius: 14px 14px 0 0
}

.contactus .detaillabel {
  font-size: 16px;
  color: #FB0C83;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  line-height: 1.45
}

.contactus .detailvalue {
  font-size: 16px;
  color: #1b2540;
  line-height: 1.7;
  margin: 0
}

.contactus .detailvalue a {
  color: #4599EF;
  text-decoration: none;
  transition: color .28s ease-in-out
}

.contactus .detailvalue a:hover {
  color: #FB0C83
}

.contactus .circlecluster {
  position: relative;
  height: 120px;
  margin-top: 8px
}

.contactus .circlecluster .circle {
  position: absolute;
  border-radius: 50%;
  opacity: .13
}

.contactus .circlecluster .circle.big {
  width: 90px;
  height: 90px;
  background: #4599EF;
  top: 10px;
  left: 10px
}

.contactus .circlecluster .circle.mid {
  width: 60px;
  height: 60px;
  background: #FB0C83;
  top: 30px;
  left: 50px
}

.contactus .circlecluster .circle.small {
  width: 38px;
  height: 38px;
  background: #4599EF;
  top: 55px;
  left: 20px
}

.contactus .responseinfo {
  background: linear-gradient(135deg, #4599EF11 0%, #FB0C8308 100%);
  border-radius: 14px;
  padding: 16px;
  margin-top: 8px
}

.contactus .responseinfo .responsetitle {
  font-size: 16px;
  font-weight: 700;
  color: #1b2540;
  margin: 0 0 4px;
  line-height: 1.45
}

.contactus .responseinfo .responsetext {
  font-size: 16px;
  color: #3a4560;
  line-height: 1.7;
  margin: 0
}

.contactus .formcard {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 2px 12px 48px -1px #4599ef21 inset 0 2px 8px #4599ef0d;
  position: relative
}

.contactus .formcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  border-radius: 0 0 5px 5px
}

.contactus .formtitle {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: .04em;
  color: #1b2540;
  line-height: 1.15;
  margin: 0 0 8px
}

.contactus .formdesc {
  font-size: 16px;
  color: #3a4560;
  line-height: 1.7;
  margin: 0 0 16px
}

.contactus .fieldgroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px
}

.contactus .fieldrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contactus .field {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contactus .field label {
  font-size: 16px;
  color: #1b2540;
  font-weight: 600;
  line-height: 1.45
}

.contactus .field input,
.contactus .field select,
.contactus .field textarea {
  border: 1.5px solid #cdd5e0;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 16px;
  color: #1b2540;
  background: #f6f8fb;
  outline: none;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  line-height: 1.45;
  appearance: none;
  -webkit-appearance: none
}

.contactus .field input::placeholder,
.contactus .field textarea::placeholder {
  color: #8a96a8
}

.contactus .field input:focus,
.contactus .field select:focus,
.contactus .field textarea:focus {
  border-color: #4599EF;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  background: #fff
}

.contactus .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234599EF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer
}

.contactus .field select option {
  color: #1b2540;
  background: #fff
}

.contactus .slotpicker {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contactus .slotlabel {
  font-size: 16px;
  color: #1b2540;
  font-weight: 600;
  line-height: 1.45;
  display: block
}

.contactus .slotgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.contactus .slotgrid input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.contactus .slotgrid label {
  display: block;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1.5px solid #cdd5e0;
  text-align: center;
  font-size: 16px;
  color: #3a4560;
  background: #f6f8fb;
  cursor: pointer;
  transition: border-color .25s ease-in-out, background .25s ease-in-out, color .25s ease-in-out;
  line-height: 1.45;
  user-select: none
}

.contactus .slotgrid input[type="radio"]:checked+label {
  border-color: #4599EF;
  background: #4599EF;
  color: #fff;
  font-weight: 600
}

.contactus .slotgrid label:hover {
  border-color: #4599EF;
  background: #ECF0F6;
  color: #1b2540
}

.contactus .privacyrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: #ECF0F6;
  border-radius: 8px
}

.contactus .privacyrow input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #4599EF;
  cursor: pointer;
  margin-top: 2px
}

.contactus .privacyrow .privacytext {
  font-size: 16px;
  color: #3a4560;
  line-height: 1.7;
  margin: 0
}

.contactus .privacyrow .privacytext a {
  color: #4599EF;
  text-decoration: underline;
  transition: color .28s ease-in-out
}

.contactus .privacyrow .privacytext a:hover {
  color: #FB0C83
}

.contactus .submitbtn {
  display: inline-block;
  position: relative;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #4599EF;
  background: transparent;
  border: 1.5px solid #4599EF;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: .05em;
  transition: color .35s cubic-bezier(0.4, 0, 0.2, 1), background .35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  outline: none
}

.contactus .submitbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  border: 2px solid #4599EF;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactus .submitbtn:hover::before {
  clip-path: inset(0 0% 0 0)
}

.contactus .submitbtn:hover {
  color: #fff;
  background: #4599EF
}

.contactus .submitbtn:focus {
  outline: 2px solid #FB0C83;
  outline-offset: 2px
}

.contactus .submitbtn:active {
  background: #2d7fd4;
  border-color: #2d7fd4;
  color: #fff
}

.contactus .wavedivider {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.contactus .wavedivider svg {
  flex: 1;
  overflow: visible
}

@media (max-width: 768px) {
  .contactus .twocolumn {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px
  }

  .contactus .fieldrow {
    grid-template-columns: 1fr
  }

  .contactus .slotgrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contactus .pagetop .pagetitle {
    font-size: 30px
  }

  .contactus .formcard {
    padding: 16px
  }

  .contactus .circlecluster {
    display: none
  }
}

@media (max-width: 320px) {
  .contactus .slotgrid {
    grid-template-columns: 1fr
  }

  .contactus .pagetop .pagetitle {
    font-size: 30px
  }

  .contactus .formtitle {
    font-size: 16px
  }
}

.aboutus {
  max-width: 100%;
  overflow-x: hidden
}

.aboutus * {
  box-sizing: border-box
}

::selection {
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  color: #fff
}

.aboutus .pagewrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.aboutus .fadein {
  opacity: 0;
  animation: fadeReveal .38s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.aboutus .fadein:nth-child(1) {
  animation-delay: .08s
}

.aboutus .fadein:nth-child(2) {
  animation-delay: .18s
}

.aboutus .fadein:nth-child(3) {
  animation-delay: .28s
}

.aboutus .fadein:nth-child(4) {
  animation-delay: .38s
}

@keyframes fadeReveal {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.aboutus .dividerradial {
  width: 100%;
  height: 2px;
  background: radial-gradient(circle at center, #4599EF 0%, #4599ef14 100%);
  border: none;
  margin: 0
}

.aboutus .dividersoft {
  width: 100%;
  height: 2px;
  background: radial-gradient(circle at center, #FB0C83 0%, #fb0c830f 100%);
  border: none;
  margin: 0
}

.aboutus .titleblock {
  background: linear-gradient(to right, #4599ef17 0%, #fff 60%);
  padding: 32px 0;
  position: relative
}

.aboutus .titleblock .pagewrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px
}

.aboutus .titleblock .imagezone {
  flex: 0 0 380px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 12px 48px -1px #4599ef21
}

.aboutus .titleblock .imagezone .decorring {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #4599ef2e;
  pointer-events: none;
  z-index: 0
}

.aboutus .titleblock .imagezone .decorring2 {
  position: absolute;
  bottom: -52px;
  left: -52px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid #4599ef17;
  pointer-events: none;
  z-index: 0
}

.aboutus .titleblock .imagezone img {
  width: 380px;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  filter: brightness(1.04) saturate(1.1) sepia(0.08);
  position: relative;
  z-index: 1
}

.aboutus .titleblock .textzone {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.aboutus .titleblock .textzone .supertag {
  font-size: 16px;
  line-height: 1.45;
  color: #FB0C83;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600
}

.aboutus .titleblock .textzone h1 {
  font-size: 42px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 300;
  letter-spacing: -.01em;
  margin: 0
}

.aboutus .titleblock .textzone .visualbreak {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  border-radius: 5px
}

.aboutus .titleblock .textzone .descriptionpara {
  font-size: 16px;
  line-height: 1.7;
  color: #2e3f52;
  margin: 0;
  max-width: 480px
}

.aboutus .titleblock .textzone .metarow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px
}

.aboutus .titleblock .textzone .metaitem {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.aboutus .titleblock .textzone .metaitem .metanumber {
  font-size: 30px;
  line-height: 1.15;
  color: #4599EF;
  font-weight: 700
}

.aboutus .titleblock .textzone .metaitem .metalabel {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5d72
}

.aboutus .detailsblock {
  background: #ECF0F6;
  padding: 32px 0;
  position: relative
}

.aboutus .detailsblock .zigzagpattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  opacity: .04;
  pointer-events: none;
  overflow: hidden
}

.aboutus .detailsblock .pagewrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1
}

.aboutus .detailsblock .narrativecol {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.aboutus .detailsblock .narrativecol h2 {
  font-size: 30px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 300;
  letter-spacing: .04em;
  margin: 0
}

.aboutus .detailsblock .narrativecol .pullquote {
  font-size: 16px;
  line-height: 1.7;
  color: #4599EF;
  font-weight: 600;
  padding: 16px;
  border-radius: 14px;
  background: #4599ef12;
  box-shadow: inset 2px 2px 4px -1px #4599ef14
}

.aboutus .detailsblock .narrativecol .bodypara {
  font-size: 16px;
  line-height: 1.7;
  color: #2e3f52;
  margin: 0
}

.aboutus .detailsblock .narrativecol .progressnarrative {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 2px 5px 14px -1px #4599ef14
}

.aboutus .detailsblock .narrativecol .progressnarrative .progresslabel {
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 600
}

.aboutus .detailsblock .narrativecol .progressnarrative .progresssub {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5d72
}

.aboutus .detailsblock .narrativecol .progressnarrative .segmentedbar {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-top: 8px
}

.aboutus .detailsblock .narrativecol .progressnarrative .segmentedbar .seg {
  height: 10px;
  border-radius: 5px;
  flex: 1;
  background: #ECF0F6;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .detailsblock .narrativecol .progressnarrative .segmentedbar .seg.filled {
  background: #4599EF
}

.aboutus .detailsblock .narrativecol .progressnarrative .segmentedbar .seg.filled2 {
  background: #FB0C83
}

.aboutus .detailsblock .teamcol {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.aboutus .detailsblock .teamcol h3 {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5d72;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0
}

.aboutus .detailsblock .teamcol .personcard {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  transition: box-shadow .28s ease-in-out
}

.aboutus .detailsblock .teamcol .personcard:hover {
  box-shadow: 2px 12px 48px -1px #4599ef21
}

.aboutus .detailsblock .teamcol .personcard .personphoto {
  width: 72px;
  height: 72px;
  border-radius: 38px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(1.03) saturate(1.08) sepia(0.07)
}

.aboutus .detailsblock .teamcol .personcard .personinfo {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.aboutus .detailsblock .teamcol .personcard .personinfo .personname {
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 700;
  margin: 0
}

.aboutus .detailsblock .teamcol .personcard .personinfo .personrole {
  font-size: 16px;
  line-height: 1.45;
  color: #FB0C83;
  font-weight: 500;
  margin: 0
}

.aboutus .detailsblock .teamcol .personcard .personinfo .persondesc {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5d72;
  margin: 0
}

.aboutus .detailsblock .methodlist {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.aboutus .detailsblock .methodlist .methoditem {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  transition: transform .27s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .detailsblock .methodlist .methoditem:hover {
  transform: translateY(-3px);
  box-shadow: 2px 12px 48px -1px #4599ef21
}

.aboutus .detailsblock .methodlist .methoditem .methodicon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4599EF 0%, #4599ef66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.aboutus .detailsblock .methodlist .methoditem .methodicon svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.aboutus .detailsblock .methodlist .methoditem .methodtitle {
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 700;
  margin: 0
}

.aboutus .detailsblock .methodlist .methoditem .methoddesc {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5d72;
  margin: 0
}

.aboutus .detailsblock .methodlist .methoditem .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.aboutus .detailsblock .methodlist .methoditem .checklist li {
  font-size: 16px;
  line-height: 1.45;
  color: #2e3f52;
  padding-left: 20px;
  position: relative
}

.aboutus .detailsblock .methodlist .methoditem .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 5px;
  border: 2px solid #4599EF;
  background: #4599ef1f
}

.aboutus .formblock {
  background: linear-gradient(to right, #fb0c830f 0%, #fff 55%);
  padding: 32px 0
}

.aboutus .formblock .pagewrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start
}

.aboutus .formblock .formintro {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.aboutus .formblock .formintro h2 {
  font-size: 30px;
  line-height: 1.15;
  color: #1b2a3b;
  font-weight: 300;
  letter-spacing: .03em;
  margin: 0
}

.aboutus .formblock .formintro .intropara {
  font-size: 16px;
  line-height: 1.7;
  color: #2e3f52;
  margin: 0
}

.aboutus .formblock .formintro .contactdetails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px
}

.aboutus .formblock .formintro .contactdetails .contactrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.aboutus .formblock .formintro .contactdetails .contactrow .contacticon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #4599ef1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.aboutus .formblock .formintro .contactdetails .contactrow .contacticon svg {
  width: 14px;
  height: 14px;
  stroke: #4599EF;
  fill: none
}

.aboutus .formblock .formintro .contactdetails .contactrow .contacttext {
  font-size: 16px;
  line-height: 1.45;
  color: #2e3f52
}

.aboutus .formblock .formintro .contactdetails .contactrow .contacttext a {
  color: #4599EF;
  text-decoration: none;
  transition: color .26s ease-in-out
}

.aboutus .formblock .formintro .contactdetails .contactrow .contacttext a:hover {
  color: #FB0C83
}

.aboutus .formblock .formintro .imageframe {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 5px 14px -1px #fb0c8314;
  margin-top: 8px
}

.aboutus .formblock .formintro .imageframe img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(1.04) saturate(1.1) sepia(0.08)
}

.aboutus .formblock .formarea {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 2px 12px 48px -1px #4599ef21 inset 2px 2px 4px -1px #4599ef14
}

.aboutus .formblock .formarea h3 {
  font-size: 16px;
  line-height: 1.45;
  color: #4a5d72;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin: 0 0 16px
}

.aboutus .formblock .formarea .fieldgroup {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.aboutus .formblock .formarea .fieldgroup .fieldrow {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.aboutus .formblock .formarea .fieldgroup .fieldrow label {
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  font-weight: 600
}

.aboutus .formblock .formarea .fieldgroup .fieldrow input,
.aboutus .formblock .formarea .fieldgroup .fieldrow select {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid #d0dae6;
  font-size: 16px;
  line-height: 1.45;
  color: #1b2a3b;
  background: #f5f8fc;
  transition: border-color .27s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .27s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  width: 100%
}

.aboutus .formblock .formarea .fieldgroup .fieldrow input::placeholder {
  color: #8fa5bc
}

.aboutus .formblock .formarea .fieldgroup .fieldrow input:focus,
.aboutus .formblock .formarea .fieldgroup .fieldrow select:focus {
  border-color: #4599EF;
  box-shadow: 2px 2px 4px -1px #4599ef14
}

.aboutus .formblock .formarea .fieldgroup .fieldrow select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234599EF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px
}

.aboutus .formblock .formarea .fieldgroup .privacyrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.aboutus .formblock .formarea .fieldgroup .privacyrow input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #4599EF;
  cursor: pointer
}

.aboutus .formblock .formarea .fieldgroup .privacyrow .privacylabel {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5d72
}

.aboutus .formblock .formarea .fieldgroup .privacyrow .privacylabel a {
  color: #4599EF;
  text-decoration: underline;
  transition: color .26s ease-in-out
}

.aboutus .formblock .formarea .fieldgroup .privacyrow .privacylabel a:hover {
  color: #FB0C83
}

.aboutus .formblock .formarea .fieldgroup .submitbtn {
  display: inline-block;
  padding: 8px 32px;
  font-size: 16px;
  line-height: 1.45;
  color: #4599EF;
  background: transparent;
  border: 1.5px solid #4599EF;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
  transition: color .32s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start
}

.aboutus .formblock .formarea .fieldgroup .submitbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4599EF;
  z-index: 0;
  transition: left .32s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px
}

.aboutus .formblock .formarea .fieldgroup .submitbtn:hover {
  color: #fff
}

.aboutus .formblock .formarea .fieldgroup .submitbtn:hover::before {
  left: 0
}

.aboutus .formblock .formarea .fieldgroup .submitbtn span {
  position: relative;
  z-index: 1
}

.aboutus .formblock .formarea .fieldgroup .submitbtn:focus {
  outline: 2px solid #4599EF;
  outline-offset: 3px
}

@media (max-width: 1024px) {
  .aboutus .titleblock .imagezone {
    flex: 0 0 300px
  }

  .aboutus .titleblock .imagezone img {
    width: 300px;
    height: 260px
  }

  .aboutus .titleblock .textzone h1 {
    font-size: 30px
  }

  .aboutus .detailsblock .methodlist {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .aboutus .titleblock .pagewrap {
    flex-direction: column
  }

  .aboutus .titleblock .imagezone {
    flex: none;
    width: 100%
  }

  .aboutus .titleblock .imagezone img {
    width: 100%;
    height: 220px
  }

  .aboutus .detailsblock .pagewrap {
    grid-template-columns: 1fr
  }

  .aboutus .detailsblock .methodlist {
    grid-column: 1;
    grid-template-columns: 1fr
  }

  .aboutus .formblock .pagewrap {
    grid-template-columns: 1fr
  }

  .aboutus .titleblock .textzone h1 {
    font-size: 30px
  }
}

@media (max-width: 320px) {
  .aboutus .titleblock .textzone h1 {
    font-size: 30px
  }

  .aboutus .titleblock .textzone .metarow {
    flex-direction: column;
    gap: 8px
  }

  .aboutus .formblock .formarea {
    padding: 16px
  }
}

.studymaterials {
  max-width: 100%;
  overflow-x: hidden
}

.studymaterials ::selection {
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  color: #fff
}

.studymaterials .pagewrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.studymaterials .titlesection {
  background: radial-gradient(circle at 18% 40%, #4599ef2e 0%, #ecf0f6b3 55%, #fff 100%);
  padding: 48px 0 32px;
  position: relative
}

.studymaterials .titlesection .pagewrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px
}

.studymaterials .titleleft {
  flex: 2;
  min-width: 0
}

.studymaterials .titleright {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.studymaterials .titledecoration {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 38px;
  background: #fb0c8312;
  pointer-events: none
}

.studymaterials .titledecoration2 {
  position: absolute;
  bottom: 8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-radius: 22px;
  background: #4599ef1a;
  pointer-events: none
}

.studymaterials .titleimage {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  opacity: .72;
  box-shadow: 2px 5px 14px -1px #4599ef14;
  display: block
}

.studymaterials .pagesuper {
  font-size: 16px;
  line-height: 1.45;
  color: #4599EF;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 8px;
  display: block
}

.studymaterials .pagemaintitle {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 300;
  color: #1b2a3b;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.studymaterials .pagemaintitle strong {
  font-weight: 700;
  color: #4599EF
}

.studymaterials .titledesc {
  font-size: 16px;
  line-height: 1.7;
  color: #374a5c;
  max-width: 520px;
  margin: 0
}

.studymaterials .titlebandtop {
  height: 4px;
  background: linear-gradient(90deg, #4599EF 0%, #FB0C83 100%);
  width: 100%
}

.studymaterials .titlebandbot {
  height: 2px;
  background: #4599ef2e;
  width: 100%
}

.studymaterials .metricsband {
  background: #ECF0F6;
  padding: 0
}

.studymaterials .metricsbandinner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: stretch
}

.studymaterials .metricitem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  gap: 4px
}

.studymaterials .metricdivider {
  width: 1px;
  background: #4599ef38;
  align-self: stretch;
  margin: 8px 0
}

.studymaterials .metricvalue {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #4599EF
}

.studymaterials .metriclabel {
  font-size: 16px;
  line-height: 1.45;
  color: #374a5c;
  text-align: center
}

.studymaterials .resourcesection {
  background: #fff;
  padding: 48px 0 40px
}

.studymaterials .resourcegrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start
}

.studymaterials .resourceintro {
  position: sticky;
  top: 32px
}

.studymaterials .resourceintrotitle {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
  color: #1b2a3b;
  margin: 0 0 16px;
  letter-spacing: .01em
}

.studymaterials .resourceintrobody {
  font-size: 16px;
  line-height: 1.7;
  color: #374a5c;
  margin: 0 0 16px
}

.studymaterials .resourcepullquote {
  font-size: 16px;
  line-height: 1.45;
  color: #FB0C83;
  font-weight: 600;
  border-top: 2px solid #fb0c832e;
  padding-top: 16px;
  margin: 0
}

.studymaterials .resourcelist {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.studymaterials .resourcecard {
  background: #ECF0F6;
  border-radius: 14px;
  padding: 16px 16px 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 2px 2px 4px -1px #4599ef14;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.studymaterials .resourcecard:hover {
  box-shadow: 2px 5px 14px -1px #4599ef14;
  background: #f0f4fa
}

.studymaterials .resourcenumber {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 38px;
  background: #4599EF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  flex-shrink: 0
}

.studymaterials .resourcecardtext {
  flex: 1;
  min-width: 0
}

.studymaterials .resourcecardtitle {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #1b2a3b;
  margin: 0 0 4px
}

.studymaterials .resourcecarddesc {
  font-size: 16px;
  line-height: 1.7;
  color: #374a5c;
  margin: 0
}

.studymaterials .resourcesuper {
  font-size: 16px;
  color: #FB0C83;
  font-weight: 700;
  vertical-align: super;
  font-size: 11px;
  margin-left: 2px
}

.studymaterials .resourcebadge {
  font-size: 16px;
  color: #4599EF;
  font-weight: 600;
  background: #4599ef1a;
  border-radius: 5px;
  padding: 2px 8px;
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45
}

.studymaterials .sectiondivider {
  height: 6px;
  background: linear-gradient(90deg, #ECF0F6 0%, #4599EF 40%, #FB0C83 100%);
  width: 100%
}

.studymaterials .contrastsection {
  padding: 48px 0 40px;
  position: relative;
  background: #ECF0F6;
  animation: innerglow 5s ease-in-out infinite alternate
}

@keyframes innerglow {
  0% {
    background: #ECF0F6
  }

  100% {
    background: #e2eaf6
  }
}

.studymaterials .contrastgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch
}

.studymaterials .contrasttitle {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
  color: #1b2a3b;
  margin: 0 0 16px;
  grid-column: 1 / -1
}

.studymaterials .contrastpanel {
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 2px 5px 14px -1px #4599ef14
}

.studymaterials .contrastpanelbefore {
  background: #fff
}

.studymaterials .contrastpanelafter {
  background: #fff
}

.studymaterials .contrastpanellabel {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 5px;
  display: inline-block;
  width: fit-content
}

.studymaterials .labelbefore {
  background: #fb0c831a;
  color: #c4006a
}

.studymaterials .labelafter {
  background: #4599ef1f;
  color: #1b6dbf
}

.studymaterials .contrastpanelbody {
  font-size: 16px;
  line-height: 1.7;
  color: #374a5c;
  margin: 0
}

.studymaterials .contrastchecklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.studymaterials .contrastchecklist li {
  font-size: 16px;
  line-height: 1.45;
  color: #374a5c;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.studymaterials .checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0
}

.studymaterials .checkmarkyes {
  background: #4599ef26
}

.studymaterials .checkmarkno {
  background: #fb0c831f
}

.studymaterials .checkmark svg {
  display: block
}

.studymaterials .contrastimage {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block
}

.studymaterials .bgshiftpattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(120deg, #4599ef0a 0px, #4599ef0a 1px, transparent 1px, transparent 40px);
  animation: patternshift 12s linear infinite;
  border-radius: 0;
  overflow: hidden
}

@keyframes patternshift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 80px 80px
  }
}

.studymaterials .contrastinnerwrap {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

@media (max-width: 768px) {
  .studymaterials .titlesection .pagewrapper {
    flex-direction: column;
    gap: 16px
  }

  .studymaterials .titleright {
    width: 100%
  }

  .studymaterials .titleimage {
    max-width: 100%;
    height: 140px
  }

  .studymaterials .pagemaintitle {
    font-size: 30px
  }

  .studymaterials .resourcegrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .studymaterials .resourceintro {
    position: static
  }

  .studymaterials .contrastgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .studymaterials .contrasttitle {
    grid-column: 1
  }

  .studymaterials .metricsbandinner {
    flex-direction: column;
    gap: 0
  }

  .studymaterials .metricdivider {
    width: 100%;
    height: 1px;
    margin: 0
  }
}

@media (max-width: 320px) {
  .studymaterials .pagemaintitle {
    font-size: 30px
  }

  .studymaterials .metricvalue {
    font-size: 30px
  }
}

.studymaterials .downloadbtn {
  display: inline-block;
  font-size: 16px;
  line-height: 1.45;
  color: #4599EF;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  margin-top: 8px;
  transition: color .25s ease-in-out, border-color .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.studymaterials .downloadbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid #4599EF;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.studymaterials .downloadbtn:hover::before {
  clip-path: inset(0 0% 0 0)
}

.studymaterials .downloadbtn:hover {
  color: #1b6dbf
}

.studymaterials .downloadbtn:focus-visible {
  outline: 2px solid #4599EF;
  outline-offset: 2px
}

.successPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: #ECF0F6
}

.successPage .successCard {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 2px 12px 48px -1px #4599ef21;
  text-align: center
}

.successPage .successIcon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: block
}

.successPage .successHeading {
  font-size: 30px;
  line-height: 1.15;
  color: #1b2a3b;
  margin: 0 0 16px;
  font-weight: 700
}

.successPage .successText {
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
  margin: 0 0 32px
}

.successPage .successLink {
  display: inline-block;
  font-size: 16px;
  line-height: 1.45;
  color: #4599EF;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color .28s ease-in-out, color .28s ease-in-out
}

.successPage .successLink:hover,
.successPage .successLink:focus {
  border-color: #FB0C83;
  color: #FB0C83;
  outline: none
}

.successPage .successDivider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4599EF, #FB0C83);
  border-radius: 5px;
  margin: 0 auto 32px
}