@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-VariableFont_wght.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: -800;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/TitilliumWeb-Regular.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --color-dark: #101010;
  --color-light: #FFF;
  --color-accent: #ff4400;
  --color-dark-alt: #1E1E1E;
  --color-gray: #9B9B9B;
  --border: 1px solid var(--color-accent);
  --border-radius: 15px;
  --border-radius-small: 10px;
  --border-radius-large: 50px;
  --shadow: 0 5px 0 0 var(--color-gray);
  --font-family-base: 'Titillium Web', sans-serif;
  --font-family-title: 'Orbitron', serif;
  --container-width: 1470px;
  --container-padding-x: 15px;
  --section-padding: 30px;
  --input-height: 55px;
  --button-height: 45px;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.swiper-button-prev, .swiper-button-next {
  top: 50% !important;
  color: var(--color-gray);
  background-color: transparent;
  border: none;
}

.swiper-button-prev {
  left: 0 !important;
  translate: 50% -50%;
}

.swiper-button-next {
  right: 0 !important;
  left: unset !important;
  rotate: -90deg !important;
  translate: 0 -50% !important;
}

.swiper-pagination {
  top: 0 !important;
  display: block !important;
}
.swiper-pagination-bullet {
  background-color: var(--color-gray);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .hidden-mobile-s {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 767px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (max-height: 700px) {
  .hidden-mobile-short {
    display: none !important;
  }
}

body {
  font-size: clamp(16px, 1.25vw, 18px);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-light);
  background-color: var(--color-dark-alt);
  interpolate-size: allow-keywords;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

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

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-weight: 700;
  font-family: var(--font-family-title);
}

h1, .h1 {
  font-size: clamp(36px, 3.3333333333vw, 48px);
}

h2, .h2 {
  font-size: clamp(24px, 2.2222222222vw, 32px);
}

h3, .h3 {
  font-size: clamp(18px, 1.6666666667vw, 24px);
}

h4, .h4 {
  font-size: clamp(14px, 1.3888888889vw, 20px);
}

.header__inner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  translate: -50%;
  width: 90%;
  max-width: 575px;
  z-index: 10;
}
.header__menu-list {
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .header__menu-list {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.header__menu-list {
  padding-block: 10px;
  max-width: 400px;
  margin-inline: auto;
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 100000px;
}
@media (min-width: 1023px) {
  .header__menu-list {
    height: 60px;
    max-width: unset;
  }
}
.header__menu-item {
  height: 100%;
}
.header__menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  height: 100%;
  padding-inline: 10px;
  border: none;
  background-color: transparent;
  color: var(--color-gray);
}
@media (hover: hover) {
  .header__menu-button:hover {
    color: var(--color-accent);
    scale: 1.1;
  }
}
@media (hover: none) {
  .header__menu-button:active {
    color: var(--color-accent);
    scale: 1.1;
  }
}

.burger-button {
  width: 60px;
  aspect-ratio: 1;
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .burger-button {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.burger-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  color: var(--color-light);
  backdrop-filter: blur(1px);
}
@media (hover: hover) {
  .burger-button:hover {
    scale: 1.2;
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .burger-button:active {
    scale: 1.2;
    color: var(--color-accent);
  }
}
.burger-button svg {
  width: 80%;
  height: 80%;
}

.mobile-overlay {
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .mobile-overlay {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.mobile-overlay {
  width: 80%;
  max-width: 350px;
  height: 60dvh;
  max-height: 300px;
  border-radius: var(--border-radius);
  color: inherit;
  bottom: 100px;
  left: 50%;
  translate: -50%;
  margin: auto 0 0;
}
.mobile-overlay__body {
  height: 100%;
}
.mobile-overlay__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.mobile-overlay__item {
  height: var(--button-height);
}
.mobile-overlay__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-light);
  background-color: transparent;
  border: none;
}
@media (hover: hover) {
  .mobile-overlay__button:hover {
    scale: 1.2;
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .mobile-overlay__button:active {
    scale: 1.2;
    color: var(--color-accent);
  }
}

.container {
  width: 100dvw !important;
  height: 100dvh !important;
  padding: var(--container-padding-x);
  max-width: calc(var(--container-width) - var(--container-padding-x) * 2);
}
@media (min-width: 1023px) {
  .container {
    padding: 50px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 20px;
}
@media (max-height: 700px) {
  .section {
    padding-block: 0;
  }
}
.section__title {
  color: var(--color-accent);
}
.section__body {
  margin-block: auto;
  width: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
  background-color: var(--color-dark-alt);
}
@media (orientation: landscape) {
  .hero {
    flex-direction: row;
  }
}
.hero__header {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.hero__body {
  max-width: 300px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1023px) {
  .hero__body {
    max-width: 500px;
  }
}
.hero__body::after {
  width: 100%;
  aspect-ratio: 1;
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__animation {
  width: 100%;
  height: auto;
}
.hero__title {
  display: inline-flex;
  flex-direction: column;
}
.hero__title span {
  font-size: clamp(24px, 2.2222222222vw, 32px);
  font-weight: 400;
  color: var(--color-gray);
}
.hero__description {
  color: var(--color-accent);
}

.projects {
  width: 100% !important;
  max-width: calc(var(--container-width) - var(--container-padding-x) * 2);
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  overflow-x: hidden;
}
.projects__list {
  display: flex;
  width: 100%;
}
.projects__item {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.project-card {
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .project-card {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.project-card {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  border-radius: var(--border-radius-small);
}
@media (orientation: landscape) {
  .project-card {
    flex-direction: row;
    column-gap: 20px;
    height: 70dvh;
    justify-content: space-between;
  }
}
.project-card__image-container {
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 300px;
}
@media (orientation: landscape) {
  .project-card__image-container {
    aspect-ratio: unset;
    width: 40%;
    max-height: 100%;
  }
}
@media (orientation: landscape) and (min-width: 767px) {
  .project-card__image-container {
    width: 80%;
  }
}
.project-card__image {
  width: 100%;
  height: auto;
}
.project-card__body {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (orientation: landscape) {
  .project-card__body {
    width: 60%;
    height: 100%;
  }
}
@media (orientation: landscape) and (min-width: 1023px) {
  .project-card__body {
    row-gap: 20px;
    width: 40%;
  }
}
.project-card__description {
  color: var(--color-gray);
}
@media (max-height: 700px) {
  .project-card__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.project-card__technologies-list {
  display: flex;
  column-gap: 10px;
}
.project-card__technologies-item {
  color: var(--color-accent);
  border: var(--border);
  padding: 5px;
  border-radius: 4px;
}
.project-card__links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (orientation: landscape) and (min-height: 700px) {
  .project-card__links-wrapper {
    margin-top: auto;
    margin-bottom: 40px;
  }
}
.project-card__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .project-card__link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
  }
}
@media (hover: none) {
  .project-card__link:active {
    color: var(--color-accent);
    border-color: var(--color-accent);
  }
}
.project-card__link {
  width: 100%;
  padding: 5px;
  border: var(--border);
  border-radius: var(--border-radius-small);
  border-color: var(--color-light);
}
.project-card__link--demo {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
@media (hover: hover) {
  .project-card__link--demo:hover {
    color: var(--color-dark-alt);
  }
}
@media (hover: none) {
  .project-card__link--demo:active {
    color: var(--color-dark-alt);
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
}

.skills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  padding-bottom: 70px;
  flex-direction: column;
}
@media (max-height: 700px) {
  .skills {
    row-gap: 5px;
  }
}
@media (min-width: 1023px) {
  .skills {
    flex-direction: row;
  }
}
.skills__accordion {
  --titleArrowRotationAngle: 0deg;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 350px;
  width: 100%;
}
@media (max-height: 700px) {
  .skills__accordion {
    row-gap: 5px;
  }
}
@media (min-width: 480px) {
  .skills__accordion {
    max-width: 600px;
  }
}
.skills__accordion::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 0.5s, content-visibility 0.5s;
  transition-behavior: allow-discrete !important;
}
.skills__accordion[open] {
  --titleArrowRotationAngle: 90deg;
}
.skills__accordion[open]::details-content {
  block-size: auto;
}
.skills__accordion-title {
  list-style: none;
  color: var(--color-gray);
  cursor: pointer;
  position: relative;
  align-self: center;
  padding-right: 40px;
  padding-left: 20px;
}
.skills__accordion-title::after {
  width: 30px;
  aspect-ratio: 1;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  background: url("../../images/icons/arrow.svg");
  background-size: contain;
  rotate: var(--titleArrowRotationAngle);
  transition-duration: var(--transition-duration);
}
.skills__list {
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition-duration: var(--transition-duration);
  overflow: hidden;
}
@media (max-height: 700px) {
  .skills__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px !important;
  }
}
@media (min-width: 480px) {
  .skills__list {
    gap: 10px;
  }
}
.skills__item {
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .skills__item {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.skills__item {
  height: 100%;
  padding: 3px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 7px auto;
  column-gap: 5px;
  border-radius: 3px;
  text-wrap: nowrap;
}
@media (max-height: 700px) {
  .skills__item {
    padding: 2px 10px !important;
  }
}
@media (min-width: 480px) {
  .skills__item {
    padding: 5px 10px;
  }
}
.skills__item:before {
  width: 7px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-accent);
  border-radius: 50%;
  align-self: center;
}
.skills__item span {
  grid-column: 2;
  color: var(--color-gray);
  padding-left: 5px;
}

@media (max-height: 700px) and (orientation: landscape) {
  .contact-us {
    margin-block: 0;
  }
}
@media (max-height: 700px) and (min-width: 1023px) {
  .contact-us {
    margin-block: auto;
  }
}
.contact-us__inner {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  border-radius: var(--border-radius-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: var(--color-dark);
}
@media (max-height: 700px) {
  .contact-us__inner {
    max-width: 600px;
    padding: 15px;
  }
}
@media (min-width: 767px) {
  .contact-us__inner {
    max-width: 600px;
  }
}
@media (min-width: 767px) and (max-width: 1023px) and (min-height: 850px) {
  .contact-us__inner {
    display: block;
    height: 80dvh;
    max-height: 800px;
    position: relative;
  }
  .contact-us__inner::before {
    width: 500px;
    aspect-ratio: 1;
    content: "";
    position: absolute;
    background-image: url("../../images/contact-us-animated-bg.svg");
    right: 30px;
    bottom: -60px;
    left: 50%;
    translate: -50%;
  }
}
@media (min-width: 1023px) {
  .contact-us__inner {
    max-width: 1100px;
    position: relative;
  }
}
@media (min-width: 1023px) and (max-height: 700px) {
  .contact-us__inner {
    max-width: 800px;
  }
}
@media (min-width: 1023px) {
  .contact-us__inner::before {
    width: 500px;
    aspect-ratio: 1;
    content: "";
    position: absolute;
    background-image: url("../../images/contact-us-animated-bg.svg");
    right: 30px;
    top: 45%;
    translate: 0 -50%;
  }
}
@media (min-width: 1023px) and (max-height: 700px) {
  .contact-us__inner::before {
    width: 300px;
    aspect-ratio: 1;
    top: 50%;
  }
}
.contact-us__form {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}
@media (max-height: 700px) {
  .contact-us__form {
    row-gap: 10px;
  }
}
.contact-us__body {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (max-height: 700px) and (orientation: landscape) {
  .contact-us__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (min-width: 767px) {
  .contact-us__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }
}
@media (min-width: 1023px) {
  .contact-us__body {
    max-width: 400px;
  }
}
.contact-us__field:last-child {
  grid-column: 1/3;
}
.contact-us__button {
  height: var(--button-height);
  color: inherit;
  background-color: var(--color-accent);
  border: none;
  border-radius: var(--border-radius-small);
  width: 100%;
  max-width: 200px;
  align-self: start;
}
@media (hover: hover) {
  .contact-us__button:hover {
    background-color: var(--color-dark-alt);
    border: var(--border);
  }
}
@media (hover: none) {
  .contact-us__button:active {
    background-color: var(--color-dark-alt);
    border: var(--border);
  }
}
@media (max-height: 700px) and (orientation: landscape) {
  .contact-us__button {
    height: 35px;
    max-width: 180px;
  }
}

.field {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media (min-width: 767px) {
  .field {
    align-self: end;
  }
}
.field__input {
  backdrop-filter: blur(5px) saturate(34%);
  -webkit-backdrop-filter: blur(5px) saturate(34%);
  background-color: rgba(54, 54, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.125);
}
@media (max-height: 700px) {
  .field__input {
    backdrop-filter: blur(1px) saturate(34%);
  }
}
.field__input {
  border-radius: var(--border-radius-small);
  height: var(--input-height);
  padding: 0 15px;
  color: var(--color-gray);
}
@media (max-height: 700px) {
  .field__input {
    height: 40px;
  }
}
.field__input--textarea {
  padding-block: 5px;
  height: clamp(100px, 40dvh, 120px);
  resize: none;
}
.field__label span {
  color: var(--color-accent);
  font-size: 28px;
}

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