@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
select,
textarea,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* // fadein animations  */
/* // stylelint-disable */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.5;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}


.fadeInUp-scroll {
  opacity: 0;
  transform: translateY(50px);

  &[data-position*='left-to-right'] {
    transform: translateX(-50px);
  }

  &[data-position*='right-to-left'] {
    transform: translateX(50px);
  }

  &[data-position*='top-to-bottom'] {
    transform: translateY(-50px);
  }

  &[data-position*='bottom-to-top'] {
    transform: translateY(50px);
  }

  &.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: transform 0.8s, opacity 0.8s;

    &[data-position*='left-to-right'],
    &[data-position*='right-to-left'] {
      transform: translateX(0) !important;
    }
  }
}

.scale-scroll {
  opacity: 0;
  transform: scale(0.9);

  &.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: all 1s;
  }
}


body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a img,
:link img,
:visited img {
  border: 0;
}

:focus {
  outline: 0;
}

.clear {
  clear: both;
}

button,
i {
  cursor: pointer;
}

html {
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
}

body {
  display: flex;
  background: var(--Grey-50, #F8FAFC);
  flex-direction: column;
  align-items: center;
}

.banner {
  display: flex;
  padding: 0.625rem 0rem;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: var(--Grey-50, #F8FAFC);
}
.banner span {
  color: var(--Grey-600, #475569);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.04375rem;
}

.banner-box {
  display: flex;
  padding: 0.25rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: 2rem;
  background: #FFF;
  box-shadow: 0 1px 4px 0 rgba(19, 29, 83, 0.24);
}
.banner-box span {
  font-weight: 500;
}

.icon-blue {
  color: #2447FF;
}

.navbar {
  display: flex;
  padding: 1.25rem 0rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}

.navbar-frame {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1200px;
  align-items: center;
  position: relative;
  gap: 1.25rem;
  flex: 1 0 0;
}
.navbar-frame a {
  color: var(--Grey-600, #475569);
  text-align: center;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.04688rem;
}

.navbar-leading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 0 0;
}
.navbar-leading img {
  width: 10.1875rem;
  height: 1.625rem;
}

.hamburger-menu-button {
  display: none;
}

.navbar-list {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.navbar-trailing {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex: 1 0 0;
}

.contact-button {
  display: flex;
  padding: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  background-color: transparent;
}

.label-wrapper {
  display: flex;
  padding: 0 6px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.label-wrapper a {
  color: var(--Grey-600, #475569);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.75px;
}

.getstarted-button {
  display: flex;
  padding: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  border-radius: 0.375rem;
  border: 1px solid var(--Grey-300, #CBD5E1);
  background: #FFF;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.getstarted-button i {
  font-size: 1.25rem;
  color: #020617 !important;
}

.getstarted-text {
  color: var(--Grey-950, #020617) !important;
  font-weight: 500 !important;
}

.main-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 128px 0;
  background: radial-gradient(120.75% 120.75% at 50% 0%, rgba(255, 255, 255, 0) 47.5%, #C4EAFF 77%, #D6FFEE 84.48%, #F2CDFF 91.8%, #6CCAFF 100%), #FFF;
}

.main-page frame {
  display: flex;
  max-width: 1080px;
  padding: 128px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.logo {
  display: flex;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.hero-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 4px;
  align-self: stretch;
}

.budget {
  display: flex;
  padding: 0.375rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2.25rem;
  border: 1px solid #426EFF;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.0525rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #426EFF 0%, #40E8FF 43%, #AA3EFF 74.5%, #3EBAFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title {
  align-self: stretch;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -3.2px;
}

.blue-title {
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description-frame {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  padding: 24px;
}
.description-frame span {
  align-self: stretch;
  color: var(--Grey-500, #64748B);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.description-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.logo-frame {
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 2px 2px -1px rgba(19, 29, 83, 0.24);
}
.logo-frame i {
  color: var(--Grey-50, #F8FAFC);
}

.purple-frame {
  background: linear-gradient(180deg, #760AFF 0%, #740AFF 100%);
}

.green-frame {
  background: linear-gradient(180deg, #96C338 0%, #7FAE1B 100%);
}

.hero-button {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  width: 137px;
  height: 44px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 6px;
  margin-top: 24px;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.hero-button a {
  color: var(--Grey-50, #F8FAFC);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.75px;
}
.hero-button i {
  color: #F8FAFC;
  font-size: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.52));
}

.divider {
  display: flex;
  height: 4px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: linear-gradient(90deg, #426EFF 0%, #40E8FF 43%, #AA3EFF 74.5%, #3EBAFF 100%);
}

.sponsors {
  display: flex;
  padding: 24px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}
.sponsors span {
  max-width: 700px;
  color: var(--Grey-500, #64748B);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.swiper-container {
  width: 1080px;
  height: 38px;
  position: absolute;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.5) 10.24%, rgba(255, 255, 255, 0) 15.5%, rgba(255, 255, 255, 0) 85.69%, rgba(255, 255, 255, 0.5) 89.64%, #FFF 100%);
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  gap: 64px;
  transition-timing-function: linear !important;
}

.swiper-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.swiper-wrapper-sponsors img {
  width: 105px;
  height: 50px;
}

.swiper-slide {
  width: 100px !important;
}

.services {
  display: flex;
  padding: 80px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
}

.services-frame {
  display: flex;
  max-width: 1080px;
  padding: 56px;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.services-header {
  display: flex;
  flex-direction: row;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.services-header p {
  color: var(--Grey-500, #64748B);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  flex: 1 0 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}
.section-title span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.section-title h2 {
  align-self: stretch;
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
}

.services-card {
  display: flex;
  padding: 32px 16px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
}

.none-border-bottom {
  border-bottom: none !important;
}

.icon-frame {
  display: flex;
  padding: 6px;
  align-items: center;
  gap: 8px;
  border-radius: 48px;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
}
.icon-frame i {
  color: #EBF5FF;
  font-size: 20px;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.card-title {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}

.card-description {
  align-self: stretch;
  color: var(--Grey-500, #64748B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.benefits {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
}

.benefits-frame {
  display: flex;
  max-width: 1080px;
  padding: 56px;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}

.benefits-header {
  display: flex;
  max-width: 1080px;
  padding: 0 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.benefits-header span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.benefits-header h2 {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
  align-self: stretch;
}

.benefits-row {
  display: flex;
  max-width: 1080px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.box {
  display: flex;
  max-width: 1080px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  flex: 1 0 0;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.black-box {
  background: linear-gradient(180deg, #282828 0%, #0E0E0E 100%);
}

.blue-box {
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
}

.benefits-logo {
  filter: drop-shadow(0 2px 2px rgba(19, 29, 83, 0.24));
  flex-shrink: 0;
}
.benefits-logo i {
  font-size: 40px;
  color: #FFF;
}

.benefits-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.benefits-title h2 {
  color: var(--Grey-50, #F8FAFC);
  font-family: "Noto Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.4px;
  align-self: stretch;
}
.benefits-title span {
  color: var(--Grey-50, #F8FAFC);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-self: stretch;
  opacity: 0.5;
}

.gradient-box {
  display: flex;
  max-width: 1080px;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: linear-gradient(87deg, #FFFFFF 0%, #C4EAFF 69%, #D6FFEE 74%, #F2CDFF 82%, #6CCAFF 100%);
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.benefits-title-h2 {
  color: #020617 !important;
}

.benefits-title-span {
  color: #020617 !important;
}

.black-logo {
  color: #020617 !important;
}

.none-border {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blue-button {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.blue-button i {
  font-size: 1.25rem;
}

.blue-button-text {
  color: var(--Grey-50, #F8FAFC) !important;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.75px;
}

.bookacall-button {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.bookacall-button-text {
  color: #F8FAFC !important;
  font-weight: 500 !important;
}

.benefits-calendar {
  display: flex;
  padding: 32px 0 0 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
}

.progress {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
}

.progress-frame {
  display: flex;
  max-width: 1080px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.progress-info {
  display: flex;
  padding: 56px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}

.progress-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.progress-header span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.progress-header h2 {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
}

.progress-order {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.progress-component {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.number-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.number-frame-style {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 48px;
  border: 1px solid #4C77FF;
}

.number-frame-hover :hover {
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  box-shadow: 0 0 0 8px rgba(29, 120, 255, 0.2);
}

.number:hover {
  color: #fff !important;
}

.number-frame-style:hover .number {
  -webkit-text-fill-color: white;
}


.number {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line {
  width: 1px;
  height: 71px;
  background: var(--Slate-200, #E2E8F0);
}

.progress-order-header {
  display: flex;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
}

.progress-order-title {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
  align-self: stretch;
}

.progress-order-description {
  color: var(--Grey-500, #64748B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.progress-image {
  display: flex;
  padding: 48.75px 0 0 48px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}
.progress-image img {
  width: 519px;
}

.progress-image-mobile {
  display: none;
}

.projects {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
}

.projects-frame {
  display: flex;
  max-width: 1080px;
  gap: 80px;
  flex-direction: column;
  align-items: center;
}

.projects-header {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.projects-header span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.projects-header h2 {
  color: var(--Cerulean-Blue-950, #131D53);
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
  align-self: stretch;
}
.projects-header p {
  color: var(--Grey-500, #64748B);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-self: stretch;
}

.projects-list {
  display: flex;
  max-width: 1080px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.list-frame {
  display: flex;
  padding: 40px 0;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  gap: 24px;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
}

.list-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}
.list-header h3 {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.6px;
  align-self: stretch;
}
.list-header p {
  color: var(--Grey-500, #64748B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-self: stretch;
}

.list-image {
  display: flex;
  max-width: 400px;
  padding: 40px 60px 0;
  justify-content: center;
  flex: 1 0 0;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: linear-gradient(180deg, #282828 0%, #0E0E0E 100%);
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}
.list-image img {
  width: 100%;
  margin-bottom: 0;
}

.testimonials {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: radial-gradient(120.75% 120.75% at 50% 0%, rgba(255, 255, 255, 0) 0%, #C4EAFF 77%, #D6FFEE 84.48%, #F2CDFF 91.8%, #6CCAFF 100%), #FFF;
}

.testimonials-frame {
  display: flex;
  align-items: center;
  max-width: 1080px;
  padding: 56px;
  gap: 24px;
  flex-direction: column;
}

.testimonials-header {
  display: flex;
  flex-direction: row;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.testimonials-header p {
  color: var(--Grey-500, #64748B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  flex: 1 0 0;
}

.testimonials-header-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}
.testimonials-header-title span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  align-self: stretch;
}
.testimonials-header-title h2 {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
  align-self: stretch;
}

.testimonials-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.testimonials-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 6px;
  background: #FFF;
}

.card-header {
  display: flex;
  width: 400px;
  height: 196px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
  align-self: stretch;
}

.card-user-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.card-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
}

.card-author-user {
  color: var(--Grey-950, #020617);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.45px;
}

.card-author-username {
  color: var(--Grey-500, #64748B);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.42px;
}

.card-description {
  color: var(--Grey-950, #020617);
  font-family: "Avenir Next";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.51px;
  align-self: stretch;
}

.contact {
  display: flex;
  padding: 80px 0 32px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
}

.contact-header {
  display: flex;
  flex-direction: row;
  max-width: 1080px;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
}
.contact-header p {
  color: var(--Grey-500, #64748B);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  flex: 1 0 0;
}

.contact-header-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}
.contact-header-title span {
  color: var(--Cerulean-Blue-600, #2447FF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.92px;
  align-self: stretch;
}
.contact-header-title h2 {
  color: var(--Cerulean-Blue-950, #131D53);
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.1px;
  align-self: stretch;
}

.contact-main {
  display: flex;
  max-width: 1080px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.contact-form-frame {
  display: flex;
  padding: 40px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 12px !important;
  flex: 1 0 0;
}
.contact-form label {
  color: var(--Slate-950, #020617);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.42px;
}
.contact-form input {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  width: calc(100% - 32px);
}
.contact-form .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}
.contact-form .gfield {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--Grey-300, #CBD5E1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--Grey-300, #CBD5E1);
}
.contact-form textarea {
  display: flex;
  height: 120px;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
  resize: none;
}
.contact-form .gform_footer {
  padding-top: 12px;
}
.contact-form .gform_footer .button-group {
  display: flex;
  justify-content: right;
}
.contact-form .gform_footer button {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  color: #F8FAFC;
  background: linear-gradient(180deg, #4C77FF 0%, #2447FF 100%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.blue-container {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E2E8F0);
  background: linear-gradient(123deg, #4C77FF -0.02%, #2447FF 99.98%);
  box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
}

.icons-frame {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.icons-frame img {
  width: 40px;
  height: 40px;
}
.icons-frame i {
  font-size: 24px;
  opacity: 0.5;
  color: #FFF;
  filter: drop-shadow(0 2px 2px rgba(19, 29, 83, 0.24));
}

.title-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.title-frame h2 {
  color: var(--Grey-50, #F8FAFC);
  font-family: "Noto Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.4px;
  align-self: stretch;
}
.title-frame span {
  color: var(--Grey-50, #F8FAFC);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-self: stretch;
  opacity: 0.5;
}

.contact-mail {
  display: flex;
  padding: 24px 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.contact-mail span {
  color: var(--Grey-300, #CBD5E1);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.6px;
}

.copy-button {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--Grey-300, #CBD5E1);
  background: #FFF;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.copy-button i {
  font-size: 20px;
  color: #94A3B8;
}

.footer {
  display: flex;
  padding: 56px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-bottom: 1px solid var(--Grey-200, #E2E8F0);
  background: #FFF;
}

.footer-header {
  display: flex;
  max-width: 1080px;
  width: calc(100% - 40px);
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
}

.footer-header-leading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 0 0;
}

.footer-header-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-header-list a {
  color: var(--Grey-500, #64748B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
}
.footer-socials i {
  font-size: 20px;
  color: #94A3B8;
}

.footer-bottom span {
  color: var(--Grey-300, #CBD5E1);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .navbar-frame {
    max-width: 90%;
  }
}
/* Hamburger Menu */
.hamburger-menu {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex: 1 0 0;
}

.mobil-menu-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  min-width: calc(100% - 40px);
  padding: 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--Grey-200, #E2E8F0);
}
.mobil-menu-bottom button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.closeicon {
  display: none;
}

.mobile-navbar {
  display: none;
  z-index: 10;
}

@media (max-width: 768px) {
  .hamburger-menu-button {
    display: flex;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.375rem;
    border: 1px solid var(--Grey-300, #CBD5E1);
    background: #FFF;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 -1px 0 0 rgba(18, 18, 18, 0.24) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .hamburger-menu-button .menuicon,
  .hamburger-menu-button .closeicon {
    color: #000;
  }
  .hamburger-menu-button {
    display: flex;
  }
  .default-navbar {
    display: none !important;
  }
  .navbar-list {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .navbar-trailing {
    display: none;
  }
  .mobile-navbar {
    border-bottom: 1px solid var(--Grey-200, #E2E8F0);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
    -webkit-backdrop-filter: blur(32px);
            backdrop-filter: blur(32px);
    background-color: white;
    padding-bottom: 20px;
    left: -20px;
    margin: 0;
    flex-direction: column;
    align-items: center;
    width: calc(100% + 40px);
    position: absolute;
    top: calc(100% + 20px);
    height: -moz-fit-content;
    height: fit-content;
  }
  .mobile-navbar li {
    padding: 12px 0;
  }
  .navbar-list.show {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11rem;
    border-bottom: 1px solid var(--Grey-200, #E2E8F0);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 12px 0 rgba(19, 29, 83, 0.04);
    -webkit-backdrop-filter: blur(32px);
            backdrop-filter: blur(32px);
    left: 0%;
    top: 102%;
  }
  .navbar-list.show li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    gap: 0.75rem !important;
  }
  .navbar-list.show a {
    color: var(--Grey-600, #475569);
    font-size: 18px;
  }
  .navbar-trailing.show {
    display: none;
  }
}
@media (max-width: 615px) {
  .title {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.6px;
  }
  .description-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 1027px) {
  .services {
    padding: 32px 16px;
  }
  .services-frame {
    padding: 20px;
  }
  .services-header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .section-title h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .services-card {
    padding: 16px 0;
    align-items: flex-start;
  }
  .card-title {
    font-size: 16px;
    letter-spacing: -0.8px;
  }
  .getstarted-button {
    display: none;
  }
}
@media (max-width: 926px) {
  .benefits {
    padding: 32px 16px;
  }
  .benefits-frame {
    padding: 20px;
  }
  .benefits-header {
    padding: 0 24px;
  }
  .benefits-header h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .benefits-row {
    flex-direction: column;
    align-items: center;
  }
  .box {
    gap: 32px;
    align-self: stretch;
  }
  .benefits-calendar {
    display: none;
  }
}
@media (max-width: 1162px) {
  .progress {
    padding: 32px 16px;
  }
  .progress-frame {
    flex-direction: column;
    align-self: stretch;
  }
  .progress-info {
    padding: 20px;
    align-self: stretch;
  }
  .progress-header h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .progress-order-header {
    justify-content: center;
  }
  .progress-image {
    padding: 28.75px 42.624px 0 44px;
    justify-content: center;
  }
  .progress-image img {
    display: none;
  }
  .progress-image-mobile {
    display: flex;
    width: 361px;
    height: 594.83px;
  }
}
@media (max-width: 1120px) {
  .projects {
    padding: 32px 16px;
    gap: 32px;
  }
  .projects-header {
    align-self: stretch;
  }
  .projects-header h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .list-frame {
    flex-direction: column;
    align-items: center;
  }
  .list-header {
    align-self: stretch;
    order: 2;
  }
  .list-header h3 {
    font-size: 20px;
    letter-spacing: -1px;
  }
  .list-image {
    height: 300px;
    padding: 20px 30px 0;
  }
  .list-image img {
    width: 100%;
  }
  .blue-button {
    align-self: stretch;
    border: 1px solid var(--Grey-300, #CBD5E1);
    background: #FFF;
  }
  .blue-button-text {
    color: #020617 !important;
  }
  .testimonials {
    padding: 32px 16px;
  }
  .testimonials-frame {
    padding: 20px;
    width: calc(100% - 40px);
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-header-title h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .testimonials-list {
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .testimonials-card {
    width: 300px;
  }
  .card-header {
    gap: 6px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: auto;
  }
  .card-description {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .contact {
    padding: 32px 16px;
    gap: 24px;
    align-self: stretch;
  }
  .contact-header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
  }
  .contact-header-title h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .contact-main {
    flex-direction: column;
    align-items: center;
    max-width: -moz-fit-content;
    max-width: fit-content;
    max-width: 1080px;
    align-self: stretch;
  }
  .contact-form-frame {
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    padding: 20px;
  }
  .contact-form {
    align-items: flex-start;
    gap: 24px !important;
    align-self: stretch;
  }
  .contact-form .gform_fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
  }
  .contact-form .gform_footer .button-group {
    justify-content: center;
    align-self: stretch;
  }
  .contact-form .gform_footer button {
    align-self: stretch;
    width: 100%;
  }
  .contact-form form .gform_fields .ginput_container_textarea {
    display: flex;
  }
  .contact-form form .gform_fields .ginput_container_textarea textarea {
    width: 100%;
  }
  .contact-mail {
    align-self: stretch;
  }
  .contact-mail span {
    font-size: 24px;
    letter-spacing: -1.2px;
  }
}
@media (max-width: 974px) {
  .footer {
    padding: 32px 16px;
  }
  .footer-header {
    flex-direction: column;
  }
  .footer-header-list {
    justify-content: center;
    align-content: center;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
  }
  .footer-socials {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */