.bnr-grid2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.bnr-grid2 .bnr-heading {
  line-height: 1.4 !important;
}
@media (min-width: 768px) {
  .bnr-grid2 {
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .bnr-grid2 {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .bnr-grid2 {
    gap: 100px;
  }
}
@media (min-width: 1400px) {
  .bnr-grid2 {
    gap: 164px;
  }
}
@media (min-width: 1600px) {
  .bnr-grid2 {
    gap: 205px;
  }
}
@media (min-width: 1200px) {
  .bnr-grid2.platform-v3-bnr {
    gap: 91px !important;
  }
}
@media (min-width: 1200px) {
  .bnr-grid2.platform-v3-bnr .bnr-col-right {
    max-width: 527px;
  }
}
@media (min-width: 1200px) {
  .bnr-grid2 .bnr-col-left {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .bnr-grid2 .bnr-col-right {
    max-width: 663px;
  }
}
@media (min-width: 1200px) {
  .bnr-grid2 .bnr-col-right {
    max-width: 494px;
  }
}

/* --- Contact Form Section --- */
.contact-form-section {
  background-color: #fff;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .form-grid {
    gap: 31px;
  }
}
@media (min-width: 992px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 31px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #001f61;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .form-group label {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .form-group label {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #001f61;
  background-color: #fff;
  border: 1px solid rgba(0, 31, 97, 0.3);
  border-radius: 12px;
  padding: 13px 32px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #4a5d73;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #4a5d73;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #425de8;
}
@media (min-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 17px 32px;
  }
}
.form-group textarea {
  resize: vertical;
  min-height: 180px;
  padding: 24px 32px;
}
@media (min-width: 992px) {
  .form-group.interest-group {
    grid-column: 2;
    grid-row: 4;
  }
}
@media (min-width: 992px) {
  .form-group.message-group {
    grid-column: 1;
    grid-row: 4/span 2;
  }
}

.select-wrap {
  position: relative;
  width: 100%;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}
.select-wrap .select-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 19px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.select-wrap .select-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.submit-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .submit-wrap {
    margin-top: 11px;
  }
}
@media (min-width: 992px) {
  .submit-wrap {
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .submit-wrap {
    margin-top: 39px;
  }
}

/* Button modifier reusing .btn-typ1 layout but applying specific colors */
@media (min-width: 1200px) {
  .btn-blue .btn-txt {
    font-size: 16px;
  }
}
.btn-blue .btn-arrow svg path {
  fill: #425de8 !important;
}

/* --- Contact Info Section --- */
.contact-info-section {
  background-color: #edf2ff;
}
.contact-info-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
  width: 100%;
  max-width: 1290px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .info-card {
    padding: 60px;
    gap: 60px;
    border-radius: 40px;
  }
}
@media (min-width: 992px) {
  .info-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 60px;
    border-radius: 40px;
    transition: box-shadow 0.3s ease;
  }
  .info-card:hover {
    box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1200px) {
  .info-card {
    padding: 60px 200px;
    gap: 60px;
    border-radius: 48px;
  }
}

.info-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #001f61;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .info-title {
    font-size: 22px;
  }
}

.info-email {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #001f61;
}
@media (min-width: 992px) {
  .info-email {
    font-size: 22px;
  }
}
.info-email a {
  color: #425de8;
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-email a:hover {
  opacity: 0.8;
}

.info-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #001f61;
  margin-top: 38px;
}
@media (min-width: 768px) {
  .info-desc {
    margin-top: 42px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .info-desc {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .info-desc {
    margin-top: 48px;
  }
}

.about-bnr-content {
  position: relative;
  z-index: 2;
}
.about-bnr-content .bnr-heading {
  margin-bottom: 18px;
  line-height: 1.4 !important;
}
@media (min-width: 768px) {
  .about-bnr-content .bnr-heading {
    max-width: 692px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .about-bnr-content .bnr-heading {
    max-width: 1042px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .about-bnr-content .txt {
    max-width: 663px;
  }
}
@media (min-width: 1200px) {
  .about-bnr-content .txt {
    max-width: 1022px;
  }
}

.col-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .col-wrapper {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .col-wrapper {
    gap: 18px;
  }
}
@media (min-width: 768px) {
  .col-wrapper .txt {
    max-width: 642px;
  }
}
@media (min-width: 1200px) {
  .col-wrapper .txt {
    max-width: 1015px;
  }
}

@media (min-width: 768px) {
  .flexclass {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .flexclass {
    gap: 24px;
  }
}

.gov-infra-section {
  background-color: #fff;
}
.gov-infra-section .hd-typ1 {
  line-height: 1.4 !important;
  max-width: 549px;
}
@media (max-width: 767px) {
  .gov-infra-section .hd-typ1 {
    max-width: 339px;
  }
}
.gov-infra-section .txt {
  max-width: 535px;
}
@media (max-width: 767px) {
  .gov-infra-section .txt {
    max-width: 339px;
  }
}
.gov-infra-section .txt.mrgn-top-2 {
  margin-top: 18px !important;
}
@media (min-width: 768px) {
  .gov-infra-section .txt.mrgn-top-2 {
    margin-top: 24px !important;
  }
}
@media (min-width: 1200px) {
  .gov-infra-section .txt.mrgn-top-2 {
    margin-top: 30px !important;
  }
}
.gov-infra-section .txt.mrgn-top-spec {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .gov-infra-section .txt.mrgn-top-spec {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .gov-infra-section .txt.mrgn-top-spec {
    margin-top: 60px;
  }
}
.gov-infra-section .txt.txt-bold-primary {
  font-size: 16px;
  max-width: 339px;
}
@media (min-width: 768px) {
  .gov-infra-section .txt.txt-bold-primary {
    font-size: 20px;
    max-width: 692px;
  }
}
@media (min-width: 1200px) {
  .gov-infra-section .txt.txt-bold-primary {
    font-size: 22px;
    max-width: 510px;
  }
}
.gov-infra-section img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .gov-infra-section img {
    max-width: 482px;
  }
}
@media (max-width: 767px) {
  .gov-infra-section img {
    max-width: 320px;
  }
}
@media (min-width: 1200px) {
  .gov-infra-section img {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.runtime-section {
  background-color: #fff;
}
.runtime-section .hd-typ1 {
  line-height: 1.4 !important;
  margin-bottom: 40px;
}

.arch-layers-section {
  background-color: #f4f7fe;
}
.arch-layers-section .hd-typ1 {
  line-height: 1.4 !important;
  margin-bottom: 40px;
}
.arch-layers-section .section-subtext {
  margin-top: 38px;
  font-size: 14px;
  color: #001f61 !important;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .arch-layers-section .section-subtext {
    font-size: 16px;
    margin-top: 42px;
  }
}
@media (min-width: 1200px) {
  .arch-layers-section .section-subtext {
    font-size: 18px;
    margin-top: 60px;
  }
}
.arch-layers-section .sasi-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .arch-layers-section .sasi-card {
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .arch-layers-section .sasi-card {
    padding: 40px;
    gap: 46px;
  }
}
.arch-layers-section .sasi-card .content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .arch-layers-section .sasi-card .content-wrap {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.arch-layers-section .sasi-card .content-wrap .desc {
  margin-top: 0 !important;
}

.scrutiny-section {
  padding: 60px 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .scrutiny-section {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .scrutiny-section {
    padding: 100px 0;
  }
}
.scrutiny-section .sec-header {
  max-width: 1241px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .scrutiny-section .sec-header {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .scrutiny-section .sec-header {
    margin-bottom: 60px;
  }
}
.scrutiny-section .sec-header .hd-typ1 {
  line-height: 1.4 !important;
  margin-bottom: 24px;
  text-transform: none;
}
@media (min-width: 768px) {
  .scrutiny-section .sec-header .hd-typ1 {
    margin-bottom: 30px;
  }
}
.scrutiny-section .sec-header .vision-txt {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5d73;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .scrutiny-section .sec-header .vision-txt {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .scrutiny-section .sec-header .vision-txt {
    margin-bottom: 30px;
  }
}
.scrutiny-section .sec-header .quote-txt {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #001f61;
}
@media (min-width: 768px) {
  .scrutiny-section .sec-header .quote-txt {
    font-size: 18px;
  }
}
.scrutiny-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .scrutiny-section .cards-grid {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .scrutiny-section .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .scrutiny-section .cards-grid {
    gap: 12px 30px;
  }
}

.integration-section {
  background-color: #fff;
}
.integration-section .hd-typ1 {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .integration-section .hd-typ1 {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .integration-section .hd-typ1 {
    margin-bottom: 30px;
  }
}
.integration-section .gov-gap-col img {
  width: 100%;
  height: auto;
  max-width: 450px;
  display: block;
  margin: 0 auto;
}

.advantage-section {
  background-color: #f4f7fe;
}
.advantage-section .advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 38px;
}
@media (min-width: 768px) {
  .advantage-section .advantage-grid {
    margin-top: 40px;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .advantage-section .advantage-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 60px;
  }
}
.advantage-section .advantage-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  transition: transform 0.3s ease;
}
.advantage-section .advantage-card:hover {
  box-shadow: var(--box-shadow-3);
}
@media (min-width: 768px) {
  .advantage-section .advantage-card {
    border-radius: 40px;
    padding: 40px;
  }
}
.advantage-section .advantage-card .icon {
  background: var(--gradient3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .advantage-section .advantage-card .icon {
    width: 60px;
    height: 60px;
  }
}
.advantage-section .advantage-card .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.advantage-section .advantage-card .content .hd-typ2 {
  line-height: 1.4 !important;
}
.advantage-section .advantage-card .content .txt {
  font-size: 16px;
  color: #4a5d73;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .advantage-section .advantage-card .content .txt {
    font-size: 18px;
  }
}
.advantage-section .stakeholders-wrapper {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .advantage-section .stakeholders-wrapper {
    margin-top: 60px;
  }
}
.advantage-section .stakeholders-wrapper .stakeholder-list {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px 30px;
}
@media (min-width: 768px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 42px;
  }
}
@media (min-width: 1200px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list {
    gap: 100px;
  }
}
.advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 768px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item {
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item {
    gap: 18px;
  }
}
.advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-icon {
    width: 48px;
    height: 48px;
  }
}
.advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-icon svg {
  width: 100%;
  height: 100%;
}
.advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-name {
  font-size: 14px;
  font-weight: 400;
  color: #001f61;
}
@media (min-width: 768px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-name {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .advantage-section .stakeholders-wrapper .stakeholder-list .stakeholder-item .stake-name {
    font-size: 18px;
  }
}
.advantage-section .stakeholders-wrapper .stakeholder-text {
  margin-top: 38px;
  font-size: 14px;
  color: #001f61;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .advantage-section .stakeholders-wrapper .stakeholder-text {
    font-size: 16px;
    margin-top: 42px;
  }
}
@media (min-width: 1200px) {
  .advantage-section .stakeholders-wrapper .stakeholder-text {
    font-size: 18px;
    margin-top: 60px;
  }
}

.cta-section {
  background-color: #fff;
  text-align: left;
}
.cta-section .hd-typ1 {
  line-height: 1.2 !important;
}
@media (min-width: 768px) {
  .cta-section .hd-typ1 {
    max-width: 692px;
  }
}
@media (min-width: 1200px) {
  .cta-section .hd-typ1 {
    max-width: 100%;
  }
}
.cta-section .btn-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.security-svg {
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .security-svg {
    width: 60px;
    height: 60px;
  }
}

.process-section {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .process-section {
    margin-top: 60px;
  }
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .process-grid {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .process-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .process-grid {
    gap: 14px;
  }
}

.process-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: 100%;
  transition: transform 0.3s ease;
  flex: 1;
}
@media (min-width: 768px) {
  .process-card {
    border-radius: 40px;
    padding: 30px 40px;
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .process-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .process-card {
    gap: 40px;
  }
}
.process-card .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .process-card .content {
    gap: 12px;
  }
}
.process-card .content .hd-typ2 {
  line-height: 1.4 !important;
  color: #001f61;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .process-card .content .hd-typ2 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .process-card .content .hd-typ2 {
    font-size: 22px;
  }
}
.process-card .content .txt {
  font-size: 14px;
  color: #4a5d73;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .process-card .content .txt {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .process-card .content .txt {
    font-size: 18px;
  }
}

.process-arrow {
  position: absolute;
  bottom: -25px;
  right: 30px;
  transform: rotate(90deg);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .process-arrow {
    right: 80px;
    bottom: -25px;
  }
}
@media (min-width: 992px) {
  .process-arrow {
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%) rotate(0);
  }
}
.process-arrow svg {
  width: 30px;
}
@media (min-width: 1200px) {
  .process-arrow svg {
    width: 42px;
  }
}

.process-btn-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .process-btn-wrapper {
    margin-top: 60px;
  }
}

.scrutiny-svg {
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .scrutiny-svg {
    width: 60px;
    height: 60px;
  }
}

/* --- Infra Grid Section --- */
.infra-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .infra-grid-wrapper {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }
}
@media (min-width: 992px) {
  .infra-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    -moz-column-gap: 300px;
         column-gap: 300px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .infra-grid-wrapper {
    -moz-column-gap: 410px;
         column-gap: 410px;
    margin-top: 60px;
  }
}

.infra-center-img {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .infra-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    z-index: 1;
  }
}
.infra-center-img img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .infra-center-img img {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .infra-center-img img {
    max-width: 380px;
  }
}

.infra-card {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .infra-card {
    min-height: 274px;
  }
}
@media (min-width: 1200px) {
  .infra-card {
    min-height: 238px;
  }
}
.infra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(45deg, rgba(0, 31, 97, 0.5) 0%, rgba(255, 255, 255, 0.3) 22%, rgba(255, 255, 255, 0.3) 78%, rgba(0, 31, 97, 0.2) 100%);
  /* Hollow center */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (min-width: 768px) {
  .infra-card {
    padding: 30px 40px;
    gap: 12px;
    border-radius: 40px;
  }
}
@media (min-width: 992px) {
  .infra-card {
    border-radius: 40px;
    max-width: 440px;
    min-height: 238px;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .infra-card {
    gap: 40px;
    padding: 40px;
  }
}
.infra-card .card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 992px) {
  .infra-card .card-header {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .infra-card .card-header {
    gap: 36px;
  }
}
.infra-card .card-header .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #001f61 0%, #425de8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra-card .card-header .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
}
@media (min-width: 768px) {
  .infra-card .card-header .icon-wrap svg {
    width: 30px;
    height: 30px;
  }
}
.infra-card .card-header .title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .infra-card .card-header .title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .infra-card .card-header .title {
    font-size: 22px;
  }
}
.infra-card .content .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .infra-card .content .desc {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .infra-card .content .desc {
    font-size: 18px;
  }
}

.how-works-section .extra {
  color: rgba(255, 255, 255, 0.8);
}
.how-works-section .extra1 {
  margin-bottom: 18px !important;
}
@media (min-width: 768px) {
  .how-works-section .extra1 {
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1200px) {
  .how-works-section .extra1 {
    margin-bottom: 30px !important;
  }
}

.top {
  margin-top: 38px;
}
@media (min-width: 768px) {
  .top {
    margin-top: 42px;
  }
}
@media (min-width: 1200px) {
  .top {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .gov-gap-col img {
    height: 630px;
  }
}
.gov-gap-col .txt-1 {
  font-size: var(--font-size-2);
  line-height: 1.6;
  color: #001f61;
  font-weight: 400;
}
.gov-gap-col .txt {
  color: #4a5d73;
}

.image-center {
  display: flex;
  justify-content: center;
}

.mlro-section .gov-gap-grid {
  gap: 38px;
}
@media (min-width: 768px) {
  .mlro-section .gov-gap-grid {
    gap: 42px;
  }
}
@media (min-width: 1200px) {
  .mlro-section .gov-gap-grid {
    gap: 71px;
  }
}
@media (min-width: 768px) {
  .mlro-section .gov-gap-col .txt {
    max-width: 675px;
  }
}/*# sourceMappingURL=new.css.map */