._spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.8196078431);
  left: 0;
  top: 0;
  display: none;
}
._spinner:before {
  animation: spin 0.6s ease infinite;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  content: "";
  height: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  top: 0%;
  width: 50px;
  z-index: 11;
  margin: auto;
}
._spinner.show {
  display: block;
}

.spinner {
  position: relative;
}
.spinner:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.8196078431);
  left: 0;
  top: 0;
  display: none;
}
.spinner:before {
  display: none;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  content: "";
  animation: spin 0.6s ease infinite;
  height: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  top: 0%;
  width: 50px;
  z-index: 11;
  margin: auto;
}
.spinner.show:after {
  display: block;
}
.spinner.show:before {
  display: block;
}

.btn-spinner {
  height: 100%;
  position: relative;
  z-index: 30;
  width: 100%;
}
.btn-spinner:before {
  animation: spin 0.6s ease infinite;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  content: "";
  display: none;
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  z-index: 11;
  margin: auto;
}
.btn-spinner.show {
  color: transparent !important;
}
.btn-spinner.show:before {
  display: block;
}

.btn {
  position: relative;
}
.btn ._spinner:before {
  width: 10px !important;
  height: 10px !important;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.background-loader {
  height: 200px;
  position: relative;
  width: 100%;
  z-index: 300;
}

.loader {
  position: absolute;
  z-index: 301;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 200px;
  width: 200px;
  overflow: hidden;
  text-align: center;
}

.spinner0 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 303;
  border-radius: 100%;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

.spinner1 {
  width: 100px;
  height: 100px;
  border: 2px solid #97b500;
  animation: spin1 1s linear infinite;
}

.spinner2 {
  width: 70px;
  height: 70px;
  border: 2px solid #97b500;
  animation: negative-spin 2s linear infinite;
}

.spinner3 {
  width: 40px;
  height: 40px;
  border: 2px solid #97b500;
  animation: spin1 4s linear infinite;
}

@keyframes spin1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes negative-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.loader-text {
  position: relative;
  top: 75%;
  color: #97b500;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.search-holder-zero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-holder-zero .btn-searchblog {
  background: transparent;
  border: 0;
  left: 0;
  right: 0;
  top: 3px;
  position: absolute;
  margin-left: auto;
  width: 62px;
}
.search-holder-zero .btn-searchblog:focus {
  color: #97b500 !important;
}
.search-holder-zero .btn-searchblog.show > * {
  opacity: 0;
}
.search-holder-zero .btn-searchblog.show:before {
  width: 20px;
  height: 20px;
}
.search-holder-zero .search {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #97b500;
  border-radius: 50%;
  transition: all 1s;
  z-index: 4;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
.search-holder-zero .search:hover {
  cursor: pointer;
}
.search-holder-zero .search::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 22px;
  right: 0;
  bottom: 0;
  left: 22px;
  width: 12px;
  height: 2px;
  background: #000000;
  transform: rotate(45deg);
  transition: all 0.5s;
}
.search-holder-zero .search::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -5px;
  right: 0;
  bottom: 0;
  left: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #000000;
  transition: all 0.5s;
}
.search-holder-zero input {
  /*position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  outline: none;
  border: 1px solid #97b500;
  //background: #97b500;
  color: black !important;
  padding: 0 80px 0 20px;
  border-radius: 30px;
  transition: all 1s;
  opacity: 0;
  z-index: 5;
  width: 314px;
  width: 100%;
  -webkit-border-radius: 30px;
  letter-spacing: 0.1em;
  padding: 8px 19px;*/
  background-color: #E7F2D9;
  border: 1px solid #E7F2D9;
  border-radius: 80px;
  line-height: 30px;
  padding: 10px 80px 10px 50px;
  width: 100%;
  font-weight: 300;
  color: #0c0c0c !important;
}
@media (max-width: 767px) {
  .search-holder-zero input {
    padding: 10px 60px 10px 20px;
    width: 100%;
  }
}
.search-holder-zero input:focus {
  background-color: transparent;
  border: 1px solid #97b500;
  color: #0c0c0c;
}
.search-holder-zero input:hover {
  /*cursor: pointer;*/
}
@media (min-width: 1024px) {
  .search-holder-zero input {
    /*width: 655px;
    opacity: 1;
    cursor: text;*/
  }
  .search-holder-zero input ~ .search {
    right: -613px;
    background: #ECF4E1;
    z-index: 6;
  }
}
@media (max-width: 767px) {
  .search-holder-zero input:focus {
    width: 300px;
    opacity: 1;
    cursor: text;
  }
  .search-holder-zero input:focus ~ .search {
    right: -250px;
    background: #97b500;
    z-index: 6;
  }
  .search-holder-zero input:focus ~ .search::before {
    top: 0;
    left: 0;
    width: 25px;
    background: #000000;
  }
  .search-holder-zero input:focus ~ .search::after {
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    border: none;
    background: #000000;
    border-radius: 0%;
    transform: rotate(-45deg);
  }
}
.search-holder-zero input {
  /* &::placeholder {
       color: white;
       opacity: 0.5;
       font-weight: bolder;
   }*/
}

.search-results-zero {
  position: absolute;
  left: 0;
  top: 111%;
  width: 100%;
}
.search-results-zero .result-holder {
  background-color: rgba(231, 242, 217, 0.8588235294);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  padding: 5px;
  display: none;
}
.search-results-zero .result-holder > * a {
  padding: 3px 10px;
  margin-bottom: 8px;
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-results-zero .result-holder > * a p {
  margin: 0;
}
.search-results-zero .result-holder > *:last-child a {
  margin-bottom: 0;
}

.search_select_list {
  cursor: pointer;
  min-width: 0;
  position: relative;
  flex-wrap: nowrap !important;
}
.search_select_list .arrow-down {
  color: #7C7C7C;
  cursor: pointer;
  font-size: 6px;
  height: 100%;
  line-height: 25px;
  padding-right: 3px;
  position: absolute;
  right: 3px;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.search_select_list .selected {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  gap: 4px;
  max-width: -webkit-calc(100% - 64px);
  max-width: calc(100% - 64px);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
}
.search_select_list .selected:empty {
  flex: 0 0 0;
  max-width: 0;
  width: 0;
}
.search_select_list .selected > * {
  flex: 0 1 auto;
  margin: 1px 0;
  max-width: 170px;
  min-width: 0;
  overflow: hidden;
  padding: 4px 10px;
  background-color: #838EEB;
  cursor: pointer;
  text-transform: capitalize;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  text-overflow: ellipsis;
  border-radius: 30px;
  letter-spacing: 0px;
  font-size: 13px;
  white-space: nowrap;
}
.search_select_list .selected .icon-closing {
  color: #fff;
  font-size: 14px;
  margin-top: 0;
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.search_select_list .selected .icon-closing:before {
  color: #fff;
}
.search_select_list .hidedElements {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #97b500;
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 auto;
  height: 24px;
  justify-content: center;
  line-height: 1;
  margin-left: 4px;
  min-width: 30px;
  padding: 0 7px;
  order: 2;
  position: static;
  transform: none;
  z-index: 2;
}
.search_select_list input {
  flex: 1 1 70px;
  min-width: 58px;
  order: 3;
  transition: 0.3s;
  border: 0;
  position: relative;
  background-color: transparent;
}
.search_select_list input.typing ~ .clean-input {
  display: inline-block;
  width: 17px;
}
.search_select_list .add-more-option {
  display: none;
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: #accc02;
  border-radius: 100%;
  padding: 0px;
  width: 25px;
  height: 25px;
  text-align: center;
  cursor: pointer;
}
.search_select_list .clean-input {
  align-items: center;
  color: #707070;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  height: 24px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin: auto 5px;
  pointer-events: auto;
  text-align: center;
  width: 24px;
  z-index: 5;
}
.search_select_list .select-list {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #838eeb;
  color: #000;
  border: 0;
  border-radius: 10px;
  display: none;
  margin: 0 auto;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  top: 111%;
  width: 90%;
  z-index: 10;
  /* width */
}
.search_select_list .select-list::-webkit-scrollbar {
  width: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search_select_list .select-list:hover::-webkit-scrollbar {
  width: 8px;
}
.search_select_list .select-list {
  /* Track */
}
.search_select_list .select-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.search_select_list .select-list {
  /* Handle */
}
.search_select_list .select-list::-webkit-scrollbar-thumb {
  background: #888;
}
.search_select_list .select-list:not(:has(li)) {
  display: none !important;
}
.search_select_list .select-list > * {
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: capitalize;
}
.search_select_list .select-list > *:hover {
  background-color: rgba(122, 122, 122, 0.0705882353);
}
.search_select_list .select-list > *[data-indexed=true] {
  background-color: rgba(122, 122, 122, 0.0705882353);
}
.search_select_list .select-list > *:last-child {
  border-bottom: 0;
}
.search_select_list .select-list > * input {
  display: none;
}
.search_select_list .select-list > * input:checked {
  padding: 10px;
}
.search_select_list .select-list > * input:checked ~ img {
  display: block;
}
.search_select_list .select-list > * img {
  display: none;
  width: 20px;
  float: right;
  padding-top: 3px;
}
.search_select_list[data-type=single] .search_list {
  width: 100% !important;
}
.search_select_list[data-type=single] .selected {
  flex: 0 0 0 !important;
  max-width: 0 !important;
  width: 0 !important;
}
.search_select_list[data-type=multiple]:not(.active) input {
  display: none;
}

.earth-component {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  background: transparent;
  isolation: isolate;
  perspective: 1200px;
}
.earth-component .earth-wrap {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(82vmin, 700px);
  aspect-ratio: 1;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transform-style: preserve-3d;
  animation: globeBreathe 7s ease-in-out infinite;
}
.earth-component .earth {
  position: absolute;
  inset: 4%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.54)) drop-shadow(0 0 62px rgba(124, 137, 255, 0.38));
}
.earth-component .earth picture {
  display: contents;
}
.earth-component .earth-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.04);
  animation: earthFloat 9s ease-in-out infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.earth-component .earth-glass,
.earth-component .scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.earth-component .earth-glass {
  background: -o-radial-gradient(32% 18%, circle, rgba(255, 255, 255, 0.54), transparent 14%), -o-linear-gradient(345deg, transparent 30%, rgba(255, 255, 255, 0.24) 47%, transparent 64%);
  background: radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.54), transparent 14%), linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.24) 47%, transparent 64%);
  mix-blend-mode: screen;
  animation: glassSweep 5.6s ease-in-out infinite;
}
.earth-component .scan {
  overflow: hidden;
  opacity: 0.18;
  mix-blend-mode: screen;
  clip-path: circle(49% at 50% 50%);
}
.earth-component .scan-horizontal {
  background: -o-repeating-linear-gradient(bottom, transparent 0 28px, rgba(255, 255, 255, 0.56) 29px, transparent 31px);
  background: repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, 0.56) 29px, transparent 31px);
  animation: scanMove 8s linear infinite;
}
.earth-component .scan-vertical {
  background: -o-repeating-linear-gradient(left, transparent 0 36px, rgba(141, 246, 255, 0.38) 37px, transparent 39px);
  background: repeating-linear-gradient(90deg, transparent 0 36px, rgba(141, 246, 255, 0.38) 37px, transparent 39px);
  animation: scanMove 11s linear infinite reverse;
}
.earth-component .halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.earth-component .halo-outer {
  inset: -1%;
  border: 1px solid rgba(177, 231, 255, 0.22);
  box-shadow: 0 0 22px rgba(141, 246, 255, 0.24), inset 0 0 24px rgba(141, 246, 255, 0.14);
  animation: haloPulse 3.8s ease-in-out infinite;
}
.earth-component .halo-inner {
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.14);
  animation: haloPulse 4.8s ease-in-out infinite reverse;
}
.earth-component .orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: 17%;
  border: 1px solid rgba(220, 246, 255, 0.3);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(141, 246, 255, 0.48));
  transform-style: preserve-3d;
  pointer-events: none;
}
.earth-component .orbit-a {
  transform: translate(-50%, -50%) rotate(-16deg);
  animation: orbitGlow 3.5s ease-in-out infinite;
}
.earth-component .orbit-b {
  transform: translate(-50%, -50%) rotate(18deg) rotateX(58deg);
  animation: orbitGlow 4.2s ease-in-out infinite 0.4s;
}
.earth-component .orbit-c {
  width: 101%;
  transform: translate(-50%, -50%) rotate(42deg) rotateX(64deg);
  animation: orbitGlow 4.8s ease-in-out infinite 0.8s;
}
.earth-component .spark {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px #ffffff, 0 0 26px #8df6ff, 0 0 42px #7f93ff;
  offset-path: ellipse(50% 50% at 50% 50%);
}
.earth-component .spark-a {
  animation: sparkTravel 3.6s linear infinite;
}
.earth-component .spark-b {
  animation: sparkTravel 4.4s linear infinite 0.7s;
}
.earth-component .spark-c {
  animation: sparkTravel 5.2s linear infinite 1.1s;
}
.earth-component .route {
  position: absolute;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 14px rgba(141, 246, 255, 0.42);
  transform-origin: left center;
  pointer-events: none;
}
.earth-component .route::after {
  position: absolute;
  inset: 0;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(40%, #ffffff), color-stop(50%, #8df6ff), color-stop(70%, transparent));
  background: -o-linear-gradient(left, transparent 0%, #ffffff 40%, #8df6ff 50%, transparent 70%);
  background: linear-gradient(90deg, transparent 0%, #ffffff 40%, #8df6ff 50%, transparent 70%);
  transform: translateX(-100%);
  animation: routeShine 2.8s ease-in-out infinite;
}
.earth-component .route-a {
  left: 25%;
  top: 35%;
  width: 37%;
  transform: rotate(7deg);
}
.earth-component .route-b {
  left: 30%;
  top: 55%;
  width: 42%;
  transform: rotate(-19deg);
}
.earth-component .route-c {
  left: 55%;
  top: 47%;
  width: 32%;
  transform: rotate(24deg);
}
.earth-component .route-d {
  left: 22%;
  top: 68%;
  width: 53%;
  transform: rotate(-5deg);
}
.earth-component .route-b::after {
  animation-delay: 0.65s;
}
.earth-component .route-c::after {
  animation-delay: 1.15s;
}
.earth-component .route-d::after {
  animation-delay: 1.7s;
}
.earth-component .pin {
  position: absolute;
  display: grid;
  width: clamp(28px, 5.2vmin, 54px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 0 14px rgba(137, 120, 255, 0.92));
  transform: translate(-50%, -50%);
  transition: filter 220ms ease, transform 220ms ease;
}
.earth-component .pin::before,
.earth-component .pin::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}
.earth-component .pin::before {
  inset: 13%;
  background: -o-radial-gradient(50% 46%, circle, #ffffff 0 17%, transparent 18%), -o-radial-gradient(50% 50%, circle, rgba(125, 104, 255, 0.98), rgba(125, 104, 255, 0.45) 42%, transparent 43%);
  background: radial-gradient(circle at 50% 46%, #ffffff 0 17%, transparent 18%), radial-gradient(circle at 50% 50%, rgba(125, 104, 255, 0.98), rgba(125, 104, 255, 0.45) 42%, transparent 43%);
  clip-path: polygon(50% 100%, 16% 42%, 18% 24%, 28% 10%, 50% 2%, 72% 10%, 82% 24%, 84% 42%);
}
.earth-component .pin::after {
  left: 50%;
  bottom: -13%;
  width: 72%;
  height: 22%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 0 28px rgba(141, 246, 255, 0.48);
  transform: translateX(-50%);
  animation: groundPulse 2.2s ease-in-out infinite;
}
.earth-component .pin span {
  position: absolute;
  inset: -34%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pinWave 2.2s ease-out infinite;
}
.earth-component .pin:hover,
.earth-component .pin.is-active {
  z-index: 5;
  filter: drop-shadow(0 0 24px rgb(141, 246, 255));
  transform: translate(-50%, -50%) scale(1.16);
}
.earth-component .pin-na {
  left: 29%;
  top: 30%;
  animation: pinBob 3.2s ease-in-out infinite;
}
.earth-component .pin-us {
  left: 75%;
  top: 38%;
  animation: pinBob 3.1s ease-in-out infinite 0.25s;
}
.earth-component .pin-eu {
  left: 62%;
  top: 30%;
  animation: pinBob 3.4s ease-in-out infinite 0.5s;
}
.earth-component .pin-sa {
  left: 36%;
  top: 55%;
  animation: pinBob 3.3s ease-in-out infinite 0.8s;
}
.earth-component .pin-india {
  left: 50%;
  top: 43%;
  animation: pinBob 3s ease-in-out infinite 1.05s;
}
.earth-component .pin-asia {
  left: 65%;
  top: 50%;
  animation: pinBob 3.6s ease-in-out infinite 1.35s;
}
.earth-component button {
  font: inherit;
}

@keyframes globeBreathe {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}
@keyframes earthFloat {
  0%, 100% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.038) translate3d(0, -1.2%, 0);
  }
}
@keyframes glassSweep {
  0%, 100% {
    opacity: 0.22;
    transform: translateX(-7%);
  }
  50% {
    opacity: 0.64;
    transform: translateX(7%);
  }
}
@keyframes scanMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 88px 88px;
  }
}
@keyframes haloPulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
@keyframes orbitGlow {
  0%, 100% {
    opacity: 0.28;
    filter: drop-shadow(0 0 6px rgba(141, 246, 255, 0.34));
  }
  50% {
    opacity: 0.78;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.72));
  }
}
@keyframes sparkTravel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}
@keyframes routeShine {
  0% {
    transform: translateX(-105%);
    opacity: 0;
  }
  18%, 70% {
    opacity: 1;
  }
  100% {
    transform: translateX(105%);
    opacity: 0;
  }
}
@keyframes groundPulse {
  0%, 100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.82);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}
@keyframes pinWave {
  0% {
    opacity: 0.55;
    transform: scale(0.45);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
@keyframes pinBob {
  0%, 100% {
    margin-top: 0;
  }
  50% {
    margin-top: -12px;
  }
}
@media (max-width: 740px) {
  .earth-component .earth-wrap {
    width: min(100vmin, 620px);
  }
  .earth-component .pin {
    width: clamp(26px, 7vmin, 44px);
  }
}
.header-area--default {
  z-index: 103;
}
.header-area--default:has(.header-bottom-wrap:not(.is-sticky)) {
  box-shadow: none !important;
  background-color: transparent !important;
  position: relative;
}
.header-area--default:has(.header-bottom-wrap:not(.is-sticky)) .header-area--absolute {
  background-color: transparent !important;
  box-shadow: none !important;
}

.partner-request-hero {
  --partner-primary: #5a5fef;
  --partner-lime: #a5c900;
  --partner-ink: #17171f;
  --partner-muted: #666a78;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f8ff), color-stop(84%, #ffffff));
  background: -o-linear-gradient(top, #f7f8ff 0%, #ffffff 84%);
  background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 84%);
  overflow: hidden;
  padding: 84px 0 58px;
  position: relative;
}
.partner-request-hero:before {
  background-image: -o-linear-gradient(rgba(90, 95, 239, 0.08) 1px, transparent 1px), -o-linear-gradient(left, rgba(90, 95, 239, 0.08) 1px, transparent 1px);
  background-image: linear-gradient(rgba(90, 95, 239, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(90, 95, 239, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  height: 360px;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
}
.partner-request-hero__inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  position: relative;
  z-index: 1;
}
.partner-request-hero__copy {
  animation: partnerCopyIn 0.75s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}
.partner-request-hero__eyebrow {
  background: rgba(90, 95, 239, 0.08);
  border-radius: 999px;
  color: var(--partner-primary);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  padding: 8px 13px;
}
.partner-request-hero h1 {
  color: var(--partner-ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 640px;
}
.partner-request-hero p {
  color: var(--partner-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 610px;
}
.partner-request-hero__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.partner-request-hero__actions span {
  background: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.035);
  color: #30364a;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
}
.partner-request-hero__visual {
  animation: partnerCardIn 0.85s cubic-bezier(0.2, 0.85, 0.2, 1) 0.16s both;
  min-height: 300px;
  position: relative;
}
.partner-request-hero__panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(90, 95, 239, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(44, 47, 100, 0.14);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 230px;
  justify-content: center;
  left: 50%;
  padding: 26px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
}
.partner-request-hero__panel span,
.partner-request-hero__panel small {
  color: var(--partner-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.partner-request-hero__panel strong {
  color: var(--partner-primary);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin: 16px 0 12px;
}
.partner-request-hero__card {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 31, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(44, 47, 100, 0.12);
  color: var(--partner-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 17px;
  position: absolute;
  white-space: nowrap;
}
.partner-request-hero__card--top {
  animation: partnerFloatA 6s ease-in-out 1s infinite;
  right: 0;
  top: 48px;
}
.partner-request-hero__card--bottom {
  animation: partnerFloatB 6.4s ease-in-out 1.2s infinite;
  bottom: 46px;
  left: 0;
}

.partner-request-form {
  margin-bottom: 90px;
  margin-top: -12px;
}
.partner-request-form .main-body {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(90, 95, 239, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(32, 34, 85, 0.1);
  overflow: visible;
  padding: 36px 34px 28px;
}
.partner-request-form .text-main {
  margin: 0 auto;
  max-width: 720px;
}
.partner-request-form .text-main h2 {
  color: #191a24;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.partner-request-form .text-main p {
  color: #747887;
  font-size: 16px;
  line-height: 1.7;
}
.partner-request-form__step {
  background: rgba(90, 95, 239, 0.08);
  border-radius: 999px;
  color: #5a5fef;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 8px 14px;
}
.partner-request-form__trap {
  display: none;
}
.partner-request-form .form-holder {
  margin: 0 auto;
  max-width: 930px;
}
.partner-request-form .form {
  animation: partnerFormIn 0.7s cubic-bezier(0.2, 0.85, 0.2, 1) 0.22s both;
}
.partner-request-form .form.is-submitted {
  animation: partnerFormOut 0.28s ease both;
  pointer-events: none;
}
.partner-request-form .partner-request-field {
  margin-bottom: 22px;
  position: relative;
}
.partner-request-form .partner-request-field:has(.search_select_list.active) {
  z-index: 35;
}
.partner-request-form label {
  color: #262836;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
  padding-left: 4px;
}
.partner-request-form .holder-answer,
.partner-request-form .search_select_list {
  background: #fff !important;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.035);
  color: #17171f;
  min-height: 50px;
  outline: 0;
  padding: 4px 44px 4px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.partner-request-form textarea.holder-answer {
  border-radius: 24px;
  min-height: 140px;
  padding-top: 18px;
  resize: vertical;
}
.partner-request-form select.holder-answer {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.partner-request-form .holder-answer:focus,
.partner-request-form .search_select_list:focus-within {
  background: #ffffff !important;
  border-color: rgba(131, 142, 235, 0.42);
  box-shadow: 0 14px 32px rgba(31, 42, 68, 0.07);
}
.partner-request-form .holder-answer.is-valid,
.partner-request-form .search_select_list.is-valid {
  border-color: rgba(165, 201, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(165, 201, 0, 0.08);
}
.partner-request-form .holder-answer.is-invalid,
.partner-request-form .search_select_list.is-invalid {
  background: #fff7f8 !important;
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}
.partner-request-form .search_select_list {
  overflow: visible;
  padding-bottom: 4px;
  padding-top: 4px;
  position: relative;
  z-index: 4;
}
.partner-request-form .search_select_list.active {
  z-index: 30;
}
.partner-request-form .search_select_list .arrow-down {
  color: #5a5fef;
  font-size: 8px;
  right: 18px;
}
.partner-request-form .search_select_list .selected {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}
.partner-request-form .search_select_list .selected-item {
  background: rgba(90, 95, 239, 0.1) !important;
  border: 0;
  border-radius: 999px;
  color: #4f55de !important;
  flex: 0 1 auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  max-width: 150px;
  min-height: 30px;
  min-width: 0;
  overflow: hidden;
  padding: 9px 28px 9px 12px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.partner-request-form .search_select_list .selected-item .icon-closing {
  right: 9px;
  top: 9px;
}
.partner-request-form .search_select_list .hidedElements {
  color: #5a5fef;
  font-size: 12px;
  font-weight: 800;
  margin-left: 4px;
  position: static;
}
.partner-request-form .search_select_list .select-list {
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.13);
  color: #1f2a44 !important;
  left: 0;
  margin: 0;
  max-height: 210px;
  overflow: auto;
  padding: 6px;
  right: 0;
  top: -webkit-calc(100% + 8px);
  top: calc(100% + 8px);
  width: 100%;
}
.partner-request-form .search_select_list .select-list li {
  align-items: center;
  border-radius: 11px;
  color: #30364a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 12px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.partner-request-form .search_select_list .select-list li:hover, .partner-request-form .search_select_list .select-list li[data-indexed=true] {
  background: rgba(90, 95, 239, 0.08);
  color: #4f55de;
}
.partner-request-form .search_select_list .select-list li input {
  display: none;
}
.partner-request-form .search_select_list .select-list li img {
  height: 13px;
  opacity: 0;
  width: 13px;
}
.partner-request-form .search_select_list .select-list li:has(input:checked) {
  background: rgba(165, 201, 0, 0.12);
  color: #526400;
}
.partner-request-form .search_select_list .select-list li:has(input:checked) img {
  opacity: 1;
}
.partner-request-form .search_list {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #30364a;
  flex: 1 1 130px;
  font-size: 13px;
  min-height: 42px;
  outline: 0;
  padding: 0;
}
.partner-request-form .search_list::-moz-placeholder {
  color: #8f95a6;
}
.partner-request-form .search_list::placeholder {
  color: #8f95a6;
}
.partner-request-form .field-error {
  color: #dc3545;
  display: block;
  font-size: 12px;
  font-weight: 600;
  min-height: 18px;
  opacity: 0;
  padding-left: 6px;
  padding-top: 6px;
  transition: opacity 0.2s ease;
}
.partner-request-form .field-error.has-error {
  opacity: 1;
}
.partner-request-form .partner-request-message {
  border-radius: 16px;
  display: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin: 28px 0 10px;
  padding: 14px 18px;
}
.partner-request-form .partner-request-message.show {
  display: block;
}
.partner-request-form .partner-request-message.is-error {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}
.partner-request-form .partner-request-message.is-success {
  background: rgba(165, 201, 0, 0.12);
  color: #526400;
}
.partner-request-form .action-holder {
  max-width: 320px;
}
.partner-request-form #submit_partner_request {
  align-items: center;
  background: #5a5fef;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(90, 95, 239, 0.28);
  color: #ffffff;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}
.partner-request-form #submit_partner_request span {
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.partner-request-form #submit_partner_request:hover {
  background: #4c51e9;
  box-shadow: 0 20px 42px rgba(90, 95, 239, 0.34);
  transform: translateY(-2px);
}
.partner-request-form #submit_partner_request.is-loading {
  color: transparent;
  pointer-events: none;
}
.partner-request-form #submit_partner_request.is-loading:after {
  animation: partnerSpin 0.8s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  border-top-color: #ffffff;
  content: "";
  height: 22px;
  left: 50%;
  margin-left: -11px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  width: 22px;
}
.partner-request-form .partner-request-success {
  align-items: center;
  animation: partnerSuccessIn 0.72s cubic-bezier(0.2, 0.85, 0.2, 1) both;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 248, 255, 0.92)), to(rgba(255, 255, 255, 0.98)));
  background: -o-linear-gradient(top, rgba(247, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  background: linear-gradient(180deg, rgba(247, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(90, 95, 239, 0.1);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(31, 42, 68, 0.09);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: 28px auto 4px;
  max-width: 720px;
  min-height: 420px;
  overflow: hidden;
  padding: 58px 48px;
  position: relative;
  text-align: center;
}
.partner-request-form .partner-request-success:before {
  background-image: -o-linear-gradient(rgba(90, 95, 239, 0.06) 1px, transparent 1px), -o-linear-gradient(left, rgba(90, 95, 239, 0.06) 1px, transparent 1px);
  background-image: linear-gradient(rgba(90, 95, 239, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(90, 95, 239, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}
.partner-request-form .partner-request-success > * {
  position: relative;
  z-index: 1;
}
.partner-request-form .partner-request-success__icon {
  align-items: center;
  animation: partnerSuccessIcon 0.62s cubic-bezier(0.2, 0.85, 0.2, 1) 0.16s both;
  background: #a5c900;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(165, 201, 0, 0.28);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 74px;
  justify-content: center;
  margin-bottom: 24px;
  width: 74px;
}
.partner-request-form .partner-request-success__icon span {
  border-bottom: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  display: block;
  height: 30px;
  margin-top: -4px;
  transform: rotate(45deg);
  width: 17px;
}
.partner-request-form .partner-request-success__eyebrow {
  background: rgba(90, 95, 239, 0.08);
  border-radius: 999px;
  color: #5a5fef;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 8px 13px;
}
.partner-request-form .partner-request-success h3 {
  color: #17171f;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.24;
  margin: 0 0 14px;
}
.partner-request-form .partner-request-success p {
  color: #676d7f;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 560px;
}
.partner-request-form .partner-request-success__note {
  background: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.045);
  margin-top: 22px !important;
  padding: 16px 18px;
}
@media screen and (min-width: 992px) {
  .partner-request-form {
    margin-top: 110px;
  }
}

@keyframes partnerCopyIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes partnerCardIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes partnerFormIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes partnerFormOut {
  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
  }
}
@keyframes partnerSuccessIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes partnerSuccessIcon {
  from {
    opacity: 0;
    transform: scale(0.72) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes partnerFloatA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes partnerFloatB {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes partnerSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .partner-request-hero {
    padding: 90px 0 48px;
  }
  .partner-request-hero__inner {
    grid-template-columns: 1fr;
  }
  .partner-request-hero h1 {
    font-size: 44px;
  }
  .partner-request-hero__visual {
    min-height: 300px;
  }
  .partner-request-form {
    margin-top: 0;
  }
  .partner-request-form .main-body {
    padding: 34px 22px 24px;
  }
  .partner-request-form .partner-request-success {
    min-height: 360px;
    padding: 48px 32px;
  }
}
@media (max-width: 575px) {
  .partner-request-hero {
    padding: 76px 0 36px;
  }
  .partner-request-hero h1 {
    font-size: 36px;
  }
  .partner-request-hero p {
    font-size: 15px;
  }
  .partner-request-hero__visual {
    min-height: 250px;
  }
  .partner-request-hero__panel {
    height: 220px;
    width: 220px;
  }
  .partner-request-hero__panel strong {
    font-size: 58px;
  }
  .partner-request-hero__card {
    font-size: 12px;
    padding: 12px 14px;
  }
  .partner-request-form {
    margin-bottom: 55px;
  }
  .partner-request-form .text-main h2 {
    font-size: 28px;
  }
  .partner-request-form .holder-answer,
  .partner-request-form .search_select_list {
    border-radius: 14px;
    min-height: 54px;
  }
  .partner-request-form .partner-request-success {
    border-radius: 22px;
    margin-top: 18px;
    min-height: 0;
    padding: 38px 20px;
  }
  .partner-request-form .partner-request-success__icon {
    height: 62px;
    margin-bottom: 20px;
    width: 62px;
  }
  .partner-request-form .partner-request-success__icon span {
    height: 25px;
    width: 14px;
  }
  .partner-request-form .partner-request-success h3 {
    font-size: 24px;
  }
  .partner-request-form .partner-request-success p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=partner-request.min.css.map*/