body {
  font-family: "Inter", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.scheme--toggle {
  --primary-color: #3898d4;
  --white: #fff;
  --light-gray: #f5f5f5;
  --lighten-gray: #e6e6e6;
  --gray: #8b8e95;
  --dark: #0f1419;
  --background-color: var(--white);
  --background-alt-color: var(--light-gray);
  --text-color: var(--dark);
  --text-alt-color: var(--gray);
  --heading-font-color: var(--dark);
  --link-color: var(--dark);
  --link-color-hover: var(--dark);
  --button-color: var(--white);
  --button-background-hover: #ededed;
  --border-color: var(--lighten-gray);
  --border-color-alt: var(--lighten-gray);
  --th-color: var(--light-gray);
  --tr-color: var(--light-gray);
  --syntax-highlighting-background: #f3f3f3;
}

img, .lightense-wrap {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}



.global-cover {
  position: relative;
  background: var(--background-alt-color);
}
.global-cover img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}



.global-content {
  position: relative;
  background: var(--background-color);
}

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

.author {
  position: relative;
}


.container {
  margin: 0 auto;
}
.container {
  max-width: 792px;
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex: 0 1 auto;
  flex-direction: row;
  box-sizing: border-box;
  margin-left: -16px;
  margin-right: -16px;
}
.col-12 {
  width: calc(12 / 12* 100%);
}

.col {
  padding-left: 16px;
  padding-right: 16px;
}


.author__box.with-global-cover {
  margin-top: -64px;
}

.author__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.author__meta {
  margin-right: 8px;
}

.author__avatar {
  position: relative;
  width: 128px;
  height: 128px;
  display: block;
  margin-bottom: 12px;
  border: 4px solid var(--background-color);
  border-radius: 50%;
  overflow: hidden;
  transform: translate(0);
  background: var(--background-alt-color);
}

.author__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: all 0.25s;
}
a {
  text-decoration: none;
  color: var(--link-color);
  transition: all 0.25s;
}

.author__name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.author__role {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-alt-color);
}

.cta-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cta-button i {
margin-right: 8px;
}

header {
  display: block;
  unicode-bidi: isolate;
}

.header {
  padding-top: 32px;
}

.main-nav {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, var(--text-color) 97%, transparent 100%);
  mask-image: linear-gradient(to right, var(--text-color) 97%, transparent 100%);
}

.main-nav .nav__list {
  display: flex;
  align-items: baseline;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.list-reset {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


.main-nav .nav__list .nav__item {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav .nav__list .nav__link {
  display: block;
  padding: 8px;
  margin-right: 12px;
  border-bottom: 2px solid var(--border-color);
}

li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}

.main-nav .nav__list .nav__link.active-link {
  font-weight: 600;
  border-color: var(--primary-color);
}

.main-nav .nav__list .nav__link {
  display: block;
  padding: 8px;
  margin-right: 12px;
  border-bottom: 2px solid var(--border-color);
}

.content.with-breadcrumbs {
  margin-top: 0;
}

.section .container__inner {
  margin-bottom: -32px;
}

.section__info {
  margin-bottom: 32px;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section__title {
  display: flex;
  align-items: center;
  margin-bottom: 0; 
  font-size: 24px;
}



.section__link {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
}



.project {
  margin-bottom: 32px;
}

.animate {
  animation: animateElement .7s ease;
}

.col-6 {
  width: calc(6 / 12* 100%);
}

.col {
  padding-left: 16px;
  padding-right: 16px;
}

.project__content {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.25s;
}

.project__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.5px;
  color: var(--heading-font-color);
}
.project__description {
  display: -webkit-box;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-alt-color);
  overflow-y: hidden;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
}


.project__image {
  position: relative;
  display: block;
  min-height: 160px;
  margin-top: 32px;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--background-alt-color);
}

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

div {
  display: block;
  unicode-bidi: isolate;
}

article {
  display: block;
  unicode-bidi: isolate;
}


.lazy.loaded {
  opacity: 1;
}

.project__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.social {
margin-bottom: 24px;
}

.social .social__list {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.list-reset {
list-style-type: none;
margin: 0;
padding: 0;
}

.social .social__item {
margin-bottom: 8px;
margin-right: 8px;
}

.social .social__link {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
font-size: 16px;
border: 1px solid var(--border-color);
border-radius: 50%;
color: var(--heading-font-color);
}

.fab, .fa-brands {
font-family: 'Font Awesome 6 Brands';
}

.fa, .fa-classic, .fa-sharp, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: var(--fa-display, inline-block);
font-style: normal;
font-variant: normal;
line-height: 1;
text-rendering: auto;
}

.fab, .fa-brands {
font-weight: 400;
}

.footer {
margin: 48px 0;
}


.copyright {
font-size: 14px;
text-align: center;
color: var(--text-alt-color);
}

a {
background-color: transparent;
}

.section__title {
display: flex;
align-items: center;
margin-bottom: 0;
font-size: 24px;
}

.section__title i {
width: 32px;
height: 32px;
margin-right: 8px;
font-size: 16px;
line-height: 32px;
border-radius: 8px;
text-align: center;
background: var(--border-color);
}

.section__link i {
margin-left: 6px;
font-size: 14px;
color: var(--text-alt-color);
transition: all .25s;
}

.breadcrumbs {
  margin-top: 80px;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}


.post-title, .page-title {
  position: relative;
  margin-bottom: 24px;
  font-size: 48px;
}

.post-description, .page-description {
  color: var(--text-alt-color);
}

.page-description, .page-section-description {
  margin: 0;
}

.form__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: 0;
  resize: vertical;
  color: var(--heading-font-color);
  background: var(--background-alt-color);
  transition: all 0.25s;
}

button, input {
  overflow: visible;
}


.form__group {
  margin-bottom: 16px;
}


.page__content {
  color: var(--text-alt-color);
}

.form-box {
  margin-bottom: 80px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}



.button--big {
  display: block;
  width: 100%;
}


.button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.25s;
  color: var(--link-color);
  background: var(--background-alt-color);
  outline: 0;
  cursor: pointer;
}