@charset "UTF-8";
/**
 * Reset some basic elements
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&display=swap");
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body * {
  box-sizing: border-box;
}
body {
  font: 400 20px/1.1 Poppins, "Hachi Maru Pop" Arial, sans-serif;
  color: #18214d;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 17.5px;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 22.5px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 18.75px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
/* .wrapper {
  max-width: -webkit-calc(1100px - (30px * 2));
  max-width:         calc(1100px - (30px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: $spacing-unit;
  padding-left: $spacing-unit;
  @extend %clearfix;

  @include media-query($on-laptop) {
    max-width: -webkit-calc(1100px - (30px));
    max-width:         calc(1100px - (30px));
    padding-right: $spacing-unit / 2;
    padding-left: $spacing-unit / 2;
  }
} */
/**
 * Clearfix
 */
/**
 * Site header
 */
.site-header {
  border-top: 5px solid rgb(66.25, 66.25, 66.25);
  border-bottom: 1px solid #e8e8e8;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 32.5px;
  font-weight: 300;
  line-height: 49.5px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: rgb(66.25, 66.25, 66.25);
}

.site-nav {
  float: right;
  line-height: 49.5px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #18214d;
  line-height: 1.1;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: rgb(66.25, 66.25, 66.25);
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .page-link {
    margin-left: 20px;
  }
}

.post-list-heading {
  font-size: 50px;
  margin-top: 180px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 10px;
}

.post-meta {
  font-size: 18px;
  font-weight: 400;
  color: #828282;
}

.post-link {
  display: block;
  height: max-content;
  cursor: pointer;
  z-index: 1000;
}
.post-link:hover {
  background: rgba(255, 255, 255, 0.5);
}
.post-link {
  font-size: 20px;
}

.post_aside * {
  position: sticky;
}
.post_aside {
  max-width: 280px;
  text-align: left;
  padding-left: 30px;
}
.post_aside .post-link {
  display: block;
  font-size: 20px;
}
.post_aside .post-list-heading {
  top: 70px;
  font-size: 28px;
}
.post_aside .post-list {
  top: 100px;
}

/**
 * Posts
 */
.post_grid {
  margin: 0 auto;
  max-width: 1600px;
  height: 100%;
  display: grid;
  grid-template-columns: 4fr 1fr;
}

.post-header {
  padding: 86px 0 30px 0;
  margin-bottom: 30px;
  text-align: center;
  grid-area: 1/1/2/3;
}

.post-title {
  font-size: 52.5px;
  letter-spacing: -1px;
  line-height: 1.4;
  word-spacing: 8px;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 45px;
  }
}

.post-content {
  max-width: 100%;
  min-width: 270px;
}
.post-content img {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  border: 1px solid;
}
.post-content p {
  text-align: justify;
}
.post-content h2 {
  font-size: 40px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 35px;
  }
}
.post-content h3 {
  font-size: 32.5px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 27.5px;
  }
}
.post-content h4 {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 700px) {
  .post-content {
    margin: 0;
    min-width: 250px;
    grid-area: 2/1/3/3;
  }
  .post_aside {
    grid-area: 3/1/3/4;
  }
}
/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

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

strong, b, mark {
  font-weight: 700;
  font-style: inherit;
}

em, i, cite, q, address, dfn, var {
  font-style: italic;
  font-weight: inherit;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

ins {
  border-bottom: 1px solid;
}

a, u, ins {
  text-decoration: none;
}

del, s {
  text-decoration: line-through;
}

pre, code, samp, kbd {
  font-family: monospace;
}

small {
  font-size: 0.75em;
}

img {
  border: 0;
  font-style: italic;
}

input, select, option, optgroup, textarea {
  font: inherit;
}

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

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

html {
  font-size: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  text-rendering: optimizeLegibility;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  display: block;
}

img, object, embed {
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  -webkit-appearance: none;
  outline: none;
  border: 0;
}

li {
  list-style-type: none;
}

body {
  font-family: "Poppins", sans-serif;
  color: #18214d;
  letter-spacing: -0.5px;
  -webkit-font-smoothing: antialiased;
}
body p {
  font-size: 20px;
}
body {
  cursor: default;
}
body main {
  margin-top: 40px;
  height: max-content;
}
@media (min-width: 576px) {
  body main {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  body main {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  body main {
    margin-top: 90px;
  }
}
@media (min-width: 1024px) {
  body main {
    margin-top: 120px;
  }
}
body footer .icon {
  width: 24px;
  display: flex;
}
body .page_intro h1 {
  font-size: 40px;
}
body .page_intro p {
  font-size: 20px;
}
body .page_intro::before {
  top: 80px;
}
@media (min-width: 768px) {
  body .page_intro h1 {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  body .page_intro {
    padding-top: 100px;
  }
  body .page_intro h1 {
    font-size: 100px;
  }
  body .page_intro p {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  body .page_intro {
    /* & {
      padding-top: 144px;
    } */
  }
  body .page_intro h1 {
    font-size: 120px;
  }
  body .page_intro p {
    font-size: 28px;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
h2 {
  font-size: 50px;
  letter-spacing: -3px;
  line-height: 1.2;
  padding-bottom: 64px;
  padding-top: 30px;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 80px;
  }
}
h2 span {
  color: #8f68fb;
}

.home .hyperlink {
  margin-top: 32px;
  color: #8f68fb;
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .home .hyperlink {
    margin-top: 48px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .home .hyperlink {
    margin-top: 48px;
    font-size: 27px;
  }
}

.post_list {
  padding: 20px;
  display: grid;
  gap: 30px;
}
.post_list .post_item {
  display: grid;
  gap: 30px;
}
.post_list .post_item .image {
  max-width: 300px;
  overflow: hidden;
}
.post_list .post_item h2 {
  font-size: 40px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .post_list .post_item {
    grid-template-columns: 1fr 4fr;
  }
}

section.home_hero {
  padding-top: 40px;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
section.home_hero h1 {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -3px;
}
section.home_hero p {
  padding-top: 24px;
  font-size: 20px;
  line-height: 1.5em;
}
@media (min-width: 768px) {
  section.home_hero {
    background-image: url(/assets/images/hero1.svg);
    background-repeat: no-repeat;
    background-size: 340px;
    background-position: right 20px bottom;
  }
  section.home_hero .home_intro {
    width: 58%;
  }
  section.home_hero h1 {
    font-size: 78px;
  }
}
@media (min-width: 992px) {
  section.home_hero {
    padding-top: 82px;
    background-size: 450px;
    background-position: right 20px bottom;
  }
}
@media (min-width: 1200px) {
  section.home_hero {
    background-size: 560px;
    background-position: right 20px bottom;
  }
  section.home_hero h1 {
    font-size: 120px;
  }
  section.home_hero p {
    font-size: 28px;
    width: 93%;
  }
}

.home .site-footer {
  padding-top: 100px;
  border-top: 1px solid #ddd;
}
.home .site-footer .footer_grid {
  border: none;
}
.home .site-footer .footer_bottom {
  border-top: 1px solid #ddd;
}
.home .site-footer .footer_socials img {
  fill: #18214d;
}

.home h2 span {
  color: #8f68fb;
}

.mosaic {
  border-top: 1px solid #ddd;
}

.mosaic_grid {
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mosaic_grid .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.mosaic_grid::before {
  content: "";
  background-color: #feca2f;
  position: absolute;
  opacity: 0.16;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  top: 0;
  right: auto;
  bottom: auto;
  left: 10%;
}
@media (min-width: 992px) {
  .mosaic_grid {
    padding-top: 72px;
    padding-bottom: 104px;
  }
  .mosaic_grid .row {
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .mosaic_grid .row {
    gap: 50px;
  }
}

.mosaic_card {
  padding: 15px 16px;
  border-radius: 16px;
  width: 100%;
  height: 190px;
  margin: 8px 0;
  color: #fff;
  position: relative;
  transition: transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
}
.mosaic_card h3 {
  font-size: 22px;
  width: 65%;
  line-height: 1.1em;
}
.mosaic_card p {
  width: 65%;
  font-size: 15px;
  line-height: 1.4em;
  letter-spacing: -0.2px;
  padding-top: 10px;
}
.mosaic_card img {
  position: absolute;
}

.row-1 .card-1 {
  background-color: #855ffb;
}
.row-1 .card-1 img {
  position: absolute;
  width: 190px;
  height: auto;
  right: 0;
  bottom: 0;
}

.row-1 .card-2 {
  background-color: #fa3a69;
}
.row-1 .card-2 img {
  position: absolute;
  height: auto;
  right: -10px;
  bottom: -10px;
}

.row-1 .card-3 {
  background-color: #2bcdfd;
}
.row-1 .card-3 img {
  position: absolute;
  width: 160px;
  right: 0px;
  bottom: 0;
}

.row-2 .card-1 {
  background-color: #feca2f;
}
.row-2 .card-1 img {
  position: absolute;
  right: -6px;
  bottom: -9px;
}

.row-2 .card-2 {
  overflow: hidden;
  background-color: #189dfb;
}
.row-2 .card-2 img {
  position: absolute;
  width: 160px;
  right: 0px;
  bottom: -35px;
}

.row-3 .card-1 {
  background-color: #30ca89;
}
.row-3 .card-1 img {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.row-3 .card-2 {
  height: 50px;
  font-family: "Hachi Maru Pop", cursive;
  font-size: 30px;
  color: #fa3a69;
}

@media (min-width: 992px) {
  .mosaic_card {
    width: fit-content;
  }
  .mosaic_card h3 {
    font-size: 30px;
  }
  .row-1 .card-1 {
    align-self: center;
    width: 330px;
    height: 250px;
  }
  .row-1 .card-1 img {
    right: 10px;
    bottom: 0;
    width: 250px;
    height: auto;
  }
  .row-1 .card-2 {
    width: 250px;
    height: 330px;
    align-self: center;
  }
  .row-1 .card-2 img {
    right: -30px;
    bottom: -14px;
    height: 180px;
    width: auto;
  }
  .row-1 .card-3 {
    align-self: flex-end;
    width: 330px;
    height: 250px;
    overflow: hidden;
  }
  .row-1 .card-3 img {
    width: auto;
    height: 100px;
    right: 0;
    bottom: 0;
  }
  .row-2 .card-1 {
    width: 250px;
    height: 330px;
    left: -100px;
    top: -40px;
  }
  .row-2 .card-1 img {
    width: 142px;
    height: auto;
    right: -10px;
    bottom: -14px;
  }
  .row-2 .card-2 {
    left: -100px;
    width: 330px;
    height: 250px;
    overflow: hidden;
  }
  .row-2 .card-2 img {
    width: auto;
    bottom: 0;
  }
  .row-3 .card-1 {
    top: -80px;
    left: 140px;
    width: 250px;
    height: 330px;
  }
  .row-3 .card-1 img {
    height: 60%;
    right: 0;
    bottom: 0;
  }
  .row-3 .card-2 {
    top: 210px;
    left: 140px;
  }
}
@media (min-width: 1200px) {
  .row-1 .card-1 {
    width: 400px;
    height: 280px;
  }
  .row-1 .card-2 {
    width: 280px;
    height: 400px;
  }
  .row-1 .card-3 {
    width: 400px;
    height: 280px;
  }
  .row-2 .card-1 {
    width: 280px;
    height: 400px;
  }
  .row-2 .card-2 {
    width: 400px;
    height: 280px;
    top: 20px;
  }
  .row-3 .card-1 {
    top: -80px;
    left: 150px;
    width: 280px;
    height: 400px;
  }
  .row-3 .card-2 {
    top: 210px;
    left: 186px;
  }
}
.alternative_intro {
  border-bottom: 1px solid #ddd;
  position: relative;
}
.alternative_intro h1 {
  font-size: 40px;
  padding-top: 22px;
  padding-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -2px;
}
.alternative_intro h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 32px;
}
.alternative_intro p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8em;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .alternative_intro * {
    max-width: 75%;
  }
  .alternative_intro h1 {
    font-size: 64px;
    letter-spacing: -3px;
  }
  .alternative_intro .comparsion h2 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .alternative_intro * {
    max-width: 67%;
  }
  p.description {
    padding-bottom: 104px;
  }
}
.comparsion {
  padding-top: 52px;
  padding-bottom: 104px;
}
.comparsion h2 {
  font-size: 48px;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 1em;
}
.comparsion .description {
  font-size: 24px;
  padding-top: 32px;
  padding-bottom: 48px;
}
.comparsion .head {
  font-weight: 700;
}
.comparsion .head span {
  display: block;
  font-size: 80%;
  font-weight: normal;
}
.comparsion .head img {
  height: 32px;
}
.comparsion .head::before {
  content: "";
}
.comparsion .comparsion_table {
  background-color: #eff2f6;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
  padding: 22px 8px;
  border-radius: 8px;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.3em;
  margin-bottom: 24px;
}
.comparsion .comparsion_table .header {
  display: grid;
  grid-template-columns: 1px 1fr 1fr;
  justify-items: center;
  padding: 20px;
}
@media (min-width: 768px) {
  .comparsion .comparsion_table .header {
    grid-template-columns: 2fr 1fr 1fr;
    justify-items: start;
  }
}
.comparsion .comparsion_table .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  justify-items: center;
  padding: 20px 5px;
}
.comparsion .comparsion_table .row .name {
  grid-column: 1/3;
  justify-items: start;
}
@media (min-width: 768px) {
  .comparsion .comparsion_table .row {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    justify-items: left;
  }
  .comparsion .comparsion_table .row .name {
    grid-column: 1/2;
  }
}

.alternative_intro::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #30ca89;
  z-index: -1;
  opacity: 0.16;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  top: 0;
  right: 35%;
  bottom: auto;
  left: auto;
}

@media (min-width: 992px) {
  .alternative_intro::before {
    width: 240px;
    height: 240px;
  }
}
.alternative_intro .description:after {
  content: "";
  background-color: #189dfb;
  position: absolute;
  z-index: -1;
  opacity: 0.16;
  transform: rotate(45deg);
  width: 164px;
  height: 164px;
  top: auto;
  right: auto;
  bottom: 15%;
  left: 10%;
}

.hyperlinks {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.val {
  display: flex;
  gap: 10px;
  align-items: center;
}
.val::before {
  align-items: center;
  justify-content: center;
  display: flex;
}

.azure {
  color: #189dfb;
}

.rubin {
  color: #fa3a69;
}

.green {
  color: #30ca89;
}

.matrix_cell:nth-child(3n+1) {
  position: sticky;
  left: 0;
  background: #fff;
}

.radio::before {
  content: "✔️";
  font-size: 18px;
  font-weight: 400;
  width: 24px;
  height: 24px;
}

.arrow-down::before {
  content: "↓";
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-weight: 900;
}

.arrow-up::before {
  content: "↑";
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-weight: 900;
}

.icon-green::before {
  color: #30ca89;
  border: #30ca89;
}

.icon-azure::before {
  color: #189dfb;
  border-color: #189dfb;
}

.icon-azure-inverted::before {
  color: #fff;
  background: #189dfb;
  border-color: #189dfb;
}

.icon-green-inverted::before {
  color: #fff;
  background: #30ca89;
  border-color: #30ca89;
}

.rounded::before {
  border: 2px solid;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.crown {
  color: #ecb22e;
  display: flex;
  gap: 5px;
}

.crown::before {
  content: "👑";
  color: #ecb22e;
}

.page_header {
  position: fixed;
  padding: 10px;
  width: 100%;
  height: fit-content;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.94);
  z-index: 998;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px 2px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.page_header .logo img {
  height: 50px;
}

nav ul {
  list-style-type: none;
}
nav ul li {
  padding: 0 5px;
}
nav ul li a {
  display: block;
  color: #18214d;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  padding: 13px 0;
  border-bottom: 1px solid #bbb;
}

@media (min-width: 1024px) {
  .page_header {
    height: 90px;
    flex-direction: row;
    justify-content: space-between;
  }
  .page_header .container {
    display: flex;
    justify-content: space-between;
  }
  nav ul {
    display: flex;
    justify-content: space-around;
  }
  nav ul li a {
    border-bottom: none;
    font-size: 16px;
  }
}
.hamburger {
  position: fixed;
  top: 20px;
  right: 40px;
  display: inline-block;
  transition-property: opacity, filter;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  cursor: pointer;
  padding: 5px;
  margin-top: 4px;
}
.hamburger .hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger .hamburger-inner {
  display: block;
  top: 1px;
  margin-top: -1px;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #18214d;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger .hamburger-inner::before {
  top: 6px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.5s;
}

.hamburger .hamburger-inner::after {
  top: 12px;
}

.hamburger.opened .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.8571428571px, -4px, 0);
  opacity: 0;
}

.hamburger.opened .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}

.hamburger.opened .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}

@media (max-width: 1023px) {
  .hidden_small {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.features-intro {
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .features-intro {
    margin-bottom: 110px;
  }
}

.shape-before::before {
  display: block;
  content: "";
  background-color: #feca2f;
  position: absolute;
  z-index: -1;
  opacity: 0.16;
  transform: rotate(45deg);
  width: 64px;
  height: 64px;
  top: -3%;
  right: 5%;
  bottom: auto;
  left: auto;
}

.cards_grid {
  margin-bottom: 60px;
  position: relative;
  padding: 0.75rem;
  display: grid;
  gap: 20px;
}
@media (min-width: 600px) {
  .cards_grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
  }
  .cards_grid figure {
    opacity: 1;
  }
  .cards_grid figure img {
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
  }
}
.cards_grid figure {
  display: block;
  opacity: 1;
  align-self: end;
}
.cards_grid figure::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  top: 10%;
  right: auto;
  bottom: auto;
  left: 14%;
  background-color: #189dfb;
  position: absolute;
  z-index: -1;
  opacity: 0.16;
  border-radius: 50%;
}

.shape-before::before {
  display: block;
  content: "";
  background-color: #feca2f;
  position: absolute;
  z-index: -1;
  opacity: 0.16;
  width: 64px;
  height: 64px;
  top: -3%;
  right: 5%;
  bottom: auto;
  left: auto;
  transform: rotate(45deg);
}

.intro h1 {
  font-size: 60px;
}
.intro p {
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .shape-before::before {
    width: 64px;
    height: 64px;
    top: -15%;
    right: 15%;
    bottom: auto;
    left: auto;
  }
}
@media (min-width: 992px) {
  .intro {
    width: 75%;
  }
  .intro h1 {
    padding: 0;
    margin: 0;
    font-size: 100px;
    letter-spacing: -5px;
  }
}
@media (min-width: 1200px) {
  .intro {
    width: 66%;
    padding-top: 90px;
  }
  .intro h1 {
    font-size: 120px;
    font-weight: 800;
  }
  .intro p {
    font-size: 28px;
  }
  .shape-before::before {
    width: 128px;
    height: 128px;
    top: 10%;
    right: 10%;
    bottom: auto;
    left: auto;
  }
}
.matrix_card {
  padding: 32px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.matrix_card:nth-child(even) {
  background: #18214d;
}
.matrix_card:nth-child(even) h2 {
  color: #fff;
}
.matrix_card:nth-child(even) p {
  color: #ddd;
}
.matrix_card:nth-child(odd) {
  background: #f0f1f5;
}
.matrix_card:nth-child(odd) h2 {
  color: #18214d;
}
.matrix_card:nth-child(odd) p {
  color: #777;
}
.matrix_card h2 {
  display: block;
  font-size: 36px;
  letter-spacing: -2px;
  line-height: 1.2em;
  font-weight: 700;
}
.matrix_card p {
  font-size: 12px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  margin-top: 20px;
  background-color: #8f68fb;
  border: 2px solid #8f68fb;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none !important;
  outline: none !important;
  transition: background-color 0.2s ease-out;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .matrix_card {
    padding: 32px;
    margin-bottom: 60px;
  }
  .matrix_card h2 {
    display: block;
    font-size: 64px;
    letter-spacing: -2px;
    line-height: 1.2em;
    font-weight: 700;
  }
  .matrix_card p {
    font-size: 16px;
    font-weight: 400;
  }
  .button {
    display: block;
    font-size: 20px;
    padding: 13px 8px;
    margin: 40px 0 0;
  }
}
.matrix_title {
  grid-column: 1/4;
  background-color: #eff2f6;
  border-radius: 4px;
  padding: 14px 0.75rem 12px 0.75rem;
  padding-top: 18px;
  padding-bottom: 16px;
}
.matrix_title h2 {
  font-size: 30px;
  padding: 12px;
}

.matrix_grid {
  display: grid;
  grid-template-columns: repeat(3, 45vw);
  padding: 0.75rem 0;
}
.matrix_grid p {
  font-size: 16px;
}
@media (min-width: 600px) {
  .matrix_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.matrix_grid .matrix_cell {
  padding: 10px;
}
.matrix_grid .matrix_cell ul li {
  margin-left: 20px;
}
.matrix_grid .matrix_cell h3 {
  display: flex;
}
.matrix_grid .matrix_cell h3 * {
  padding: 0 7px;
}
.matrix_grid .matrix_cta {
  color: #18214d;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 0 10px;
}

.cta {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cta small {
  display: block;
  font-family: "Hachi Maru Pop", cursive;
  font-size: 28px;
  color: #fa3a69;
  line-height: 1em;
  transform: rotate(-3deg);
  padding-bottom: 16px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  background-color: #8f68fb;
  border: 2px solid #8f68fb;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none !important;
  outline: none !important;
  transition: background-color 0.2s ease-out;
  text-align: center;
  cursor: pointer;
}

.tables {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
}

.matrix_title {
  position: sticky;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.buttons {
  display: flex;
  position: relative;
  width: 85px;
  justify-content: space-around;
}
.buttons .btn:hover {
  cursor: pointer;
}
.buttons .btn {
  align-self: center;
  height: 40px;
  display: block;
  font-size: 24px;
  padding: 2px 12px;
  background: #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media (min-width: 600px) {
  .buttons {
    display: none;
  }
}

.prices {
  padding-bottom: 72px;
}
.prices h2 {
  font-size: 40px;
  line-height: 1em;
  letter-spacing: -2px;
  padding-top: 4px;
  padding-bottom: 0;
}
.prices p {
  font-size: 20px;
  padding: 24px 0;
}

.free {
  display: grid;
  padding: 20px 15px;
  background-color: #f2f2f2;
  border-radius: 8px;
  margin: 20px auto;
}

.pricing-features {
  font-size: 16px;
  margin-left: 28px;
  font-weight: 500;
  margin-bottom: 0;
}
.pricing-features l {
  color: #30ca89;
}
.pricing-features m {
  color: #fa3a69;
}

@media (min-width: 768px) {
  .free {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .left {
    padding-left: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(223, 228, 234, 0.08);
    min-height: 600px;
  }
  .right {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.left {
  border-color: #dfe4ea;
}
.left span {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.64;
}

.right {
  padding-top: 44px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.pricing-price-prefix {
  padding: 20px 0 40px;
  display: flex;
  align-items: center;
  line-height: 1em;
}
.pricing-price-prefix * {
  color: #8f68fb;
}

.valuta {
  font-size: 40px;
  font-weight: 500;
  position: relative;
  top: -10px;
}

.amount {
  font-size: 86px;
  font-weight: 700;
  letter-spacing: -4px;
  padding-left: 6px;
  padding-right: 4px;
}

.decimals {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  top: -10px;
}

.hyperlinks {
  display: flex;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.premium_content p {
  font-size: 20px;
  font-weight: 500;
  padding-top: 24px;
}

.premium_content {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .premium_content .alternative_intro {
    padding-bottom: 100px;
  }
}
.premium_content .slides {
  left: 0;
  top: 0;
  gap: 100%;
  width: 500%;
  display: grid;
  grid-template-columns: 20% 20% 20%;
}
.premium_content h3 {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1em;
}

.slide .col {
  position: relative;
  background-color: #f2f2f2;
  padding: 24px 15px 78px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .slide {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
.bottom-20 {
  width: 80%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.carousel-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto;
}
.carousel-buttons li {
  padding: 5px 10px;
  border-top: 2px solid #8f68fb;
  border-left: 1px solid #8f68fb;
  border-bottom: 2px solid #8f68fb;
  border-right: 2px solid #8f68fb;
  color: #8f68fb;
}
@media (min-width: 576px) {
  .carousel-buttons li {
    padding: 10px 30px;
  }
}
.carousel-buttons li:nth-child(1) {
  border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}
.carousel-buttons li:nth-last-of-type(1) {
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}
.carousel-buttons li.active {
  background: #8f68fb;
  color: #fff;
}

.premium_content .slides.s1 {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.premium_content .slides.s2 {
  transform: translateX(-120%);
  -webkit-transform: translateX(-120%);
  -moz-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
  -o-transform: translateX(-120%);
}
.premium_content .slides.s3 {
  transform: translateX(240%);
  -webkit-transform: translateX(-240%);
  -moz-transform: translateX(240%);
  -ms-transform: translateX(240%);
  -o-transform: translateX(240%);
}
.premium_content .slide_btn {
  cursor: pointer;
}

.compare_grid {
  margin: 60px 0 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.compare_grid a {
  display: block;
  width: 96%;
}
@media (min-width: 600px) {
  .compare_grid a {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .compare_grid a {
    width: 30%;
  }
}
.compare_grid a {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
  border-radius: 8px;
  transition: transform 0.2s ease-out;
  cursor: pointer;
}
.compare_grid a img {
  width: 50%;
  margin: 20px auto;
}
.compare_grid a b {
  display: block;
  text-align: center;
  padding: 20px 5px;
}

.breadcrumb-navigation {
  font-size: 22px;
  padding-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 20px;
}
.breadcrumb-navigation a {
  cursor: pointer;
  text-decoration: none;
  color: #9095aa;
}
.breadcrumb-navigation a.active {
  color: #8f68fb;
}

.dropdown {
  position: relative;
}
.dropdown .dropdown-menu {
  padding: 8px 16px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  min-width: 10rem;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown .dropdown-menu .dropdown-item {
  color: #18214d;
  padding: 8px 4px 8px 0;
  line-height: 1.2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #eff2f6;
  font-weight: 600;
}
.dropdown .dropdown-menu .dropdown-item .icon-alternative {
  transition: transform 0.2s ease-out;
  margin-right: 16px;
  width: 32px;
  height: 32px;
}

.contact_form {
  margin: 40px auto 100px;
  padding: 20px 10px;
  max-width: 1140px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 1px;
  border: #ddd 1px solid;
  background: #eee;
}
@media (min-width: 425px) {
  .contact_form {
    width: 96%;
  }
}
@media (min-width: 992px) {
  .contact_form {
    padding: 30px 20px;
  }
}
.contact_form {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form_group {
  display: grid;
}

.form_control {
  font-size: 16px;
  padding: 5px 10px;
}

.form_group.submit_box {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.submit {
  height: 74px;
  max-width: 400px;
  min-width: 300px;
  margin: 0 auto;
  font-size: 20px;
}

.g-recaptcha {
  margin: 0 auto;
}

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

.footer_grid {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .footer_grid {
    width: 95%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .footer_grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.footer_grid {
  gap: 20px;
  border-top: 1px solid #ddd;
}
.footer_grid * {
  color: #18214d;
}
.footer_grid .logo {
  width: 50px;
}
.footer_grid h6 {
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
}
.footer_grid li {
  list-style-type: none;
}
.footer_grid a {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
}
.footer_grid p {
  font-size: 16px;
}

.subscribe {
  text-align: center;
  padding: 88px 15px 0;
}
.subscribe span {
  display: block;
  color: grey;
  padding-top: 10px;
}
.subscribe span a {
  text-decoration: underline;
  color: darkblue;
}

.button_wide {
  padding-left: 32px;
  padding-right: 32px;
}

.form_input {
  width: auto;
  max-width: 100%;
  flex-grow: 1;
  margin: 16px;
  background-color: #eff2f6;
  border: 1px solid #eff2f6;
  border-radius: 8px;
  color: #18214d;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.55px;
  height: 54px;
  outline: none;
  padding: 0 16px;
  appearance: none;
  -webkit-appearance: none;
  transition: box-shadow 0.2s ease-out;
}

.footer_socials {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  padding: 64px 15px;
}
.footer_socials svg {
  width: 32px;
  height: 32px;
  fill: #18214d;
}

.footer_bottom {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 30px;
}
.footer_bottom .motto {
  font-family: "Hachi Maru Pop", cursive;
  font-size: 18px;
  font-weight: 700;
  color: #fa3a69;
}

.matrix_card-2::before {
  position: absolute;
  content: "Corporative Integrations";
  font-family: "Hachi Maru Pop", cursive;
  font-size: 30px;
  width: 218px;
  height: 90px;
  top: -108px;
  right: 20px;
  color: #fa3a69;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 0.8em;
  transform: rotate(5deg);
  position: absolute;
  background-image: url(../assets/images/curve.svg);
  background-size: 56px;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding-right: 8px;
  display: none;
}
@media (min-width: 600px) {
  .matrix_card-2::before {
    display: block;
  }
}

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