@charset "UTF-8";
:root,
[data-bs-theme=light] {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --black: #000;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --primary: #007bff;
  --success: #28a745;
  --primary-rgb: 0, 123, 255;
  --secondary-rgb: 108, 117, 125;
  --success-rgb: 40, 167, 69;
  --info-rgb: 23, 162, 184;
  --warning-rgb: 255, 193, 7;
  --danger-rgb: 220, 53, 69;
  --light-rgb: 248, 249, 250;
  --dark-rgb: 33, 37, 41;
  --primary-text-emphasis: rgb(0, 49.2, 102);
  --secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --success-text-emphasis: rgb(16, 66.8, 27.6);
  --info-text-emphasis: rgb(9.2, 64.8, 73.6);
  --warning-text-emphasis: rgb(102, 77.2, 2.8);
  --danger-text-emphasis: rgb(88, 21.2, 27.6);
  --light-text-emphasis: #495057;
  --dark-text-emphasis: #495057;
  --primary-bg-subtle: rgb(204, 228.6, 255);
  --secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --success-bg-subtle: rgb(212, 237.4, 217.8);
  --info-bg-subtle: rgb(208.6, 236.4, 240.8);
  --warning-bg-subtle: rgb(255, 242.6, 205.4);
  --danger-bg-subtle: rgb(248, 214.6, 217.8);
  --light-bg-subtle: rgb(251.5, 252, 252.5);
  --dark-bg-subtle: #ced4da;
  --primary-border-subtle: rgb(153, 202.2, 255);
  --secondary-border-subtle: rgb(196.2, 199.8, 203);
  --success-border-subtle: rgb(169, 219.8, 180.6);
  --info-border-subtle: rgb(162.2, 217.8, 226.6);
  --warning-border-subtle: rgb(255, 230.2, 155.8);
  --danger-border-subtle: rgb(241, 174.2, 180.6);
  --light-border-subtle: #e9ecef;
  --dark-border-subtle: #adb5bd;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --body-font-family: Montserrat, sans-serif;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-color: #212529;
  --body-color-rgb: 33, 37, 41;
  --body-bg: #fff;
  --body-bg-rgb: 255, 255, 255;
  --emphasis-color: #000;
  --emphasis-color-rgb: 0, 0, 0;
  --secondary-color: rgba(33, 37, 41, 0.75);
  --secondary-color-rgb: 33, 37, 41;
  --secondary-bg: #e9ecef;
  --secondary-bg-rgb: 233, 236, 239;
  --tertiary-color: rgba(33, 37, 41, 0.5);
  --tertiary-color-rgb: 33, 37, 41;
  --tertiary-bg: #f8f9fa;
  --tertiary-bg-rgb: 248, 249, 250;
  --heading-color: inherit;
  --link-color: #007bff;
  --link-color-rgb: 0, 123, 255;
  --link-decoration: none;
  --link-hover-color: rgb(0, 98.4, 204);
  --link-hover-color-rgb: 0, 98, 204;
  --code-color: #e83e8c;
  --highlight-color: #212529;
  --highlight-bg: rgb(255, 242.6, 205.4);
  --border-width: 1px;
  --border-style: solid;
  --border-color: #dee2e6;
  --border-color-translucent: rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --border-radius-xxl: 2rem;
  --border-radius-2xl: var(--border-radius-xxl);
  --border-radius-pill: 50rem;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --focus-ring-width: 0.25rem;
  --focus-ring-opacity: 0.25;
  --focus-ring-color: rgba(0, 123, 255, 0.25);
  --form-valid-color: #28a745;
  --form-valid-border-color: #28a745;
  --form-invalid-color: #dc3545;
  --form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --body-color: #dee2e6;
  --body-color-rgb: 222, 226, 230;
  --body-bg: #212529;
  --body-bg-rgb: 33, 37, 41;
  --emphasis-color: #fff;
  --emphasis-color-rgb: 255, 255, 255;
  --secondary-color: rgba(222, 226, 230, 0.75);
  --secondary-color-rgb: 222, 226, 230;
  --secondary-bg: #343a40;
  --secondary-bg-rgb: 52, 58, 64;
  --tertiary-color: rgba(222, 226, 230, 0.5);
  --tertiary-color-rgb: 222, 226, 230;
  --tertiary-bg: rgb(42.5, 47.5, 52.5);
  --tertiary-bg-rgb: 43, 48, 53;
  --primary-text-emphasis: rgb(102, 175.8, 255);
  --secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --success-text-emphasis: rgb(126, 202.2, 143.4);
  --info-text-emphasis: rgb(115.8, 199.2, 212.4);
  --warning-text-emphasis: rgb(255, 217.8, 106.2);
  --danger-text-emphasis: rgb(234, 133.8, 143.4);
  --light-text-emphasis: #f8f9fa;
  --dark-text-emphasis: #dee2e6;
  --primary-bg-subtle: rgb(0, 24.6, 51);
  --secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --success-bg-subtle: rgb(8, 33.4, 13.8);
  --info-bg-subtle: rgb(4.6, 32.4, 36.8);
  --warning-bg-subtle: rgb(51, 38.6, 1.4);
  --danger-bg-subtle: rgb(44, 10.6, 13.8);
  --light-bg-subtle: #343a40;
  --dark-bg-subtle: #1a1d20;
  --primary-border-subtle: rgb(0, 73.8, 153);
  --secondary-border-subtle: rgb(64.8, 70.2, 75);
  --success-border-subtle: rgb(24, 100.2, 41.4);
  --info-border-subtle: rgb(13.8, 97.2, 110.4);
  --warning-border-subtle: rgb(153, 115.8, 4.2);
  --danger-border-subtle: rgb(132, 31.8, 41.4);
  --light-border-subtle: #495057;
  --dark-border-subtle: #343a40;
  --heading-color: inherit;
  --link-color: rgb(102, 175.8, 255);
  --link-hover-color: rgb(132.6, 191.64, 255);
  --link-color-rgb: 102, 176, 255;
  --link-hover-color-rgb: 133, 192, 255;
  --code-color: rgb(241.2, 139.2, 186);
  --highlight-color: #dee2e6;
  --highlight-bg: rgb(102, 77.2, 2.8);
  --border-color: #495057;
  --border-color-translucent: rgba(255, 255, 255, 0.15);
  --form-valid-color: rgb(126, 202.2, 143.4);
  --form-valid-border-color: rgb(126, 202.2, 143.4);
  --form-invalid-color: rgb(234, 133.8, 143.4);
  --form-invalid-border-color: rgb(234, 133.8, 143.4);
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  text-align: var(--body-text-align);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--highlight-color);
  background-color: var(--highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--link-color-rgb), var(--link-opacity, 1));
  text-decoration: none;
}
a:hover {
  --link-color-rgb: var(--link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--body-bg);
  background-color: var(--body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--progress-height);
  }
}
.progress,
.progress-stacked {
  --progress-height: 1rem;
  --progress-font-size: 0.75rem;
  --progress-bg: var(--secondary-bg);
  --progress-border-radius: var(--border-radius);
  --progress-box-shadow: var(--box-shadow-inset);
  --progress-bar-color: #fff;
  --progress-bar-bg: #007bff;
  --progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--progress-height);
  overflow: hidden;
  font-size: var(--progress-font-size);
  background-color: var(--progress-bg);
  border-radius: var(--progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--progress-bar-bg);
  transition: var(--progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--progress-height) var(--progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-regular-tkt2q1zq.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 400;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-italic-ClBKwWsx.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-600-DUzM4ETE.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-700-BceZ7c-f.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-800-btVJ3bUC.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 900;
  src: url("/portfolio-pug/assets/montserrat-v14-latin_cyrillic-900italic-D0G9Pv6w.woff2") format("woff2");
  font-display: swap;
}
html {
  scrollbar-gutter: stable;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a:focus, a:hover {
  text-decoration: none;
}

a:focus, input:focus, textarea:focus, button:focus {
  text-decoration: none;
  outline: none;
}

i, span, a {
  display: inline-block;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
}

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

canvas:focus-visible {
  outline: none;
}

dialog {
  max-width: 100%;
  width: auto;
}

section {
  margin-bottom: 6rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  section {
    margin-bottom: 5rem;
  }
}

.container, container {
  width: min(calc(100% - var(--paddings, 16px) * 2), var(--container-width, 1070px));
  margin-left: auto;
  margin-right: auto;
}
.container-skills, container-skills {
  --paddings: 60px;
}
.container-experience, container-experience {
  --container-width: 1360px;
}
.container-footer, container-footer {
  --container-width: 1360px;
}

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (hover: hover) and (pointer: fine) {
  .container-fluid {
    width: calc(100% - 64px);
  }
}

.df {
  display: flex;
}

.jcc {
  justify-content: center;
}

.mb0 {
  margin-bottom: 0;
}

header {
  margin-bottom: 4rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  header {
    margin-bottom: 3rem;
  }
}

.parallax_figures {
  --offset: calc(var(--distance) * pow(var(--parallax-depth), 1));
  --distance: 5000px;
}
@media (min-width: 600.2px) {
  .parallax_figures {
    --distance: 3000px;
  }
}
.parallax_figures {
  animation: parallax-figures 1ms linear both;
  animation-timeline: scroll(root);
}
.parallax_figures[data-depth="1"] {
  --parallax-depth: 0.8;
}
.parallax_figures[data-depth="2"] {
  --parallax-depth: 0.6;
}
.parallax_figures[data-depth="3"] {
  --parallax-depth: 0.4;
}
.parallax_figures[data-depth="4"] {
  --parallax-depth: 0.2;
}
.parallax_figures[data-depth="5"] {
  --parallax-depth: 0.1;
}
.parallax_figures[data-depth="6"] {
  --parallax-depth: 0.05;
}
@keyframes parallax-figures {
  to {
    transform: translateY(calc(var(--offset) * -1));
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: none;
  border-radius: 16px;
  background-color: var(--body-bg);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  outline: none;
}

.btn {
  --btn-padding-x: 0.75rem;
  --btn-padding-y: 0.375rem;
  --btn-font-family: ;
  --btn-font-size: 1rem;
  --btn-font-weight: 600;
  --btn-line-height: 1.5;
  --btn-color: #495057;
  --btn-bg: transparent;
  --btn-border-width: var(--border-width);
  --btn-border-color: transparent;
  --btn-border-radius: var(--border-radius);
  --btn-hover-border-color: transparent;
  --btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --btn-disabled-opacity: 0.65;
  --btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  color: var(--btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--btn-border-width) solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-bg);
  background-image: var(--gradient);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
}
.btn:focus-visible {
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--btn-active-color);
  background-color: var(--btn-active-bg);
  background-image: none;
  border-color: var(--btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--btn-disabled-color);
  pointer-events: none;
  background-color: var(--btn-disabled-bg);
  background-image: none;
  border-color: var(--btn-disabled-border-color);
  opacity: var(--btn-disabled-opacity);
}

.btn_primary {
  --btn-color: #000;
  --btn-bg: #007bff;
  --btn-border-color: #007bff;
  --btn-hover-color: #000;
  --btn-hover-bg: rgb(38.25, 142.8, 255);
  --btn-hover-border-color: rgb(25.5, 136.2, 255);
  --btn-focus-shadow-rgb: 0, 105, 217;
  --btn-active-color: #000;
  --btn-active-bg: rgb(51, 149.4, 255);
  --btn-active-border-color: rgb(25.5, 136.2, 255);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: #007bff;
  --btn-disabled-border-color: #007bff;
}

.btn_primary_transparent {
  --btn-color: rgb(20.4, 133.56, 255);
  --btn-bg: rgb(204, 228.6, 255);
  --btn-border-color: transparent;
  --btn-hover-color: rgb(20.4, 133.56, 255);
  --btn-hover-bg: rgb(204, 228.6, 255);
  --btn-hover-border-color: transparent;
  --btn-focus-shadow-rgb: 20, 134, 255;
  --btn-active-color: rgb(0, 110.7, 229.5);
  --btn-active-bg: rgb(153, 202.2, 255);
  --btn-active-border-color: transparent;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: rgb(204, 228.6, 255);
  --btn-disabled-border-color: transparent;
  --btn-focus-shadow-rgb: 0, 123, 255;
}
@media (min-width: 1300px) {
  .btn_primary_transparent {
    color: #495057;
    background-color: transparent;
  }
}

.btn_success {
  --btn-color: #000;
  --btn-bg: #28a745;
  --btn-border-color: #28a745;
  --btn-hover-color: #000;
  --btn-hover-bg: rgb(72.25, 180.2, 96.9);
  --btn-hover-border-color: rgb(61.5, 175.8, 87.6);
  --btn-focus-shadow-rgb: 34, 142, 59;
  --btn-active-color: #000;
  --btn-active-bg: rgb(83, 184.6, 106.2);
  --btn-active-border-color: rgb(61.5, 175.8, 87.6);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: #28a745;
  --btn-disabled-border-color: #28a745;
}

.btn_success_transparent {
  --btn-color: rgb(57.2, 174.04, 83.88);
  --btn-bg: rgb(175.1304347826, 235.8695652174, 189);
  --btn-border-color: transparent;
  --btn-hover-color: rgb(57.2, 174.04, 83.88);
  --btn-hover-bg: rgb(175.1304347826, 235.8695652174, 189);
  --btn-hover-border-color: transparent;
  --btn-focus-shadow-rgb: 57, 174, 84;
  --btn-active-color: rgb(36, 150.3, 62.1);
  --btn-active-bg: rgb(169, 219.8, 180.6);
  --btn-active-border-color: transparent;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: rgb(175.1304347826, 235.8695652174, 189);
  --btn-disabled-border-color: transparent;
  --btn-focus-shadow-rgb: 40, 167, 69;
}
@media (min-width: 1300px) {
  .btn_success_transparent {
    color: #495057;
    background-color: transparent;
  }
}

.btn-link {
  --btn-font-weight: 400;
  --btn-color: var(--link-color);
  --btn-bg: transparent;
  --btn-border-color: transparent;
  --btn-hover-color: var(--link-hover-color);
  --btn-hover-border-color: transparent;
  --btn-active-color: var(--link-hover-color);
  --btn-active-border-color: transparent;
  --btn-disabled-color: #6c757d;
  --btn-disabled-border-color: transparent;
  --btn-box-shadow: 0 0 0 #000;
  --btn-focus-shadow-rgb: 0, 105, 217;
  text-decoration: none;
  background-image: none;
}
.btn-link:focus-visible {
  color: var(--btn-color);
}
.btn-link:hover {
  color: var(--btn-hover-color);
}

.btn_lg {
  --btn-padding-y: 0.5rem;
  --btn-padding-x: 1rem;
  --btn-font-size: 1.125rem;
  --btn-border-radius: 0.3rem;
}

.btn_md {
  --btn-padding-y: 0.375rem;
  --btn-padding-x: 0.75rem;
  --btn-font-size: 1rem;
  --btn-border-radius: 0.25rem;
}

.btn_sm {
  --btn-padding-y: 0.25rem;
  --btn-padding-x: 0.5rem;
  --btn-font-size: 0.875rem;
  --btn-border-radius: var(--border-radius-sm);
}

.btn_card-hero {
  display: none;
  position: relative;
}
.btn_card-hero::before {
  display: none;
  position: absolute;
  content: "";
  top: 6px;
  left: -3rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("/portfolio-pug/assets/hand-BdAAKBCO.png");
  background-size: 100%;
  transition: opacity, display allow-discrete;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  opacity: 0;
}
@media (min-width: 600.2px) {
  .btn_card-hero {
    display: inline-block;
  }
  .btn_card-hero::before {
    display: inline-block;
    opacity: 1;
  }
  @starting-style {
    .btn_card-hero::before {
      opacity: 0;
    }
  }
}
@media (min-width: 1300px) {
  .btn_card-hero::before {
    display: none;
    opacity: 0;
  }
  .btn_card-hero:hover::before {
    display: inline-block;
    opacity: 1;
  }
  @starting-style {
    .btn_card-hero:hover::before {
      opacity: 0;
    }
  }
}

body > section > header {
  display: flex;
}

.section-header {
  --title-color: #05de7d;
  --subtitle-color: var(--heading-color);
}
.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
}
.section-subtitle {
  font-size: clamp(26px, 26px + 6px * (100vw - 380px) / 920px, 32px);
  font-weight: 700;
  color: var(--subtitle-color);
}
.section-line {
  line-height: 0.3125rem;
  font-size: 0;
  height: 0.3125rem;
  margin-bottom: 0.5rem;
}
.section-line > li {
  display: inline-block;
  background-color: var(--title-color);
  border-radius: 3rem;
  height: 0.3125rem;
  margin-right: 4px;
}
.section-line > li:nth-child(1) {
  width: 2.5rem;
}
.section-line > li:nth-child(2) {
  width: 1rem;
}
.section-line > li:nth-child(3) {
  width: 0.625rem;
}
.section-line > li:nth-child(4) {
  width: 0.3125rem;
}

.header {
  position: relative;
  height: 100svh;
  padding-top: 7vh;
}
@media (min-width: 600.2px) {
  .header {
    padding-top: 5vh;
  }
}
@media (min-width: 1300px) {
  .header {
    padding-top: 28vh;
  }
}
.header .shapes .shape-bg-back, .header .shapes .shape-bg-front {
  display: none;
}
@media (min-width: 600.2px) {
  .header .shapes .shape-bg-back, .header .shapes .shape-bg-front {
    display: block;
    position: absolute;
    top: 0;
    aspect-ratio: 1;
    z-index: -2;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header .shapes .shape-bg-back {
  right: 0;
  height: 50%;
  aspect-ratio: 1;
  filter: drop-shadow(0px 2px 30px #4c606f);
}
@media (min-width: 600.2px) {
  .header .shapes .shape-bg-back {
    height: 100%;
  }
}
.header .shapes .shape-bg-back-color-animation {
  animation: 10s ease-in-out infinite alternate shape-bg-back-color-animation;
}
.header .shapes .shape-bg-front {
  right: 0;
  height: 30%;
  filter: drop-shadow(0px 2px 15px #2f33a5);
}
@media (min-width: 600.2px) {
  .header .shapes .shape-bg-front {
    height: 80%;
  }
}
.header_stamp {
  display: none;
  position: absolute;
  left: 3.5%;
  bottom: 3%;
  z-index: -3;
  transform-style: preserve-3d;
  text-shadow: 4px -2px 0px rgba(0, 0, 0, 0.1);
  transform: rotateZ(-3deg);
}
@media (min-width: 600.2px) {
  .header_stamp {
    display: inline-block;
  }
}
@media (min-width: 1300px) {
  .header_stamp {
    left: 0;
    text-shadow: 6px 0px 0px rgba(0, 0, 0, 0.1);
    transform: perspective(800px) rotateY(-45deg) rotateX(4deg) rotateZ(-2deg);
  }
}

.stamp {
  font-weight: 900;
  text-transform: uppercase;
  color: rgb(233.44, 236.38, 239.32);
  cursor: default;
  user-select: none;
}
.stamp_vh {
  font-size: 11.7647058824vh;
}
.stamp_lg {
  font-size: 10vw;
}

.hero {
  position: absolute;
  bottom: 0;
  right: 5vw;
  width: 90vw;
  aspect-ratio: 4/3;
  background-image: url(/portfolio-pug/assets/my-photo-CA2dKwrd.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 70% auto;
}
@media (min-width: 600.2px) {
  .hero {
    right: 2vw;
    width: 45vw;
  }
}
@media (min-width: 1300px) {
  .hero {
    width: 40vw;
  }
}
@media (min-width: 1300px) {
  .hero {
    width: 55vh;
  }
}
.hero::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background-image: url(/portfolio-pug/assets/egg-CfoffPZl.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.bubble {
  z-index: -2;
  position: absolute;
  border-radius: 50%;
}
@media (min-width: 600.2px) {
  .bubble_big-blue {
    display: block;
    width: 150px;
    aspect-ratio: 1;
    left: 55%;
    top: 40%;
    background: linear-gradient(45deg, #79f2ff, rgb(56, 121, 255));
    box-shadow: 0 0 15px 0px rgba(73, 154, 255, 0.8);
  }
}
@media (min-width: 1300px) {
  .bubble_big-blue {
    display: none;
    width: 200px;
    left: 43%;
    top: 57%;
  }
}
.bubble_big-green {
  display: block;
  top: 75%;
  left: 64%;
  width: 120px;
  aspect-ratio: 1;
  background: linear-gradient(45deg, #35ff62, #38c4ff);
  box-shadow: 0 0 15px 0px rgba(73, 255, 242, 0.8);
  filter: blur(0.5px);
}
@media (min-width: 600.2px) {
  .bubble_big-green {
    display: none;
  }
}
.bubble_roze {
  z-index: -4;
  width: 75px;
  aspect-ratio: 1;
  left: 3%;
  bottom: 53%;
  background: linear-gradient(rgba(254, 132, 100, 0.5), rgba(254, 110, 154, 0.5));
  box-shadow: rgb(255, 165, 167) 0px 0px 10px 0px;
  filter: blur(0.5px);
}
@media (min-width: 600.2px) {
  .bubble_roze {
    left: 50%;
    bottom: 55%;
  }
}
@media (max-width: 1000px) and (orientation: landscape) {
  .bubble_roze {
    left: 5%;
    bottom: 15%;
  }
}
@media (min-width: 1300px) {
  .bubble_roze {
    left: 5%;
    bottom: -10%;
  }
}
.bubble_yellow {
  width: 40px;
  aspect-ratio: 1;
  background: rgba(226, 158, 25, 0.55);
  top: 22%;
  left: 55%;
  filter: blur(1px);
}
@media (min-width: 600.2px) {
  .bubble_yellow {
    top: 7%;
    left: 35%;
  }
}
@media (min-width: 600.2px) {
  .bubble_yellow {
    top: 70%;
    left: 45%;
  }
}
@media (min-width: 1300px) {
  .bubble_yellow {
    top: 57%;
    left: 30%;
  }
}
.bubble_aqua {
  z-index: -4;
  width: 35px;
  aspect-ratio: 1;
  background: linear-gradient(rgba(51, 200, 193, 0.5), rgba(17, 155, 210, 0.5));
  bottom: 45%;
  left: 40%;
  filter: blur(2px);
}
@media (min-width: 600.2px) {
  .bubble_aqua {
    bottom: 30%;
    left: 25%;
  }
}
@media (min-width: 1300px) {
  .bubble_aqua {
    bottom: 12%;
    left: 15%;
  }
}
.bubble_purple {
  width: 20px;
  aspect-ratio: 1;
  background: linear-gradient(rgba(54, 28, 193, 0.5), rgba(46, 130, 239, 0.5));
  bottom: 25%;
  left: 20%;
  filter: blur(3px);
}
@media (min-width: 600.2px) {
  .bubble_purple {
    bottom: 0%;
    left: 40%;
  }
}
@media (min-width: 1300px) {
  .bubble_purple {
    bottom: 5%;
    left: 35%;
  }
}

.cube {
  z-index: -2;
  position: absolute;
  display: none;
}
@media (min-width: 1300px) {
  .cube {
    display: block;
    position: absolute;
    border-radius: 1rem;
    transform: rotate(15deg);
  }
}
.cube_purple {
  bottom: -9%;
  right: 20%;
  filter: blur(0.5px);
}
@media (min-width: 1300px) {
  .cube_purple {
    bottom: -50%;
    right: 35%;
    width: 120px;
    height: 120px;
    background: linear-gradient(rgba(54, 28, 193, 0.5), rgba(46, 130, 239, 0.5));
  }
}
.cube_aqua {
  bottom: -50%;
  right: 20%;
  width: 80px;
  aspect-ratio: 1;
  background: linear-gradient(rgba(51, 200, 193, 0.5), rgba(17, 155, 210, 0.5));
  filter: blur(1px);
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 1px #367BF5;
  font-size: 32px;
}

.shifted {
  top: 3px;
  left: 3px;
  color: #000;
}

@keyframes shape-bg-back-color-animation {
  to {
    stop-color: #ff2dd6;
  }
}
@keyframes waves {
  to {
    transform: translateX(50px);
  }
}
.card_hero {
  position: relative;
  width: fit-content;
  overflow: clip;
  background-color: transparent;
  margin: 0 auto;
}
@media (min-width: 600.2px) {
  .card_hero {
    margin-left: 10vw;
    padding: 2rem 2rem 1rem 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
}
.card_hero {
  box-shadow: inset 2px 3px 5px 0px rgba(255, 255, 255, 0.6), 0 10px 10px rgba(158, 158, 158, 0.1803921569), 0 20px 20px rgba(158, 158, 158, 0.1803921569), 0 40px 40px rgba(158, 158, 158, 0.1803921569);
}
.card_hero .background, .card_hero .glass {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: none;
  border-radius: 1rem;
  outline: none;
}
.card_hero .background {
  background: linear-gradient(195deg, #35b4ff, #c7fdff);
}
@media (min-width: 600.2px) {
  .card_hero .background {
    background: rgba(233, 236, 239, 0.3);
  }
}
.card_hero .glass {
  backdrop-filter: blur(25px);
}
.card_hero .bubble_big-blue_header_inside {
  display: none;
}
@media (min-width: 600.2px) {
  .card_hero .bubble_big-blue_header_inside {
    display: block;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    width: 700px;
    aspect-ratio: 1;
    background: linear-gradient(45deg, #35b4ff, #c7fdff);
    top: -220%;
    left: -50%;
  }
}
.card_hero-title {
  margin-bottom: 1rem;
  white-space: nowrap;
}
.card_hero-title_name {
  font-size: clamp(30px, 30px + 10px * (100vw - 380px) / 920px, 40px);
  display: block;
  font-weight: 800;
  font-style: italic;
  margin: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #4e4e4e;
  background-clip: text;
  text-shadow: -2px 2px rgba(137, 137, 137, 0.5215686275);
  color: #fff;
}
.card_hero-subtitle {
  font-size: clamp(30px, 30px + 4px * (100vw - 380px) / 920px, 34px);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 2.4rem;
  color: rgba(229, 255, 47, 0.9019607843);
  text-shadow: -2px 2px #a0a0a0;
}
.card_hero-subtitle_code {
  font-size: clamp(18px, 18px + 8px * (100vw - 380px) / 920px, 26px);
  font-family: Consolas, monospace;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 2.4rem;
  color: #8631ff;
  margin-left: 0;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: -1px 1px #1200d0;
}
@media (min-width: 600.2px) {
  .card_hero-subtitle_code {
    margin-left: 10px;
  }
}
.card_hero-subtitle_code::after {
  content: "_";
  animation: cursor 1.2s infinite;
}
.card__text:last-child {
  margin-bottom: 0;
}
.card__link:hover {
  text-decoration: none;
}
.card__link + .card__link {
  margin-left: 1rem;
}
.card__btn_hero {
  margin-bottom: 0.5rem;
}
@media (min-width: 600.2px) {
  .card__btn_hero {
    align-self: flex-end;
  }
}
.card__btn_more {
  display: none;
}
@media (min-width: 1300px) {
  .card__btn_more {
    display: block;
  }
}

@keyframes fly-header {
  to {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px rgba(158, 158, 158, 0.1803921569), 0 20px 20px rgba(158, 158, 158, 0.1803921569), 0 40px 40px rgba(158, 158, 158, 0.1803921569);
  }
}
@keyframes cursor {
  0%, 50% {
    opacity: 1;
  }
  65%, 100% {
    opacity: 0;
  }
}
.more-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  user-select: none;
  width: 3rem;
  height: 3rem;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.more-btn:hover, .more-btn:focus {
  background-color: rgb(216.75, 235.2, 255);
}
.more-dot {
  display: block;
  background-color: #aab8c2;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.more-dot:not(:last-child) {
  margin-bottom: 0.375rem;
}
.show .more-dot, .more-btn:hover .more-dot {
  background-color: #516471;
}
.more-menu-item:hover, .more-menu .more-menu-link:focus {
  background-color: #f8f9fa;
  color: inherit;
}
.more-menu-link {
  min-width: 100%;
  color: #495057;
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  position: relative;
  white-space: nowrap;
  background: none;
  border: none;
  overflow: visible;
  user-select: none;
  width: 100%;
  outline: none;
}
.more-menu-link:hover {
  color: inherit;
}
.more-menu[popover] {
  position: absolute;
  inset: auto;
  position-area: bottom span-right;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out, overlay 0.1s ease-out allow-discrete, display 0.1s ease-out allow-discrete;
  border: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(15px);
}
.more-menu[popover]:popover-open {
  opacity: 1;
  transform: translate(0);
}
@starting-style {
  .more-menu[popover]:popover-open {
    opacity: 0;
    transform: translateY(15px);
  }
}

.list-icon {
  display: inline-block;
  position: relative;
  top: -2px;
  fill: #007bff;
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}

.my-apps {
  position: relative;
}
.my-apps .section-header {
  --title-color: #fff;
  --subtitle-color: #c4ff20;
}
.my-apps::before {
  content: "";
  display: none;
  z-index: -2;
  position: absolute;
  top: -10%;
  left: 0;
  width: 45%;
  height: 120%;
  background-image: url(/portfolio-pug/assets/shape-from-left-Djt245pV.svg);
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: contain;
}
@media (min-width: 600.2px) {
  .my-apps::before {
    display: block;
  }
}
@media (min-width: 600.2px) {
  .my-apps::before {
    top: -17%;
    width: 35%;
  }
}
@media (min-width: 1300px) {
  .my-apps::before {
    width: 41%;
    top: -27%;
  }
}
.my-apps__info {
  height: 100px;
}
.my-apps::after {
  content: "Portfolio";
  display: none;
  z-index: -1;
  position: absolute;
  left: 20vh;
  bottom: 5%;
  transform-origin: left bottom 0;
  transform: rotate(-90deg);
  font-size: 11.7647058824vh;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #c5c5c5;
  cursor: default;
  user-select: none;
}
@media (min-width: 600.2px) {
  .my-apps::after {
    display: inline-block;
  }
}

.apps-gallery {
  display: grid;
  max-width: 800px;
  margin-bottom: 1.5rem;
  grid-template-rows: 3fr 2fr;
  grid-template-columns: 3fr 3fr 4fr;
  grid-gap: 1vw;
}
@media (max-width: 600px) and (orientation: portrait) {
  .apps-gallery {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2vw;
  }
}
.apps-gallery li {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  animation: bg-scroll linear infinite paused;
  background-size: 100%;
}
@media (max-width: 600px) and (orientation: portrait) {
  .apps-gallery li {
    animation: none;
  }
}
.apps-gallery li:hover, .apps-gallery li:focus {
  animation-play-state: running;
}
.apps-gallery li:hover .app-controls {
  opacity: 1;
  transform: translateY(0%);
}
.apps-gallery li:hover .app-view-link {
  opacity: 1;
}
.apps-gallery li#spaceclub {
  z-index: 0;
  grid-row: span 2;
  grid-column: span 3;
  box-shadow: none;
  box-shadow: -5px -5px 15px 1px #fff;
  animation: none;
  backdrop-filter: blur(5px);
  overflow: clip;
}
@media (min-width: 600.2px) {
  .apps-gallery li#spaceclub {
    grid-row: auto;
    grid-column: span 2;
  }
}
.apps-gallery li#spaceclub .glass {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: 0;
}
.apps-gallery li#spaceclub .bubble_big-blue_map_inside {
  z-index: -1;
  width: 700px;
  aspect-ratio: 1;
  background: linear-gradient(45deg, #79f2ff, #388eff);
  box-shadow: -5px -5px 20px 5px rgba(120, 195, 255, 0.8);
  top: -103%;
  left: -82%;
}
.apps-gallery li#crypto {
  grid-row: 3/5;
  grid-column: 2/4;
  background-image: url(/portfolio-pug/assets/crypto-DJ9DfTUT.png);
  animation-duration: 8s;
}
.apps-gallery li#crypto:hover, .apps-gallery li#crypto:focus {
  animation-play-state: running;
}
@media (min-width: 600.2px) {
  .apps-gallery li#crypto {
    animation-duration: 5s;
    grid-row: span 2;
    grid-column: auto;
  }
}
.apps-gallery li#neon {
  background-image: url(/portfolio-pug/assets/neon-CpRsHRjw.png);
  animation-duration: 10s;
  aspect-ratio: 1;
}
.apps-gallery li#eventify {
  background-image: url(/portfolio-pug/assets/eventify-ZJ8qGVls.png);
  animation-duration: 25s;
}
.apps-gallery_link {
  position: absolute;
  inset: 0;
  transition: all 0.2s ease-in-out;
}
.apps-gallery_link_blank {
  position: absolute;
  inset: 0;
  border: 1зч dashed #dee2e6;
  border-radius: 1rem;
  background: #fff;
  transition: border-color 0.1s ease-in-out;
  outline: none;
}
.apps-gallery_link_blank:focus {
  border-color: #ff8c73;
}

.info-patches {
  left: 7px;
  top: 9px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  height: 30px;
  padding: 2px 5px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) and (orientation: portrait) {
  .info-patches {
    left: 3px;
    top: 3px;
  }
}

.patch {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 3px 6px 3px 8px;
}
@media (max-width: 600px) and (orientation: portrait) {
  .patch {
    padding: 0 6px 0 7px;
  }
}
.patch-date {
  color: #fff;
  background-color: #ff6f00;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) and (orientation: portrait) {
  .patch-date {
    border-radius: 10px;
  }
}
.patch-date-icon {
  height: 100%;
  fill: #fff;
  margin-right: 8px;
}
.patch-date-text {
  font-weight: bold;
  font-family: monospace;
  font-size: 15px;
  letter-spacing: 1px;
}
@media (max-width: 600px) and (orientation: portrait) {
  .patch-date-text {
    font-size: 12px;
  }
}
.patch-angular-icon {
  height: 105%;
  margin-left: 5px;
}

.app-controls {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  margin: 3px;
  padding: 5px;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.app-icon {
  height: 20px;
  aspect-ratio: 1;
  background-size: 100%;
  background-repeat: no-repeat;
}
.app-link-github {
  background-image: url(/portfolio-pug/assets/github-CzcvsAbJ.svg);
}
.app-view-link {
  position: absolute;
  z-index: 1;
  opacity: 0;
  color: #fff;
  background-color: #ff8757;
  border-radius: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease-in-out, opacity 0.3s ease-in-out;
}
@media (max-width: 600px) and (orientation: portrait) {
  .app-view-link {
    background-color: #ff5c1d;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
  }
}
@media (min-width: 600.2px) {
  .app-view-link {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 16px;
    padding: 6px 14px;
  }
  li#spaceclub .app-view-link {
    top: 8%;
  }
}
.app-view-link:hover, .app-view-link:focus {
  background-color: #ff5c1d;
  color: #fff;
}

@media (max-width: 600px) and (orientation: portrait) {
  .shapes .bubble_big-blue_map {
    width: 350px;
    aspect-ratio: 1;
    background: linear-gradient(45deg, #79f2ff, #38b3ff);
    box-shadow: -5px -5px 20px 5px rgba(120, 195, 255, 0.8);
    left: -35%;
    top: -8%;
  }
}
.shapes .stripes {
  z-index: -1;
  position: absolute;
  width: 200px;
  height: 25px;
  background: linear-gradient(90deg, rgba(200, 191, 51, 0.66), rgba(210, 92, 17, 0.79));
  border-radius: 1rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  .shapes .stripes {
    display: none;
  }
}
@media (min-width: 600.2px) {
  .shapes .stripes {
    transform: rotate(-80deg) scale(0.8);
  }
}
@media (min-width: 1300px) {
  .shapes .stripes {
    bottom: 10%;
    right: 15%;
    transform: rotate(-80deg) scale(0.9);
  }
}
.shapes .stripes::before, .shapes .stripes::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 1rem;
}
.shapes .stripes::before {
  width: 200px;
  height: 20px;
  background: linear-gradient(90deg, rgba(51, 200, 100, 0.64), rgba(17, 197, 210, 0.68));
  filter: blur(1px);
  animation: stripe-before 0s forwards;
}
@media (min-width: 1300px) {
  .shapes .stripes::before {
    animation-duration: 0.3s;
    animation-timeline: view(block 30% -10%);
  }
}
.shapes .stripes::after {
  width: 200px;
  height: 15px;
  background: linear-gradient(90deg, rgba(200, 51, 193, 0.5), rgba(17, 188, 210, 0.64));
  filter: blur(2px);
  animation: stripe-after 0s forwards;
}
@media (min-width: 1300px) {
  .shapes .stripes::after {
    animation-duration: 0.3s;
    animation-timeline: view(block 30% -10%);
  }
}

@keyframes stripe-before {
  to {
    transform: rotate(15deg) translateX(125px) translateY(35px);
  }
}
@keyframes stripe-after {
  to {
    transform: rotate(30deg) translateX(260px) translateY(40px);
  }
}
@keyframes bg-scroll {
  0% {
    background-position: 0% 0%;
  }
  85%, 90% {
    background-position: 0% 100%;
  }
  95%, 100% {
    background-position: 0% 0%;
  }
}
section.skills:hover .play-control {
  opacity: 1;
}
@media (max-width: 600px) and (orientation: portrait) {
  section.skills .play-control {
    opacity: 1;
  }
}

ul.skills-list {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) and (orientation: portrait) {
  ul.skills-list {
    gap: 10vw;
    row-gap: 12vw;
  }
}
@media (min-width: 600.2px) {
  ul.skills-list {
    gap: 4vw;
  }
}
@media (min-width: 1300px) {
  ul.skills-list {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 2.5vw;
  }
}
ul.skills-list li {
  aspect-ratio: 1;
  position: relative;
}
ul.skills-list li:hover label > span {
  opacity: 1;
}
ul.skills-list li > svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  align-self: center;
  transition: filter 0.3s;
  will-change: filter;
}
ul.skills-list input[type=radio] {
  position: absolute;
}
ul.skills-list input[type=radio]:checked ~ svg {
  filter: drop-shadow(0 0 20px currentColor);
}
ul.skills-list input[type=radio]:checked + label > span {
  opacity: 1;
}
ul.skills-list label {
  position: absolute;
  inset: 0;
  bottom: -50%;
  transition: background-color 0.2s;
}
ul.skills-list label > span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.play-control {
  opacity: 0;
  align-self: center;
  margin-left: 5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: #ff448c;
  transition: opacity 0.3s ease-out, background-color 0.2s ease-out, color 0.2s ease-out;
}
.play-control:not(.playing) {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .play-control:hover, .play-control:focus-visible {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.play-control path {
  stroke: #fcff33;
  stroke: currentColor;
  fill: none;
  transition: stroke 0.2s ease-out;
}

.play-progress {
  r: 48;
  cx: 50;
  cy: 50;
  stroke: #ff448c;
  stroke: currentColor;
  stroke-width: 4px;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  transform: rotate(-90deg);
  transform-origin: 50px 50px 0;
  transition: stroke 0.2s ease-out, fill 0.2s ease-out;
  fill: none;
}

.pause-icon {
  stroke-width: 10px;
  stroke-linecap: round;
  display: none;
}
.play-control.playing .pause-icon {
  display: inline;
}

.play-icon {
  display: none;
  stroke-width: 6px;
  stroke-linejoin: round;
  display: inline;
}
.play-control.playing .play-icon {
  display: none;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes rainbow {
  to {
    --angle: 1turn;
  }
}
@property --rainbow-color {
  syntax: "<color>";
  inherits: false;
  initial-value: magenta;
}
@keyframes rainbow-color {
  0% {
    --rainbow-color: magenta;
  }
  12.5% {
    --rainbow-color: blue;
  }
  25% {
    --rainbow-color: cyan;
  }
  37.5% {
    --rainbow-color: lime;
  }
  50% {
    --rainbow-color: yellow;
  }
  62.5% {
    --rainbow-color: orange;
  }
  75% {
    --rainbow-color: red;
  }
  87.5% {
    --rainbow-color: red;
  }
  100% {
    --rainbow-color: magenta;
  }
}
@media (min-width: 1300px) {
  .experience {
    padding-bottom: 10rem;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .experience {
    margin-bottom: 3rem;
  }
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 1300px) {
  .timeline {
    padding: 0;
  }
}
.timeline::before {
  position: absolute;
  content: "";
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #e0e3ea;
}
@media (max-width: 600px) and (orientation: portrait) {
  .timeline::before {
    display: none;
  }
}

.stage {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 16px;
  }
}
@media (min-width: 1300px) {
  .stage {
    flex-direction: row;
    align-items: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stage:has(.stage_year:hover, .stage_description:hover):not(.work) .stage_year::before {
    background-color: #fd7e14;
  }
  .stage:has(.stage_year:hover, .stage_description:hover):not(.work) .stage_year .year-tag {
    border-color: #fd7e14;
    box-shadow: 0px 6px 10px 0px #d0d0d0;
  }
  .stage:has(.stage_year:hover, .stage_description:hover):not(.work) .stage_description {
    box-shadow: 0px 6px 10px 0px #d0d0d0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .stage.work:has(.stage_year:hover, .stage_description:hover) .stage_year::before {
    background-color: var(--rainbow-color);
  }
  .stage.work:has(.stage_year:hover, .stage_description:hover) .stage_description {
    box-shadow: none;
  }
  .stage.work:has(.stage_year:hover, .stage_description:hover) .stage_description::before {
    opacity: 1;
  }
}
.stage.work .stage_year::before {
  animation: rainbow-color 10s linear infinite;
  background-color: var(--rainbow-color);
}
.stage.work .stage_year .year-tag {
  animation: rainbow-color 10s linear infinite;
}
@media (min-width: 1300px) {
  .stage.work .stage_year .year-tag {
    border: 2px solid var(--rainbow-color);
  }
}
.stage.work .stage_description {
  border: 2px solid transparent;
  --angle: 0deg;
  background: linear-gradient(#fff, #fff) padding-box, conic-gradient(from var(--angle), red 0deg, orange 45deg, yellow 90deg, lime 135deg, cyan 180deg, blue 225deg, magenta 270deg, red 360deg) border-box;
  animation: rainbow 10s linear infinite;
  box-shadow: none;
}
.stage.work .stage_description::before {
  position: absolute;
  inset: 15px 8px -3px;
  z-index: -1;
  content: "";
  background: conic-gradient(from var(--angle), red 0deg, orange 45deg, yellow 90deg, lime 135deg, cyan 180deg, blue 225deg, magenta 270deg, red 360deg) border-box;
  filter: blur(10px);
  animation: rainbow 10s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage.work .stage_description::before {
    opacity: 1;
  }
}
.stage_title {
  display: none;
}
.stage_title-text {
  font-size: 1.125rem;
  color: #28a745;
  margin-bottom: 0;
}
@media (min-width: 1300px) {
  .stage_title {
    display: block;
    width: 40%;
  }
}
.stage_year {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_year {
    margin-bottom: 16px;
  }
}
@media (min-width: 1300px) {
  .stage_year {
    width: 20%;
    margin-bottom: 0;
  }
}
.stage_year::before {
  display: none;
  z-index: -1;
  position: absolute;
  content: "";
  top: 50%;
  width: 65%;
  height: 2px;
  background-color: #e0e3ea;
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 1300px) {
  .stage_year::before {
    display: block;
  }
}
.stage_year .year-tag {
  text-align: center;
  border-radius: 50%;
  width: 60px;
  line-height: 56px;
  border: 2px solid #e0e3ea;
  font-size: 18px;
  color: #fd7e14;
  background: #fff;
  outline: none;
  user-select: none;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_year .year-tag {
    width: auto;
    line-height: inherit;
    aspect-ratio: auto;
    border-radius: 15px;
    font-size: 22px;
    padding: 6px 10px;
    border: none;
    background: transparent;
  }
}
.stage_description {
  border: 1px solid #ff945b;
  transition: box-shadow 0.3s ease-in-out;
}
@media (min-width: 1300px) {
  .stage_description {
    width: 28%;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_description {
    box-shadow: 0px 4px 10px 0px #ebebeb;
  }
}
.stage_description.card_progress {
  padding-bottom: 24px;
}
@media (min-width: 1300px) {
  .stage_description.card_wide {
    width: 37%;
  }
}
.stage_description.card_wide {
  position: relative;
}
.stage_description-title {
  display: block;
  margin: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #28a745;
  text-align: center;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_description-title {
    margin: 4px 0 8px 0;
  }
}
@media (min-width: 1300px) {
  .stage_description-title {
    display: none;
  }
}
.stage_description-info {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 8px 0 8px 0;
}
.stage_description-list {
  list-style-type: disc;
}
dl.stage_description-list {
  margin: 16px 0 0 16px;
}
@media (max-width: 600px) and (orientation: portrait) {
  dl.stage_description-list {
    margin: 16px 0 0 4px;
  }
}

ul.stage_description-list {
  margin: 8px 0 0 16px;
}

.stage_description-list dt {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.stage_description-list dt:first-child {
  margin-bottom: 8px;
}
.stage_description-list dd, .stage_description-list li {
  font-size: 14px;
}
.stage_description-list dd {
  margin-left: 8px;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_description-list dd {
    margin-left: 4px;
  }
}
.stage_description-list li {
  margin-bottom: 8px;
}
@media (max-width: 600px) and (orientation: portrait) {
  .stage_description-list li {
    font-size: 16px;
    letter-spacing: normal;
    line-height: 22px;
  }
}
.stage_description-project {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stage:nth-of-type(odd) .stage_year::before {
  left: 50%;
}
.stage:nth-of-type(odd) .stage_title-text {
  text-align: right;
}
@media (min-width: 1300px) {
  .stage:nth-of-type(odd) .stage_description {
    margin-right: auto;
  }
}
.stage:nth-of-type(even) .stage_year::before {
  right: 50%;
}
@media (min-width: 1300px) {
  .stage:nth-of-type(even) .stage_title {
    order: 1;
  }
}
@media (min-width: 1300px) {
  .stage:nth-of-type(even) .stage_description {
    margin-left: auto;
    order: -1;
  }
}

details.collapse .content {
  overflow: clip;
  transition: height 0.3s ease-in-out;
}
details.collapse:not(:open) .content {
  height: 0;
}

.collapse-btn {
  align-self: flex-end;
}
@media (min-width: 600.2px) {
  .collapse-btn {
    align-self: center;
  }
}
.collapse-btn svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: #6c757d;
  transition: fill 0.2s ease-in-out, transform 0.1s ease-in-out;
}
@media (min-width: 1300px) {
  .collapse-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .collapse-btn:hover > svg {
    cursor: pointer;
  }
  .collapse-btn:focus > svg {
    fill: #fd7e14;
  }
  .collapse-btn:focus-visible {
    outline: none;
  }
}
.collapse-btn.opened svg {
  transform: rotate(180deg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 1rem 1rem 1.5rem;
}
@media (max-width: 600px) and (orientation: portrait) {
  .gallery {
    padding: 1rem 0.5rem 1.5rem;
  }
}
.gallery_item {
  aspect-ratio: 1;
  position: relative;
}
.gallery_link {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.gallery_link:hover, .gallery_link:focus {
  box-shadow: 0 3px 4px 1px #6c757d;
}
.gallery_image {
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  pointer-events: none;
}

.album-google {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}
.album-google-btn {
  border: none;
  --btn-padding-x: 6px;
  margin-bottom: 1rem;
}
@media (min-width: 1300px) {
  .album-google-btn {
    position: relative;
  }
}
.album-google-btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("/portfolio-pug/assets/google-photo-DaUOABpf.png");
  background-size: 100%;
}

dialog.modal-gallery {
  --open-timing-func: cubic-bezier(.4,1.68,.55,.85);
  --close-timing-func: cubic-bezier(1,-0.18,1,.89);
  height: 75vh;
  aspect-ratio: 3/2;
  overflow: clip;
  padding: 0;
  border-radius: 10px;
  transition: transform 0.5s var(--close-timing-func), display 0.5s allow-discrete, overlay 0.5s allow-discrete;
  transform: translateY(calc(50% + 50vh));
}
@media (max-width: 600px) and (orientation: portrait) {
  dialog.modal-gallery {
    margin: auto 4px;
    height: auto;
  }
}
dialog.modal-gallery:open {
  transition: transform 0.4s var(--open-timing-func), opacity 0.1s var(--open-timing-func), display 0.5s allow-discrete, overlay 0.5s allow-discrete;
  opacity: 1;
  transform: translate(0);
}
@starting-style {
  dialog.modal-gallery:open {
    opacity: 0;
    transform: translateY(100px);
  }
}
dialog.modal-gallery::backdrop {
  background: transparent;
}
dialog.modal-gallery img {
  cursor: pointer;
  touch-action: none;
}

.modal-counter {
  --border-w: 3px;
  position: absolute;
  top: calc(var(--border-w) * -1);
  right: calc(var(--border-w) * -1);
  font-family: monospace;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  background: #ff6f00;
  color: #000;
  padding: 0px 12px 2px 14px;
  border: var(--border-w) solid #000;
  border-radius: 0px 0px 0px 10px;
}
@media (max-width: 600px) and (orientation: portrait) {
  .modal-counter {
    font-size: 18px;
    padding: 0px 6px 1px 8px;
  }
}

.progress {
  --progress-color-css: linear-gradient(90deg, rgba(11, 108, 255, 0.768627451), rgba(7, 244, 255, 0.8117647059));
  overflow: hidden;
  --progress-color-react: linear-gradient(90deg, rgba(83, 11, 255, 0.8901960784), rgba(255, 7, 247, 0.9098039216));
  overflow: hidden;
  --progress-color-js: linear-gradient(90deg, rgba(255, 192, 11, 0.8901960784), rgba(251, 255, 7, 0.9098039216));
  overflow: hidden;
  --progress-color-html: linear-gradient(90deg, rgba(11, 198, 255, 0.8705882353), rgba(7, 255, 175, 0.8392156863));
  overflow: hidden;
}
.progress-bar {
  width: 100%;
  transform-origin: left center;
  border-radius: 0 0.25rem 0.25rem 0;
  transform: scaleX(0);
  animation: progress 0.7s ease-in-out forwards;
  animation-play-state: paused;
  animation-delay: var(--delay-progress);
}
.progress-list {
  padding: 0 1rem;
  margin-top: 1rem;
}
.progress-list__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(-100%);
  animation: stack 1.2s forwards;
  animation-play-state: paused;
  animation-delay: var(--delay-stack);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.progress_stage {
  position: relative;
  left: -0.4rem;
  width: 100%;
  height: 0.5rem;
  border-radius: 0 0.25rem 0.25rem 0;
}
.progress-icon {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
}
.progress-icon_html {
  fill: rgb(31, 200.2173913043, 227);
}
.progress-icon_css {
  fill: rgb(51, 149.4, 255);
}
.progress-icon_js {
  fill: rgb(255, 205.75, 58);
  background-color: #fff;
}
.progress-icon_react {
  fill: rgb(132.9642857143, 64.369047619, 244.630952381);
  background-color: #fff;
}

@keyframes progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(var(--progress));
  }
}
@keyframes stack {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  z-index: -1;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 700px;
}
.modal:focus {
  outline: none;
}
.modal__content {
  position: absolute;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transform: rotateY(-20deg);
  transition: all 0.35s ease-in-out;
}
.open .modal__content {
  top: 50% !important;
  left: 50% !important;
  width: 90% !important;
  height: 80% !important;
  margin-top: -40vh;
  margin-left: -45vw;
  transform: rotateY(0deg);
}
@media (min-width: 600.2px) {
  .open .modal__content {
    width: 70% !important;
    margin-left: -35vw;
  }
}
@media (min-width: 600.2px) {
  .open .modal__content {
    width: 90% !important;
    margin-left: -45vw;
  }
}
@media (min-width: 1300px) {
  .open .modal__content {
    width: 60% !important;
    margin-left: -30vw;
  }
}
.modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.modal.open {
  z-index: 10;
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.35s ease-in-out;
}

.btn-close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media (min-width: 1300px) {
  .btn-close {
    top: 1.25rem;
    bottom: auto;
  }
}
.btn-close:hover::before, .btn-close:focus::before {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
.btn-close::before {
  display: inline-block;
  width: 3rem;
  content: "✕";
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1300px) {
  .btn-close::before {
    color: inherit;
    background-color: inherit;
  }
}

footer {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #dee2e6;
  color: #6c757d;
}
@media (max-width: 600px) and (orientation: portrait) {
  footer {
    box-shadow: 0px 10px 20px 10px #cdcdcd;
    border-radius: 35px 35px 0 0;
  }
}
footer address {
  margin: 0;
}
@media (min-width: 1300px) {
  footer {
    padding: 90px 0 80px;
  }
}
footer *::selection {
  color: #fff;
  background: #ff63ab;
}

.footer {
  display: grid;
}
@media (min-width: 600.2px) {
  .footer {
    grid-auto-flow: column;
    grid-template-columns: 38% max-content auto;
    margin-left: 12%;
    margin-right: 3%;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .footer > *:not(:last-child) {
    margin: 0 0 2rem 2rem;
  }
}
@media (min-width: 1300px) {
  .footer > *:nth-child(1) {
    justify-self: start;
  }
}
.footer > *:nth-child(1) li {
  margin-bottom: 0.5rem;
}
@media (min-width: 1300px) {
  .footer > *:nth-child(1) li:nth-child(4) {
    display: none;
  }
}
.footer > *:nth-child(2) {
  display: none;
}
@media (min-width: 1300px) {
  .footer > *:nth-child(2) {
    display: block;
  }
  .footer > *:nth-child(2) .footer-title {
    margin-bottom: 1rem;
  }
}
.footer > *:nth-child(3) {
  position: relative;
}
@media (max-width: 600px) and (orientation: portrait) {
  .footer > *:nth-child(3) .footer-title {
    display: none;
  }
}
@media (min-width: 1300px) {
  .footer > *:nth-child(3) {
    justify-self: end;
  }
}
@media (max-width: 600px) and (orientation: portrait) {
  .footer > *:nth-child(3) {
    margin-top: 2rem;
  }
  .footer > *:nth-child(3)::before {
    position: absolute;
    content: "";
    display: block;
    height: 2px;
    width: 82%;
    background: linear-gradient(to right, #7e00ff, #ff0052, #fff700);
    top: -2.5rem;
    left: 9%;
  }
}
.footer-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 600px) and (orientation: portrait) {
  .footer-title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1300px) {
  .footer-title {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 0.75rem;
  }
}
@media (min-width: 1300px) {
  .footer-title_write-me {
    padding-left: 1rem;
  }
}
.footer-link {
  color: inherit;
  white-space: nowrap;
}
.footer-link:hover {
  color: #000;
}
.footer-link:focus {
  color: #ff63ab;
}
@media (max-width: 600px) and (orientation: portrait) {
  .footer-link {
    font-size: 1.125rem;
  }
}
.footer-link_max::before, .footer-link_telegram::before, .footer-link_tel::before, .footer-link_email::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position-y: -5%;
}
@media (min-width: 1300px) {
  .footer-link_max::before, .footer-link_telegram::before, .footer-link_tel::before, .footer-link_email::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.footer-link_tel::before {
  background-image: url(/portfolio-pug/assets/phone2-CSKEEKLH.svg);
}
.footer-link_max::before {
  background-image: url(/portfolio-pug/assets/max-Dz77ae0F.svg);
}
.footer-link_telegram::before {
  background-image: url(/portfolio-pug/assets/telegram-Dx5rLYoX.svg);
}
.footer-link_email::before {
  background-image: url(/portfolio-pug/assets/email-BsH1KyKX.svg);
}
.footer-mail {
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.footer-mail:focus {
  outline: none;
}
@media (min-width: 1300px) {
  .footer-mail {
    padding: 1rem;
  }
  .footer-mail:hover {
    background-color: #e9ecef;
  }
  .footer-mail:hover > .footer-mail__copy {
    opacity: 1;
  }
}
.footer-mail__copy {
  display: none;
  padding: 0.25rem;
  margin-left: 1rem;
  vertical-align: middle;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #ff63ab;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}
.footer-mail__copy:focus-visible {
  opacity: 1;
}
.footer-mail__copy:active {
  transform: translateY(1px);
}
@media (min-width: 1300px) {
  .footer-mail__copy {
    display: inline-block;
    opacity: 0;
  }
}

.profiles-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
}
.footer .profiles-list {
  justify-content: space-evenly;
}
@media (min-width: 1300px) {
  .footer .profiles-list {
    gap: 8px;
    margin-top: 20px;
  }
}
.card_hero .profiles-list {
  box-shadow: inset 0 -1px 2px hsl(0, 0%, 100%), inset 0 4px 6px hsla(0, 0%, 0%, 0.18);
  justify-content: space-between;
  border-radius: 16px;
  padding: 12px 16px;
  background: transparent;
}
@media (min-width: 600.2px) {
  .card_hero .profiles-list {
    justify-content: flex-end;
    align-self: flex-end;
    padding: 12px 20px;
    gap: 14px;
  }
}
.footer .profiles-icon {
  height: 44px;
  fill: var(--fill-color);
}
@media (min-width: 600.2px) {
  .footer .profiles-icon {
    height: 36px;
  }
}
@media (min-width: 1300px) {
  .footer .profiles-icon {
    height: 30px;
  }
}
.footer .profiles-icon {
  transition: fill 0.1s ease-out;
}
.footer .profiles-icon svg {
  height: 100%;
  transition: filter 0.1s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer .profiles-icon {
    fill: #ced4da;
  }
  .footer .profiles-icon:hover, .footer .profiles-icon:focus-visible {
    fill: var(--fill-color);
  }
  .footer .profiles-icon:hover svg, .footer .profiles-icon:focus-visible svg {
    filter: drop-shadow(0px 2px 1px #8d8d8d);
  }
}
.card_hero .profiles-icon {
  transition: transform 0.1s ease-out;
  fill: var(--fill-color);
}
.card_hero .profiles-icon:hover, .card_hero .profiles-icon:focus-visible {
  transform: translateY(-2px);
}
.card_hero .profiles-icon:hover svg, .card_hero .profiles-icon:focus-visible svg {
  filter: drop-shadow(0px 2px 1px #8d8d8d);
}
.card_hero .profiles-icon svg {
  height: 32px;
  filter: drop-shadow(1px 0px 1px #8d8d8d);
  transition: filter 0.1s ease-out, fill 0.1s ease-out;
}
.footer .profiles-icon_max .gradient {
  transition: opacity 0.3s ease-out;
  opacity: 0;
}
.footer .profiles-icon_max:hover .gradient, .footer .profiles-icon_max:focus-visible .gradient {
  opacity: 1;
}
.profiles-icon_github, .profiles-icon_gitverse {
  --fill-color: #24292e;
}
.profiles-icon_linkedin {
  --fill-color: #0077b5;
}
.profiles-icon_setka .violet, .profiles-icon_setka .black {
  transition: fill 0.3s ease-out;
}
.profiles-icon_setka .violet {
  fill: #5d10cb;
}
.profiles-icon_setka .black {
  fill: #000;
}
@media (hover: hover) and (pointer: fine) {
  .footer .profiles-icon_setka .violet, .footer .profiles-icon_setka .black {
    fill: #ced4da;
  }
  .footer .profiles-icon_setka:hover .violet, .footer .profiles-icon_setka:focus-visible .violet {
    fill: #5d10cb;
  }
  .footer .profiles-icon_setka:hover .black, .footer .profiles-icon_setka:focus-visible .black {
    fill: #000;
  }
}
.profiles-icon_hh .circle {
  fill: #FF0002;
  transition: fill 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer .profiles-icon_hh .circle {
    fill: #ced4da;
  }
  .footer .profiles-icon_hh:hover .circle, .footer .profiles-icon_hh:focus-visible .circle {
    fill: #FF0002;
  }
}
.profiles-icon_pdf {
  --fill-color: #b90605;
}