/* node_modules/intl-tel-input/build/css/intlTelInput.css */
:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-icon-color: #555;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-globe-height: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}
.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-icon-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-icon-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 28px;
}
[dir=rtl] .iti__search-input {
  padding-left: inherit;
  padding-right: 30px;
  background-position: right 8px center;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__search-input::-webkit-search-cancel-button {
  appearance: none;
}
.iti__search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.iti__search-icon {
  position: absolute;
  left: 8px;
  display: flex;
  pointer-events: none;
}
[dir=rtl] .iti__search-icon {
  left: auto;
  right: 8px;
}
.iti__search-icon-svg {
  stroke: var(--iti-icon-color);
  fill: none;
  stroke-width: 3;
}
.iti__search-clear {
  position: absolute;
  right: 4px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
  width: 24px;
  height: 24px;
}
.iti__search-clear .iti__search-clear-x {
  stroke-width: 2;
}
.iti__search-clear .iti__search-clear-bg {
  fill: var(--iti-icon-color);
}
[dir=rtl] .iti__search-clear {
  right: auto;
  left: 4px;
}
.iti__search-clear:hover,
.iti__search-clear:focus-visible {
  background: var(--iti-hover-color);
  outline: none;
}
.iti__no-results {
  text-align: center;
  padding: 30px 0;
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag,
.iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag,
[dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) button.iti__selected-country {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}
.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: image-set(var(--iti-path-flags-1x) 1x, var(--iti-path-flags-2x) 2x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}
.iti__ac {
  --iti-flag-offset: 0px;
}
.iti__ad {
  --iti-flag-offset: -16px;
}
.iti__ae {
  --iti-flag-offset: -32px;
}
.iti__af {
  --iti-flag-offset: -48px;
}
.iti__ag {
  --iti-flag-offset: -64px;
}
.iti__ai {
  --iti-flag-offset: -80px;
}
.iti__al {
  --iti-flag-offset: -96px;
}
.iti__am {
  --iti-flag-offset: -112px;
}
.iti__ao {
  --iti-flag-offset: -128px;
}
.iti__ar {
  --iti-flag-offset: -144px;
}
.iti__as {
  --iti-flag-offset: -160px;
}
.iti__at {
  --iti-flag-offset: -176px;
}
.iti__au {
  --iti-flag-offset: -192px;
}
.iti__aw {
  --iti-flag-offset: -208px;
}
.iti__ax {
  --iti-flag-offset: -224px;
}
.iti__az {
  --iti-flag-offset: -240px;
}
.iti__ba {
  --iti-flag-offset: -256px;
}
.iti__bb {
  --iti-flag-offset: -272px;
}
.iti__bd {
  --iti-flag-offset: -288px;
}
.iti__be {
  --iti-flag-offset: -304px;
}
.iti__bf {
  --iti-flag-offset: -320px;
}
.iti__bg {
  --iti-flag-offset: -336px;
}
.iti__bh {
  --iti-flag-offset: -352px;
}
.iti__bi {
  --iti-flag-offset: -368px;
}
.iti__bj {
  --iti-flag-offset: -384px;
}
.iti__bl {
  --iti-flag-offset: -400px;
}
.iti__bm {
  --iti-flag-offset: -416px;
}
.iti__bn {
  --iti-flag-offset: -432px;
}
.iti__bo {
  --iti-flag-offset: -448px;
}
.iti__bq {
  --iti-flag-offset: -464px;
}
.iti__br {
  --iti-flag-offset: -480px;
}
.iti__bs {
  --iti-flag-offset: -496px;
}
.iti__bt {
  --iti-flag-offset: -512px;
}
.iti__bw {
  --iti-flag-offset: -528px;
}
.iti__by {
  --iti-flag-offset: -544px;
}
.iti__bz {
  --iti-flag-offset: -560px;
}
.iti__ca {
  --iti-flag-offset: -576px;
}
.iti__cc {
  --iti-flag-offset: -592px;
}
.iti__cd {
  --iti-flag-offset: -608px;
}
.iti__cf {
  --iti-flag-offset: -624px;
}
.iti__cg {
  --iti-flag-offset: -640px;
}
.iti__ch {
  --iti-flag-offset: -656px;
}
.iti__ci {
  --iti-flag-offset: -672px;
}
.iti__ck {
  --iti-flag-offset: -688px;
}
.iti__cl {
  --iti-flag-offset: -704px;
}
.iti__cm {
  --iti-flag-offset: -720px;
}
.iti__cn {
  --iti-flag-offset: -736px;
}
.iti__co {
  --iti-flag-offset: -752px;
}
.iti__cr {
  --iti-flag-offset: -768px;
}
.iti__cu {
  --iti-flag-offset: -784px;
}
.iti__cv {
  --iti-flag-offset: -800px;
}
.iti__cw {
  --iti-flag-offset: -816px;
}
.iti__cx {
  --iti-flag-offset: -832px;
}
.iti__cy {
  --iti-flag-offset: -848px;
}
.iti__cz {
  --iti-flag-offset: -864px;
}
.iti__de {
  --iti-flag-offset: -880px;
}
.iti__dj {
  --iti-flag-offset: -896px;
}
.iti__dk {
  --iti-flag-offset: -912px;
}
.iti__dm {
  --iti-flag-offset: -928px;
}
.iti__do {
  --iti-flag-offset: -944px;
}
.iti__dz {
  --iti-flag-offset: -960px;
}
.iti__ec {
  --iti-flag-offset: -976px;
}
.iti__ee {
  --iti-flag-offset: -992px;
}
.iti__eg {
  --iti-flag-offset: -1008px;
}
.iti__eh {
  --iti-flag-offset: -1024px;
}
.iti__er {
  --iti-flag-offset: -1040px;
}
.iti__es {
  --iti-flag-offset: -1056px;
}
.iti__et {
  --iti-flag-offset: -1072px;
}
.iti__fi {
  --iti-flag-offset: -1088px;
}
.iti__fj {
  --iti-flag-offset: -1104px;
}
.iti__fk {
  --iti-flag-offset: -1120px;
}
.iti__fm {
  --iti-flag-offset: -1136px;
}
.iti__fo {
  --iti-flag-offset: -1152px;
}
.iti__fr {
  --iti-flag-offset: -1168px;
}
.iti__ga {
  --iti-flag-offset: -1184px;
}
.iti__gb {
  --iti-flag-offset: -1200px;
}
.iti__gd {
  --iti-flag-offset: -1216px;
}
.iti__ge {
  --iti-flag-offset: -1232px;
}
.iti__gf {
  --iti-flag-offset: -1248px;
}
.iti__gg {
  --iti-flag-offset: -1264px;
}
.iti__gh {
  --iti-flag-offset: -1280px;
}
.iti__gi {
  --iti-flag-offset: -1296px;
}
.iti__gl {
  --iti-flag-offset: -1312px;
}
.iti__gm {
  --iti-flag-offset: -1328px;
}
.iti__gn {
  --iti-flag-offset: -1344px;
}
.iti__gp {
  --iti-flag-offset: -1360px;
}
.iti__gq {
  --iti-flag-offset: -1376px;
}
.iti__gr {
  --iti-flag-offset: -1392px;
}
.iti__gt {
  --iti-flag-offset: -1408px;
}
.iti__gu {
  --iti-flag-offset: -1424px;
}
.iti__gw {
  --iti-flag-offset: -1440px;
}
.iti__gy {
  --iti-flag-offset: -1456px;
}
.iti__hk {
  --iti-flag-offset: -1472px;
}
.iti__hn {
  --iti-flag-offset: -1488px;
}
.iti__hr {
  --iti-flag-offset: -1504px;
}
.iti__ht {
  --iti-flag-offset: -1520px;
}
.iti__hu {
  --iti-flag-offset: -1536px;
}
.iti__id {
  --iti-flag-offset: -1552px;
}
.iti__ie {
  --iti-flag-offset: -1568px;
}
.iti__il {
  --iti-flag-offset: -1584px;
}
.iti__im {
  --iti-flag-offset: -1600px;
}
.iti__in {
  --iti-flag-offset: -1616px;
}
.iti__io {
  --iti-flag-offset: -1632px;
}
.iti__iq {
  --iti-flag-offset: -1648px;
}
.iti__ir {
  --iti-flag-offset: -1664px;
}
.iti__is {
  --iti-flag-offset: -1680px;
}
.iti__it {
  --iti-flag-offset: -1696px;
}
.iti__je {
  --iti-flag-offset: -1712px;
}
.iti__jm {
  --iti-flag-offset: -1728px;
}
.iti__jo {
  --iti-flag-offset: -1744px;
}
.iti__jp {
  --iti-flag-offset: -1760px;
}
.iti__ke {
  --iti-flag-offset: -1776px;
}
.iti__kg {
  --iti-flag-offset: -1792px;
}
.iti__kh {
  --iti-flag-offset: -1808px;
}
.iti__ki {
  --iti-flag-offset: -1824px;
}
.iti__km {
  --iti-flag-offset: -1840px;
}
.iti__kn {
  --iti-flag-offset: -1856px;
}
.iti__kp {
  --iti-flag-offset: -1872px;
}
.iti__kr {
  --iti-flag-offset: -1888px;
}
.iti__kw {
  --iti-flag-offset: -1904px;
}
.iti__ky {
  --iti-flag-offset: -1920px;
}
.iti__kz {
  --iti-flag-offset: -1936px;
}
.iti__la {
  --iti-flag-offset: -1952px;
}
.iti__lb {
  --iti-flag-offset: -1968px;
}
.iti__lc {
  --iti-flag-offset: -1984px;
}
.iti__li {
  --iti-flag-offset: -2000px;
}
.iti__lk {
  --iti-flag-offset: -2016px;
}
.iti__lr {
  --iti-flag-offset: -2032px;
}
.iti__ls {
  --iti-flag-offset: -2048px;
}
.iti__lt {
  --iti-flag-offset: -2064px;
}
.iti__lu {
  --iti-flag-offset: -2080px;
}
.iti__lv {
  --iti-flag-offset: -2096px;
}
.iti__ly {
  --iti-flag-offset: -2112px;
}
.iti__ma {
  --iti-flag-offset: -2128px;
}
.iti__mc {
  --iti-flag-offset: -2144px;
}
.iti__md {
  --iti-flag-offset: -2160px;
}
.iti__me {
  --iti-flag-offset: -2176px;
}
.iti__mf {
  --iti-flag-offset: -2192px;
}
.iti__mg {
  --iti-flag-offset: -2208px;
}
.iti__mh {
  --iti-flag-offset: -2224px;
}
.iti__mk {
  --iti-flag-offset: -2240px;
}
.iti__ml {
  --iti-flag-offset: -2256px;
}
.iti__mm {
  --iti-flag-offset: -2272px;
}
.iti__mn {
  --iti-flag-offset: -2288px;
}
.iti__mo {
  --iti-flag-offset: -2304px;
}
.iti__mp {
  --iti-flag-offset: -2320px;
}
.iti__mq {
  --iti-flag-offset: -2336px;
}
.iti__mr {
  --iti-flag-offset: -2352px;
}
.iti__ms {
  --iti-flag-offset: -2368px;
}
.iti__mt {
  --iti-flag-offset: -2384px;
}
.iti__mu {
  --iti-flag-offset: -2400px;
}
.iti__mv {
  --iti-flag-offset: -2416px;
}
.iti__mw {
  --iti-flag-offset: -2432px;
}
.iti__mx {
  --iti-flag-offset: -2448px;
}
.iti__my {
  --iti-flag-offset: -2464px;
}
.iti__mz {
  --iti-flag-offset: -2480px;
}
.iti__na {
  --iti-flag-offset: -2496px;
}
.iti__nc {
  --iti-flag-offset: -2512px;
}
.iti__ne {
  --iti-flag-offset: -2528px;
}
.iti__nf {
  --iti-flag-offset: -2544px;
}
.iti__ng {
  --iti-flag-offset: -2560px;
}
.iti__ni {
  --iti-flag-offset: -2576px;
}
.iti__nl {
  --iti-flag-offset: -2592px;
}
.iti__no {
  --iti-flag-offset: -2608px;
}
.iti__np {
  --iti-flag-offset: -2624px;
}
.iti__nr {
  --iti-flag-offset: -2640px;
}
.iti__nu {
  --iti-flag-offset: -2656px;
}
.iti__nz {
  --iti-flag-offset: -2672px;
}
.iti__om {
  --iti-flag-offset: -2688px;
}
.iti__pa {
  --iti-flag-offset: -2704px;
}
.iti__pe {
  --iti-flag-offset: -2720px;
}
.iti__pf {
  --iti-flag-offset: -2736px;
}
.iti__pg {
  --iti-flag-offset: -2752px;
}
.iti__ph {
  --iti-flag-offset: -2768px;
}
.iti__pk {
  --iti-flag-offset: -2784px;
}
.iti__pl {
  --iti-flag-offset: -2800px;
}
.iti__pm {
  --iti-flag-offset: -2816px;
}
.iti__pr {
  --iti-flag-offset: -2832px;
}
.iti__ps {
  --iti-flag-offset: -2848px;
}
.iti__pt {
  --iti-flag-offset: -2864px;
}
.iti__pw {
  --iti-flag-offset: -2880px;
}
.iti__py {
  --iti-flag-offset: -2896px;
}
.iti__qa {
  --iti-flag-offset: -2912px;
}
.iti__re {
  --iti-flag-offset: -2928px;
}
.iti__ro {
  --iti-flag-offset: -2944px;
}
.iti__rs {
  --iti-flag-offset: -2960px;
}
.iti__ru {
  --iti-flag-offset: -2976px;
}
.iti__rw {
  --iti-flag-offset: -2992px;
}
.iti__sa {
  --iti-flag-offset: -3008px;
}
.iti__sb {
  --iti-flag-offset: -3024px;
}
.iti__sc {
  --iti-flag-offset: -3040px;
}
.iti__sd {
  --iti-flag-offset: -3056px;
}
.iti__se {
  --iti-flag-offset: -3072px;
}
.iti__sg {
  --iti-flag-offset: -3088px;
}
.iti__sh {
  --iti-flag-offset: -3104px;
}
.iti__si {
  --iti-flag-offset: -3120px;
}
.iti__sj {
  --iti-flag-offset: -3136px;
}
.iti__sk {
  --iti-flag-offset: -3152px;
}
.iti__sl {
  --iti-flag-offset: -3168px;
}
.iti__sm {
  --iti-flag-offset: -3184px;
}
.iti__sn {
  --iti-flag-offset: -3200px;
}
.iti__so {
  --iti-flag-offset: -3216px;
}
.iti__sr {
  --iti-flag-offset: -3232px;
}
.iti__ss {
  --iti-flag-offset: -3248px;
}
.iti__st {
  --iti-flag-offset: -3264px;
}
.iti__sv {
  --iti-flag-offset: -3280px;
}
.iti__sx {
  --iti-flag-offset: -3296px;
}
.iti__sy {
  --iti-flag-offset: -3312px;
}
.iti__sz {
  --iti-flag-offset: -3328px;
}
.iti__tc {
  --iti-flag-offset: -3344px;
}
.iti__td {
  --iti-flag-offset: -3360px;
}
.iti__tg {
  --iti-flag-offset: -3376px;
}
.iti__th {
  --iti-flag-offset: -3392px;
}
.iti__tj {
  --iti-flag-offset: -3408px;
}
.iti__tk {
  --iti-flag-offset: -3424px;
}
.iti__tl {
  --iti-flag-offset: -3440px;
}
.iti__tm {
  --iti-flag-offset: -3456px;
}
.iti__tn {
  --iti-flag-offset: -3472px;
}
.iti__to {
  --iti-flag-offset: -3488px;
}
.iti__tr {
  --iti-flag-offset: -3504px;
}
.iti__tt {
  --iti-flag-offset: -3520px;
}
.iti__tv {
  --iti-flag-offset: -3536px;
}
.iti__tw {
  --iti-flag-offset: -3552px;
}
.iti__tz {
  --iti-flag-offset: -3568px;
}
.iti__ua {
  --iti-flag-offset: -3584px;
}
.iti__ug {
  --iti-flag-offset: -3600px;
}
.iti__us {
  --iti-flag-offset: -3616px;
}
.iti__uy {
  --iti-flag-offset: -3632px;
}
.iti__uz {
  --iti-flag-offset: -3648px;
}
.iti__va {
  --iti-flag-offset: -3664px;
}
.iti__vc {
  --iti-flag-offset: -3680px;
}
.iti__ve {
  --iti-flag-offset: -3696px;
}
.iti__vg {
  --iti-flag-offset: -3712px;
}
.iti__vi {
  --iti-flag-offset: -3728px;
}
.iti__vn {
  --iti-flag-offset: -3744px;
}
.iti__vu {
  --iti-flag-offset: -3760px;
}
.iti__wf {
  --iti-flag-offset: -3776px;
}
.iti__ws {
  --iti-flag-offset: -3792px;
}
.iti__xk {
  --iti-flag-offset: -3808px;
}
.iti__ye {
  --iti-flag-offset: -3824px;
}
.iti__yt {
  --iti-flag-offset: -3840px;
}
.iti__za {
  --iti-flag-offset: -3856px;
}
.iti__zm {
  --iti-flag-offset: -3872px;
}
.iti__zw {
  --iti-flag-offset: -3888px;
}
.iti__globe {
  background: none;
  box-shadow: none;
  height: var(--iti-globe-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.iti__globe .iti__globe-svg {
  width: 100%;
  height: 100%;
  fill: var(--iti-icon-color);
}
@supports (-webkit-appearance: none) and (not (background: -webkit-canvas(foo))) {
  .iti__tel-input:focus {
    outline-offset: 1px;
  }
}
:root {
  --iti-path-flags-1x: url("./media/flags.webp");
  --iti-path-flags-2x: url("./media/flags@2x.webp");
}

/* src/styles.scss */
@media only screen and (min-width: 300px) {
  * {
    text-align: left;
  }
  button,
  .cta-buttons,
  .cta-buttons * {
    text-align: center;
  }
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/inter-v20-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url(/assets/fonts/inter-v20-latin-italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/inter-v20-latin-500.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url(/assets/fonts/inter-v20-latin-500italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/inter-v20-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url(/assets/fonts/inter-v20-latin-700italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/playfair-display-v40-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: url(/assets/fonts/playfair-display-v40-latin-italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/playfair-display-v40-latin-500.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  src: url(/assets/fonts/playfair-display-v40-latin-500italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  src: url(/assets/fonts/playfair-display-v40-latin-600.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  src: url(/assets/fonts/playfair-display-v40-latin-600italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/playfair-display-v40-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  src: url(/assets/fonts/playfair-display-v40-latin-700italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/bricolage-grotesque-v9-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/bricolage-grotesque-v9-latin-500.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  src: url(/assets/fonts/bricolage-grotesque-v9-latin-600.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/bricolage-grotesque-v9-latin-700.woff2) format("woff2");
}
* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.bricolage {
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 0;
  font-weight: 600;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  display: inline;
}
@media (min-width: 300px) {
  h1 {
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -3%;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 54px;
  }
}
@media (min-width: 1536px) {
  h1 {
    font-size: 72px;
    text-transform: capitalize;
  }
}
h1,
h1 .char,
h1 span,
h2,
h2 span,
h2 .char {
  font-family: "Bricolage Grotesque", sans-serif;
  text-transform: none;
  font-weight: 600;
  font-style: normal;
}
@media (min-width: 768px) {
  h1,
  h1 .char,
  h1 span,
  h2,
  h2 span,
  h2 .char {
    display: block;
  }
}
h1 em,
h1 em .char,
h2 em,
h2 em .char {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}
h1,
h1 .char {
  text-transform: capitalize;
}
h1 span,
h1 span .char {
  text-transform: capitalize;
}
.hero h1,
.hero h1 .char,
.hero h1 span,
.hero h1 span .char {
  text-transform: none !important;
}
@media (min-width: 300px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -3%;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 42px;
  }
}
@media (min-width: 1536px) {
  h2 {
    font-size: 60px;
  }
}
@media (min-width: 1700px) {
  h2 {
    font-size: 68px;
    letter-spacing: 0%;
    line-height: 1.3;
  }
  h2.title-small {
    font-size: 32px;
    line-height: 130%;
  }
}
@media (min-width: 640px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1536px) {
  h3 {
    font-size: 54px;
    line-height: 64.8px;
    letter-spacing: 0%;
  }
}
h4 {
  font-size: 50px;
  line-height: 35px;
  letter-spacing: 0%;
}
h5 {
  font-size: 48px;
  line-height: 57.6px;
  letter-spacing: 0%;
}
@media (min-width: 300px) {
  h6 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 1536px) {
  h6 {
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.32px;
  }
}
label {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 27px;
  letter-spacing: 0%;
}
@media (min-width: 300px) {
  p {
    font-size: 0.875rem;
    line-height: 130%;
    letter-spacing: 0%;
  }
}
@media (min-width: 1280px) {
  p {
    font-size: 1.125rem;
    line-height: 160%;
  }
}
@media (min-width: 1536px) {
  p {
    font-weight: 400;
    letter-spacing: -0.32px;
  }
}
small {
  font-size: 1rem;
  line-height: 200%;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
ul,
ol {
  list-style-type: none;
  padding: 0;
}
@media (min-width: 300px) {
  .cta-buttons,
  .cta-buttons * {
    font-size: 10px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
  }
}
@media (min-width: 1440px) {
  .cta-buttons,
  .cta-buttons * {
    font-size: 1rem;
  }
}
@media (min-width: 300px) {
  .primary-buttons span,
  .secondary-buttons span {
    font-size: 14px;
  }
}
:root {
  --brand: #1A5AD9;
  --primary: #0A0D14;
  --title: var(--primary);
  --title-s: #08080C;
  --text: #31353F;
  --border: #E2E4E9;
  --border-light: #F2F2F2;
  --white: #ffffff;
  --text-light: #526279;
  --navbar-dark: #212735;
  --mega-menu: #EDEDED;
  --error: #dc2626;
  --success: #22c55e;
  --bg-gradiant:
    linear-gradient(
      180deg,
      #050203 0%,
      #050203 35%,
      #1E1D20 100%);
  --bg-default: #1C1C1C;
  --bg-surface: #101010;
  --bg-weak: #F5F7FA;
  --navbar-bg: #f9f9f9;
  --bg-white: var(--white);
  --text-strong: var(--primary);
  --text-sub: #525866;
  --text-soft: #99A0AE;
  --text-disabled: #CACFD8;
  --text-white: var(--white);
  --stroke-strong: #0E121B;
  --stroke-sub: var(--text-disabled);
  --stroke-soft: #E1E4EA;
  --stroke-white: var(--white);
  --icon-strong: var(--stroke-strong);
  --icon-sub: var(--text-sub);
  --icon-soft: var(--text-soft);
  --icon-disabled: var(--text-disabled);
  --icon-white: var(--white);
  --home: #9967F3;
  --infinity: #335CFF;
  --infinity-gradiant:
    linear-gradient(
      137.7deg,
      #0448EF 7.76%,
      #337EF9 81.25%);
  --infinity-light: #C0D5FF;
  --infinity-lighter: #EBF1FF;
  --assets: #FF652C;
  --assets-gradiant:
    linear-gradient(
      180deg,
      #FF652C 0%,
      #993D1A 100%);
  --assets-light: #FEF3EB;
  --assets-lighter: #FFF1EB;
  --itsm: #FF932C;
  --itsm-gradiant:
    linear-gradient(
      180deg,
      #FF7D00 0%,
      #994B00 100%);
  --itsm-light: #FEF7EC;
  --itsm-lighter: #FEF3EB;
  --oss: #28C76F;
  --oss-gradiant:
    linear-gradient(
      180deg,
      #28C76F 0%,
      #136136 100%);
  --oss-light: #EFFAF6;
  --oss-lighter: #E0FAEC;
  --nccm: #EA5455;
  --nccm-gradiant:
    linear-gradient(
      180deg,
      #EA5455 0%,
      #842F30 100%);
  --nccm-light: #FEF7EC;
  --nccm-lighter: #FFF7E0;
  --nms: #008A9B;
  --nms-gradiant:
    linear-gradient(
      180deg,
      #008A9B 0%,
      #002F35 100%);
  --nms-light: #F2FCFB;
  --nms-lighter: #EBF8FF;
  --aiops: #6E3FF3;
  --aiops-gradiant:
    linear-gradient(
      180deg,
      #6E3FF3 0%,
      #40258D 100%);
  --aiops-light: #EEEBFF;
  --aiops-lighter: #EFEBFF;
  --irec: rgb(96, 165, 250);
  --contact-us: #6E3FF3;
}
body {
  background-color: var(--white);
}
h1,
h1 span,
h2 span,
h3,
h4,
h5,
h6 {
  color: var(--title);
}
p,
span {
  color: var(--text);
}
.primary-buttons,
.primary-buttons * {
  background-color: var(--primary);
  color: var(--white);
}
.secondary-buttons,
.secondary-buttons * {
  background-color: var(--white);
  color: var(--title);
}
.border {
  border-color: var(--border);
}
.home-theme {
  background-color: var(--home);
}
.home-theme svg path {
  fill: var(--home);
}
.itsm-theme {
  background-color: var(--itsm);
}
.itsm-theme svg path {
  fill: var(--itsm);
}
.assets-theme {
  background-color: var(--assets);
}
.assets-theme svg path {
  fill: var(--assets);
}
.aiops-theme {
  background-color: var(--aiops);
}
.aiops-theme svg path {
  fill: var(--aiops);
}
.nccm-theme {
  background-color: var(--nccm);
}
.nccm-theme svg path {
  fill: var(--nccm);
}
.infinity-theme {
  background-color: var(--infinity);
}
.infinity-theme svg path {
  fill: var(--infinity);
}
.oss-theme {
  background-color: var(--oss);
}
.oss-theme svg path {
  fill: var(--oss);
}
.nms-theme {
  background-color: var(--nms);
}
.nms-theme svg path {
  fill: var(--nms);
}
.infraon-suite-btn {
  background-color: transparent;
}
.emphasis {
  color: var(--white);
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-start {
  align-items: flex-start;
}
.gap-1x {
  gap: 0.25rem;
}
.gap-2x {
  gap: 0.5rem;
}
.gap-3x {
  gap: 0.75rem;
}
.gap-4x {
  gap: 1rem;
}
.gap-5x {
  gap: 1.25rem;
}
.gap-6x {
  gap: 1.5rem;
}
.gap-7x {
  gap: 1.75rem;
}
.gap-8x {
  gap: 2rem;
}
.gap-9x {
  gap: 2.25rem;
}
.gap-10x {
  gap: 2.5rem;
}
.gap-11x {
  gap: 2.75rem;
}
.gap-12x {
  gap: 3rem;
}
.v-top {
  vertical-align: top;
}
.v-middle {
  vertical-align: middle;
}
.v-bottom {
  vertical-align: bottom;
}
@media (min-width: 300px) {
  .cta-buttons {
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1.4;
    gap: 12px;
  }
}
@media (min-width: 768px) {
  .cta-buttons {
    padding: 8px 22px;
    width: fit-content;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
@media (min-width: 300px) {
  h1 {
    margin-bottom: 0rem;
  }
}
h2 {
  margin-bottom: 2rem;
}
@media (min-width: 300px) {
  .section-spacing {
    padding: 40px 20px;
  }
}
@media (min-width: 768px) {
  .section-spacing {
    padding: 60px calc((100% - 648px) / 2);
  }
}
@media (min-width: 1024px) {
  .section-spacing {
    padding: 80px calc((100% - 840px) / 2);
  }
}
@media (min-width: 1280px) {
  .section-spacing {
    padding: 100px calc((100% - 1020px) / 2);
  }
}
@media (min-width: 1536px) {
  .section-spacing {
    padding: 100px calc((100% - 1276px) / 2);
  }
}
ul {
  padding: 0;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: fit-content;
}
.w-max {
  width: max-content;
}
.w-min {
  width: min-content;
}
.w-full {
  width: 100%;
}
.two-line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 300px) {
  br {
    display: none;
  }
}
@media (min-width: 1440px) {
  br {
    display: block;
  }
}
.bubble-wrapper .bubble br {
  display: block !important;
}
.shadow-xs {
  box-shadow: 0px 1px 2px 0px rgba(228, 229, 231, 0.2392156863);
}
.shadow-s {
  box-shadow: 0px 2px 4px 0px rgba(27, 28, 29, 0.0392156863);
}
.shadow-m {
  box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.1019607843);
}
.shadow-l {
  box-shadow: 0px 16px 40px -8px rgba(88, 92, 95, 0.1607843137);
}
.shadow-xl {
  box-shadow: 0px 24px 56px -4px rgba(88, 92, 95, 0.1607843137);
}
.shadow-2xl {
  box-shadow: 0px 40px 96px -8px rgba(88, 92, 95, 0.2);
}
.rounded-full {
  border-radius: 999px;
}
.rounded-s {
  border-radius: 0.25rem;
}
.rounded-m {
  border-radius: 0.5rem;
}
.rounded-l {
  border-radius: 0.75rem;
}
.rounded-xl {
  border-radius: 1rem;
}
.rounded-2xl {
  border-radius: 2rem;
}
.cta-buttons:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button {
  cursor: pointer;
}
* {
  box-sizing: border-box;
}
body.chat-open {
  overflow: hidden;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.capsule-badge-wrapper {
  text-align: center;
}
.capsule-badge-wrapper .capsule-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  background: #F8FAFC;
  padding: 0.5rem 0.85rem;
  font-size: 1.125rem;
  color: #000;
  margin: 0;
  margin-bottom: 0.75rem;
}
.capsule-badge-wrapper .capsule-badge svg,
.capsule-badge-wrapper .capsule-badge img {
  margin-right: 0.5rem;
}
p.section-pill {
  width: fit-content;
  border-radius: 9999px;
  border: 1px solid #DDE5ED;
  color: var(--bg-default);
  background-color: #F8FAFC;
  font-weight: 500;
  margin: 0 auto 1rem;
  padding: 0.75rem 1.5rem;
}
.irc-currency-card svg path,
.irc-choice-card svg path {
  transition: 0.3s all;
}
.irc-currency-card--active svg path:first-of-type,
.irc-currency-card:hover svg path:first-of-type {
  fill: rgb(96, 165, 250);
}
.irc-currency-card--active svg path:last-of-type,
.irc-currency-card:hover svg path:last-of-type {
  stroke: rgb(96, 165, 250);
}
.irc-choice-card--active svg *,
.irc-choice-card:hover svg * {
  stroke: rgb(96, 165, 250);
}
#fw-signin-form {
  width: 100%;
}
.fs-webform-container .fserv-container {
  box-shadow: none !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.fserv-container form {
  padding-top: 0px !important;
}
.fs-webform-container .fserv-form,
.fserv-container div {
  margin: 0 0 !important;
}
.fs-webform-container .fserv-form {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}
@media (min-width: 300px) {
  .fs-webform-container .fserv-form {
    display: block !important;
  }
}
.fs-webform-container label {
  margin-bottom: 0 !important;
}
.fserv-container .fserv-hidden {
  display: none;
}
.fserv-field {
  padding: 0 !important;
  width: calc(50% - 0.5rem);
}
@media (min-width: 300px) {
  .fserv-field {
    width: 100%;
  }
}
.fserv-container div {
  margin-top: 5px;
  margin-bottom: 15px;
}
.formserv-textarea-field {
  width: 100% !important;
}
.formserv-textarea-field textarea {
  rows: 3;
  box-sizing: border-box;
}
.fserv-input-text,
.fs-webform-container .fserv-field .select2-container--default .select2-selection--multiple,
.fserv-textarea {
  border-radius: 8px !important;
}
.fserv-form > div:last-child {
  width: 100% !important;
  padding: 0 !important;
  border-top: none !important;
}
.fserv-form > div:last-child button {
  width: 100% !important;
  border-radius: 8px !important;
  background-color: #050203;
  margin-top: 1rem;
}
.powered-by {
  display: none !important;
}
.fserv-form-name,
.fserv-form-description {
  display: none !important;
}
.modal.micromodal-slide {
  display: none;
}
.modal.micromodal-slide.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.modal__container {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 24px;
  position: relative;
  border-radius: 8px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.iti__selected-country {
  background: #dedede;
  padding-right: 0.75rem;
}
.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
}
@media (min-width: 300px) {
  .nav-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-btn-wrapper .nav-btn {
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-size: 22px;
    padding: 0px 0;
    cursor: pointer;
    max-width: 28px;
    max-height: 14px;
    aspect-ratio: 1;
    border-radius: 4px !important;
  }
  .row-2-content {
    flex-direction: column;
  }
}
@media (min-width: 400px) {
  .nav-btn-wrapper {
    flex-direction: row;
  }
  .nav-btn-wrapper .nav-btn {
    padding: 0px 22px;
    border-radius: 8px !important;
    max-height: 44px;
  }
}
@media (min-width: 768px) {
  .nav-btn {
    display: none;
  }
  .row-2-content {
    flex-direction: row;
  }
}
.pin-spacer {
  width: 100% !important;
}
.emphasis {
  text-align: center;
}
.no-scroll {
  overflow: hidden;
}
.iti__search-input {
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none;
}
.email-error-msg {
  display: none !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
