@charset "UTF-8";
:root {
  --color-primary: #4649ee;
  --color-primary-dark: rgb(2, 5, 170);
  --color-primary-hover: rgb(23.2920792079, 27.0495049505, 233.7079207921);
  --color-primary-light: #E8EFFE;
  --color-secondary: #76AB00;
  --color-secondary-dark: #5a8000;
  --color-secondary-light: #c8df96;
  --color-secondary-hover: rgb(82.8070175439, 120, 0);
  --color-secondary-bg: rgb(231, 245, 201);
  --color-accent: #ff7062;
  --color-accent-orange: #ea9312;
  --color-accent-yellow: #f5d400;
  --color-bg-light: #E8EFFE;
  --color-bg-white: #fff;
  --color-bg-pattern: #eaeef6;
  --color-bg-cta: #d0d9eb;
  --color-bg-dark: #141414;
  --color-text-primary: #000;
  --color-text-secondary: #333;
  --color-text-light: #fff;
  --color-mode-primary: var(--color-primary);
  --color-mode-bg: var(--color-bg-light);
}

body.playground-mode {
  --color-mode-primary: var(--color-secondary);
  --color-mode-bg: var(--color-secondary-bg);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

body {
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul {
  list-style: none;
}

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

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

img,
picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 1;
  }
}
h1 b {
  font-weight: 800;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  h2 {
    margin-bottom: 0;
  }
}
h2 b {
  font-weight: 800;
}
h2.medium-h2 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
h3 b {
  font-weight: 800;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 2rem;
}
p em {
  font-style: italic;
}

strong, b {
  font-weight: 800;
}

em, i {
  font-style: italic;
}

.marker {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.inter {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.big_text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.big_text h2.light {
  font-weight: 400;
}
.big_text h2.light b {
  font-weight: 800;
}

.small_text p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin: 1rem 0;
}

a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #4649ee;
}

.playground-mode a:hover {
  color: #76AB00;
}

#wrapper {
  position: relative;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

.wrapper {
  width: 100%;
}
.wrapper.w_bg {
  background: #fff;
}
@media (max-width: 48rem) {
  .wrapper .grid .main .wp-block-column {
    padding: 1rem 0;
  }
}

.main {
  width: 100%;
}

.content {
  min-height: 100vh;
  width: 100%;
}

.container,
.innerblocks-wrap {
  max-width: 73.75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .container,
  .innerblocks-wrap {
    padding: 0 1.5rem;
  }
}
@media (max-width: 48rem) {
  .container,
  .innerblocks-wrap {
    padding: 2rem;
  }
}
.container,
.innerblocks-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container.top_level {
  position: relative;
  z-index: 99;
}

.innerblocks-wrap {
  max-width: 73.75rem !important;
  margin: auto;
}
@media (min-width: 125rem) {
  .innerblocks-wrap {
    max-width: 100%;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .grid {
    padding: 2rem 0;
    gap: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow: hidden;
  }
}

.light_color_bg {
  background-color: #E8EFFE;
  padding: 4rem 0 10vh;
}
.light_color_bg .center {
  margin: auto;
  text-align: center;
}
.light_color_bg .center h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .light_color_bg .center h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .light_color_bg .center h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    text-align: left;
  }
}
.light_color_bg .center .small.sub {
  font-size: 1rem;
  font-weight: 600;
  color: #4649ee;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .light_color_bg .center .small.sub {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .light_color_bg .center .small.sub {
    max-width: 100%;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
}
.light_color_bg .center p {
  max-width: 70vw;
  font-weight: 400;
  margin: auto;
  line-height: 1.4rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .light_color_bg .center p {
    max-width: 85vw;
    font-size: 0.95rem;
    line-height: 1.35rem;
  }
}
@media (max-width: 768px) {
  .light_color_bg .center p {
    max-width: 100%;
    font-size: 1rem;
    text-align: left;
  }
}

.playground-mode .light_color_bg {
  background-color: rgb(231, 245, 201);
}
.playground-mode .light_color_bg .center.text .small.sub {
  color: #000;
  font-weight: bold;
}

.svg_blob {
  position: absolute;
  z-index: -4;
}

.blob {
  height: auto;
  fill: rgb(228, 235, 254);
}
@media (max-width: 48rem) {
  .blob {
    width: auto;
    max-width: 80vw;
  }
}
@media (min-width: 48rem) {
  .blob {
    width: 300%;
  }
}

@media (max-width: 768px) {
  .browser-chrome .blob,
  .browser-safari .blob {
    display: none;
  }
}
.bg_wood {
  background: url("../img/bg-pattern.svg") center center, #fff;
  position: relative;
}
.bg_wood::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.48);
}

@media (max-width: 48rem) {
  .not_mobile {
    display: none !important;
  }
}

@media (min-width: 128rem) {
  :root {
    font-size: 1.4rem;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1.25rem 1.25rem;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.btn:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.btn {
  background-color: #4649ee;
  color: #fff;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 44px;
  max-height: 44px;
  z-index: 9;
}
.btn:hover {
  background-color: rgb(23.2920792079, 27.0495049505, 233.7079207921);
}
.btn br {
  display: none;
}
.btn.cta, .btn.sec {
  background-color: #4649ee;
}
.btn.cta:hover, .btn.sec:hover {
  background-color: rgb(23.2920792079, 27.0495049505, 233.7079207921);
}
.btn.base {
  background-color: transparent;
  color: #4649ee;
  border: 2px solid transparent;
  font-weight: 500;
}
.btn.base:hover {
  background-color: #4649ee;
  color: #fff;
}
.btn.base.outline {
  border: none;
  padding-left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.base.outline:hover {
  background-color: transparent;
  color: #4649ee;
  padding-left: 0.5rem;
}
.btn.line {
  background-color: transparent;
  color: #4649ee;
  border: 2px solid #4649ee;
  font-weight: 500;
  padding: 0.5rem 1rem;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.line:hover {
  background-color: #4649ee;
  color: #fff;
}
.btn.line.outline {
  border: none;
  min-height: 44px;
}
.btn.line.outline.twist {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.btn.line.outline.twist i {
  width: 44px;
  height: 44px;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.playground-mode .btn {
  background-color: #76AB00;
  color: #000;
}
.playground-mode .btn:hover {
  background-color: rgb(82.8070175439, 120, 0);
}
.playground-mode .btn.line {
  background-color: transparent;
  color: #76AB00;
  border: 0.125rem solid #76AB00;
  font-weight: 500;
}
.playground-mode .btn.line:hover {
  background-color: #76AB00;
  color: #fff;
}
.playground-mode .btn.line.outline {
  border: none;
}
.playground-mode .btn.cta {
  background-color: #f5d400;
}
.playground-mode .btn.cta:hover {
  background-color: rgb(194, 167.8693877551, 0);
}
.playground-mode .btn.base {
  background-color: #c8df96;
  color: #000;
  border: 0.125rem solid #c8df96;
  font-weight: 500;
}
.playground-mode .btn.base:hover {
  color: #76AB00;
  padding-left: 1rem;
}
.playground-mode .btn.base.outline {
  border: none;
  padding-left: 0;
}
.playground-mode .btn.base.outline:hover {
  padding-left: 1rem;
}
.playground-mode .btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.playground-mode .btn.base.outline {
  background-color: transparent;
}

.new_tab {
  display: block;
  width: 1rem;
  height: 1rem;
  position: relative;
}
.new_tab::before {
  display: block;
  position: relative;
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("../img/arrow-up-right-from-square-light.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}

.play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url("../img/play.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.play_icon:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media (min-width: 125rem) {
  .play_icon {
    top: 60%;
  }
}

@media (max-width: 48rem) {
  .play_video {
    width: 5rem;
    aspect-ratio: 1;
  }
}
.magnifying-glass {
  display: block;
  width: 1rem;
  height: 1rem;
  position: relative;
}
.magnifying-glass::before {
  display: block;
  position: relative;
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("../img/magnifying-glass-light.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.flying_tags {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flying_tags .tag {
  position: absolute;
  bottom: -10vh;
  z-index: 99;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translateY(8px) scale(0.95);
          transform: translateY(8px) scale(0.95);
  -webkit-animation: winner-appear 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
          animation: winner-appear 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}
.flying_tags .tag i {
  margin-right: 0.5rem;
}
.flying_tags .tag.gold {
  background: linear-gradient(135deg, #ff8f00 0%, #ffd700 50%, #ff8f00 100%);
  color: #000;
}
.flying_tags .tag.gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(30%, rgba(255, 255, 255, 0.3)), color-stop(50%, rgba(255, 255, 255, 0.6)), color-stop(70%, rgba(255, 255, 255, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
  -webkit-animation: shine-sweep 2s ease-in-out 2.8s 1;
          animation: shine-sweep 2s ease-in-out 2.8s 1;
  border-radius: 9999px;
}
.flying_tags .tag.gold i {
  color: #000;
  -webkit-filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.4));
          filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.4));
}
.flying_tags .tag.black {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  color: #fff;
}
.flying_tags .tag.black::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(30%, rgba(255, 255, 255, 0.15)), color-stop(50%, rgba(255, 255, 255, 0.3)), color-stop(70%, rgba(255, 255, 255, 0.15)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
  -webkit-animation: shine-sweep 2s ease-in-out 2.8s 1;
          animation: shine-sweep 2s ease-in-out 2.8s 1;
  border-radius: 9999px;
}
.flying_tags .tag.black i {
  color: #4CAF50;
  -webkit-filter: drop-shadow(0 0 2px rgba(76, 175, 80, 0.4));
          filter: drop-shadow(0 0 2px rgba(76, 175, 80, 0.4));
}
@media (max-width: 48rem) {
  .flying_tags .tag {
    font-size: 0.8rem;
    display: none !important;
  }
}

@-webkit-keyframes winner-appear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8px) scale(0.95);
            transform: translateY(8px) scale(0.95);
  }
  60% {
    opacity: 0.9;
    -webkit-transform: translateY(-2px) scale(1.01);
            transform: translateY(-2px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes winner-appear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8px) scale(0.95);
            transform: translateY(8px) scale(0.95);
  }
  60% {
    opacity: 0.9;
    -webkit-transform: translateY(-2px) scale(1.01);
            transform: translateY(-2px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes shine-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes shine-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.toggle_mode {
  position: absolute;
  top: 0;
  right: 7.5%;
  width: auto;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
  font-size: 1rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  white-space: nowrap;
}
.toggle_mode.only_mobile {
  display: none;
}
@media (max-width: 768px) {
  .toggle_mode {
    position: absolute;
    top: 4rem;
    right: inherit;
    left: 4rem;
  }
  .toggle_mode.not_mobile {
    display: none;
  }
  .toggle_mode.only_mobile {
    display: none;
    position: absolute;
    top: inherit;
    right: 1rem;
    left: inherit;
    padding: 1rem 0;
    bottom: 0.5rem;
  }
}

.toggle_btn {
  width: 2.6rem;
  height: 1.4rem;
  border-radius: 2rem;
  position: relative;
  cursor: pointer;
}
.toggle_btn::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 27%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.profession-mode .toggle_btn {
  background-color: #4649ee;
  border: solid #4649ee;
  outline: thick solid #4649ee;
}
body.profession-mode .toggle_btn::before {
  left: 27%;
}

body.playground-mode .toggle_btn {
  background-color: #76AB00;
  border: solid #76AB00;
  outline: thick solid #76AB00;
}
body.playground-mode .toggle_btn::before {
  left: 72%;
}

.list_of_post_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 46vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
  padding: 1rem 0 4rem 0;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .list_of_post_items {
    gap: 1.5rem;
  }
  .list_of_post_items .card {
    min-width: 45%;
    max-width: 45%;
  }
}
@media (max-width: 48rem) {
  .list_of_post_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list_of_post_items.offset_up {
  position: relative;
  top: -15vh;
  z-index: 30;
}
.list_of_post_items .meta_data,
.list_of_post_items .post-year {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #4649ee;
  min-height: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.25rem;
}
.list_of_post_items .meta_data ul,
.list_of_post_items .post-year ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.list_of_post_items .meta_data ul li,
.list_of_post_items .post-year ul li {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  color: #333;
}
.list_of_post_items .meta_data ul li a,
.list_of_post_items .post-year ul li a {
  text-decoration: none;
}
.list_of_post_items .context {
  padding: 0 1rem;
}
.list_of_post_items h3 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  line-break: anywhere;
  margin: 0;
}
.list_of_post_items p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.list_of_post_items .card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  border: solid 1px #d9d9d9;
  border-radius: 1rem;
  -webkit-box-shadow: 1px 1px 0.5rem 1px #dedede;
          box-shadow: 1px 1px 0.5rem 1px #dedede;
}
@media (max-width: 48rem) {
  .list_of_post_items .card {
    max-width: 100%;
  }
}
@media screen and (max-width: 75rem) {
  .list_of_post_items .card {
    min-width: 403px;
    max-width: 30%;
  }
}
.list_of_post_items .card .media {
  height: auto;
  aspect-ratio: 1;
  background-color: #d9d9d9;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: solid 1px #d9d9d9;
  margin-bottom: 1rem;
  position: relative;
}
.list_of_post_items .card .media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list_of_post_items .card .media .link a {
  padding: 1rem 1.5rem 0 1.5rem;
}
.list_of_post_items .card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.list_of_post_items .card .meta_infomation_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.list_of_post_items .card .meta_infomation_wrapper .post-year {
  color: #333;
}
.list_of_post_items .card .key-results {
  margin: 1rem 0;
}
.list_of_post_items .card .key-results h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4649ee;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.list_of_post_items .card .key-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list_of_post_items .card .key-results ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.3;
  color: #555;
}
.list_of_post_items .card .key-results ul li::before {
  content: "•";
  color: #4649ee;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.list_of_post_items .card .key-results ul li:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .list_of_post_items .card .key-results {
    margin: 0.75rem 0;
  }
  .list_of_post_items .card .key-results h4 {
    font-size: 0.8rem;
  }
  .list_of_post_items .card .key-results ul li {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .list_of_post_items .card .key-results {
    margin: 0.75rem 0;
  }
  .list_of_post_items .card .key-results h4 {
    font-size: 0.85rem;
  }
  .list_of_post_items .card .key-results ul li {
    font-size: 0.8rem;
    padding-left: 0.8rem;
  }
}
.list_of_post_items .card .info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.list_of_post_items .card .info p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
}

.my_skills-grid .cards_grid .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  -webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  background-color: #fff;
  z-index: 1;
  font-weight: 400;
}
.my_skills-grid .cards_grid .card p {
  margin-bottom: 0;
}
.my_skills-grid .cards_grid .card:hover {
  color: #fff;
  z-index: 9;
}
.my_skills-grid .cards_grid .card:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.my_skills-grid .cards_grid .card:hover .card_infomation {
  display: block;
}
.my_skills-grid .cards_grid .card img {
  max-width: 45px;
}
@media (max-width: 768px) {
  .my_skills-grid .cards_grid .card {
    gap: 0.5rem;
    padding: 0.4rem 1rem;
  }
  .my_skills-grid .cards_grid .card img {
    max-width: 35px;
  }
  .my_skills-grid .cards_grid .card p {
    font-size: 0.8rem;
  }
}
.my_skills-grid .cards_grid .card .card_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
}
.my_skills-grid .cards_grid .card .card_image img {
  max-width: 100%;
  max-height: 90%;
  height: auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

#digital.tab-content.active .cards_grid .card:hover,
.my_skills-grid .cards_grid .card:hover {
  background-color: #4649ee;
}

#industrial.tab-content.active .cards_grid .card:hover {
  background-color: #76AB00;
}

#other .cards_grid .card:hover {
  background-color: #ea9312;
  color: #000;
}
#other .cards_grid .card:hover img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

body.playground-mode .my_skills-grid .cards_grid .card:hover {
  background-color: #76AB00;
}

.card_infomation {
  display: none;
  position: absolute;
  top: 105%;
  background-color: #141414;
  padding: 0.8rem 0.5rem;
  color: #fff;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.29);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.29);
  font-size: 0.8rem;
  text-align: left;
  border-radius: 0.5rem;
  z-index: 99;
  min-width: 22.5rem;
}
.card_infomation::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-bottom: 0.625rem solid #141414;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.card_infomation p {
  text-align: left;
  font-weight: 400;
  line-height: 1.6rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 37.5rem;
}
@media (max-width: 48rem) {
  .card_infomation {
    min-width: auto;
  }
}

.playground-mode .list_of_post_items .meta_data {
  color: #76AB00;
}
.playground-mode .list_of_post_items .meta_data ul li a {
  color: #76AB00;
}

.wpml-dropdown {
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
}
.wpml-dropdown.open .wpml-dropdown-menu, .wpml-dropdown.show_nav .wpml-dropdown-menu {
  display: block;
  border-radius: 0 0 1rem 1rem;
}
@media (max-width: 48rem) {
  .wpml-dropdown {
    width: 100%;
    padding: 0 2rem;
    display: none;
  }
}

@media (max-width: 48rem) {
  .container.show_nav .wpml-dropdown {
    display: block;
  }
}

.wpml-dropdown-toggle {
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 1rem;
  padding: 0 1rem;
}
.wpml-dropdown-toggle .dropdown-arrow {
  margin-left: 4px;
}
.wpml-dropdown-toggle img {
  width: 1.4rem;
}

.wpml-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 120px;
  z-index: 100;
}
.wpml-dropdown-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  color: #333;
}
.wpml-dropdown-menu li a:hover {
  background: #f0f0f0;
}
@media (max-width: 48rem) {
  .wpml-dropdown-menu {
    top: inherit;
    bottom: 100%;
  }
}

@media (max-width: 48rem) {
  .wpml-dropdown.open .wpml-dropdown-menu,
  .wpml-dropdown.show_nav .wpml-dropdown-menu {
    border-radius: 1rem;
    margin: 0 10%;
  }
}

.tab_folder_component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.tab_folder_component .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .tab_folder_component .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tab_folder_component .tab {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
.tab_folder_component .tab.active {
  border-bottom: solid 4px;
  border-color: #ff7062;
}
.tab_folder_component .tab.active.maker {
  border-color: #76AB00;
}
.tab_folder_component .tab.active.other {
  border-color: #ea9312;
}
.tab_folder_component .tab-content {
  display: none;
  padding: 2rem 0;
}
.tab_folder_component .tab-content.active {
  display: block;
}

body.profession-mode .tab_folder_component .tab.maker {
  display: none;
}

.carousel {
  will-change: transform;
}
.carousel:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.carousel:not(.slick-initialized) > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 2rem;
}
.carousel:not(.slick-initialized) > div:last-child {
  margin-right: 0;
}
.carousel img {
  display: block;
  max-width: none !important;
  height: auto;
}

.light_color_bg #workHistoryCarousel {
  padding: 10vh 0;
}
.light_color_bg #workHistoryCarousel.small_padding {
  padding: 0;
}
.light_color_bg .carousel {
  position: relative;
  overflow: hidden;
}
.light_color_bg .carousel:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
}
.light_color_bg .carousel:not(.slick-initialized) > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
}
.light_color_bg .carousel:not(.slick-initialized) > div img {
  max-width: 120px;
  height: auto;
  max-height: 80px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%) opacity(0.7);
          filter: grayscale(100%) opacity(0.7);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.light_color_bg .carousel:not(.slick-initialized) > div img:hover {
  -webkit-filter: grayscale(0%) opacity(1);
          filter: grayscale(0%) opacity(1);
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  -webkit-animation: none;
          animation: none;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-list {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  border: none;
  color: transparent;
  height: 3rem;
  width: 3rem;
  background: #ff7062;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.78, 0.01, 0.24, 0.98);
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.78, 0.01, 0.24, 0.98);
  transition: transform 0.2s cubic-bezier(0.78, 0.01, 0.24, 0.98), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.78, 0.01, 0.24, 0.98), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.78, 0.01, 0.24, 0.98);
  -webkit-transform: translateY(-50%) scale(0.8);
          transform: translateY(-50%) scale(0.8);
  opacity: 0.7;
  cursor: pointer;
  display: none;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-arrow:hover {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  opacity: 1;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-arrow::before {
  color: #fff;
  font-size: 1rem;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-prev {
  left: 1rem;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-next {
  right: 1rem;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-slide img {
  max-width: 120px;
  height: auto;
  max-height: 80px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%) opacity(0.7);
          filter: grayscale(100%) opacity(0.7);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-slide img:hover {
  -webkit-filter: grayscale(0%) opacity(1);
          filter: grayscale(0%) opacity(1);
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .light_color_bg .carousel.slick-initialized.slick-slider .slick-slide img {
    max-width: 100px;
    max-height: 70px;
  }
}
@media (max-width: 768px) {
  .light_color_bg .carousel.slick-initialized.slick-slider .slick-slide img {
    max-width: 80px;
    max-height: 60px;
  }
}
.light_color_bg .carousel.slick-initialized.slick-slider .slick-slide:hover img {
  -webkit-filter: grayscale(0%) opacity(1);
          filter: grayscale(0%) opacity(1);
}
.light_color_bg .carousel .slick-arrow {
  display: none !important;
}
@media (max-width: 768px) {
  .light_color_bg {
    padding: 0;
  }
}

.profession-mode div#workHistoryCarousel\ ux {
  padding: 10vh 0;
}

.playground-mode div#workHistoryCarousel\ ux {
  padding: 0;
}

.search_modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.search_modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search_modal .close_search.bg_cover {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
}
.search_modal .search_modal_content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  z-index: 99;
}
.search_modal .search_modal_content h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.search_modal .search_modal_content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.search_modal .search_modal_content .close_search {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.cta_form {
  position: relative;
  top: 1rem;
  margin: 4rem 0;
}
.cta_form .grafich_top {
  position: relative;
  top: 10px;
  right: -1.5rem;
}
@media (max-width: 768px) {
  .cta_form .grafich_top {
    width: 90%;
    right: -20px;
    top: 6px;
  }
}
.cta_form .grafich_top img {
  position: absolute;
  bottom: 0;
}
@media (max-width: 768px) {
  .cta_form .grafich_top img {
    width: 100%;
  }
}
.cta_form .grafich_right {
  position: absolute;
  top: -5%;
  right: 70px;
  -webkit-transform: rotate(-86deg);
          transform: rotate(-86deg);
}
@media (max-width: 768px) {
  .cta_form .grafich_right {
    display: none;
  }
  .cta_form .grafich_right img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cta_form {
    width: 100%;
  }
}

.cta_box {
  background-color: #d0d9eb;
  padding: 1rem 2rem;
  border-radius: 1rem;
  min-height: 200px;
  min-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta_box .cta-content {
  z-index: 2;
  position: relative;
}
.cta_box .cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0.5rem 0;
}
.cta_box .cta-title .highlight {
  color: #0077b5;
}
.cta_box .cta-subtitle {
  font-size: 1rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.4rem;
}
.cta_box .linkedin-cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
          box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
  border: none;
  cursor: pointer;
}
.cta_box .linkedin-cta-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
          box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
  background: linear-gradient(135deg, #005885 0%, #0077b5 100%);
  color: #fff;
  text-decoration: none;
}
.cta_box .linkedin-cta-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cta_box .linkedin-cta-btn .linkedin-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.cta_box .cta-note {
  font-size: 0.8rem;
  color: #4a4a4a;
  margin-top: 1rem;
  font-style: italic;
}
.cta_box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 119, 181, 0.1) 50%, transparent 70%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.playground-mode .cta_box {
  background-color: #c1e573;
}
.playground-mode .cta_box .cta-title .highlight {
  color: #76AB00;
}
.playground-mode .cta_box .linkedin-cta-btn {
  background: linear-gradient(135deg, #76AB00 0%, #5a8000 100%);
  -webkit-box-shadow: 0 4px 15px rgba(118, 171, 0, 0.3);
          box-shadow: 0 4px 15px rgba(118, 171, 0, 0.3);
}
.playground-mode .cta_box .linkedin-cta-btn:hover {
  background: linear-gradient(135deg, #5a8000 0%, #76AB00 100%);
  -webkit-box-shadow: 0 6px 20px rgba(118, 171, 0, 0.4);
          box-shadow: 0 6px 20px rgba(118, 171, 0, 0.4);
}

.burger-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #4649ee;
  border: none;
  border-radius: 0 1rem 1rem 0;
  cursor: pointer;
  padding: 1rem;
  margin-right: -0.125rem;
  position: relative;
  z-index: 501;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger-menu-btn:hover {
  background-color: rgb(23.2920792079, 27.0495049505, 233.7079207921);
}
.burger-menu-btn:focus {
  outline: 2px solid #4649ee;
  outline-offset: 2px;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, width 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.2s ease, width 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease, width 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease, width 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.burger-menu-btn.is-active {
  background-color: #fff;
}
.burger-menu-btn.is-active .burger-line {
  background-color: #4649ee;
}
.burger-menu-btn.is-active .burger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.burger-menu-btn.is-active .burger-line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.burger-menu-btn.is-active .burger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.playground-mode .burger-menu-btn {
  background-color: #76AB00;
}
.playground-mode .burger-menu-btn:hover {
  background-color: rgb(82.8070175439, 120, 0);
}
.playground-mode .burger-menu-btn.is-active {
  background-color: #fff;
}
.playground-mode .burger-menu-btn.is-active .burger-line {
  background-color: #76AB00;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4649ee;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.playground-mode .menu-overlay {
  background-color: #76AB00;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-content {
  text-align: center;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.1s, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: opacity 0.4s ease 0.1s, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.4s ease 0.1s;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.4s ease 0.1s, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.menu-overlay.is-open .menu-overlay-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.overlay-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay-nav li {
  margin: 1.5rem 0;
  overflow: hidden;
}
.overlay-nav li a {
  display: inline-block;
  font-family: "Inter", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 1rem;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.overlay-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease, left 0.3s ease;
  transition: width 0.3s ease, left 0.3s ease;
}
.overlay-nav li a:hover {
  opacity: 0.8;
}
.overlay-nav li a:hover::after {
  width: 100%;
  left: 0;
}

.menu-overlay.is-open .overlay-nav li a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.menu-overlay.is-open .overlay-nav li:nth-child(1) a {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.menu-overlay.is-open .overlay-nav li:nth-child(2) a {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.menu-overlay.is-open .overlay-nav li:nth-child(3) a {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.menu-overlay.is-open .overlay-nav li:nth-child(4) a {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.menu-overlay.is-open .overlay-nav li:nth-child(5) a {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.menu-overlay.is-open .overlay-nav li:nth-child(6) a {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.overlay-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease 0.35s, -webkit-transform 0.4s ease 0.35s;
  transition: opacity 0.4s ease 0.35s, -webkit-transform 0.4s ease 0.35s;
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s, -webkit-transform 0.4s ease 0.35s;
}
.menu-overlay.is-open .overlay-social {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.overlay-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.overlay-social a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.overlay-social a i {
  line-height: 1;
}

.overlay-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease 0.45s, -webkit-transform 0.4s ease 0.45s;
  transition: opacity 0.4s ease 0.45s, -webkit-transform 0.4s ease 0.45s;
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s, -webkit-transform 0.4s ease 0.45s;
}
.menu-overlay.is-open .overlay-contact {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.overlay-contact .contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.overlay-contact .contact-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0.9;
}
.overlay-contact .contact-link i {
  font-size: 1rem;
  opacity: 0.8;
}
.overlay-contact .contact-link span {
  line-height: 1;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 48rem) {
  .burger-menu-btn {
    border-radius: 0;
    width: 3rem;
    height: 3rem;
  }
  .overlay-nav li {
    margin: 1rem 0;
  }
  .overlay-nav li a {
    font-size: 2rem;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .burger-menu-btn {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.75rem;
  }
  .burger-line {
    width: 18px;
  }
  .overlay-nav li a {
    font-size: 2.5rem;
  }
}
#search_btn {
  display: none;
}

.overlay-social a svg {
  fill: #fff;
  height: 50%;
}

.makermeik-social-icons.makermeik-social-icons--profession {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-some-mode .makermeik-social-link {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
}
.footer-some-mode .makermeik-social-link svg {
  max-width: 2rem;
  width: 100%;
  height: auto;
  min-width: 2rem;
}
.footer-some-mode a {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-some-mode a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.ux-mode .makermeik-social-link svg {
  fill: #6584a2;
}
.ux-mode .makermeik-social-link svg path {
  fill: #6584a2;
  height: 100%;
  width: auto;
}
.ux-mode a:hover svg {
  fill: #4649ee;
}
.ux-mode a:hover svg path {
  fill: #4649ee;
}

.hobby-mode .makermeik-social-link svg {
  fill: #6584a2;
}
.hobby-mode .makermeik-social-link svg path {
  fill: #6584a2;
  height: 100%;
  width: auto;
}
.hobby-mode a:hover svg {
  fill: #76ab00;
}
.hobby-mode a:hover svg path {
  fill: #76ab00;
}

#header {
  position: fixed;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  background-color: #fff;
  max-width: 73.75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  -webkit-box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header a {
  min-height: 44px;
  min-width: 44px;
}
@media (max-width: 48rem) {
  #header {
    max-width: 100vw;
    min-width: 94vw;
    padding: 0 !important;
    top: 0;
    border-radius: 0 0 0 0;
  }
  #header.show_nav {
    height: 100%;
    border-radius: 0;
  }
}
#header.header-hidden {
  -webkit-transform: translateX(-50%) translateY(-120%);
          transform: translateX(-50%) translateY(-120%);
  opacity: 0;
}
#header.header-visible {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
}
#header.at-top {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#header .custom-logo-link,
#header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
}
@media (max-width: 48rem) {
  #header .custom-logo-link,
  #header .logo {
    min-height: 3.6rem;
  }
}
#header .custom-logo-link img,
#header .logo img {
  width: 6.25rem;
  height: auto;
  min-width: 12.5rem;
}

#header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header nav .menu-main-menu-container {
  height: 100%;
}
#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0;
}
#header nav ul li {
  margin: 0 1rem;
  height: 100%;
}
#header nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 44px;
  min-width: 44px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header nav ul li a:hover {
  color: #4649ee;
}
#header nav ul li a:hover span {
  color: #4649ee;
}
#header nav ul li.current-menu-item a, #header nav ul li.current-post-parent a, #header nav ul li.current_page_item a {
  color: #4649ee;
}

a.contact-me-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem;
  color: #fff;
  background: #4649ee;
  border-radius: 0 1rem 1rem 0;
}
@media (max-width: 48rem) {
  a.contact-me-btn {
    display: none;
  }
}

.playground-mode a.contact-me-btn {
  background: #76AB00;
}

#header .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#header .other .global_search {
  display: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.75rem;
  aspect-ratio: 1;
}
#header .other .contact {
  color: #fff;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 0 1rem 1rem 0;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -2px;
}

body.profession-mode .contact {
  background-color: #4649ee;
}

body.playground-mode .contact {
  background-color: #76AB00;
}

#header .sub_nav {
  position: absolute;
  z-index: 1000;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  left: 0;
  top: 5.625rem;
}
#header .sub_nav .block_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 1rem;
  max-width: 90%;
  margin: auto;
  background-color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
}
#header .sub_nav .block_frame .left {
  width: 50%;
}
#header .sub_nav .block_frame .left .block {
  width: 100%;
}
@media (max-width: 48rem) {
  #header .sub_nav .block_frame .left {
    width: 100%;
  }
}
#header .sub_nav .block_frame .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 48rem) {
  #header .sub_nav .block_frame .right {
    display: none;
  }
}
#header .sub_nav .block {
  margin: auto;
  width: 50%;
  -ms-grid-column: 1;
  grid-column: 1fr;
}
#header .sub_nav .block .cover {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
#header .sub_nav .block .cover .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#header .sub_nav .block .cover .intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#header .sub_nav .block .cover .intro p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 200;
  color: #65696a;
}
#header .sub_nav .block .cover .intro .source {
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 0;
}
#header .sub_nav .block .media {
  background-color: #d9d9d9;
  border-radius: 1.5rem;
  min-width: 50%;
  aspect-ratio: 1;
}
#header .sub_nav .block.full_media {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
#header .sub_nav .block.full_media .cover {
  width: 100%;
}
#header .sub_nav .block.full_media .cover .media {
  height: 16.5rem;
  width: 100%;
  border-radius: 1rem;
  background-color: #5c5c5c;
}

#header .dropdown.show a:first-child {
  font-weight: 600;
}
#header .dropdown.show .sub_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header .dropdown.show::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-bottom: 1.5rem solid #fff;
  top: 4.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: 1.5rem;
}
@media (max-width: 48rem) {
  #header .dropdown.show::after {
    display: none;
  }
}

#header .mobile_btn {
  display: none;
}

@media (min-width: 48rem) and (max-width: 64rem) {
  #header .custom-logo-link,
  #header .logo {
    padding-left: 1rem;
  }
  #header .custom-logo-link img,
  #header .logo img {
    width: 5rem;
    min-width: 10rem;
  }
  #header nav ul li {
    margin: 0 0.75rem;
  }
  #header nav ul li a {
    font-size: 0.9rem;
  }
  #header .other .contact {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  #header .sub_nav {
    top: 4.25rem;
  }
  #header .sub_nav .block_frame {
    max-width: 95%;
    padding: 1.5rem;
  }
  #header .sub_nav .block_frame .left {
    width: 60%;
  }
  #header .sub_nav .block_frame .right {
    width: 40%;
  }
}
@media (max-width: 48rem) {
  #header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    min-height: 3.75rem;
  }
  #header .logo {
    padding-left: 1rem;
    height: 3.75rem;
  }
  #header .logo img {
    min-width: 12.5rem;
  }
  #header nav {
    width: 100%;
    display: none;
  }
  #header nav.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 1rem 2rem;
  }
}
@media (max-width: 48rem) and (max-width: 48rem) {
  #header nav ul {
    padding: 0 2rem;
  }
}
@media (max-width: 48rem) {
  #header nav ul li {
    margin: 1rem 0;
  }
  #header nav ul li a {
    font-size: 1.4rem;
  }
  #header .other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header .other .global_search {
    position: absolute;
    height: 3.75rem;
    right: 3.75rem;
    top: 0;
    bottom: 0;
  }
  #header .other .contact {
    border-radius: 1rem;
    display: none;
    margin: 1rem;
    max-height: 44px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
  }
  #header .other .contact.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header .other .mobile_btn {
    position: absolute;
    height: 3.75rem;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 3.75rem;
  }
  #header .other .mobile_btn span {
    position: relative;
    background-color: #000;
    height: 2px;
    width: 1.5rem;
    display: block;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
  }
  #header .other .mobile_btn span.top {
    top: -5px;
  }
  #header .other .mobile_btn span.bottom {
    top: 5px;
  }
  #header.show_nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 48rem) and (max-width: 48rem) {
  #header.show_nav nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 48rem) {
  #header.show_nav .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header.show_nav .other .mobile_btn span.top {
    top: 1px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header.show_nav .other .mobile_btn span.middle {
    display: none;
  }
  #header.show_nav .other .mobile_btn span.bottom {
    top: -1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (max-width: 48rem) and (max-width: 48rem) {
  #header.show_nav .toggle_mode.only_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 48rem) {
  #header .sub_nav {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
  }
  #header .sub_nav .block_frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    max-width: 90%;
    margin: auto;
    background-color: #fff;
    border-radius: 2rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header .sub_nav .block_frame .block {
    width: 100%;
  }
  #header .sub_nav .block_frame .block .media {
    display: none;
  }
  #header .sub_nav .block_frame .block .cover {
    padding: 1rem 0;
  }
  #header .sub_nav .block_frame .block .cover .intro p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
}
.playground-mode #header nav ul li.current-menu-item a {
  color: #76AB00;
}
.playground-mode #header nav ul li a:hover {
  color: #76AB00;
}

#footer {
  position: relative;
  z-index: 99;
  width: 100%;
}
@media (max-width: 48rem) {
  #footer .container {
    padding: 4rem 0 0 0;
  }
}

#footer .footer_center {
  background-color: #fff;
  background-image: url("../img/bg-pattern.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin: auto;
  border-radius: 2rem 2rem 0 0;
  -webkit-box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25);
}

#footer .footer_center .footer_grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "media context context";
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: rgba(255, 255, 255, 0.6705882353);
  border-radius: 2rem 2rem 0 0;
  padding: 2rem;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid {
        grid-template-areas: "media" "context";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

#footer .footer_center .footer_grid .footer_media {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: media;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_center .footer_grid .footer_media .cvr {
  position: absolute;
  bottom: 4rem;
  color: #6584a2;
  z-index: 9;
  font-weight: 400;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_media .cvr {
    bottom: 3rem;
  }
}
#footer .footer_center .footer_grid .footer_media img {
  width: 32.937rem;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_media img {
    max-width: 80vw;
  }
}

#footer .footer_center .footer_grid .footer_content {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: context;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 2rem;
}

@media (max-width: 48rem){
  #footer .footer_center .footer_grid .footer_media {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #footer .footer_center .footer_grid .footer_content {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
#footer .footer_center .footer_grid .footer_content .intro_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4649ee;
  margin-bottom: 0.5rem;
}
#footer .footer_center .footer_grid .footer_content h2 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#footer .footer_center .footer_grid .footer_content p {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
}
#footer .footer_center .footer_grid .footer_content .cta_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_content .cta_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    margin: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#footer .footer_center .footer_grid .footer_content .cta_actions img {
  max-width: 1rem;
}
#footer .footer_center .footer_grid .footer_content .some {
  padding: 2rem 0 0 0;
  font-style: italic;
  font-weight: 400;
  color: #000;
}
#footer .footer_center .footer_grid .footer_content .some ul {
  margin: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_content .some ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#footer .footer_center .footer_grid .footer_content .some ul li {
  list-style: none;
}
#footer .footer_center .footer_grid .footer_content .some ul li a {
  font-size: 1.5rem;
  color: #4649ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  opacity: 0.8;
  -webkit-filter: contrast(0.8);
          filter: contrast(0.8);
}
#footer .footer_center .footer_grid .footer_content .some ul li a:hover {
  color: #ff7062;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  opacity: 1;
  -webkit-filter: contrast(1);
          filter: contrast(1);
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_content .some ul li a {
    font-size: 1.2rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
#footer .footer_center .footer_grid .footer_content .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100%;
}
#footer .footer_center .footer_grid .footer_content .footer_links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.5rem;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 100%;
  margin: 1rem 0;
}
@media (max-width: 48rem) {
  #footer .footer_center .footer_grid .footer_content .footer_links ul {
    gap: 0.5rem;
  }
  #footer .footer_center .footer_grid .footer_content .footer_links ul li {
    min-width: 100%;
  }
}
#footer .footer_center .footer_grid .footer_content .footer_links li {
  list-style: none;
  -ms-grid-column: 1;
  grid-column: 1fr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0;
}
#footer .footer_center .footer_grid .footer_content .footer_links li a {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65rem;
  color: #6584a2;
  width: 100%;
  text-align: center;
}
#footer .footer_center .footer_grid .footer_content .footer_links li a:hover {
  color: #ff7062;
}

.home #footer {
  background-color: #E8EFFE;
}

.home.playground-mode #footer {
  background-color: transparent;
}

.playground-mode #footer .footer_center .footer_grid .footer_content .intro_title {
  color: #76AB00;
}
.playground-mode #footer .footer_center {
  background-color: rgb(231, 245, 201);
}

.profession-mode #footer .footer_center {
  background-color: #E8EFFE;
}

#herobanner {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  position: relative;
  z-index: 30;
  padding: 4vh 0 0 0;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  #herobanner {
    padding: 8vh 0;
  }
  #herobanner .grid .col h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin: 1.5rem 0;
  }
  #herobanner .grid .col p {
    font-size: 0.95rem;
    line-height: 1.35rem;
    margin: 0.75rem 0 1.5rem 0;
  }
  #herobanner .grid .col .the_guy img {
    max-width: 28rem;
    margin-bottom: -8vh;
  }
}
@media (max-width: 48rem) {
  #herobanner {
    padding: 1vh 0;
    height: auto;
  }
}
@media (min-width: 125rem) {
  #herobanner {
    padding: 6vh 0 10vh 0;
  }
}
#herobanner .bgimg {
  width: 100%;
  height: 100%;
  z-index: 2;
}

#herobanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: auto;
  margin: auto;
  height: 100%;
  padding: 0;
  position: relative;
  gap: 2rem;
}
@media (max-width: 48rem) {
  #herobanner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 100vw;
    gap: 0;
  }
}
#herobanner .toggle_mode {
  left: 0;
  right: inherit;
  position: relative;
}

#herobanner.portfolio_hero .grid {
  width: 100%;
}
#herobanner.portfolio_hero .grid .toggle_mode {
  right: 0;
}

#herobanner .grid .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-index: 9;
}
@media (max-width: 48rem) {
  #herobanner .grid .col {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 0;
  }
}
#herobanner .grid .col h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  z-index: 1;
  margin: 2rem 0;
  white-space: nowrap;
}
#herobanner .grid .col h1 b {
  font-weight: 800;
}
#herobanner .grid .col h1.small_big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 0;
}
#herobanner .grid .col h1.small_big .small {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4649ee;
  margin-bottom: 0.5rem;
}
#herobanner .grid .col h1.small_big span {
  display: contents;
}
@media (max-width: 48rem) {
  #herobanner .grid .col h1 {
    font-size: 3rem;
    line-height: 1;
    margin: 1rem 0 0 0;
    white-space: normal;
  }
}
#herobanner .grid .col p {
  font-size: 1rem;
  line-height: 1.4rem;
  z-index: 1;
  margin: 1rem 0 2rem 0;
  font-weight: 400;
}
@media (max-width: 48rem) {
  #herobanner .grid .col p {
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
    padding-top: 0;
  }
}
#herobanner .grid .col p.small {
  margin: 1rem 0 0 0;
}
#herobanner .grid .col p.bottom_off {
  margin-bottom: 0;
}
#herobanner .grid .col.text_part {
  position: relative;
  z-index: 99;
}
#herobanner .grid .col.img {
  position: relative;
}

@media (max-width: 48rem) {
  .herobanner_context {
    position: relative;
    z-index: 9;
  }
}

#herobanner .grid .col .bg_shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#herobanner .grid .col .bg_shadow img {
  width: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 125rem) {
  #herobanner .grid .col .bg_shadow {
    width: 100%;
  }
  #herobanner .grid .col .bg_shadow video {
    margin-top: 4rem;
    width: 100%;
  }
  #herobanner .grid .col .bg_shadow .play_video {
    margin-top: 4rem;
  }
}
@media (max-width: 48rem) {
  #herobanner .grid .col .bg_shadow {
    width: 100%;
    top: 0;
    right: 0;
    position: relative;
  }
  #herobanner .grid .col .bg_shadow img {
    height: 90%;
  }
  #herobanner .grid .col .bg_shadow video {
    max-width: 90vw;
  }
}
@media (max-width: 48rem) {
  #herobanner .grid .col .bg_shadow {
    height: 156px;
    min-height: 100px;
  }
  #herobanner .grid .col .bg_shadow video {
    max-width: 54vw;
  }
}

#herobanner .grid .col .the_guy {
  top: 0;
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 48rem) {
  #herobanner .grid .col .the_guy {
    height: auto;
  }
}
#herobanner .grid .col .the_guy img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  max-width: 32.0652173913rem;
  border-radius: 0.5rem;
  margin-bottom: -10vh;
}
@media (min-width: 125rem) {
  #herobanner .grid .col .the_guy img {
    max-width: 650px;
    margin-left: -5vw;
  }
}
@media (max-width: 48rem) {
  #herobanner .grid .col .the_guy img {
    height: auto;
    margin-bottom: -2rem;
    max-width: 50vw;
    width: 50%;
  }
}

#herobanner.portfolio_hero {
  padding-top: 7rem;
  padding-bottom: 0;
}
#herobanner.portfolio_hero .grid .col h1 {
  margin: 0;
}

@media (max-width: 48rem) {
  #herobanner {
    height: auto;
    padding-top: 0;
  }
  #herobanner .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
    max-width: 100vw;
  }
  #herobanner .grid .col.video_container {
    height: 40vh;
    display: block;
    position: relative;
  }
  #herobanner .grid .col .the_guy {
    position: absolute;
    inset: 0;
  }
  #herobanner .container .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#herobanner .small.info {
  font-style: italic;
  color: #4649ee;
  margin: 1rem 0 0 0;
}

#infomation_hero p {
  font-size: 1rem !important;
}

.archive #herobanner {
  min-height: 40vh;
  background-color: #cdcdcd;
  background-image: url("../img/my-notebooks.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.archive #herobanner .toggle_mode,
.archive #herobanner h1,
.archive #herobanner p {
  color: #fff;
}
.archive #herobanner::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.playground-mode #herobanner .small.info {
  color: #76AB00;
}
.playground-mode #herobanner .grid .col h1.small_big span.show_only_playground {
  display: contents;
}
.playground-mode #herobanner .grid .col h1.small_big span.show_only_profession {
  display: none;
}
.playground-mode #herobanner .grid .col h1.small_big .small {
  color: #76AB00;
}

.profession-mode #herobanner .grid .col h1.small_big span.show_only_playground {
  display: none;
}
.profession-mode #herobanner .grid .col h1.small_big span.show_only_profession {
  display: contents;
}

.browser-safari #herobanner .grid .col .bg_shadow {
  background-image: url("../img/bubble-profession-mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 55vh;
  min-height: 500px;
  inset: 0;
  top: 10%;
  background-size: auto;
}
@media (max-width: 48rem) {
  .browser-safari #herobanner .grid .col .bg_shadow {
    height: 100px;
    min-height: 146px;
  }
}
.browser-safari #herobanner .grid .col .bg_shadow video {
  display: none;
}

#arcive_overview #herobanner .container {
  padding-top: 4rem;
}

.play_video {
  position: relative;
  z-index: 99;
  min-height: 400px;
  min-width: 400px;
}
.play_video .youtube_video {
  width: 100%;
  height: 100%;
}

#intro,
.full_section_text {
  position: relative;
  z-index: 30;
  padding: 4rem 0 0 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  #intro,
  .full_section_text {
    padding: 0;
  }
}
#intro .grid.intro_text,
.full_section_text .grid.intro_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: 0;
}
@media screen and (min-width: 769px) {
  #intro .grid.intro_text,
  .full_section_text .grid.intro_text {
    margin-bottom: 2rem;
  }
}
#intro .big_text,
.full_section_text .big_text {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
#intro .big_text .bold,
.full_section_text .big_text .bold {
  font-weight: bold;
}
@media (max-width: 768px) {
  #intro .big_text,
  .full_section_text .big_text {
    padding: 1rem 1.5rem;
    margin-bottom: 0;
  }
}
#intro b,
.full_section_text b {
  font-weight: 800;
}
#intro.solid_bg,
.full_section_text.solid_bg {
  background-color: #4649ee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2, 5, 170)), to(#4649ee));
  background-image: linear-gradient(rgb(2, 5, 170), #4649ee);
  color: #fff;
}
#intro.solid_bg .btn.line,
.full_section_text.solid_bg .btn.line {
  color: #fff;
  border-color: #fff;
}
#intro.solid_bg.show_only_playground,
.full_section_text.solid_bg.show_only_playground {
  background-color: #76AB00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(99, 142, 3)), to(#76AB00));
  background-image: linear-gradient(rgb(99, 142, 3), #76AB00);
}

.infomation_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10vh;
  gap: 1rem;
}
.infomation_grid .grafich {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0.68;
      -ms-flex: 0.68;
          flex: 0.68;
}
.infomation_grid .grafich img {
  width: 100%;
  max-width: 36.875rem;
  height: auto;
}
.infomation_grid.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.infomation_grid.reverse .grafich {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .infomation_grid.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.infomation_grid .context {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1rem;
}
.infomation_grid .context .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}
.infomation_grid .context .title span {
  color: #4649ee;
}
.infomation_grid .context h2 {
  font-size: 2rem;
  margin: 0.5rem 0 0 0;
  font-weight: 800;
}
.infomation_grid .context p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}
.infomation_grid .context .other h4 {
  margin: 1rem 0;
}
.infomation_grid .context .other .related li {
  padding: 0.25rem 0;
}
.infomation_grid .context .other .related li a {
  color: #4649ee;
  text-decoration: none;
  font-style: italic;
}
.infomation_grid .context .other .related li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .infomation_grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infomation_grid .grafich {
    margin-bottom: 2rem;
  }
  .infomation_grid .grafich img {
    width: 90%;
    max-width: 290px;
    margin: auto;
  }
  .infomation_grid .context {
    padding: 0;
  }
  .infomation_grid .context h2 {
    font-size: 1.5rem;
  }
  .infomation_grid .context p {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media (max-width: 48rem) {
  .infomation_grid {
    margin-bottom: 2vh;
  }
}

.tab-content li.infomation_grid:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 48rem) {
  .tab-content li.infomation_grid:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.show_only_playground .infomation_grid .context .title span,
.show_only_playground .infomation_grid .context .other .related li a {
  color: #76AB00;
}

.overview_section {
  padding: 4rem 0;
}
.overview_section .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .overview_section .grid {
    gap: 2rem;
  }
  .overview_section .grid .media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .overview_section .grid .context {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .overview_section .grid .context h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .overview_section .grid .context p,
  .overview_section .grid .context ul li {
    font-size: 0.9rem;
    line-height: 1.35rem;
  }
}
@media (max-width: 768px) {
  .overview_section .grid {
    display: block;
  }
  .overview_section .grid .media {
    height: 300px;
    aspect-ratio: 1;
  }
}
.overview_section .grid .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  position: relative;
}
.overview_section .grid .media img {
  width: 100%;
  height: auto;
}
.overview_section .grid .media .goals {
  position: relative;
  height: 100%;
  width: 100%;
}
.overview_section .grid .media .goals .img_1,
.overview_section .grid .media .goals .img_2,
.overview_section .grid .media .goals .img_3 {
  position: absolute;
}
.overview_section .grid .media .goals .img_1 {
  top: 0;
  left: 0;
  width: 52%;
}
@media (max-width: 48rem) {
  .overview_section .grid .media .goals .img_1 {
    width: 100%;
  }
}
.overview_section .grid .media .goals .img_2 {
  top: 15%;
  right: 5%;
  width: 64%;
}
.overview_section .grid .media .goals .img_3 {
  bottom: 20%;
  left: 10%;
  width: 40%;
  z-index: 2;
}
.overview_section .grid .context {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
.overview_section .grid .context h2 {
  font-size: 2.4rem;
  margin-top: 0;
}
.overview_section .grid .context h2.light {
  font-weight: 200;
}
.overview_section .grid .context h2.light b {
  font-weight: 600;
}
.overview_section .grid .context p,
.overview_section .grid .context ul li {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
}
.overview_section .grid .context p {
  margin-bottom: 1rem;
}
.overview_section .grid .context ul {
  list-style: none;
  padding: 0 2rem;
  margin: 2rem 0;
}
.overview_section .grid .context ul li {
  margin-bottom: 1rem;
  position: relative;
}
.overview_section .grid .context ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4649ee;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 5px;
}

#off_work {
  padding: 4rem 0;
}
#off_work .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#off_work .grid .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
}
#off_work .grid .text h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
}
#off_work .grid .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
#off_work .grid .media img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #off_work {
    padding: 0 0 2rem 0;
  }
  #off_work .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
  #off_work .grid .media {
    height: 300px;
    aspect-ratio: 1;
  }
  #off_work .grid .media video {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90vw;
    height: auto;
  }
}

#there_is_more {
  background-color: #eaeef6;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  #there_is_more {
    padding: 2rem 0;
  }
}
#there_is_more .grid {
  padding: 0 2rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#there_is_more .grid.layout_75-25 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  min-height: 320px;
}
@media (max-width: 768px) {
  #there_is_more .grid.layout_75-25 {
    width: auto;
  }
}
#there_is_more .grid.layout_75-25 .context {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#there_is_more .grid.layout_75-25 .context h2 {
  font-size: 3.4rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}
#there_is_more .grid.layout_75-25 .context h2 b {
  font-weight: 800;
}
#there_is_more .grid.layout_75-25 .context p {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin: 1rem 0;
}
#there_is_more .grid.layout_75-25 .cta_form {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
}

.playground-mode #there_is_more {
  background-color: rgb(231, 245, 201);
}

#my_own_work .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
#my_own_work .grid .title {
  padding: 2rem 0;
}
#my_own_work .grid .title h2 {
  font-size: 3.4rem;
}

.my_skills-grid {
  width: 100%;
}
.my_skills-grid h2 {
  text-align: center;
  font-size: 1.4rem;
  padding: 2rem 0 0 1rem;
}
.my_skills-grid p {
  text-align: center;
  font-style: italic;
}
.my_skills-grid .cards_grid {
  padding: 3rem 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.my_skills-grid .cards_grid.skills_grid p {
  margin: 0;
}
@media (max-width: 768px) {
  .my_skills-grid .cards_grid {
    padding: 0;
  }
}
.my_skills-grid .tools_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.my_skills-grid .tools_grid .tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 25%;
}
.my_skills-grid .tools_grid .tool img {
  max-width: 64px;
}
.my_skills-grid .tools_grid .tool:hover .card_infomation {
  display: block;
}
.my_skills-grid .my_tools_for_this_kind_of_work {
  padding: 0 8rem 8rem;
}
@media (max-width: 768px) {
  .my_skills-grid .my_tools_for_this_kind_of_work {
    padding: 0 1rem;
  }
}
.my_skills-grid .my_tools_for_this_kind_of_work .tool_texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  padding: 2rem 0 3rem;
}
.my_skills-grid .my_tools_for_this_kind_of_work .tool_texts h2 {
  text-align: center;
  font-size: 1.4rem;
}
.my_skills-grid .my_tools_for_this_kind_of_work .tool_texts p {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 400;
  max-width: 60%;
  margin: auto;
  font-style: italic;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .my_skills-grid {
    padding: 0 1rem;
  }
}

.principles_skill {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .principles_skill {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .principles_skill {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.principles_skill .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .principles_skill .group {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .principles_skill .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2rem;
  }
  .principles_skill .group img {
    max-width: 280px;
    width: 90%;
    margin: auto;
  }
}
.principles_skill .group img {
  width: 20vw;
  max-width: 300px;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .principles_skill .group img {
    width: 25vw;
    max-width: 250px;
  }
}
.principles_skill .group .context .titles h4 {
  color: #4649ee;
  font-size: 1rem;
  padding: 0.5rem 0;
  margin: 0;
}
@media (min-width: 125rem) {
  .principles_skill .group .context .titles h4 {
    font-size: 1.4rem;
    line-height: 1.2rem;
  }
}
.principles_skill .group .context .titles h5 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  padding: 0.5rem 0;
  margin: 0;
}
.principles_skill .group .context p {
  font-size: 0.8rem;
  line-height: 1.2rem;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .principles_skill .group .context p {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
}
@media (min-width: 125rem) {
  .principles_skill .group .context p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
}

.small_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5vh 0 10vh;
}
.small_title .center {
  text-align: center;
}
@media (max-width: 768px) {
  .small_title {
    padding: 0;
  }
}

.margin_10vh {
  margin: 10vh 0;
}

.bottom_offset_30vh {
  position: relative;
  bottom: -30vh;
}

.playground-mode .version-ux {
  display: none;
}

.profession-mode .version-ux {
  display: block;
}

.profession-mode .version-maker {
  display: none;
}

.playground-mode .version-maker {
  display: block;
}
.playground-mode .version-maker .principles_skill .group {
  gap: 1rem;
}
.playground-mode .version-maker .principles_skill .group .context .titles h4 {
  color: #76AB00;
}

.playground-mode .overview_section .grid .context ul li::before {
  background-color: #76AB00;
}

#loading-cover {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-cover.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loading-cover .loading-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
#loading-cover .loading-logo img {
  width: 100%;
  max-width: 60vw;
  height: auto;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}
#loading-cover .loading-tagline {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-top: 1rem;
  opacity: 0.8;
}
@media (max-width: 48rem) {
  #loading-cover .loading-tagline {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
}
#loading-cover .loading-indicator {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#loading-cover .loading-indicator span {
  width: 8px;
  height: 8px;
  background-color: #4649ee;
  border-radius: 50%;
  -webkit-animation: bounce 1.4s ease-in-out infinite both;
          animation: bounce 1.4s ease-in-out infinite both;
}
#loading-cover .loading-indicator span:nth-child(1) {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
#loading-cover .loading-indicator span:nth-child(2) {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
#loading-cover .loading-indicator span:nth-child(3) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

body.playground-mode #loading-cover .loading-indicator span {
  background-color: #76AB00;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.9;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.9;
  }
}
@-webkit-keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.no-js #loading-cover {
  display: none;
}

#about_me {
  padding-top: 6rem;
}

.home.profession-mode {
  background-color: #E8EFFE;
}
.home.playground-mode {
  background-color: rgb(231, 245, 201);
}

.single #wrapper {
  padding-top: 6rem;
}
.single article {
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 48rem) {
  .single article {
    padding: 1rem;
  }
}
.single article .entry-header {
  margin-bottom: 2rem;
}
.single article .entry-header .entry-title {
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  .single article .entry-header .entry-title {
    font-size: 3rem;
  }
}
.single article .entry-header .entry-meta {
  color: #65696a;
  font-size: 0.8rem;
}
.single article .entry-header .entry-meta a {
  color: #4649ee;
}
.single article .entry-content {
  font-size: 1rem;
  line-height: 1.4rem;
}
.single article .entry-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}
.single article .entry-content h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.single article .entry-content p {
  margin-bottom: 1.5rem;
}
.single article .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.single article .entry-content blockquote {
  border-left: 4px solid #4649ee;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #333;
}
.single article .entry-content ul,
.single article .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.single article .entry-content ul li,
.single article .entry-content ol li {
  margin-bottom: 0.75rem;
}
.single article .entry-content code {
  background-color: #d9d9d9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 0.9em;
}
.single article .entry-content pre {
  background-color: #5c5c5c;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  overflow-x: auto;
}
.single article .entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.single article .entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #cdcdcd;
}
.single article .entry-footer .cat-links,
.single article .entry-footer .tags-links {
  display: block;
  margin-bottom: 0.75rem;
}
.single article .entry-footer .cat-links a,
.single article .entry-footer .tags-links a {
  color: #4649ee;
}
.single article .entry-footer .cat-links a:hover,
.single article .entry-footer .tags-links a:hover {
  text-decoration: underline;
}

.single-portfolio #wrapper {
  padding-top: 0;
}
.single-portfolio .portfolio-header {
  background-color: #E8EFFE;
  padding: 4vh 0 0 0;
}
@media (max-width: 48rem) {
  .single-portfolio .portfolio-header {
    padding: 1vh 0;
  }
}
.single-portfolio .portfolio-header h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 1.5rem;
}
.single-portfolio .portfolio-header .portfolio-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-portfolio .portfolio-header .portfolio-meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.single-portfolio .portfolio-header .portfolio-meta .meta-item .label {
  font-size: 0.8rem;
  color: #65696a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.single-portfolio .portfolio-header .portfolio-meta .meta-item .value {
  font-weight: 600;
}
.single-portfolio .portfolio-content {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (max-width: 48rem) {
  .single-portfolio .portfolio-content {
    padding: 2rem 1rem;
  }
}
.single-portfolio .portfolio-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.single-my_skills #wrapper {
  padding-top: 0;
}
.single-my_skills .skills-header {
  background-color: #E8EFFE;
  padding: 4vh 0 0 0;
  text-align: center;
}
.single-my_skills .skills-header h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.single-my_skills .skills-header .skill-category {
  color: #4649ee;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.single-my_skills .skills-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page #wrapper {
  padding-top: 6rem;
}
@media (max-width: 48rem) {
  .page #wrapper {
    padding-top: 2rem;
  }
}
.page .page-header {
  text-align: center;
  padding: 3rem 0;
}
.page .page-header .page-title {
  font-size: 3.2rem;
  line-height: 4.2rem;
}
.page .page-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
@media (max-width: 48rem) {
  .page .page-content {
    padding: 0 1rem 3rem;
  }
}

.archive #wrapper {
  padding-top: 0;
}
.archive .archive-header {
  background-color: #5c5c5c;
  color: #fff;
  padding: 4vh 0 0 0;
  text-align: center;
}
.archive .archive-header .archive-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.archive .archive-header .archive-description {
  font-size: 1.2rem;
  max-width: 50rem;
  margin: 0 auto;
  opacity: 0.6;
}
.archive .archive-content {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.archive .archive-content .posts-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.search-results #wrapper {
  padding-top: 4rem;
}
.search-results .search-header {
  text-align: center;
  padding: 3rem 0;
}
.search-results .search-header .search-title {
  font-size: 2rem;
}
.search-results .search-content {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.search-results .search-content article {
  padding: 2rem 0;
  border-bottom: 1px solid #cdcdcd;
}
.search-results .search-content article:last-child {
  border-bottom: none;
}
.search-results .search-content article h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.search-results .search-content article h2 a {
  color: #000;
}
.search-results .search-content article h2 a:hover {
  color: #4649ee;
}
.search-results .search-content article .search-excerpt {
  color: #333;
}

.error404 #wrapper {
  padding-top: 4rem;
}
.error404 .error-content {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.error404 .error-content h1 {
  font-size: 8rem;
  font-weight: 800;
  color: #4649ee;
  margin-bottom: 1.5rem;
}
@media (max-width: 48rem) {
  .error404 .error-content h1 {
    font-size: 5rem;
  }
}
.error404 .error-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.error404 .error-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 3rem;
}

.page-template-page-about #wrapper {
  padding-top: 0;
}

.page-template-page-portfolio #wrapper {
  padding-top: 0;
}
.page-template-page-portfolio .portfolio-filters {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-template-page-portfolio .portfolio-filters .filter-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.page-template-page-portfolio .portfolio-filters .filter-btn:focus {
  outline: none;
}
.page-template-page-portfolio .portfolio-filters .filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-template-page-portfolio .portfolio-filters .filter-btn:hover, .page-template-page-portfolio .portfolio-filters .filter-btn.active {
  background-color: #4649ee;
  color: #fff;
}

.editor-styles-wrapper {
  font-family: "Inter", serif;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #000;
}

.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #000;
  margin-top: 0;
}
.editor-styles-wrapper h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
}
.editor-styles-wrapper h2 {
  font-size: 2rem;
  line-height: 2.8rem;
}
.editor-styles-wrapper h3 {
  font-size: 1.6rem;
}
.editor-styles-wrapper h4 {
  font-size: 1rem;
}

.editor-styles-wrapper p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 1.5rem;
}
.editor-styles-wrapper a {
  color: #4649ee;
}
.editor-styles-wrapper a:hover {
  color: #ff7062;
}
.editor-styles-wrapper blockquote {
  border-left: 4px solid #4649ee;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #333;
}

.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li {
  margin-bottom: 0.75rem;
}

.editor-styles-wrapper code {
  background-color: #d9d9d9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 0.9em;
}
.editor-styles-wrapper pre {
  background-color: #5c5c5c;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  overflow-x: auto;
}
.editor-styles-wrapper pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.editor-styles-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.editor-styles-wrapper figure {
  margin: 2rem 0;
}
.editor-styles-wrapper figure figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #65696a;
  margin-top: 0.75rem;
}

.editor-styles-wrapper .wp-block-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1.25rem 1.25rem;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.editor-styles-wrapper .wp-block-button__link:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.editor-styles-wrapper .wp-block-button__link:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.editor-styles-wrapper .wp-block-button__link {
  background-color: #4649ee;
  color: #fff;
  padding: 1.25rem 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
}
.editor-styles-wrapper .wp-block-button__link:hover {
  background-color: #ff7062;
}
.editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #4649ee;
  color: #4649ee;
}
.editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #4649ee;
  color: #fff;
}

.editor-styles-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
  padding: 0.75rem 1rem;
  border: 1px solid #cdcdcd;
  text-align: left;
}
.editor-styles-wrapper table th {
  background-color: #d9d9d9;
  font-weight: 600;
}
.editor-styles-wrapper table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.editor-styles-wrapper hr,
.editor-styles-wrapper .wp-block-separator {
  border: none;
  border-top: 1px solid #cdcdcd;
  margin: 3rem 0;
}
.editor-styles-wrapper hr.is-style-wide,
.editor-styles-wrapper .wp-block-separator.is-style-wide {
  width: 100%;
}
.editor-styles-wrapper hr.is-style-dots,
.editor-styles-wrapper .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.editor-styles-wrapper hr.is-style-dots::before,
.editor-styles-wrapper .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #65696a;
  font-size: 2rem;
  letter-spacing: 1rem;
}

.editor-styles-wrapper .wp-block-columns {
  gap: 2rem;
}
.editor-styles-wrapper .wp-block-columns .wp-block-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.editor-styles-wrapper .wp-block-cover {
  min-height: 40vh;
  padding: 4rem;
  border-radius: 1.5rem;
}
.editor-styles-wrapper .wp-block-cover .wp-block-cover__inner-container {
  max-width: 50rem;
}

.editor-styles-wrapper .alignwide {
  max-width: 73.75rem;
  margin-left: auto;
  margin-right: auto;
}
.editor-styles-wrapper .alignfull {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

html.playground-mode .show_only_profession,
body.playground-mode .show_only_profession,
html.playground-mode .only-ux,
body.playground-mode .only-ux {
  display: none !important;
}

html.profession-mode .show_only_profession,
body.profession-mode .show_only_profession,
html.profession-mode .only-ux,
body.profession-mode .only-ux {
  display: block;
}

html.profession-mode .show_only_playground,
body.profession-mode .show_only_playground,
html.profession-mode .show_only_hobby,
body.profession-mode .show_only_hobby,
html.profession-mode .only-maker,
body.profession-mode .only-maker {
  display: none !important;
}

html.playground-mode .show_only_playground,
body.playground-mode .show_only_playground,
html.playground-mode .show_only_hobby,
body.playground-mode .show_only_hobby,
html.playground-mode .only-maker,
body.playground-mode .only-maker {
  display: block;
}

html.profession-mode .hide_in_ux,
body.profession-mode .hide_in_ux {
  display: none !important;
}

html.playground-mode .hide_in_hobby,
body.playground-mode .hide_in_hobby {
  display: none !important;
}

html.profession-mode .show_only_profession.d-flex,
body.profession-mode .show_only_profession.d-flex,
html.profession-mode .show_only_profession[style*="display: flex"],
body.profession-mode .show_only_profession[style*="display: flex"],
html.profession-mode .only-ux.d-flex,
body.profession-mode .only-ux.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

html.playground-mode .show_only_playground.d-flex,
body.playground-mode .show_only_playground.d-flex,
html.playground-mode .show_only_playground[style*="display: flex"],
body.playground-mode .show_only_playground[style*="display: flex"],
html.playground-mode .show_only_hobby.d-flex,
body.playground-mode .show_only_hobby.d-flex,
html.playground-mode .only-maker.d-flex,
body.playground-mode .only-maker.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

html.profession-mode .show_only_profession.d-inline,
body.profession-mode .show_only_profession.d-inline,
html.profession-mode .only-ux.d-inline,
body.profession-mode .only-ux.d-inline {
  display: inline !important;
}

html.playground-mode .show_only_playground.d-inline,
body.playground-mode .show_only_playground.d-inline,
html.playground-mode .show_only_hobby.d-inline,
body.playground-mode .show_only_hobby.d-inline,
html.playground-mode .only-maker.d-inline,
body.playground-mode .only-maker.d-inline {
  display: inline !important;
}

html.profession-mode .show_only_profession.d-inline-block,
body.profession-mode .show_only_profession.d-inline-block,
html.profession-mode .only-ux.d-inline-block,
body.profession-mode .only-ux.d-inline-block {
  display: inline-block !important;
}

html.playground-mode .show_only_playground.d-inline-block,
body.playground-mode .show_only_playground.d-inline-block,
html.playground-mode .show_only_hobby.d-inline-block,
body.playground-mode .show_only_hobby.d-inline-block,
html.playground-mode .only-maker.d-inline-block,
body.playground-mode .only-maker.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.justify-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

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

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.fw-light {
  font-weight: 200 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.text-primary {
  color: #4649ee !important;
}

.text-secondary {
  color: #76AB00 !important;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #65696a !important;
}

.bg-primary {
  background-color: #4649ee !important;
}

.bg-secondary {
  background-color: #76AB00 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light {
  background-color: #E8EFFE !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

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

.left-0 {
  left: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.inset-0 {
  inset: 0 !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.border-0 {
  border: 0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded {
  border-radius: 1rem !important;
}

.rounded-lg {
  border-radius: 1.5rem !important;
}

.rounded-xl {
  border-radius: 2rem !important;
}

.rounded-full {
  border-radius: 50% !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.shadow-sm {
  -webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25) !important;
}

.shadow {
  -webkit-box-shadow: 1px 1px 0.5rem 1px #dedede !important;
          box-shadow: 1px 1px 0.5rem 1px #dedede !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.25) !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 1 !important;
}

.z-20 {
  z-index: 9 !important;
}

.z-30 {
  z-index: 99 !important;
}

.z-50 {
  z-index: 500 !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

@media (max-width: 48rem) {
  .hide-mobile {
    display: none !important;
  }
}
.show-mobile {
  display: none !important;
}
@media (max-width: 48rem) {
  .show-mobile {
    display: block !important;
  }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .hide-tablet {
    display: none !important;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 0.75rem 1rem;
  background-color: #4649ee;
  color: #fff;
  z-index: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.skip-link:focus {
  top: 0;
}