@font-face {
  font-family: "Helvetica Neue INPESA";
  src: url("asstes/fonts/helvetica-neue/HelveticaNeueUltraLight.otf") format("opentype"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueUltraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue INPESA";
  src: url("asstes/fonts/helvetica-neue/HelveticaNeueLight.woff") format("woff"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueLight.otf") format("opentype"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue INPESA";
  src: url("asstes/fonts/helvetica-neue/HelveticaNeue.woff") format("woff"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueRoman.otf") format("opentype"),
    url("asstes/fonts/helvetica-neue/HelveticaNeue.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue INPESA";
  src: url("asstes/fonts/helvetica-neue/HelveticaNeueMedium.otf") format("opentype"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue INPESA";
  src: url("asstes/fonts/helvetica-neue/HelveticaNeueBold.otf") format("opentype"),
    url("asstes/fonts/helvetica-neue/HelveticaNeueBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --app-text: #5B5B5F;
  --app-bg: #EAEAEA;
  --app-text-muted: #475569;
  --app-link: #0b57d0;
  --scrollbar-track-darken: rgba(0, 0, 0, 0.12);
  --scrollbar-thumb-darken: rgba(0, 0, 0, 0.28);
  --scrollbar-thumb-darken-hover: rgba(0, 0, 0, 0.38);
  --scrollbar-size: 12px;
  --inpesa-layout-width: 1366px;
  --inpesa-layout-gutter: 20px;
  --inpesa-header-height: 95px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-darken) var(--scrollbar-track-darken);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track-darken);
}

*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-darken);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track-darken);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-darken-hover);
}

html {
    width: 100dvw;
    min-height: 100dvh;
    height: 100dvh;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: center;
}

body {
    background: var(--app-bg);
    color: var(--app-text);
    font-family: "Helvetica Neue INPESA", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    overflow: hidden;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
    width: 100%;
    min-height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0 auto;
}

.app__content{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: calc(100dvh - var(--inpesa-header-height));
    height: calc(100dvh - var(--inpesa-header-height));
    top: var(--inpesa-header-height);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scrollbar-gutter: stable;
}

a {
  color: inherit;
}

a,
button {
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img,
video {
  image-rendering: auto;
  backface-visibility: hidden;
}

main{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 100%;
}

main > div{
    position: relative;
    display: block;
    width:100%;
}

section{
  max-width: var(--inpesa-layout-width);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 var(--inpesa-layout-gutter);
}

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

.inpesa-boxed {
  width: min(100%, var(--inpesa-inner-width, var(--inpesa-layout-width)));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--inpesa-inner-gutter, var(--inpesa-layout-gutter));
  padding-right: var(--inpesa-inner-gutter, var(--inpesa-layout-gutter));
  box-sizing: border-box;
}

.inpesa-full-bleed {
  width: 100dvw;
  max-width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  padding-left: 0;
  padding-right: 0;
}

.inpesa-full-bleed__inner {
  width: min(100%, var(--inpesa-inner-width, var(--inpesa-layout-width)));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--inpesa-inner-gutter, var(--inpesa-layout-gutter));
  padding-right: var(--inpesa-inner-gutter, var(--inpesa-layout-gutter));
  box-sizing: border-box;
}

.btn.primary {
  display: inline-block;
  padding: 20px 60px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  border-radius: 30px;
  height: 55px;
  line-height: normal;
}

.pull-right{
  margin-left: auto;
  float: right;
}

.btn-gray {
  background-color: #5b5b5f;
}

.home__section-15-form.is-hidden {
  display: none;
}

.home__section-15-feedback {
  border-radius: 15px;
  padding: 24px 20px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  text-align: center;
}

.home__section-15-feedback--success {
  background: #ffffff;
  border: 1px solid #6ba539;
  color: #5b5b5f;
}

.home__section-15-feedback--error {
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid #d0006f;
  color: #73204b;
  font-size: 15px;
}

body.inpesa-contact-modal-open {
  overflow: hidden;
}

.inpesa-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inpesa-contact-modal.is-active {
  display: flex;
}

.inpesa-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.inpesa-contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 16px;
  background: #ffffff;
  padding: 28px 24px 24px;
}

.inpesa-contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #5b5b5f;
  color: #ffffff;
  cursor: pointer;
}

.inpesa-contact-modal__dialog h2 {
  margin: 0 0 16px;
  color: #005f83;
  font-size: 28px;
  font-weight: 700;
}

.inpesa-contact-modal .home__section-15-right {
  min-width: 0;
}

.inpesa-contact-modal .home__section-15-form {
  display: grid;
  gap: 14px;
}

.inpesa-contact-modal .home__section-15-form input,
.inpesa-contact-modal .home__section-15-form textarea {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 15px;
  background: #ffffff;
  color: #464545;
  font-size: 16px;
  line-height: 1.2;
  padding: 14px 16px;
  box-sizing: border-box;
  font-family: "Helvetica Neue INPESA", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.inpesa-contact-modal .home__section-15-form input::placeholder,
.inpesa-contact-modal .home__section-15-form textarea::placeholder {
  color: #464545;
  opacity: 1;
}

.inpesa-contact-modal .home__section-15-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inpesa-contact-modal .home__section-15-form .btn.primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: stretch;
  background-color: #009cbd;
  color: #ffffff;
  border: 0;
  text-align: center;
  font-family: "Helvetica Neue INPESA", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.inpesa-contact-modal .home__section-15-form .btn.primary > img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
