@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap");
footer .navigation h3, .mobile-nav .navigation .nav-item .nav-content dl a dt {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card .logo {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

footer .company .copyright a, footer .company .copyright p, .mobile-nav .navigation .nav-item .nav-content dl a dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card div, .btn {
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
}

.link {
  font-weight: 400;
  font-size: 28px;
  line-height: 48px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card ul li a, .mobile-nav .navigation .nav-item .nav-content ul li a, .mobile-nav .navigation .nav-item button span {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

footer .navigation h3, .mobile-nav .navigation .nav-item .nav-content dl a dt {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card .logo {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

footer .company .copyright a, footer .company .copyright p, .mobile-nav .navigation .nav-item .nav-content dl a dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card div, .btn {
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
}

.link {
  font-weight: 400;
  font-size: 28px;
  line-height: 48px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card ul li a, .mobile-nav .navigation .nav-item .nav-content ul li a, .mobile-nav .navigation .nav-item button span {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(30px, auto);
  grid-gap: 15px;
  align-items: center;
  margin: 0px 16px;
}
@media screen and (min-width: 37.5rem) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 25px;
    margin: 0px 32px;
  }
}
@media screen and (min-width: 48rem) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 25px;
    margin: 0px 60px;
  }
}
@media screen and (min-width: 64rem) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    margin: 0px 60px;
  }
}
@media screen and (min-width: 75rem) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    margin: 0px 128px;
  }
}

footer .navigation h3, .mobile-nav .navigation .nav-item .nav-content dl a dt {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card .logo {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

footer .company .copyright a, footer .company .copyright p, .mobile-nav .navigation .nav-item .nav-content dl a dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card div, .btn {
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
}

.link {
  font-weight: 400;
  font-size: 28px;
  line-height: 48px;
}

.mobile-nav .navigation .nav-item .nav-content .product-card ul li a, .mobile-nav .navigation .nav-item .nav-content ul li a, .mobile-nav .navigation .nav-item button span {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.btn {
  width: max-content;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  padding: 10px 24px;
  border-radius: 8px;
  background: none;
}
.btn img,
.btn svg {
  width: 24px;
  height: 24px;
}
.btn.btn-lg {
  padding: 16px 24px;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.icon-btn {
  width: max-content;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 8px;
  border-radius: 30px;
}
.icon-btn img,
.icon-btn svg {
  width: 24px;
  height: 24px;
}
.icon-btn.btn-lg {
  padding: 16px;
}

.primary {
  background-color: #006cff;
  color: #ffffff;
  transition: background 0.5s ease-out;
}
.primary.disabled, .primary:disabled {
  background-color: #ebecf0;
  color: #505f79;
  cursor: not-allowed;
}
.primary.disabled:hover, .primary.disabled:active, .primary:disabled:hover, .primary:disabled:active {
  background-color: #ebecf0;
  color: #505f79;
  cursor: not-allowed;
}
.primary:hover, .primary:active {
  background-color: #0747a6;
  transition: background 0.5s ease-in;
}

.secondary {
  border: 2px solid #006cff;
  color: #006cff;
  transition: background 0.3s ease-out;
}
.secondary.disabled, .secondary:disabled {
  border-color: #b3bac5;
  color: #b3bac5;
  cursor: not-allowed;
}
.secondary.disabled:hover, .secondary.disabled:active, .secondary:disabled:hover, .secondary:disabled:active {
  border-color: #b3bac5;
  color: #b3bac5;
  cursor: not-allowed;
}
.secondary:hover, .secondary:active {
  background-color: #ddeaf8;
  transition: background 0.3s ease-in;
}

.icon-btn.secondary {
  border-width: 1px;
}

.tertiary {
  color: #006cff;
  transition: color 0.3s ease-out;
}
.tertiary.disabled, .tertiary:disabled {
  color: #505f79;
  cursor: not-allowed;
}
.tertiary.disabled:hover, .tertiary.disabled:active, .tertiary:disabled:hover, .tertiary:disabled:active {
  color: #505f79;
  cursor: not-allowed;
}
.tertiary:hover, .tertiary:active {
  color: #0747a6;
  text-decoration: underline;
  transition: color 0.3s ease-in;
}

.btn.primary.full-width,
.btn.secondary.full-width {
  width: 100%;
  display: inline-flex;
}

.link {
  width: max-content;
  display: flex;
  align-items: center;
  text-decoration-line: underline;
  color: #006cff;
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.link:hover, .link:active, .link:visited {
  color: #0747a6;
  transition: color 0.3s ease-in;
}

footer .navigation > div ul li a, .desktop-nav .navigation .nav-item button span {
  font-family: "Figtree", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Figtree", sans-serif;
  font-style: normal;
  position: relative;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

a:not([href]):hover::after {
  content: "Coming Soon";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8509803922);
}

ul {
  list-style-type: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

button {
  cursor: pointer;
}

.animate__animated.animate__fadeIn {
  animation-delay: 0s;
  animation-duration: 0.3s;
}

header {
  margin: 0;
  background: transparent;
  position: sticky;
  top: -1px;
  z-index: 1000;
}

.mobile-nav {
  width: 100%;
  text-align: left;
}
.mobile-nav:hover {
  background-color: #ffffff;
}
.mobile-nav:hover .nav-head .logo .white-logo {
  display: none;
}
.mobile-nav:hover .nav-head .logo .color-logo {
  display: block;
}
.mobile-nav:hover .hamburger .hamburger-box .hamburger-inner {
  background-color: #172b4d;
}
.mobile-nav:hover .hamburger .hamburger-box .hamburger-inner::before {
  background-color: #172b4d;
}
.mobile-nav:hover .hamburger .hamburger-box .hamburger-inner::after {
  background-color: #172b4d;
}
@media screen and (min-width: 1023px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav .nav-head {
  padding: 16px 24px;
  margin: 0;
}
.mobile-nav .nav-head .logo {
  grid-column: 1/8;
  display: block;
  width: 120px;
}
.mobile-nav .nav-head .logo .color-logo {
  display: none;
}
.mobile-nav .navigation {
  background: #ffffff;
  position: absolute;
  height: 93vh;
  width: 100%;
  top: 66px;
  display: none;
  overflow: auto;
}
.mobile-nav .navigation hr {
  border: none;
  background-color: transparent;
  color: transparent;
  border-top: 1px solid #ebecf0;
}
.mobile-nav .navigation .nav-item {
  grid-column: 1/5;
}
.mobile-nav .navigation .nav-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  font-style: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 16px 24px;
  color: #172b4d;
}
@media screen and (min-width: 37.5rem) {
  .mobile-nav .navigation .nav-item button {
    padding: 16px 32px;
  }
}
@media screen and (min-width: 48rem) {
  .mobile-nav .navigation .nav-item button {
    padding: 24px 60px;
  }
}
.mobile-nav .navigation .nav-item button .chevron {
  width: 20px;
  height: 20px;
}
.mobile-nav .navigation .nav-item button .chevron-up {
  display: none;
}
.mobile-nav .navigation .nav-item button:hover {
  background: #f1f6fc;
  color: #006cff;
}
.mobile-nav .navigation .nav-item button.active {
  background: #f1f6fc;
  color: #006cff;
}
.mobile-nav .navigation .nav-item button.active .chevron-down {
  display: none;
}
.mobile-nav .navigation .nav-item button.active .chevron-up {
  display: inline;
}
.mobile-nav .navigation .nav-item .nav-content {
  display: none;
  padding: 24px;
  width: 100%;
}
@media screen and (min-width: 37.5rem) {
  .mobile-nav .navigation .nav-item .nav-content {
    padding: 24px 32px;
  }
}
@media screen and (min-width: 48rem) {
  .mobile-nav .navigation .nav-item .nav-content {
    padding: 24px 60px;
  }
}
.mobile-nav .navigation .nav-item .nav-content div {
  margin-bottom: 30px;
}
.mobile-nav .navigation .nav-item .nav-content div:last-of-type {
  margin-bottom: 0%;
}
.mobile-nav .navigation .nav-item .nav-content h2 {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b3bac5;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ebecf0;
  padding-bottom: 8px;
}
.mobile-nav .navigation .nav-item .nav-content ul {
  margin-left: -10px;
}
.mobile-nav .navigation .nav-item .nav-content ul li a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #172b4d;
  padding: 10px;
}
.mobile-nav .navigation .nav-item .nav-content ul li a:hover {
  border: 1px solid #ebecf0;
  border-radius: 4px;
  background: #f4f5f7;
  transition: background 0.5s ease;
}
.mobile-nav .navigation .nav-item .nav-content dl {
  margin-left: -10px;
}
.mobile-nav .navigation .nav-item .nav-content dl a {
  display: block;
  padding: 10px;
  margin-bottom: 12px;
}
.mobile-nav .navigation .nav-item .nav-content dl a dt {
  color: #172b4d;
  margin-bottom: 0.5rem;
}
.mobile-nav .navigation .nav-item .nav-content dl a dd {
  color: #505f79;
}
.mobile-nav .navigation .nav-item .nav-content dl a:hover {
  border: 1px solid #ebecf0;
  border-radius: 4px;
  background: #f4f5f7;
  transition: background 0.5s ease;
}
.mobile-nav .navigation .nav-item .nav-content .product-card {
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.mobile-nav .navigation .nav-item .nav-content .product-card:last-of-type {
  margin-bottom: 0%;
}
.mobile-nav .navigation .nav-item .nav-content .product-card .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: flex;
  align-items: center;
  color: #172b4d;
}
.mobile-nav .navigation .nav-item .nav-content .product-card .logo a {
  color: inherit;
  display: flex;
  align-items: center;
  column-gap: 5px;
  width: max-content;
}
.mobile-nav .navigation .nav-item .nav-content .product-card .logo a span {
  display: block;
  width: max-content;
}
.mobile-nav .navigation .nav-item .nav-content .product-card a,
.mobile-nav .navigation .nav-item .nav-content .product-card img {
  display: block;
  width: 120px;
  margin-bottom: 24px;
}
.mobile-nav .navigation .nav-item .nav-content .product-card ul {
  margin: 0;
  margin-left: -10px;
}
.mobile-nav .navigation .nav-item .nav-content .product-card ul li {
  margin: 0;
}
.mobile-nav .navigation .nav-item .nav-content .product-card ul li a {
  display: block;
  width: 100%;
  color: #172b4d;
  margin: 0;
}
.mobile-nav .navigation .nav-item .nav-content .product-card div {
  color: #505f79;
}
.mobile-nav .navigation .nav-item .nav-content .express-protocol {
  background: #f8f3fe;
}
.mobile-nav .navigation .nav-item .nav-content .unity-market {
  background: #fff8e5;
}
.mobile-nav .navigation .nav-item .nav-content .aconomy {
  background: #fdf3e1;
}
.mobile-nav .navigation .nav-item .nav-content .social-list-2 {
  margin: 0;
  row-gap: 0;
}
.mobile-nav .navigation .nav-item .nav-content .social-list-2 li {
  margin: 0;
}
.mobile-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(odd) {
  grid-column: 1/3;
}
.mobile-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(even) {
  grid-column: 3/5;
}
.mobile-nav .navigation .nav-item .nav-content.active {
  display: block;
}
.mobile-nav .navigation .social-media {
  padding: 24px 0px;
  row-gap: 0px;
}
.mobile-nav .navigation .social-media > * {
  grid-column: 1/5;
}
.mobile-nav .navigation .social-media div {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #172b4d;
  margin-bottom: 1rem;
}
.mobile-nav .navigation .social-media .social-list {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.mobile-nav .navigation .social-media .social-list .social-icon a {
  color: #172b4d;
  display: block;
  width: 24px;
  height: 24px;
}
.mobile-nav .navigation .social-media .social-list .social-icon a:hover {
  color: #006cff;
}
.mobile-nav .navigation.active {
  display: block;
}

.hamburger {
  grid-column: 8/9;
  height: 1.5rem;
  margin-top: 0.3125rem;
  padding: 16px 0px;
  display: flex;
  justify-content: right;
}
.hamburger .hamburger-box .hamburger-inner {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.hamburger .hamburger-box .hamburger-inner::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.hamburger .hamburger-box .hamburger-inner::after {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}

.desktop-nav {
  padding: 16px 128px;
  margin: 0;
}
.desktop-nav:hover {
  background: #ffffff;
}
.desktop-nav:hover .nav-head .logo .white-logo {
  display: none;
}
.desktop-nav:hover .nav-head .logo .color-logo {
  display: block;
}
.desktop-nav:hover .navigation .nav-item button {
  color: #172b4d;
}
.desktop-nav:hover .social-list .social-icon a {
  color: #172b4d;
}
@media screen and (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
}
.desktop-nav .nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  width: 100%;
  grid-column: 1/3;
}
.desktop-nav .nav-head .logo {
  display: block;
  width: 120px;
  height: 31px;
}
.desktop-nav .nav-head .logo .color-logo {
  display: none;
}
.desktop-nav .navigation {
  grid-column: 3/10;
}
.desktop-nav .navigation .nav-list {
  display: flex;
  justify-content: center;
  column-gap: 24px;
}
.desktop-nav .navigation .nav-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  color: #ffffff;
}
.desktop-nav .navigation .nav-item button .chevron {
  width: 20px;
  height: 20px;
}
.desktop-nav .navigation .nav-item button .chevron-up {
  display: none;
}
.desktop-nav .navigation .nav-item button:hover {
  color: #006cff;
}
.desktop-nav .navigation .nav-item button.active {
  color: #006cff;
}
.desktop-nav .navigation .nav-item button.active .chevron-down {
  display: none;
}
.desktop-nav .navigation .nav-item button.active .chevron-up {
  display: inline;
}
.desktop-nav .navigation .nav-item .nav-content {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  background-color: #ffffff;
  margin: 10px 0px;
  padding: 24px 128px;
  column-gap: 50px;
  text-align: left;
  box-shadow: 0px 5px 6px rgba(58, 58, 58, 0.1);
}
@media screen and (min-width: 37.5rem) {
  .desktop-nav .navigation .nav-item .nav-content {
    padding: 24px 32px;
  }
}
@media screen and (min-width: 48rem) {
  .desktop-nav .navigation .nav-item .nav-content {
    padding: 24px 60px;
  }
}
@media screen and (min-width: 48rem) {
  .desktop-nav .navigation .nav-item .nav-content {
    padding: 24px 128px;
  }
}
.desktop-nav .navigation .nav-item .nav-content div {
  margin-bottom: 30px;
}
.desktop-nav .navigation .nav-item .nav-content div:last-of-type {
  margin-bottom: 0%;
}
.desktop-nav .navigation .nav-item .nav-content h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b3bac5;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ebecf0;
  padding-bottom: 8px;
  min-width: max-content;
  width: 100%;
}
.desktop-nav .navigation .nav-item .nav-content ul {
  margin-left: -10px;
}
.desktop-nav .navigation .nav-item .nav-content ul li a {
  display: flex;
  column-gap: 7px;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #172b4d;
  padding: 10px;
}
.desktop-nav .navigation .nav-item .nav-content ul li a:hover {
  border: 1px solid #ebecf0;
  border-radius: 4px;
  background: #f4f5f7;
  transition: background 0.5s ease;
}
.desktop-nav .navigation .nav-item .nav-content dl {
  margin-left: -10px;
}
.desktop-nav .navigation .nav-item .nav-content dl a {
  display: block;
  padding: 10px;
  margin-bottom: 12px;
}
.desktop-nav .navigation .nav-item .nav-content dl a dt {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #172b4d;
  margin-bottom: 8px;
}
.desktop-nav .navigation .nav-item .nav-content dl a dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #505f79;
}
.desktop-nav .navigation .nav-item .nav-content dl a:hover {
  border: 1px solid #ebecf0;
  border-radius: 4px;
  background: #f4f5f7;
  transition: background 0.5s ease;
}
.desktop-nav .navigation .nav-item .nav-content.products {
  column-gap: 24px;
}
.desktop-nav .navigation .nav-item .nav-content .product-card {
  padding: 24px;
  border-radius: 12px;
  width: 100%;
  height: 250px;
}
.desktop-nav .navigation .nav-item .nav-content .product-card .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #172b4d;
  margin-bottom: 1.5rem;
}
.desktop-nav .navigation .nav-item .nav-content .product-card .logo a {
  color: inherit;
  display: flex;
  align-items: center;
  column-gap: 5px;
  width: max-content;
}
.desktop-nav .navigation .nav-item .nav-content .product-card .logo a span {
  display: block;
  width: max-content;
}
.desktop-nav .navigation .nav-item .nav-content .product-card img {
  display: block;
  width: 120px;
  height: max-content;
}
.desktop-nav .navigation .nav-item .nav-content .product-card ul {
  margin: 0;
}
.desktop-nav .navigation .nav-item .nav-content .product-card ul li {
  margin: 0;
}
.desktop-nav .navigation .nav-item .nav-content .product-card ul li a {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #172b4d;
  margin: 0;
}
.desktop-nav .navigation .nav-item .nav-content .product-card div {
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  color: #505f79;
}
.desktop-nav .navigation .nav-item .nav-content .express-protocol {
  background: #f8f3fe;
}
.desktop-nav .navigation .nav-item .nav-content .unity-market {
  background: #fff8e5;
}
.desktop-nav .navigation .nav-item .nav-content .aconomy {
  background: #fdf3e1;
}
.desktop-nav .navigation .nav-item .nav-content .aconomy img {
  height: 37px;
}
.desktop-nav .navigation .nav-item .nav-content .social-list-2 {
  margin: 0;
  row-gap: 0;
}
.desktop-nav .navigation .nav-item .nav-content .social-list-2 li {
  margin: 0;
}
.desktop-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(odd) {
  grid-column: 1/3;
}
@media screen and (min-width: 64rem) {
  .desktop-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(odd) {
    grid-column: 1/7;
  }
}
.desktop-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(even) {
  grid-column: 3/5;
}
@media screen and (min-width: 64rem) {
  .desktop-nav .navigation .nav-item .nav-content .social-list-2 li:nth-of-type(even) {
    grid-column: 7/13;
  }
}
.desktop-nav .navigation .nav-item .nav-content.active {
  display: flex;
}
.desktop-nav .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  padding: 0px;
  grid-column: 10/13;
}
.desktop-nav .social-list .social-icon a {
  display: block;
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.desktop-nav .social-list .social-icon a:hover {
  color: #006cff;
}
.desktop-nav.active {
  display: block;
}

header[stuck] .mobile-nav,
header[active] .mobile-nav {
  background-color: #ffffff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
header[stuck] .mobile-nav .nav-head .logo .white-logo,
header[active] .mobile-nav .nav-head .logo .white-logo {
  display: none;
}
header[stuck] .mobile-nav .nav-head .logo .color-logo,
header[active] .mobile-nav .nav-head .logo .color-logo {
  display: block;
}
header[stuck] .mobile-nav .hamburger .hamburger-box .hamburger-inner,
header[active] .mobile-nav .hamburger .hamburger-box .hamburger-inner {
  background-color: #172b4d;
}
header[stuck] .mobile-nav .hamburger .hamburger-box .hamburger-inner::before,
header[active] .mobile-nav .hamburger .hamburger-box .hamburger-inner::before {
  background-color: #172b4d;
}
header[stuck] .mobile-nav .hamburger .hamburger-box .hamburger-inner::after,
header[active] .mobile-nav .hamburger .hamburger-box .hamburger-inner::after {
  background-color: #172b4d;
}
header[stuck] .desktop-nav,
header[active] .desktop-nav {
  background: #ffffff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
header[stuck] .desktop-nav .nav-head .logo .white-logo,
header[active] .desktop-nav .nav-head .logo .white-logo {
  display: none;
}
header[stuck] .desktop-nav .nav-head .logo .color-logo,
header[active] .desktop-nav .nav-head .logo .color-logo {
  display: block;
}
header[stuck] .desktop-nav .navigation .nav-item button,
header[active] .desktop-nav .navigation .nav-item button {
  color: #172b4d;
}
header[stuck] .desktop-nav .navigation .nav-item button:hover,
header[active] .desktop-nav .navigation .nav-item button:hover {
  color: #006cff;
}
header[stuck] .desktop-nav .navigation .nav-item button.active,
header[active] .desktop-nav .navigation .nav-item button.active {
  color: #006cff;
}
header[stuck] .desktop-nav .social-list .social-icon a,
header[active] .desktop-nav .social-list .social-icon a {
  color: #172b4d;
}
header[stuck] .desktop-nav .social-list .social-icon a:hover,
header[active] .desktop-nav .social-list .social-icon a:hover {
  color: #006cff;
}

header[active] .mobile-nav,
header[active] .desktop-nav {
  box-shadow: none;
}

#hero {
  background-repeat: no-repeat;
  background-size: 1200px 100%;
  background-position: center;
  height: 95vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 64rem) {
  #hero {
    background-size: cover;
    justify-content: center;
    height: 86vh;
  }
}
#hero #background-video {
  width: 100%;
  height: 95vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#hero > div {
  row-gap: 0px;
  margin-bottom: 70px;
}
#hero > div > * {
  grid-column: 1/5;
  text-align: left;
}
@media screen and (min-width: 37.5rem) {
  #hero > div > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #hero > div > * {
    grid-column: 1/13;
    text-align: center;
  }
}
#hero > div h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media screen and (min-width: 64rem) {
  #hero > div h1 {
    font-size: 44px;
    line-height: 56px;
  }
}
#hero > div div {
  color: #ffffff;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
}
@media screen and (min-width: 48rem) {
  #hero > div div br {
    display: none;
  }
}
#hero > div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
@media screen and (min-width: 64rem) {
  #hero > div p {
    font-size: 22px;
    line-height: 36px;
    width: 70%;
    margin: auto;
  }
}

#section1 {
  padding: 72px 0px;
  text-align: left;
}
@media screen and (min-width: 64rem) {
  #section1 {
    text-align: center;
  }
}
#section1 > div {
  row-gap: 0;
}
@media screen and (min-width: 75rem) {
  #section1 > div {
    margin: 0px 128px;
  }
}
#section1 > div > * {
  grid-column: 1/5;
}
@media screen and (min-width: 37.5rem) {
  #section1 > div > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section1 > div > * {
    grid-column: 1/13;
  }
}
#section1 h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #172b4d;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 64rem) {
  #section1 h2 {
    font-size: 44px;
    line-height: 56px;
  }
}
#section1 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #505f79;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  #section1 p {
    font-size: 18px;
    line-height: 28px;
  }
}
#section1 .btn-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 12px;
  margin-bottom: 64px;
}
@media screen and (min-width: 48rem) {
  #section1 .btn-links {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    column-gap: 16px;
    width: max-content;
  }
}
@media screen and (min-width: 64rem) {
  #section1 .btn-links {
    margin: 0px auto 42px auto;
    column-gap: 12px;
  }
}
#section1 .btn-links a {
  height: 100%;
}
@media screen and (min-width: 48rem) {
  #section1 .btn-links a {
    width: max-content;
  }
}
@media screen and (min-width: 64rem) {
  #section1 .ecosystem-outlines {
    display: flex;
    column-gap: 24px;
    margin: auto;
  }
}
@media screen and (min-width: 75rem) {
  #section1 .ecosystem-outlines {
    width: max-content;
  }
}
#section1 .outline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 24px;
  margin-bottom: 32px;
}
@media screen and (min-width: 37.5rem) {
  #section1 .outline-item {
    display: grid;
    grid-template-columns: 15% 85%;
    align-items: center;
  }
}
@media screen and (min-width: 64rem) {
  #section1 .outline-item {
    display: block;
    padding: 16px 24px;
    max-width: 354px;
  }
}
#section1 .outline-item img {
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 64rem) {
  #section1 .outline-item img {
    margin-bottom: 24px;
  }
}
#section1 .outline-item div h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #172b4d;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 64rem) {
  #section1 .outline-item div h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
#section1 .outline-item div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #505f79;
  margin: 0%;
}
@media screen and (min-width: 64rem) {
  #section1 .outline-item div p {
    font-size: 18px;
    line-height: 28px;
  }
}

#section2 {
  padding: 72px 0px;
  text-align: left;
}
@media screen and (min-width: 64rem) {
  #section2 {
    text-align: center;
    margin: 0px 72px;
  }
}
@media screen and (min-width: 75rem) {
  #section2 {
    margin: 0px 136px;
  }
}
#section2 > * {
  grid-column: 1/5;
}
@media screen and (min-width: 37.5rem) {
  #section2 > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section2 > * {
    grid-column: 1/13;
  }
}
#section2 h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #172b4d;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  #section2 h2 {
    font-size: 44px;
    line-height: 56px;
  }
}
#section2 .products {
  margin: 0;
}
#section2 .products > * {
  grid-column: 1/5;
}
@media screen and (min-width: 37.5rem) {
  #section2 .products > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section2 .products > * {
    grid-column: 1/13;
    column-gap: 32px;
  }
}
#section2 .products .product {
  padding: 48px 32px;
  border-radius: 32px;
  text-align: left;
  height: 100%;
}
@media screen and (min-width: 64rem) {
  #section2 .products .product {
    padding: 48px;
  }
}
#section2 .products .product .product-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (min-width: 64rem) {
  #section2 .products .product .product-logo {
    margin-bottom: 30px;
  }
}
#section2 .products .product .product-logo img {
  width: 148.24px;
  height: 56px;
}
@media screen and (min-width: 64rem) {
  #section2 .products .product .product-logo img {
    width: 208.72px;
    height: 72px;
  }
}
#section2 .products .product h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #172b4d;
  margin-bottom: 0.5rem;
}
#section2 .products .product p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #172b4d;
}
@media screen and (min-width: 64rem) {
  #section2 .products .product p {
    font-size: 18px;
    line-height: 28px;
  }
}
#section2 .products .product1 {
  background: #ebecf0;
}
@media screen and (min-width: 48rem) {
  #section2 .products .product1 {
    grid-column: 1/5;
  }
}
@media screen and (min-width: 64rem) {
  #section2 .products .product1 {
    grid-column: 1/7;
  }
}
#section2 .products .product1 .product-logo div {
  background: #172b4d;
}
#section2 .products .product2 {
  background: #ecfaf9;
}
@media screen and (min-width: 48rem) {
  #section2 .products .product2 {
    grid-column: 5/9;
  }
}
@media screen and (min-width: 64rem) {
  #section2 .products .product2 {
    grid-column: 7/13;
  }
}
#section2 .products .product2 .product-logo div {
  background: #17694b;
}
#section2 .products .product3 {
  background: #f8f3fe;
}
@media screen and (min-width: 48rem) {
  #section2 .products .product3 {
    grid-column: 5/9;
  }
}
@media screen and (min-width: 64rem) {
  #section2 .products .product3 {
    grid-column: 7/13;
  }
}
#section2 .products .product3 .product-logo div {
  background: #833ef2;
}

#section3 {
  padding: 159px 0px;
  color: #172b4d;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 64rem) {
  #section3 {
    padding: 50px 0px;
    text-align: center;
  }
}
#section3 #background-video-section3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}
#section3 div {
  row-gap: 0;
}
@media screen and (min-width: 75rem) {
  #section3 div {
    margin: 0px 200px;
  }
}
#section3 div > * {
  grid-column: 1/5;
}
@media screen and (min-width: 37.5rem) {
  #section3 div > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section3 div > * {
    grid-column: 1/13;
  }
}
#section3 div h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 64rem) {
  #section3 div h2 {
    font-size: 44px;
    line-height: 56px;
  }
}
#section3 div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  #section3 div p {
    font-size: 18px;
    line-height: 28px;
  }
}
#section3 div a {
  height: 100%;
}
@media screen and (min-width: 48rem) {
  #section3 div a {
    width: max-content;
    margin: auto;
  }
}

#section4 {
  padding: 72px 0px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
#section4 > div {
  row-gap: 0;
}
@media screen and (min-width: 75rem) {
  #section4 > div {
    margin: 0px 128px;
  }
}
@media screen and (min-width: 64rem) {
  #section4 {
    text-align: center;
  }
}
#section4 h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #172b4d;
  grid-column: 1/5;
  margin-bottom: 2rem;
}
@media screen and (min-width: 37.5rem) {
  #section4 h2 {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section4 h2 {
    grid-column: 1/13;
    font-size: 44px;
    line-height: 56px;
  }
}
#section4 .carousel-wrapper {
  grid-column: 1/5;
  position: static;
  width: 100%;
}
#section4 .carousel-wrapper .owl-carousel {
  position: static;
}
@media screen and (min-width: 37.5rem) {
  #section4 .carousel-wrapper {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  #section4 .carousel-wrapper {
    grid-column: 1/13;
  }
}
#section4 .carousel-wrapper .owl-item {
  margin: auto;
}
#section4 .carousel-wrapper .owl-item img {
  border-radius: 4px 4px 0px 0px;
}
#section4 .carousel-wrapper .owl-item .content {
  text-align: left;
}
#section4 .carousel-wrapper .owl-item .content h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #172b4d;
  margin: 16px 0px;
}
#section4 .carousel-wrapper .owl-item .content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #505f79;
}
#section4 .carousel-wrapper .owl-nav {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 24px;
}
@media screen and (min-width: 64rem) {
  #section4 .carousel-wrapper .owl-nav {
    justify-content: space-between;
    padding: 0px 10px;
    position: absolute;
    top: 50%;
    left: 2px;
    right: 0;
    width: 99vw;
  }
}
@media screen and (min-width: 75rem) {
  #section4 .carousel-wrapper .owl-nav {
    padding: 0px 60px;
  }
}
#section4 .carousel-wrapper .owl-nav button {
  display: block;
  border: 2px solid #006cff;
  border-radius: 8px;
  padding: 10px 24px;
  color: #ffffff;
  width: 44px;
  height: 44px;
  background: #006cff;
  border-radius: 30px;
  font-size: 24px;
  font-weight: bold;
}
#section4 .carousel-wrapper .owl-nav button:hover, #section4 .carousel-wrapper .owl-nav button:active {
  background-color: #0747a6;
  border: none;
}

footer {
  padding: 72px 0px;
  text-align: left;
  background: #fafbfc;
}
footer .content {
  row-gap: 0;
}
footer .content > * {
  grid-column: 1/5;
}
@media screen and (min-width: 37.5rem) {
  footer .content > * {
    grid-column: 1/9;
  }
}
@media screen and (min-width: 64rem) {
  footer .content > * {
    grid-column: 1/13;
  }
}
footer .navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
}
@media screen and (min-width: 64rem) {
  footer .navigation {
    grid-template-columns: repeat(12, 1fr);
  }
}
footer .navigation h3 {
  color: #172b4d;
  margin-bottom: 1.25rem;
}
footer .navigation > div ul li a {
  display: flex;
  column-gap: 5px;
  align-items: center;
  height: max-content;
  color: #505f79;
  margin-bottom: 1rem;
}
footer .navigation > div ul li a:hover {
  color: #006cff;
}
footer .navigation > div:nth-of-type(1) {
  grid-column: 1/5;
  margin-bottom: 64px;
}
@media screen and (min-width: 48rem) {
  footer .navigation > div:nth-of-type(1) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 64rem) {
  footer .navigation > div:nth-of-type(1) {
    grid-column: 9/13;
    grid-row: 1/2;
  }
}
footer .navigation > div:nth-of-type(1) ul {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
footer .navigation > div:nth-of-type(1) ul li a {
  color: #172b4d;
}
footer .navigation > div:nth-of-type(1) ul li a:hover {
  color: #006cff;
}
footer .navigation > div:nth-of-type(2) {
  grid-column: 1/3;
  grid-row: 2/3;
  margin-bottom: 48px;
}
@media screen and (min-width: 48rem) {
  footer .navigation > div:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0;
  }
}
@media screen and (min-width: 64rem) {
  footer .navigation > div:nth-of-type(2) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
footer .navigation > div:nth-of-type(3) {
  grid-column: 3/5;
  grid-row: 2/3;
  margin-bottom: 48px;
}
@media screen and (min-width: 48rem) {
  footer .navigation > div:nth-of-type(3) {
    grid-row: 1/2;
    grid-column: 2/3;
    margin: 0;
  }
}
@media screen and (min-width: 64rem) {
  footer .navigation > div:nth-of-type(3) {
    grid-column: 3/5;
    grid-row: 1/2;
  }
}
footer .navigation > div:last-of-type {
  grid-column: 1/5;
  grid-row: 3/4;
}
@media screen and (min-width: 48rem) {
  footer .navigation > div:last-of-type {
    grid-row: 1/2;
    grid-column: 3/4;
  }
}
@media screen and (min-width: 64rem) {
  footer .navigation > div:last-of-type {
    grid-column: 5/9;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 48rem) {
  footer .company {
    display: flex;
    column-gap: 150px;
    align-items: center;
  }
}
footer .company .logo {
  width: 138px;
  height: 32px;
  margin-bottom: 30px;
}
@media screen and (min-width: 37.5rem) {
  footer .company .logo {
    grid-column: 1/3;
    margin: 0;
  }
}
@media screen and (min-width: 64rem) {
  footer .company .logo {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 48rem) {
  footer .company .copyright {
    display: flex;
    column-gap: 16px;
    align-items: center;
  }
}
footer .company .copyright p {
  color: #505f79;
  margin-bottom: 1rem;
}
@media screen and (min-width: 48rem) {
  footer .company .copyright p {
    margin-bottom: 0px;
  }
}
footer .company .copyright a {
  color: #172b4d;
}
footer .company .copyright a:hover {
  color: #006cff;
}
footer .company .copyright a:first-of-type {
  margin-right: 16px;
}
@media screen and (min-width: 48rem) {
  footer .company .copyright a:first-of-type {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
