/* Satoshi [400] */
@font-face {
  font-family: "satoshiRegular";
  src: url("../fonts/satoshi/regular.ttf");
}

/* Satoshi [500] */
@font-face {
  font-family: "satoshiMedium";
  src: url("../fonts/satoshi/medium.ttf");
}

/* Satoshi [700] */
@font-face {
  font-family: "satoshiBold";
  src: url("../fonts/satoshi/bold.ttf");
}

/* Glacial [400] */
@font-face {
  font-family: "glacialRegular";
  src: url("../fonts/glacial/regular.ttf.woff");
}

:root {
  font-family: var(--primary-font-400);

  --primary-color-100: #e0d7e9;
  --primary-color-200: #a386be;
  --primary-color-300: #845ea8;
  --primary-color-400: #4c296e;
  --primary-color-500: #422552e5;
  --primary-color-600: #44255e;
  --primary-color-700: #190e25;
  --primary-color-hero: #512d59;

  --secondary-color-50: #e7f6f2;
  --secondary-color-100: #d7f1e9;
  --secondary-color-200: #87d5be;
  --secondary-color-300: #5fc7a9;
  --secondary-color-400: #37b993;
  --secondary-color-500: #298b6e;
  --secondary-color-600: #06130f;

  --dark-color: #0d0d0d;
  --grey-color: #606060;

  --border-color: #cfcfcf;

  --primary-font-400: "satoshiRegular", sans-serif;
  --primary-font-500: "satoshiMedium", sans-serif;
  --primary-font-700: "satoshiBold", sans-serif;
  --secondary-font-400: "glacialRegular", sans-serif;

  --font-typo-sm: 14px;
  --font-typo-md: 16px;
  --font-typo-lg: 18px;
  --font-typo-xl: 20px;
  --font-typo-xl2: 24px;
  --font-typo-xxl2: 40px;
  --font-typo-xxl: 48px;
  --font-typo-xxxl: 72px;

  --header-h: 82px;
  --hero-gap: 102px;
  --section-gap: 90px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-h: 60px;
  }
}

@media screen and (max-width: 1099px) {
  :root {
    --font-typo-md: 15px;
    --font-typo-lg: 16px;
    --font-typo-xl: 18px;
    --font-typo-xxl: 36px;
    --font-typo-xxxl: 48px;

    --hero-gap: 62px;
    --section-gap: 60px;
  }
}

.flex {
  display: flex;
}

.flow-column {
  flex-flow: column;
}

.align-center {
  align-items: center;
}

.w-4 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-5 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-6 {
  width: 60%;
}

.w-7 {
  width: 70%;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.p-xy-5 {
  padding: 5px;
}

.p-xy-7 {
  padding: 7px;
}

.p-xy-10 {
  padding: 10px;
}

.p-xy-15 {
  padding: 15px;
}

.p-xy-24 {
  padding: 24px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-100 {
  padding-right: 100px;
}

.mt-gap {
  margin-top: var(--section-gap);
}

.mb-gap {
  margin-bottom: var(--section-gap);
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-6 {
  margin-top: 60px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-auto {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .m-30-y-mobile {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .w-4,
  .w-45,
  .w-5,
  .w-55,
  .w-6,
  .w-7 {
    width: 100%;
  }

  .pl-50,
  .pl-100 {
    padding-left: 0;
  }
  .pr-100,
  .pr-50 {
    padding-right: 0;
  }

  .flex-flow-column-mobile {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  .oreed-hero-content {
    text-align: center;
  }
}

.oreed-hero-content--50 {
  width: 50%;
}

.oreed-hero-content--75 {
  width: 75%;
}

@media screen and (max-width: 1099px) {
  .oreed-hero-content--50,
  .oreed-hero-content--75 {
    width: 100%;
  }
}

.oreed-hero-content_heading_sub {
  font-family: var(--primary-font-500);
  font-size: var(--font-typo-xl2);
  line-height: 30px;
  margin-bottom: 16px;
  display: block;
}

.oreed-hero-content_heading {
  font-family: var(--secondary-font-400);
  font-size: var(--font-typo-xxxl);
  line-height: 74px;
  letter-spacing: -0.01em;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .oreed-hero-content_heading {
    line-height: 50px;
  }
}

.oreed-hero-content_description {
  font-family: var(--primary-font-400);
  font-size: var(--font-typo-xl);
  line-height: 30px;
  margin: 34px 0;
}

@media screen and (max-width: 767px) {
  .oreed-hero-content_description {
    margin: 24px 0;
  }
}

.oreed-btn {
  background-color: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  min-width: 131px;
  font-family: var(--primary-font-700);
  transition: all 0.3s ease-in-out;
  gap: 14px;
  cursor: pointer;
}
.oreed-btn:hover {
  text-decoration: none;
}
.oreed-btn:focus {
  text-decoration: none;
  outline: none;
  color: currentColor;
}

.oreed-btn--primary {
  background-color: var(--primary-color-500);
  color: #fff;
}
.oreed-btn--primary:hover {
  background-color: var(--primary-color-400);
  color: #fff;
}

.oreed-btn--primary-light {
  background-color: var(--primary-color-hero);
  color: #fff;
}
.oreed-btn--primary-light:hover {
  background-color: var(--primary-color-500);
  color: #fff;
}

.oreed-btn--secondary {
  background-color: var(--secondary-color-400);
  color: #fff;
}
.oreed-btn--secondary:hover {
  background-color: var(--secondary-color-500);
  color: #fff;
}

.oreed-btn--secondary--light {
  background-color: var(--secondary-color-50);
  color: var(--secondary-color-400);
}
.oreed-btn--secondary--light:hover {
  background-color: var(--secondary-color-500);
  color: #fff;
}

.oreed-btn--secondary-transparent {
  box-shadow: inset 0 0 0 1px var(--secondary-color-400);
  color: var(--secondary-color-400);
}
.oreed-btn--secondary-transparent:hover {
  box-shadow: inset 0 0 0 2px var(--secondary-color-400);
  color: var(--secondary-color-400);
}

.oreed-btn--glassy {
  background: rgba(66, 37, 82, 0.1);
  color: var(--dark-color);
}
.oreed-btn--glassy:hover {
  background: rgba(66, 37, 82, 0.4);
  color: var(--dark-color);
}

.oreed-btn--base {
  font-weight: 700;
  font-size: var(--font-typo-md);
  line-height: 22px;
}

.oreed-btn--large {
  font-weight: 700;
  font-size: var(--font-typo-lg);
  line-height: 24px;
}

.oreed-shape-curve {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
}

.oreed-shape-curve_svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(181% + 1.3px);
  height: 450px;
}

@media screen and (max-width: 767px) {
  .oreed-shape-curve_svg {
    max-width: 100%;
    height: auto;
  }
}

.oreed-shape-curve_path {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}

.oreed-hero-content-actions {
  gap: 24px;
}

.oreed-hero-content-actions > * {
  min-width: 225px;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .oreed-hero-content-actions > * {
    min-width: auto;
    width: 100%;
  }
}

.oreed-hero-content--50 {
  width: 50%;
}

.oreed-hero-content--75 {
  width: 75%;
}

@media screen and (max-width: 1099px) {
  .oreed-hero-content--50,
  .oreed-hero-content--75 {
    width: 100%;
  }
}

body {
  overflow-x: hidden;
}

section {
  position: relative;
}

.inner-gap {
  padding: var(--section-gap) 0;
}

.outer-gap {
  margin: var(--section-gap) 0;
}

.relative {
  position: relative;
}

.justify-end {
  justify-content: flex-end;
}

.radius-8 {
  border-radius: 8px;
}

.radius-12 {
  border-radius: 12px;
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.oreed-btn--secondary--dark {
  color: var(--dark-color);
}

.radius-circle {
  border-radius: 50%;
}

.oreed-hero--dark {
  color: white;
}

.radius-circle--4-0 {
  border-bottom-right-radius: 0;
}

.p-bottom-0 {
  padding-bottom: 0 !important;
}

.p-bottom-gap {
  padding-bottom: var(--section-gap) !important;
}

.linear-gradient {
  background: linear-gradient(
    92.05deg,
    rgba(240, 235, 245, 0.5) 11.37%,
    rgba(220, 236, 228, 0.5) 98.86%
  );
}

.radial-gradient {
  background: radial-gradient(
    445.39% 505.29% at 32.03% 52.88%,
    #e6dff2 0%,
    #dffbee 100%
  );
}

.oreed-section--curved {
  padding-bottom: calc(var(--hero-gap) * 2.4);
}
@media screen and (max-width: 767px) {
  .oreed-section--curved {
    padding-bottom: calc(var(--hero-gap) * 5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .oreed-section--curved {
    padding-bottom: calc(var(--hero-gap) * 3.4);
  }
}

.oreed-content-blocks {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .oreed-content-blocks {
    flex-wrap: wrap;
  }
  .oreed-content-blocks.oreed-content-blocks--reverse-position {
    flex-flow: wrap-reverse;
  }
  .oreed-content-blocks.oreed-content-blocks--reverse-position--invert
    .oreed-content-blocks-info {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.oreed-content-blocks-info h2 {
  margin: 0;
  color: var(--primary-color-300);
  font-family: var(--primary-font-700);
  font-size: var(--font-typo-lg);
  line-height: 24px;
}
.oreed-content-blocks-info h3 {
  margin: 10px 0 25px 0;
  font-family: var(--secondary-font-400);
  font-size: var(--font-typo-xxl);
  line-height: 54px;
  letter-spacing: -0.02em;
  color: var(--dark-color);
}
@media screen and (max-width: 1099px) {
  .oreed-content-blocks-info h3 {
    line-height: 40px;
    margin: 10px 0;
  }
}
.oreed-content-blocks-info p {
  margin: 0 0 27px 0;
  font-family: var(--primary-font-500);
  font-size: var(--font-typo-md);
  line-height: 22px;
  color: var(--dark-color);
}
.oreed-content-blocks-info.oreed-content-blocks-info--extra-padding {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .oreed-content-blocks-info.oreed-content-blocks-info--extra-padding {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .text-center-mobile {
    text-align: center;
  }
}
.oreed-content-blocks-info-sm h3 {
  font-size: var(--font-typo-xxl2);
  line-height: 46px;
}
.oreed-content-blocks-info-sm p {
  color: var(--grey-color);
}

.oreed-content-blocks-thumb {
  position: relative;
}
.oreed-content-blocks-thumb img {
  max-width: 100%;
}

.oreed-content-blocks-thumb--browser img {
  height: 500px;
  -o-object-fit: fill;
  object-fit: fill;
  border-left: 15px solid rgba(255, 255, 255, 0.5);
  border-right: 15px solid rgba(255, 255, 255, 0.5);
  border-top: 35px solid rgba(255, 255, 255, 0.5);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
@media screen and (max-width: 1099px) {
  .oreed-content-blocks-thumb--browser img {
    height: auto;
  }
}
.oreed-content-blocks-thumb--browser:before {
  content: "\f111   \f111   \f111";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 11px;
  left: 15px;
  color: #fff;
  font-size: 9px;
}
@media screen and (max-width: 767px) {
  .oreed-content-blocks-thumb--browser:before {
    color: var(--grey-color);
  }
}

.oreed-content-blocks-info-icons-list {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.oreed-content-blocks-info-icons-list-item {
  gap: 16px;
  display: flex;
  align-items: center;
}
.oreed-content-blocks-info-icons-list-item > span {
  color: var(--dark-color);
  font-family: var(--primary-font-700);
  font-size: var(--font-typo-lg);
  line-height: 24px;
}

.oreed-content-blocks-info-icons-list-item-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.oreed-content-blocks-info-icons-list-item-icon-wrap img {
  height: 25px;
}

.oreed-content-blocks-thumb--has-bg-xy {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
}
.oreed-content-blocks-thumb--has-bg-xy img {
  border-radius: 4px;
}
.oreed-content-blocks-thumb--has-bg-xy.oreed-content-blocks-thumb--has-bg-xy--sm {
  padding: 25px;
}
.oreed-content-blocks-thumb--has-bg-xy.oreed-content-blocks-thumb--has-bg-xy--md {
  padding: 40px;
}
.oreed-content-blocks-thumb--has-bg-xy.oreed-content-blocks-thumb--has-bg-xy--right {
  padding-right: 0;
}
.oreed-content-blocks-thumb--has-bg-xy.oreed-content-blocks-thumb--has-bg-xy--bottom {
  padding-bottom: 0;
}

.oreed-content-blocks-thumb_box--bottom-left {
  position: absolute;
  bottom: -150px;
  left: -30px;
}
@media screen and (max-width: 767px) {
  .oreed-content-blocks-thumb_box--bottom-left {
    bottom: -100px;
  }
}

.oreed-content-blocks-thumb_box--bottom-left-x2 {
  position: absolute;
  bottom: -70px;
  left: -60px;
}

.oreed-content-blocks-thumb_box--bottom-right {
  position: absolute;
  bottom: -70px;
  right: -10px;
}

.oreed-content-blocks-thumb_box--top-left {
  position: absolute;
  top: 60px;
  left: -20px;
}

.oreed-content-blocks-thumb_box--top-right {
  position: absolute;
  top: 0;
  right: -10px;
}

.oreed-content-blocks-thumb_box--top-right-x2 {
  position: absolute;
  top: 10px;
  right: 60px;
}

@media screen and (max-width: 767px) {
  .oreed-content-blocks-info {
    padding-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  .oreed-scrolling-section {
    top: 150px !important;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb--has-bg-xy {
    justify-content: flex-end;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb--has-bg-xy--md {
    padding: 15px;
    padding-right: 0;
  }
  .oreed-scrolling-section .oreed-content-blocks-info-sm h3 {
    font-size: var(--font-typo-xl2);
    line-height: 27px;
  }
  .oreed-scrolling-section .oreed-content-blocks-info {
    padding-top: 20px;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb_box--top-left {
    height: 150px;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb_box--bottom-right {
    height: 150px;
    bottom: 0;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb_box--bottom-left-x2 {
    height: 150px;
    bottom: 0px;
    left: 10px;
  }
  .oreed-scrolling-section .oreed-content-blocks-thumb_box--top-right-x2 {
    height: 40px;
    right: 10px;
  }
}

.oreed-shape-curve {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
  z-index: 0;
}

.oreed-shape-curve_svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(181% + 1.3px);
  height: 450px;
}
@media screen and (max-width: 767px) {
  .oreed-shape-curve_svg {
    max-width: 100%;
    height: auto;
  }
}

.oreed-shape-curve_path {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}

.gradient-bg {
  background: url("/assets/img/radial-gradient.png") repeat-y;
  background-size: cover;
  background-position: 50% 50%;
}
