@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --lightblue: #EFF2F9;
  --blue: #0048D8;
  --darkblue: #1D274D;
  --orange: #FF6542;
  --purple: #E4CFEC;
  --red: #FE646F;
  --green: #389274;
  --white: #fff;
  --black: #000;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

::-moz-selection {
  color: var(--white);
  background: var(--blue);
}
::selection {
  color: var(--white);
  background: var(--blue);
}

a:hover {
  color: #000000;
}
/* section animations */
section, section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.in-view, section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
/* default */
.cta {
  width: 200px;
  height: 55px;
  background: var(--blue);
  border-radius: 50px;
  border: none;
  display: flex;
  justify-content: space-around;
  padding: 0 0 0 10px;
  align-items: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease;
  z-index: 0;
}
.cta p {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin: 0 !important;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.cta span {
  width: 36px;
  aspect-ratio: 1;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.cta:hover {
  transform: scale(1.1);
}
.cta:hover::before {
  width: 300%;
  height: 300%;
}
.cta:hover span {
  transform: rotate(0);
}
.title h3 {
  color: var(--darkblue);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
}
.title h3 span {
  font-weight: 600;
}
.title p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  margin: 20px auto 0 auto;
}
/* nav */
.nav {
  padding: 40px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav .container {
  transition: all 0.6s ease;
}
.scrolling {
  transform: scale(0.9);
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px) saturate(180%);
  background: rgba(245, 245, 247, 0.50);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px, rgba(255, 255, 255, 0.3) 0px 4px 20px inset;
}
.nav-logo img {
  transition: all 0.6s ease;
  height: 40px;
}
.nav .container.scrolling .nav-logo img {
  height: 35px;
  padding-left: 10px;
}
.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0 20px;
}
.nav-menu ul li {
  font-size: 20px;
  font-weight: 300;
  color: var(--darkblue);
  line-height: 1.1;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--blue);
}
.nav-cta {
  text-align: right;
}
.nav-cta button {
  margin: 0 0 0 auto;
}
/* header */
.header {
  padding: 340px 0 200px 0;
}
.header-content {
  position: relative;
}
.header-content::before {
  content: '';
  width: 825px;
  height: 825px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--blue);
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  animation: float 16s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translate(-50%, -50%) scale(1.0);
  }
  25% {
    transform: translate(-50%, -55%) scale(1.01);
  }
  50% {
    transform: translate(-55%, -50%) scale(1.0);
  }
  75% {
    transform: translate(-50%, -55%) scale(0.98);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.0);
  }
}
.small-circle {
  position: absolute;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  right: -5%;
  bottom: -10%;
  transform: translate(50%, 50%);
  align-content: center;
  text-align: center;
  animation: float2 16s ease-in-out infinite;
}
.small-circle div {
  margin: 0 auto;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center,var(--blue) 0%,rgba(255, 255, 255, 0) 100%);
  filter: blur(20px);
  opacity: 0.4;
}
@keyframes float2 {
  0% {
    transform: translate(50%, 50%) scale(1.0);
  }
  25% {
    transform: translate(60%, 60%) scale(1.05);
  }
  50% {
    transform: translate(50%, 50%) scale(1.0);
  }
  75% {
    transform: translate(40%, 40%) scale(0.95);
  }
  100% {
    transform: translate(50%, 50%) scale(1.0);
  }
}
.header-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--darkblue);
  line-height: 1.05;
  position: relative;
  transform: translateY(0px);
  animation: letsFadeIn ease 2s;
}
.header-content h1 span {
  color: var(--blue);
}
#title-under {
  color: var(--darkblue);
  position: relative;
  z-index: 0;
}
#title-under::before {
  width: 0px;
  height: 20px;
  background: var(--purple);
  content: '';
  position: absolute;
  left: -5px;
  bottom: 10px;
  z-index: -1;
  animation: titleUnderline 2s ease-out 0.6s forwards;
}
@keyframes letsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes titleUnderline {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 400px;
    opacity: 1;
  }
}
.header-content p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--darkblue);
  margin: 40px 0 60px 0;
  position: relative;
  transform: translateY(0px);
  animation: letsFadeIn ease 2.5s;
}
.our-partner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 40px;
  animation: letsFadeIn ease 3s;
}
.our-partner img {
  width: 100px;
}
/* form */
.form-box, .form-outer {
  position: relative;
}
.form-box::before {
  content: '';
  position: absolute;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(53.99% 53.99% at 50% 50%, #0048D8 0%, rgba(243, 243, 243, 0.00) 100%);
  filter: blur(50px);
  opacity: 0.4;
}
.form-outer::before  {
  content: '';
  position: absolute;
  top: -80px;
  left: -20px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--blue);
  z-index: -1;
}
.form-outer::after  {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--blue);
  z-index: -1;
}
@keyframes float3 {
  0% {
    transform: translate(0, 0) scale(1.0);
  }
  25% {
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    transform: translate(0, -40px) scale(1.0);
  }
  75% {
    transform: translate(-20px, -20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1.0);
  }
}
.form-outer::before, .form-outer::after{
  animation: float3 16s ease-in-out infinite;
}
.form-outer::before {
  animation-delay: 0s;
}
.form-outer::after {
  animation-delay: 2s;
}
#contactform {
  width: 460px;
  min-height: 400px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  position: relative;
  z-index: 99;
  animation: letsFadeIn ease 2.5s;
}
#contactform h3 {
  line-height: 1;
  margin: 0 auto 10px auto;
  font-size: 20px;
  font-weight: 600;
  color: var(--darkblue);
  text-wrap: balance;
}
#contactform h6 {
  line-height: 1;
  font-size: 11px;
  font-weight: 300;
  color: var(--darkblue);
  font-style: italic;
  margin: 0 auto 10px auto;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  opacity: 0;
  transition: all 0.4s ease;
}
.form-step.active {
  display: flex;
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.form-step .row {
  width: 100%;
}
.opt-row {
  margin-top: 10px;
}
.droprow {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.droprow .dropdown-menu {
  max-width: 355px;
  max-height: 230px;
}
.radio-buton input[type="radio"], input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-buton label, .checkbox-label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  max-width: 380px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 10px;
  transition: all 0.2s ease;
  margin: 5px auto;
  text-wrap: balance;
}
.radio-buton label img {
  margin-right: 8px;
  height: 22px;
  width: 22px;
}
.radio-buton label:hover, .checkbox-label:hover, input[type="checkbox"]:checked+label {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
input[type="checkbox"]:checked+label img {
  filter: brightness(0) invert(1);
}
.radio-buton input[type="radio"]:checked+label {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.dropdown-menu {
  display: none;
}
.dropdown-menu.show {
  display: block;
  position: absolute;
  top: 100%;
  transform: translateY(-33%);
}
.dropdown-toggle, .choices__inner {
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  border: 1px solid var(--blue);
  padding: 0 20px;
  color: var(--blue);
  -webkit-appearance: none;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  max-width: 380px;
  height: 55px;
}
.choices__inner {
  padding-bottom: 0 !important;
}
.choices {
  margin-top: 20px;
  margin-bottom: 0;
}
.choices__list--single {
  padding: 0;
}
.dropdown-toggle::after {
  border: none;
  background: url('/img/form/down.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background: var(--orange);
  color: var(--white);
}
.dropdown-toggle:hover::after {
  filter: brightness(0) invert(1);
}
.dropdown-menu {
  width: 100%;
  max-height: 300px;
  padding: 0;
  overflow-y: scroll;
  cursor: pointer;
}
.dropdown-menu li {
  font-size: 16px;
  color: var(--blue);
  padding: 10px 15px;
}
.dropdown-menu li:hover {
  color: var(--white);
  cursor: pointer;
  background: var(--orange);
}
.dropdown-menu li.selected {
  background-color: var(--orange);
  color: #fff;
}
.choices__list--single .choices__item {
  width: 100%;
  text-align: start;
}
.choices__item {
  color: var(--blue) !important;
}
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}
input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-ms-track {
  height: 8px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}
input[type=range]::-ms-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}
.value-display {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  color: var(--blue);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.value-display span:focus-visible {
  outline: none !important;
}
.customInput label.text {
  display: block;
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
  position: relative;
  top: 7px;
  left: 0px;
  margin: 0 0 0 15px;
  padding: 0 5px;
  background: var(--white);
  width: fit-content;
  z-index: 2;
}
.form-input {
  margin: 0 auto 10px auto;
  position: relative;
}
.form-input input {
  width: 100%;
  height: 55px;
  border-radius: 20px;
  border: 1px solid var(--blue);
  padding: 0 0 0 20px;
  text-align: left !important;
  margin: 0 auto !important;
  font-size: 16px !important;
  color: var(--darkblue) !important;
}
#phone {
  padding: 0 0 0 95px !important;
}
.form-input input.valid {
  border: 1px solid var(--green); !important;
  background-image: url('/img/form/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-input input.error {
  border: 1px solid var(--red) !important;
  background-image: url('/img/form/close.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.iti {
  width: 100%;
}
.iti__country-container {
  top: 10px !important;
  left: 8px !important;
}
.iti__selected-country {
  height: 40px !important;
  margin-top: -3px !important;
}
.iti__selected-country-primary:hover {
  background: transparent !important;
}
.iti__search-input {
  border: none !important;
}
::-webkit-input-placeholder {
  color: #72858f;
}
:-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
::-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #72858f;
}
::-ms-input-placeholder {
  color: #72858f;
}
::placeholder {
  color: #72858f;
}
.form-input input:focus-visible, .form-input select:focus-visible {
  outline: none !important;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--darkblue);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--darkblue);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
.form-button {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 20px;
  width: 60px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.form-button img {
  height: 15px;
}
.prev img {
  transform: rotate(180deg);
}
.prev:hover {
  background: var(--grey);
}
.next {
  background: var(--blue);
}
.next img {
  filter: brightness(0) invert(1);
}
.next:hover, .prev:hover {
  background: var(--orange);
  border: 1px solid var(--orange);
}
.prev:hover img {
  filter: brightness(0) invert(1);
}
#contactform .cta {
  margin: 30px auto 0 auto;
}
#contactform .cta img {
  filter: none;
}
.form-btn__wrapper {
  width: 100%;
}
#contactform .final-button {
  margin: 10px auto 0 auto;
  justify-content: center;
}
.final-button p {
  margin-right: 10px !important;
}
/* section1 */
.section1 {
  padding: 80px 0;
  text-align: center;
}
.section1 .container {
  background: var(--lightblue);
  color: var(--darkblue);
  padding: 60px 30px;
  border-radius: 40px;
}
.number-outer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.numbers {
  width: 20%;
  min-height: 110px;
}
.numbers h6 {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.section1.active .numbers h6 {
  opacity: 1;
  transform: translateY(0);
}
.numbers p {
  font-size: 16px;
  font-weight: 300;
  margin: 0 auto;
}
/* section2 */
.section2 {
  min-height: 750px;
  padding: 50px 0;
  align-content: center;
  background: url('/img/section2.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section2-content {
  position: relative;
  min-height: 600px;
  align-content: center;
}
.stamps {
  width: 100%;
}
.stamp {
  height: 40px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  transition: all 0.6s ease, opacity 0.6s ease;
  white-space: nowrap;
}
.stamp.fade-in {
  opacity: 1;
}
.stamp:hover {
  cursor: pointer;
  transform: scale(1.2);
  box-shadow: 0 0 13px rgba(0, 72, 216, 0.2);
}
.stamp:nth-child(1) {
  background: #D0E7F4;
  color: #4B7D98;
  min-width: 140px;
  top: -15px;
  left: 46%;
}
.stamp:nth-child(2) {
  background: #D8ECCB;
  color: #69974B;
  min-width: 80px;
  top: 15px;
  left: 70%;
}
.stamp:nth-child(3) {
  background: #E7EDC8;
  color: #8E9B4D;
  min-width: 100px;
  top: 65px;
  left: 78%;
}
.stamp:nth-child(4) {
  background: #F5E1C5;
  color: #A78048;
  min-width: 130px;
  top: 115px;
  left: 90%;
}
.stamp:nth-child(5) {
  background: #F5D2D6;
  color: #AF3947;
  min-width: 140px;
  top: 168px;
  left: 98%;
}
.stamp:nth-child(6) {
  background: #FFDAF3;
  color: #90286E;
  min-width: 150px;
  top: 225px;
  left: 103%;
}
.stamp:nth-child(7) {
  background: #E4CFEC;
  color: #571D6D;
  min-width: 180px;
  top: 280px;
  left: 105%;
}
.stamp:nth-child(8) {
  background: #D3D2FF;
  color: #1E1D6E;
  min-width: 110px;
  top: 335px;
  left: 115%;
}
.section2-text {
  width: 300px;
  margin-left: 40%;
}
.section2-text h3 {
  margin-bottom: 30px;
}
/* section3 */
.section3 {
  padding: 80px 0;
}
.section3 .container {
  background: var(--lightblue);
  color: var(--darkblue);
  padding: 0px 50px;
  border-radius: 40px;
}
.section3-txt hr {
  width: 200px;
  height: 8px;
  background: var(--blue);
  opacity: 1;
  border: none;
}
.partner-wrapper {
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 250px;
  align-content: center;
  z-index: 0;
}
#cursor {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
#cursor #circle1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 72, 216, 0.70);;
  text-align: center;
  color: var(--white);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  align-content: center;
  user-select: none;
  transition: transform 0.2s ease;
}
.partner-wrapper.dragging #circle1 {
  transform: scale(1.2);
  background: rgba(0, 72, 216, 1);
}
.partner-slider::before, .partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 100px;
  z-index: 99;
}
.partner-slider::before{
  left: 0;  
  background: linear-gradient(to right, var(--lightblue), rgba(245, 245, 247, 0));
}
.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--lightblue), rgba(245, 245, 247, 0));
}
.partner-slider .slick-track {
  padding: 20px 0;
}
.partner-outer {
  text-align: center;
}
.partner-outer img {
  height: 60px;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.partner-outer img:hover {
  transform: scale(1.2);
}
/* section4 */
.section4 {
  padding: 50px 0;
  text-align: center;
  color: var(--darkblue);
  text-wrap: balance;
}
.section4 .title h3 {
  max-width: 90%;
  margin: 0 auto;
}
.rocket-outer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 30px auto;
}
.rocket {
  width: 20%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.rocket.animate {
  opacity: 1;
  transform: translateX(0);
}
.rocket img {
  width: 100%;
}
.rocket h6 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px 0;
  color: var(--blue);
}
.rocket p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
.section4 .cta {
  margin: 50px auto 0 auto;
}
/* section5 */
.section5 {
  padding: 60px 0;
  text-align: center;
  color: var(--darkblue);
  text-wrap: balance;
  min-height: 700px;
  align-content: center;
  position: relative;
}
.background {
  height: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.spots-middle {
  height: 700px;
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.spots-middle div {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at center,var(--blue) 0%,rgba(255, 255, 255, 0) 100%);
  filter: blur(50px);
  opacity: 0.3;
}
.spots-middle div:nth-child(1) {
  left: 0;
}
.spots-middle div:nth-child(2) {
  right: 0;
}
.spots-left {
  width: 20%;
  height: 700px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spot-left {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at center,var(--blue) 0%,rgba(255, 255, 255, 0) 100%);
  filter: blur(50px);
  opacity: 0.3;
  position: absolute;
  left: -30%;
}
.spot-left-circle1 {
  width: 200px;
  height: 200px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--blue);
  position: absolute;
  left: 5%;
  bottom: 20%;
  animation: float3 16s ease-in-out infinite;
}
.spot-left-circle2 {
  width: 125px;
  height: 125px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--blue);
  position: absolute;
  left: 50%;
  bottom: 22%;
  animation: float3 16s ease-in-out infinite;
  animation-delay: 1s;
}
.spots-right {
  width: 20%;
  height: 700px;
  position: relative;
}
.spot-right {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at center,var(--blue) 0%,rgba(255, 255, 255, 0) 100%);
  filter: blur(50px);
  opacity: 0.3;
  position: absolute;
  rigth: -30%;
}
.spot-right-circle1 {
  width: 185px;
  height: 185px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--blue);
  position: absolute;
  right: 15%;
  top: 5%;
  animation: float3 16s ease-in-out infinite;
}
.spot-right-circle2 {
  width: 140px;
  height: 140px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--blue);
  position: absolute;
  right: 50%;
  top: 22%;
  animation: float3 16s ease-in-out infinite;
  animation-delay: 1s;
}
.section5 .container {
  position: relative;
  z-index: 33;
}
.review-wrapper {
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 280px;
  align-content: center;
  z-index: 0;
  margin-top: 80px;
}
.review-slider .slick-track {
  padding: 20px 0;
}
#cursor2 {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 66%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
#cursor2 #circle2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 72, 216, 0.70);;
  text-align: center;
  color: var(--white);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  align-content: center;
  user-select: none;
  transition: transform 0.2s ease;
}
.review {
  width: 95%;
  max-width: 345px;
  padding: 30px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  text-align: left;
  line-height: 1.1;
  color: var(--darkblue);
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.persona img {
  width: 45px;
  aspect-ratio: 1;
  margin-right: 10px;
  border-radius: 50%;
}
.persona h5 {
  font-size: 16px;
  font-weight: 600;
}
.stars {
  height: 30px;
  margin: 10px 0;
}
.review h6 {
  font-size: 14px;
  font-weight: 600;
}
.review p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}
/* footer */
.footer {
  padding: 0 0 80px 0;
  text-align: center;
}
.footer .container {
  background: var(--lightblue);
  color: var(--darkblue);
  padding: 50px 30px;
  border-radius: 40px;
}
.footer button {
  background: var(--orange);
  width: 235px;
  margin: 40px auto 0 auto;
}
.footer button::before {
  background: var(--blue);
}
/* thank you */
.message-box {
  width: 460px;
  height: 435px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 40px 40px 40px;
  position: relative;
  z-index: 99;
  animation: letsFadeIn ease 2.5s;
  text-wrap: balance;
}
.message-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.message-box p {
  font-size: 18px;
  line-height: 1.1;
  color: var(--darkblue);
  margin: 20px auto 0 auto;
}
/* Adstrategy */
#section-ads {
  display: none;
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (min-width: 1720px) {
  .section2 {
    min-height: 800px;
  }
  .stamp:nth-child(1) {
    top: -20px;
    left: 57%;
  }
  .stamp:nth-child(2) {
    top: 15px;
    left: 80%;
  }
  .stamp:nth-child(3) {
    top: 65px;
    left: 85%;
  }
  .stamp:nth-child(4) {
    top: 115px;
    left: 90%;
  }
  .stamp:nth-child(5) {
    top: 168px;
    left: 98%;
  }
  .stamp:nth-child(6) {
    top: 225px;
    left: 103%;
  }
  .stamp:nth-child(7) {
    top: 280px;
    left: 105%;
  }
  .stamp:nth-child(8) {
    top: 335px;
    left: 115%;
  }
}
@media only screen and (max-width: 1400px) {
  .stamp:nth-child(1) {
    top: -20px;
    left: 43%;
  }
}
@media only screen and (max-width: 1200px) {
  .nav-logo img {
    height: 35px;
  }
  .nav .container.scrolling .nav-logo img {
    height: 30px;
  }
  .nav-menu ul li {
    font-size: 18px;
  }
  .header-content h1 {
    font-size: 50px;
  } 
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 335px;
      opacity: 1;
    }
  }
  .section2 {
    background-size: 135%;
  }
  .stamp:nth-child(1) {
    top: 40px;
    left: 48%;
  }
  .stamp:nth-child(2) {
    top: 65px;
    left: 80%;
  }
  .stamp:nth-child(3) {
    top: 115px;
    left: 85%;
  }
  .stamp:nth-child(4) {
    top: 165px;
    left: 93%;
  }
  .stamp:nth-child(5) {
    top: 215px;
    left: 98%;
  }
  .stamp:nth-child(6) {
    top: 265px;
    left: 103%;
  }
  .stamp:nth-child(7) {
    top: 315px;
    left: 110%;
  }
  .stamp:nth-child(8) {
    top: 365px;
    left: 120%;
  }
  .title h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1080px) {
  #contactform, .message-box {
    width: 430px;
    margin-left: -30px;
  }
  .droprow .dropdown-menu {
    max-width: 325px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 95%;
    margin: 0 auto;
  }
  .nav-menu ul li {
    font-size: 14px;
  }
  .nav .cta {
    width: 100%;
    padding: 0 10px;
    justify-content: center;
  }
  .nav .cta span {
    width: 30px;
     margin-left: 10px;
  }
  .header-content h1 {
    font-size: 48px;
  } 
  .header-content p {
    font-size: 18px;
    text-wrap: balance;
  }
  .our-partner {
    gap: 0 20px;
  }
  .our-partner img {
    width: 90px;
  }
  #contactform, .message-box{
    margin: 0 0 0 -40px;
    width: 435px;
  }
  .section2 {
    min-height: 500px;
    padding: 0;
    background-size: 125%;
  }
  .stamp {
    transform: scale(0.9);
  }
  .stamp:hover {
    transform: scale(1);
  }
  .stamp:nth-child(1) {
    top: 95px;
    left: 53%;
  }
  .stamp:nth-child(2) {
    top: 125px;
    left: 83%;
  }
  .stamp:nth-child(3) {
    top: 170px;
    left: 89%;
  }
  .stamp:nth-child(4) {
    top: 210px;
    left: 93%;
  }
  .stamp:nth-child(5) {
    top: 260px;
    left: 98%;
  }
  .stamp:nth-child(6) {
    top: 305px;
    left: 103%;
  }
  .stamp:nth-child(7) {
    top: 350px;
    left: 110%;
  }
  .stamp:nth-child(8) {
    top: 395px;
    left: 120%;
  }
  .partner-outer img {
    height: 50px;
  }
  .numbers {
    min-height: 90px;
  }
  .numbers h6 {
    font-size: 45px;
  }
  .numbers p {
    font-size: 14px;
  }
  .spots-middle div:nth-child(2) {
    display: none;
  }
  .spot-left-circle1 {
    bottom: 10%;
    width: 150px;
    height: 150px;
  }
  .spot-left-circle2 {
    width: 70px;
    height: 70px;
    left: 70%;
    bottom: 8%;
  }
  .spot-right-circle1 {
    width: 115px;
    height: 115px;
  }
  .spot-right-circle2 {
    width: 80px;
    height: 80px;
    top: 10%;
  }
  .rocket p {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 900px) {
  .stamp {
    transform: scale(0.85);
  }
  .nav .cta p {
    font-size: 17px;
  }
  .header-content h1 {
    font-size: 42px;
  }
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 280px;
      opacity: 1;
    }
  }
  #contactform, .message-box {
    margin: 0 0 0 -40px;
    width: 425px;
  }
  .section2 {
    background-size: 140%;
  }
  .stamp:nth-child(1) {
    top: 95px;
    left: 50%;
  }
  .title h3 {
    text-wrap: balance;
  }
  .section1 {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 850px) {
  .nav-logo img {
    height: 30px;
  }
  .nav .container.scrolling .nav-logo img {
    height: 25px;
  }
  .nav .cta p {
    font-size: 15px;
  }
  #contactform, .message-box{
    margin: 0 0 0 -30px;
    width: 390px;
  }
  #contactform {
    padding: 40px 30px;
  }
  .droprow .dropdown-menu {
    max-width: 305px;
  }
  .section2 {
    background-size: 155%;
  }
  .stamp:nth-child(1) {
    left: 45%;
  }
  .title h3 {
    max-width: 100%;
    font-size: 30px;
  }
  .title p {
    font-size: 18px;
  }
  .footer button {
    margin: 30px auto 0 auto;
  }
  .review p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  #cursor, #cursor2 {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .nav .cta {
    width: 200px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav .container.scrolling .nav-logo img {
    height: 35px;
  }
  .header {
    text-align: center;
    padding: 150px 0 70px 0;
    overflow: hidden;
  }
  .header-content::before {
    width: 700px;
    height: 700px;
    left: 50%;
    top: 100%;
  }
  .small-circle {
    right: 0;
    width: 200px;
    height: 200px;
  }
  .header-content h1 {
    font-size: 45px;
    text-wrap: balance;
    max-width: 90%;
    margin: 0 auto;
  }
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 300px;
      opacity: 1;
    }
  }
  .header-content p {
    margin: 20px auto 30px auto;
  }
  .our-partner {
    justify-content: center;
    margin-bottom: 40px;
  }
  #contactform, .message-box {
    box-shadow: 0 0 15px 5px rgba(0, 72, 216, 0.2);
    width: 420px;
    margin: 0 auto;
  }
  .form-outer::after {
    bottom: 0;
  }
  .form-box::before {
    opacity: 0.2;
    width: 500px;
    height: 500px;
  }
  .form-outer::before {
    top: -40px;
    left: 0;
    width: 150px;
    height: 150px;
  }
  .form-outer::after {
    right: 0;
  }
  .droprow .dropdown-menu {
    max-width: 335px;
  }
  .section1 .container {
    width: 95%;
    max-width: 380px;
  }
  .number-outer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px 0;
  }
  .numbers {
    width: 80%;
  }
  .numbers h6 {
    font-size: 50px;
  }
  .numbers p {
    font-size: 16px;
  }
  .section2 {
    text-align: center;
    background: none;
    padding: 40px 0;
  }
  .section2, .section2-content {
    min-height: auto;
  }
  .section2-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .section2-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    filter: blur(60px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.1;
  }
  .section2-text {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
  }
  .section2-text h3 br {
    display: none;
  }
  .section2-text .cta {
    margin: 0 auto;
  }
  .stamps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-bottom: 40px;
  }
  .stamp {
    transform: scale(1.0);
    position: unset;
  }
  .stamp:hover {
    transform: scale(1.1);
  }
  .section3 {
    text-align: center;
  }
  .section3 .container {
    padding: 60px 30px 0 30px;
  }
  .section3-txt hr {
    margin: 10px auto;
  }
  .partner-wrapper {
    min-height: 180px;
  }
  .review-wrapper {
    margin-top: 40px;
  }
  .section4 {
    text-align: center;
    padding: 0 0 40px 0;
  }
  .section4 .title {
    margin-bottom: 40px;
  }
  .rocket-outer {
    flex-wrap: wrap;
    gap: 50px 0;
    margin: 0;
  }
  .rocket img {
    display: none;
  }
  .rocket {
    width: 100%;
  }
  .mobile-rocket {
    text-align: right;
  }
  .mobile-rocket img {
    height: 460px;
  }
  .rocket {
    transform: translateY(50px);
  }
  .rocket.animate {
    transform: translateY(0);
  }
  .mobile-rocket {
    opacity: 0;
    transition: all 0.8s ease;
  }
  .mobile-rocket.animate {
    opacity: 1;
    transform: translateY(0);
    animation: letsFadeIn ease 2.5s
  }
  @keyframes letsFadeIn {
    0% {
      opacity: 0;
      transform: translateY(120px);
    }
    100% {
      opacity: 1;
    }
  }
  .spot-right {
    display: none;
  }
  .message-box p {
    text-wrap: balance;
  }
}
@media only screen and (max-width: 600px) {
  .stamps {
    width: 90%;
  }
  .nav-cta button {
    width: 100%;
  }
  .mobile-header-content {
    margin: 40px auto 0 auto;
  }
  .mobile-header-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--darkblue);
    margin: 0 auto 30px auto;
    text-wrap: balance;
    position: relative;
    transform: translateY(0px);
    animation: letsFadeIn ease 2.5s;
  }
}
@media only screen and (max-width: 550px) {
  .header {
    padding: 150px 0 0 0;
  }
  .nav-logo img {
    height: 35px;
  }
  .nav .container.scrolling .nav-logo img {
    height: 30px;
  }
  .nav .cta p {
    font-size: 16px;
  }
  .stamps {
    width: 90%;
  }
  .stamp:nth-child(1), .stamp:nth-child(2), .stamp:nth-child(3), .stamp:nth-child(4), .stamp:nth-child(5), .stamp:nth-child(6), .stamp:nth-child(7), .stamp:nth-child(8) {
    width: auto;
  }
  .header-content::before {
    width: 550px;
    height: 550px;
    top: 65%;
  }
  .form-outer::before, .form-box::before {
    display: none;
  }
  .form-outer::after {
    width: 100px;
    height: 100px;
    bottom: -50px;
  }
  .section3 .container {
    padding: 50px 30px 20px 30px;
  }
  .partner-wrapper {
    min-height: 130px;
  }
  .header-content h1 {
    margin-bottom: 50px;
  }
  .section2-content::before {
    width: 300px;
    height: 300px;
  }
  .mobile-rocket img {
    height: 550px;
  }
  .spot-right-circle1 {
    width: 90px;
    height: 90px;
  }
  .spot-right-circle2 {
    width: 70px;
    height: 70px;
  }
  .message-box {
    height: auto;
    padding: 70px 30px;
  }
}
@media only screen and (max-width: 475px) {
  .nav .cta {
    display: none;
  }
  .nav .container.scrolling .nav-logo img {
    padding: 0;
  }
  .nav .container {
    width: 250px;
  }
  .nav .col-6 {
    width: 100%;
    text-align: center;
  }
  .nav .row {
    justify-content: center !important;
  }
  .header {
    padding: 110px 0 0 0;
  }
  #contactform {
    padding: 30px 20px;
  }
  #contactform, .message-box {
    width: 100%;
  }
  .droprow .dropdown-menu {
    max-width: 93%;
  }
  .spots-middle {
    height: 500px;
  }
  .spots-middle div {
    width: 300px;
    height: 300px;    
  }
  .spots-middle div:nth-child(1) {
    left: 50%;
  }
  .stamp {
    font-size: 15px;
  }
  .section1 {
    padding: 50px 0 20px 0;
  }
  .section3 {
    padding: 30px 0 60px 0;
  }
  .spot-right-circle1, .spot-right-circle2{
    display: none;
  }
  .section4 {
    padding: 0;
  }
  .section5 {
    padding: 0 0 40px 0;
  }
  .footer {
    padding: 0 0 50px 0;
  }
}
@media only screen and (max-width: 435px) {
  .header-content h1 {
    max-width: 100%;
    font-size: 42px;
  }
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 280px;
      opacity: 1;
    }
  }
  #cursor #circle1, #cursor2 #circle2 {
    transform: scale(0.8);
  }
  .section4 .title h3 {
    max-width: 100%;
  }
  .title h3 {
    font-size: 28px;
  }
  .title p {
    font-size: 16px;
  }
  .rocket p {
    max-width: 90%;
    font-size: 13px;
  }
  .mobile-rocket img {
    height: 460px;
  }
  .section5 {
    overflow: hidden;
    min-height: auto;
    padding: 60px 0;
  }
  .message-box h3 {
    font-size: 36px;
  }
  .message-box p {
    font-size: 16px;
  }
  #contactform .cta {
    width: 200px;
  }
}
@media only screen and (max-width: 375px) {
  .header-content h1 {
    font-size: 38px;
  }
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 255px;
      opacity: 1;
    }
  }
  .mobile-header-content p {
    font-size: 16px;
  }
  .our-partner img {
    width: 80px;
  }
  .message-box h3 {
    font-size: 30px;
  }
  .droprow .dropdown-menu {
    max-width: 90%;
  }
}
@media only screen and (max-width: 335px) {
  .header-content h1 {
    font-size: 35px;
  }
  @keyframes titleUnderline {
    0% {
      width: 0;
      opacity: 0;
    }
    100% {
      width: 235px;
      opacity: 1;
    }
  }
  .our-partner img {
    width: 70px;
  }
  .title h3 {
    font-size: 26px;
  }
  .mobile-rocket img {
    margin-left: -30px;
  }
  .message-box h3 {
    font-size: 26px;
  }
}