:root {
  --black: #010101;
  --white: white;
  --white-70: #ffffffb3;
  --white-80: #fffc;
  --primary: #4372b8;
  --dark-blue: #0f223a;
  --grey-50: #30303080;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

h1 {
  letter-spacing: -.1rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1.1;
}

h2 {
  letter-spacing: -.1rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.05rem;
  margin-top: 0;
  margin-bottom: 0;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

p {
  letter-spacing: -.01rem;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all .4s ease-in-out;
  display: inline-block;
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.divider {
  background-color: #eee;
  height: 1px;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  background-color: var(--black);
  width: 100%;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: block;
}

.container {
  width: 100%;
  max-width: 95%;
  padding-left: 15px;
  padding-right: 15px;
}

.container.small {
  padding-left: 5%;
  padding-right: 5%;
}

.container.style-guide {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.paragraph-large {
  font-size: 18px;
}

.button {
  color: #fff;
  letter-spacing: -.01rem;
  object-fit: fill;
  background-color: #4372b8;
  border: 1px solid #0000;
  border-radius: 4rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  color: #4372b8;
  background-color: #0000;
  border-color: #4372b8;
  text-decoration: none;
}

.button.section-tag.nw {
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: linear-gradient(270deg, #152b49, #1c375c 40%, #274877 63%, #355e99 91%);
  background-clip: border-box;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.button.section-tag.nw:hover {
  color: var(--white);
  background-image: linear-gradient(270deg, #152b49, #1c375c 40%, #274877 63%, #355e99 91%);
}

.label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.label.cc-styleguide-label {
  margin-bottom: 25px;
}

.rich-text {
  margin-bottom: 100px;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.styleguide-button-wrap {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.paragraph-small {
  font-size: 16px;
}

.paragraph-small.white-70 {
  color: var(--white-70);
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.text-field {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid #000;
  border-bottom-color: #ffffff4d;
  height: 5rem;
  margin-bottom: 3.75rem;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.text-field:focus {
  border-color: var(--black) var(--black) var(--white);
  background-color: var(--black);
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-wrap {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 30px;
  display: flex;
}

._404-wrap {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.navbar {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.nav-link {
  color: var(--white-80);
  letter-spacing: -.01rem;
  text-transform: none;
  margin-left: .5rem;
  margin-right: .5rem;
  padding: 10px;
  font-size: .875rem;
  line-height: 1;
}

.nav-link:hover, .nav-link:visited {
  color: var(--white);
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--white);
}

.works-link {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.works-link:hover {
  text-decoration: none;
}

.footer {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1;
}

.footer-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
  font-weight: 600;
}

.header-logo {
  height: 3rem;
}

.nav-menu {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #fff3;
  border: 1px solid #fff3;
  border-radius: 10rem;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: .5rem 1.5rem;
  display: flex;
}

.footer-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 50% 25% 25%;
}

.footer-column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.spacer._24 {
  height: 1.5rem;
}

.spacer._80 {
  height: 7vw;
}

.licences-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  display: grid;
}

.licence-text-box {
  width: 100%;
}

.footer-bottom-wrap {
  justify-content: space-between;
  align-items: center;
  margin-top: 7.5rem;
  display: flex;
}

.footer-bottom-wrap.nw {
  margin-top: 1.5rem;
}

.footer-cta {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.footer-cta-image {
  height: 3.4375rem;
}

.footer-link-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.social-icon {
  width: 1.5rem;
}

.why-choose-image-wrap {
  position: relative;
  overflow: hidden;
}

.why-choose-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.white-70 {
  color: var(--white-70);
}

.why-choose-icon {
  width: 3.75rem;
  height: 3.75rem;
}

.image-overlay {
  background-color: var(--black);
  display: none;
  position: absolute;
  inset: 0%;
}

.text-center {
  text-align: center;
  margin-bottom: 5rem;
}

.text-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#00c7e8, #0bb4ea 24%, #6e08ff 100%, #7004ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.solution-item {
  color: var(--white);
  background-image: linear-gradient(270deg, #152b49, #1c375c 40%, #274877 63%, #355e99 100%, #0000);
  border-radius: 20px;
  padding: 50px 30px;
  position: relative;
}

.solution-item.flip-clr {
  background-image: linear-gradient(90deg, #152b49, #1c375c 40%, #274877 63%, #355e99 100%, #0000);
}

.feature-text {
  z-index: 1;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.accordion-item {
  cursor: pointer;
  border: 1px #000;
  border-bottom: 1px solid #fff3;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.cta-button {
  color: var(--white);
}

.side-nav-wrapper {
  margin-right: auto;
}

.side-nav-wrapper.tablet-hide {
  margin-left: auto;
  margin-right: 0;
}

.heading-testimonial {
  text-align: center;
  margin-top: 5%;
}

.user-name {
  text-align: center;
  margin-top: 7rem;
  font-size: 3rem;
}

.testimonial-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.why-choose-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.solution-section {
  padding-bottom: 100px;
}

.client-logo-section {
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.client-marquee-wrap {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  display: flex;
  overflow: hidden;
}

.client-marquee-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: none;
  display: flex;
}

.client-marquee-box {
  width: 155px;
}

.client-marquee-logo {
  width: 100%;
  height: 100%;
}

.page-wrapper {
  overflow: clip;
}

.about-hero-section {
  padding-top: 100px;
  padding-bottom: 60px;
}

.about-content-wrap {
  text-align: center;
}

.section-tag {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(270deg, #152b49, #1c375c 40%, #274877 63%, #355e99 91%);
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 3rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
}

.why-codemagen-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.our-mission-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.join-us-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.join-us-inner-wrap {
  border-radius: 15px;
  position: relative;
}

.join-us-image {
  opacity: .8;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 80vh;
}

.join-us-content-wrap {
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 48px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.join-us-summary {
  color: #fff;
  text-align: right;
  width: 300px;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.5;
}

.join-us-cta-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--white);
  flex-flow: column;
  width: 100%;
  max-width: 319px;
  display: flex;
}

.join-us-button {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.join-us-cta {
  border-top: 1px solid var(--white);
  padding-top: 15px;
  position: relative;
}

.join-us-arrow {
  transform: translate(-8px);
}

.why-reach-outccontent {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.why-reach-out-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.why-reach-inner {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.contact-us-icon {
  width: 50px;
  margin-bottom: 32px;
}

.contact-details-box {
  background-color: var(--white);
  color: var(--black);
  border-radius: 15px;
  padding: 40px 20px;
}

.contact-details-link {
  color: var(--black);
  font-size: 16px;
  transition: all .4s ease-in-out;
}

.contact-details-link:hover {
  color: var(--black);
}

.contact-detail-section {
  padding-top: 60px;
  padding-bottom: 300px;
}

.cta-section {
  background-color: var(--dark-blue);
  background-image: linear-gradient(#00000080, #00000080);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  margin-top: -210px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.cta-section.gradient.nw {
  background-image: linear-gradient(45deg, #152b49, #1c375c 60%, #274877 81%, #355e99);
}

.cta-form-wrapper {
  margin-top: 60px;
}

.cta-form-wrapper.flx {
  justify-content: space-between;
  display: flex;
}

.contact-hero-section {
  padding-top: 100px;
  padding-bottom: 40px;
}

.cta-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff;
  border: 1px solid #ffffff0d;
  border-radius: 10px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  display: flex;
  box-shadow: 0 10px 26px #0003;
  height: auto;
}

.form-block {
  width: 67.5%;
  margin-bottom: 0;
}

.input-form-field {
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 5px;
  height: auto;
  margin-bottom: 0;
  padding: 16px;
}

.input-form-field:focus {
  border: 1px solid #4372b8;
}

.input-form-field.text-area {
  height: 150px;
}

.field-label {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 14px;
}

.input-group {
  position: relative;
}

.submit-button {
  color: var(--black);
  text-align: center;
  object-fit: fill;
  background-color: #01010100;
  border: 1px solid #0f223a;
  border-radius: 4rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  transition: all .4s ease-in-out;
}

.submit-button:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.submit-button.section-tag.nw {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-style: none;
}

.body {
  background-color: var(--white);
  color: #333;
  font-family: Dmsans Variablefont Opsz Wght, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

.hero-section {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero-inner-wrap {
  z-index: 5;
  color: var(--white-80);
  width: 65%;
  margin-top: 40px;
  position: relative;
}

.heading-style-h1 {
  color: var(--white);
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
}

.why-choose-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.heading-style-h2 {
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.why-choose-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  padding: 100px 70px;
  display: flex;
}

.heading-style-h3 {
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-title-wrap {
  width: 80%;
  margin-bottom: 30px;
}

.grid-column-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-summary-wrap {
  width: 100%;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.our-mission-inner {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mission-image, .why-reach-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.we-help-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.heading-style-h4 {
  font-family: Sora Variablefont Wght, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-details-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 30%;
  display: grid;
}

.contact-title-wrap {
  color: var(--white);
  text-align: center;
}

.footer-top-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-column-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header {
  z-index: 99;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.footer-logo {
  width: 250px;
}

.footer-copyright-flex {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.company-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(270deg, #152b49, #1c375c 55%, #274877 83%, #355e99);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.social-media-link {
  color: var(--black);
}

.social-media-link:hover {
  color: var(--primary);
}

.social-media-link.hide {
  display: none;
}

.code-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-overlay {
  background-color: #0006;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gradient {
  background-image: linear-gradient(270deg, #152b49, #1c375c 40%, #274877 63%, #355e99);
}

@media screen and (min-width: 1280px) {
  .solution-item {
    padding: 80px 50px;
  }

  .heading-style-h2 {
    font-size: 50px;
  }

  .heading-style-h3 {
    font-size: 42px;
  }

  .grid-column-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .heading-style-h4 {
    font-size: 32px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }

  .paragraph-large {
    font-size: 20px;
    line-height: 1.6;
  }

  .paragraph-small {
    font-size: 18px;
    line-height: 1.6;
  }

  .footer-link-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .why-choose-image-wrap {
    height: 500px;
  }

  .solution-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .feature-text {
    font-size: 30px;
  }

  .solution-section {
    padding-bottom: 150px;
  }

  .section-tag {
    padding: 16px 32px;
    font-size: 20px;
  }

  .hero-inner-wrap {
    width: 55%;
  }

  .heading-style-h1 {
    font-size: 56px;
  }

  .why-choose-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .why-choose-content-wrap {
    padding-left: 100px;
    padding-right: 100px;
  }

  .about-summary-wrap {
    max-width: 75%;
  }
}

@media screen and (min-width: 1920px) {
  p {
    font-size: 1.125rem;
  }

  .paragraph-large {
    font-size: 22px;
  }

  .paragraph-small {
    font-size: 20px;
  }

  .why-choose-image-wrap {
    height: 650px;
  }

  .mission-content-wrap {
    padding-left: 60px;
  }

  .heading-style-h1 {
    font-size: 64px;
  }

  .why-choose-content-wrap {
    padding: 140px;
  }

  .about-summary-wrap {
    max-width: 80%;
  }

  .footer-logo {
    width: 330px;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 3.25rem;
  }

  .styleguide-block {
    text-align: center;
  }

  .container {
    max-width: 95%;
  }

  .paragraph-large {
    font-size: 16px;
  }

  .button {
    justify-content: center;
    padding-top: .8rem;
    padding-bottom: .8rem;
    font-size: 1rem;
  }

  .paragraph-small.center-align {
    text-align: center;
  }

  .text-field {
    height: 3.75rem;
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
  }

  .navbar {
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 32px 40px;
    font-size: 1.25rem;
  }

  .footer-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    align-items: center;
    margin-right: 0;
  }

  .footer-link {
    font-size: 14px;
  }

  .header-logo {
    height: 2.25rem;
  }

  .nav-menu {
    background-color: var(--dark-blue);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-style: none;
    border-radius: 0;
  }

  .logo-link {
    flex: 0 auto;
  }

  .mobile-menu {
    justify-content: flex-end;
    padding: 0;
  }

  .mobile-menu.w--open {
    background-color: #0000;
  }

  .mobile-menu-icon {
    filter: invert();
    height: 3rem;
    display: flex;
  }

  .footer-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 50% 50%;
  }

  .licences-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-wrap {
    margin-top: 5rem;
  }

  .why-choose-image-wrap {
    order: -1;
    width: 100%;
  }

  .solution-item {
    border-radius: 10px;
    padding: 40px 20px;
  }

  .feature-text {
    font-size: 20px;
  }

  .side-nav-wrapper.tablet-hide {
    display: none;
  }

  .heading-testimonial {
    font-size: 3.5rem;
  }

  .user-name {
    margin-top: 5rem;
  }

  .why-choose-item {
    flex-flow: column;
  }

  .section-title-wrap {
    margin-bottom: 60px;
  }

  .solution-section {
    padding-bottom: 0;
  }

  .about-hero-section {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .section-tag {
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .why-codemagen-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .our-mission-section {
    padding-bottom: 70px;
  }

  .join-us-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .join-us-inner-wrap {
    max-width: 100%;
  }

  .join-us-content-wrap {
    padding: 20px;
  }

  .join-us-summary {
    font-size: 16px;
  }

  .join-us-cta-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    max-width: 330px;
  }

  .why-reach-outccontent {
    padding: 0;
  }

  .why-reach-out-section {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .why-reach-inner {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    justify-content: space-between;
  }

  .contact-us-icon {
    margin-bottom: 24px;
  }

  .contact-details-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 30px 20px;
  }

  .contact-details-link {
    font-size: 18px;
  }

  .cta-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .contact-hero-section {
    padding-top: 60px;
  }

  .submit-button {
    justify-content: center;
    padding-top: .8rem;
    padding-bottom: .8rem;
  }

  .why-choose-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-style-h2 {
    font-size: 36px;
  }

  .why-choose-content-wrap {
    padding: 60px 30px;
  }

  .heading-style-h3 {
    font-size: 30px;
  }

  .hero-title-wrap {
    width: 100%;
  }

  .grid-column-3 {
    grid-template-columns: 1fr 1fr;
  }

  .about-summary-wrap {
    max-width: 90%;
  }

  .our-mission-inner {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .we-help-section {
    padding-bottom: 60px;
  }

  .heading-style-h4 {
    font-size: 24px;
  }

  .footer-column-right {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
  }

  .section {
    margin-left: 0;
    margin-right: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .container {
    max-width: 100%;
  }

  .paragraph-large {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  .footer {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .footer-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-right: 0;
  }

  .header-logo {
    height: 2.25rem;
  }

  .footer-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-column {
    text-align: left;
  }

  .spacer {
    width: 3rem;
    height: 3rem;
  }

  .why-choose-image-wrap {
    height: 35rem;
  }

  .solution-item {
    min-height: 100%;
    padding-top: 24px;
    padding-left: 24px;
  }

  .feature-text {
    font-size: 1.25rem;
  }

  .heading-testimonial {
    font-size: 2.5rem;
  }

  .user-name {
    margin-top: 3rem;
    font-size: 2rem;
  }

  .why-choose-item {
    grid-template-columns: 1fr;
  }

  .section-title-wrap {
    text-align: center;
  }

  .section-title-wrap.mb-0 {
    margin-bottom: 0;
  }

  .client-logo-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-content-wrap {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .why-codemagen-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .mission-image-wrap {
    width: 100%;
    height: 100%;
  }

  .mission-content-wrap {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
  }

  .join-us-summary {
    font-size: 14px;
  }

  .why-reach-outccontent {
    width: 100%;
  }

  .why-reach-out-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .why-reach-inner {
    flex-flow: column;
  }

  .contact-us-icon {
    width: 32px;
  }

  .contact-details-box {
    padding: 20px 15px;
  }

  .contact-detail-section {
    padding-top: 60px;
  }

  .cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta-form-wrapper.flx {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .cta-form, .form-block {
    width: 100%;
  }

  .hero-inner-wrap {
    width: 90%;
  }

  .heading-style-h1 {
    font-size: 42px;
  }

  .hero-title-wrap {
    margin-bottom: 20px;
  }

  .grid-column-3 {
    grid-template-columns: 1fr;
  }

  .contact-details-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-title-wrap {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .footer-top-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .footer-column-right {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 52px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button {
    font-size: 1.1rem;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .nav-link {
    padding-left: 0;
  }

  .footer {
    padding-top: 50px;
    padding-bottom: 40px;
    color: #FFFFFF;
  }

  .header-logo {
    height: 48px;
    padding: 8px;
  }

  .logo-link {
    flex: 0 auto;
  }

  .mobile-menu {
    flex: 0 auto;
    justify-content: flex-end;
    display: flex;
  }

  .footer-bottom-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
  }

  .footer-cta-image {
    height: 48px;
  }

  .footer-link-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .social-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .social-icon {
    width: 24px;
  }

  .why-choose-image-wrap {
    height: 20rem;
  }

  .text-center {
    margin-bottom: 2rem;
  }

  .solution-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .heading-testimonial {
    font-size: 2rem;
  }

  .user-name {
    font-size: 1.5rem;
  }

  .section-title-wrap {
    margin-bottom: 30px;
  }

  .solution-section {
    padding-bottom: 2rem;
  }

  .about-hero-section {
    padding-top: 40px;
  }

  .about-content-wrap.center {
    text-align: center;
  }

  .why-codemagen-section, .our-mission-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mission-content-wrap {
    padding-top: 0;
  }

  .join-us-inner-wrap {
    height: 300px;
  }

  .join-us-image {
    border-radius: 8px;
  }

  .join-us-summary {
    text-align: left;
    width: 100%;
    font-size: 12px;
  }

  .contact-detail-section {
    padding-bottom: 270px;
  }

  .cta-form-wrapper.flx {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact-hero-section {
    padding-bottom: 0;
  }

  .cta-form {
    padding: 20px;
  }

  .input-form-field {
    padding: 10px;
  }

  .submit-button {
    font-size: 1.1rem;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-inner-wrap {
    width: 100%;
  }

  .heading-style-h1 {
    font-size: 30px;
  }

  .why-choose-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-style-h2 {
    font-size: 28px;
  }

  .why-choose-content-wrap {
    padding: 20px 20px 30px;
  }

  .heading-style-h3 {
    font-size: 24px;
  }

  .about-summary-wrap {
    max-width: 100%;
  }

  .we-help-section {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
  }

  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
  }

  .checkbox-field {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1a3b7b;
  }
  .submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .consent-text {
    text-transform: none;
  }

}

#w-node-e7465d7c-1844-8356-4e30-0af003d386c5-c4a7a05c, #w-node-e062211a-f29a-411f-9797-7010a91a573b-c4a7a05c, #w-node-_9df8783e-7d74-beb0-55d7-15c1cc3240ba-c4a7a05c, #w-node-bf8b0c1e-262d-4c1e-4d50-163eaedc48b5-c4a7a05c, #w-node-bf8b0c1e-262d-4c1e-4d50-163eaedc48ba-c4a7a05c, #w-node-bf8b0c1e-262d-4c1e-4d50-163eaedc48bf-c4a7a05c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ec01f2c7-5972-2a04-8280-397e783eaec6-c4a7a05c {
  align-self: center;
}

#w-node-fd97e83e-ff93-b472-7e0d-fed6bed8d9a9-c4a7a05c {
  justify-self: end;
}

#w-node-_1fb494e8-b576-bb29-f714-ce58255f75ab-c4a7a065, #w-node-_7d35d1b8-98aa-ad70-af9f-52d9236a3688-c4a7a065, #w-node-da7007b8-79d0-b1f4-949d-ac3f8901a8ad-c4a7a065, #w-node-_584ebdbc-ced6-5f1d-a966-9007b49209d8-c4a7a065 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-fc24e058-a0ad-087b-0fba-6961a1d8110d-c4a7a05c, #w-node-_1402663a-38b0-762a-dcc0-57250b3c7309-c4a7a05c {
    order: 9999;
  }

  #w-node-fd97e83e-ff93-b472-7e0d-fed6bed8d99f-c4a7a05c, #w-node-_1c317771-8252-72a3-7885-4f9349d8e6c3-49d8e6c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_584ebdbc-ced6-5f1d-a966-9007b49209d8-c4a7a065 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b52a9703-f038-b92f-61e5-e12d0c3eeea3-c4a7a05c {
    order: -9999;
  }
}

/*Privacy*/
/* Section Styling */
.privacy-section {
max-width: 900px;
margin: 0 auto;
background: #F5F5F5;

}

/* Headings */
.privacy-heading {
font-size: 36px;
font-weight: 700;
margin-bottom: 30px;
margin-top: 30px;
color: #111;
text-align: center;
}

.rich-text-block h4 {
font-size: 20px;
font-weight: 600;
margin-top: 30px;
margin-bottom: 15px;
color: #222;
text-align: justify;
}

.rich-text-block p {
margin-bottom: 15px;
font-size: 16px;
color: #444;
text-align: justify;
}

/* Lists */
.rich-text-block ul {
padding-left: 20px;
margin-bottom: 20px;
text-align: justify;
}

.rich-text-block ul li {
margin-bottom: 10px;
line-height: 1.6;
text-align: justify;
}

/* Links */
.rich-text-block a {
color: #0072ff;
text-decoration: none;
}

.rich-text-block a:hover {
text-decoration: underline;
}


/* Section Styling */
.terms-section {
  max-width: 900px;
  margin: 0 auto;
  background: #F5F5F5;
}

/* Headings */
.terms-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 40px;
  color: #111;
  text-align: center;
}
}

