@charset "UTF-8";
::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}

::-webkit-scrollbar-track {
  background: #282c33;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 1rem;
  border: 0.2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #555 #282c33;
}

html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.mobile-nav-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 5px;
  --line-height: 2px;
  --spacing: 6px;
  --color: #c778dd;
  --radius: 4px;
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  -o-transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.nav-icon::before {
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  -o-transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */
.mobile-nav-btn {
  z-index: 999;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Fira Code", monospace;
  background-color: #282c33;
  color: #abb2bf;
}

.purple {
  color: #c778dd;
}

.container {
  max-width: 137rem;
  margin: 0 auto;
}

.header__link.active {
  color: #fff;
}

.social {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  left: 4.5rem;
  max-width: -moz-fit-content;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  z-index: 10;
}
.social img {
  -webkit-transition: scale 0.3s ease 0s;
  -o-transition: scale 0.3s ease 0s;
  transition: scale 0.3s ease 0s;
  width: 3.5rem;
  height: 3.5rem;
}
.social a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  scale: 1.2;
}
.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.social__line {
  display: block;
  height: 30rem;
  width: 1px;
  background-color: #abb2bf;
}

.header {
  padding: 5rem 0 0.2rem;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.header__logo img {
  width: 2rem;
  height: 2rem;
}
.header__logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}
.header__link {
  font-size: 2.2rem;
  color: #abb2bf;
}
.header__link:hover {
  color: #fff;
}
.header__link:hover span {
  font-weight: normal;
}

.andrii {
  position: relative;
  margin-top: 6.8rem;
}
.andrii__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.andrii__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5rem;
  max-width: 59rem;
}
.andrii__info-title {
  font-size: 5rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.andrii__info-title span {
  color: #c778dd;
}
.andrii__info-text {
  font-size: 2.2rem;
  line-height: 2.7rem;
}
.andrii__info-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.2rem;
  background-color: inherit;
  font-size: 2.2rem;
  border: 1px solid #c778dd;
  max-width: -moz-fit-content;
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.andrii__img {
  position: relative;
  width: 100%;
  height: 55rem;
  right: 0;
}
.andrii__img-me {
  position: absolute;
  width: 80%;
  height: 100%;
  right: 0;
}
.andrii__img-dots {
  position: absolute;
  right: 5rem;
  bottom: 8rem;
  width: 9rem;
  height: 9rem;
}
.andrii__img-logo {
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: 15rem;
  top: 5rem;
  z-index: -1;
}
.andrii__img-text {
  position: absolute;
  bottom: -4.8rem;
  left: 20rem;
  padding: 1rem;
  border: 1px solid #abb2bf;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.andrii__img-descr {
  font-size: 2.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.andrii__img-descr::before {
  content: "✔";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  border: 1px solid #c778dd;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.andrii__info-btn::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 300%;
  height: 300%;
  background-color: #c778dd;
  -webkit-transition: top 0s ease, left 0s ease, -webkit-transform 0.6s ease;
  transition: top 0s ease, left 0s ease, -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease, top 0s ease, left 0s ease;
  transition: transform 0.6s ease, top 0s ease, left 0s ease;
  transition: transform 0.6s ease, top 0s ease, left 0s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

.andrii__info-btn:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.andrii__info-btn:hover {
  color: #fff;
}

.andrii__info-btn span {
  position: relative;
  z-index: 1;
}

.smart {
  margin-top: 15rem;
  margin-bottom: 8rem;
  opacity: 0; /* Спочатку невидимий */
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px); /* Спочатку зсунуті вниз */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.smart__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 90rem;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
}
.smart__text {
  border: 1px solid #abb2bf;
  padding: 3rem 2rem;
  font-size: 3rem;
  position: relative;
}
.smart__text-autor {
  border: 1px solid #abb2bf;
  border-top: none;
  font-size: 2.5rem;
  padding: 3rem 2rem;
}

.border-symbol-top {
  position: absolute;
  background-color: #282c33;
  top: -1.5rem;
  padding: 0 1rem;
  left: 2rem;
}
.border-symbol-top img {
  width: 3rem;
  height: 2.5rem;
}

.border-symbol-bottom {
  position: absolute;
  background-color: #282c33;
  bottom: -1.5rem;
  padding: 0 1rem;
  right: 2rem;
  rotate: 180deg;
}
.border-symbol-bottom img {
  width: 3rem;
  height: 2.5rem;
}

.projects {
  margin-bottom: 12rem;
  position: relative;
}
.projects__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6rem;
}
.projects__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.projects__title {
  font-size: 5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.projects__title::after {
  content: "";
  display: block;
  width: 50rem;
  height: 1px;
  background-color: #c778dd;
  margin-left: 2rem;
}
.projects__title-link {
  font-size: 3rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#c778dd), color-stop(50%, #c778dd), color-stop(50%, #ffffff));
  background-image: -o-linear-gradient(left, #c778dd, #c778dd 50%, #ffffff 50%);
  background-image: linear-gradient(to right, #c778dd, #c778dd 50%, #ffffff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 1rem 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: background-position 0.3s ease-in-out;
  -o-transition: background-position 0.3s ease-in-out;
  transition: background-position 0.3s ease-in-out;
  font-weight: 500;
}
.projects__title-link::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0;
  height: 0.3rem;
  background: #c778dd;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.projects__title-link:hover {
  background-position: 0;
}
.projects__title-link:hover::after {
  width: 100%;
}
.projects__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.projects__project {
  max-width: 43.7rem;
  width: 100%;
  border: 1px solid #abb2bf;
}

.project__img img {
  width: 100%;
  height: 25rem;
}
.project__stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 2rem;
  gap: 2rem;
  padding: 1rem;
  border: 1px solid #abb2bf;
  border-left: none;
  border-right: none;
}
.project__name {
  color: #fff;
  font-size: 3rem;
  padding: 2rem;
}
.project__descr {
  font-size: 2rem;
  padding: 0 2rem;
}
.project__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.skill {
  margin-bottom: 20rem;
}
.skill__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5rem;
}
.skill__utils {
  max-width: 40rem;
  width: 100%;
  position: relative;
}
.skill__utils1 {
  position: absolute;
}
.skill__utils1 svg {
  width: 10rem;
  height: 10rem;
}
.skill__utils2 {
  position: absolute;
  bottom: 0;
}
.skill__utils2 svg {
  width: 20rem;
  height: 20rem;
}
.skill__utils3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.skill__utils3 svg {
  width: 10rem;
  height: 10rem;
}
.skill__utils4 {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border: 1px solid #abb2bf;
  top: 0;
  right: 3rem;
}
.skill__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.skill__inner-tip {
  font-size: 2rem;
  padding-left: 4rem;
}
.skill__inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.skill-box.width {
  max-width: 40rem;
}

.skill-box {
  border: 1px solid #abb2bf;
  max-width: 31rem;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}
.skill-box__title {
  color: #fff;
  font-size: 2.2rem;
  padding: 1rem;
  border-bottom: 1px solid #abb2bf;
}
.skill-box__item {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 1rem;
  -moz-column-gap: 2rem;
  -webkit-column-gap: 2rem;
  column-gap: 2rem;
}
.skill-box__skills {
  font-size: 2rem;
}

.purple.tip {
  font-size: 1.6rem;
}

.animated-svg path {
  stroke: #c778dd;
  stroke-width: 3;
  fill: none;
}

.about {
  margin-bottom: 13rem;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 7rem;
}
.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  max-width: 87rem;
  width: 100%;
}
.about__text p {
  font-size: 2.5rem;
}
.about__img {
  position: relative;
  width: 100%;
}
.about__img-me {
  width: 50rem;
  position: absolute;
  right: 0;
}
.about__dots-top {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 10rem;
  left: 20rem;
}
.about__dots1-bottom {
  width: 10rem;
  height: 10rem;
  position: absolute;
  right: 0rem;
  bottom: 25rem;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5rem;
}
.contacts__text {
  max-width: 50%;
  font-size: 2.2rem;
  font-weight: 500;
}
.contacts__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #abb2bf;
  padding: 2rem 1rem;
}
.contacts__box-title {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
.contacts__box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
.contacts__box-inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
  color: #abb2bf;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contacts__box-inner a:hover {
  color: #fff;
}
.contacts__box-inner a:hover img {
  -webkit-filter: brightness(2);
  filter: brightness(2);
}
.contacts__box-inner img {
  width: 3rem;
  height: 3rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer {
  margin-top: 10rem;
  margin-bottom: 2rem;
  border-top: 1px solid #abb2bf;
  padding-top: 5rem;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.footer__text-descr {
  font-size: 2rem;
}
.footer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.footer__media-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}
.footer__media-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__media-box a > img {
  width: 4rem;
  height: 4rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__media-box a > img:hover {
  scale: 1.1;
  -webkit-filter: brightness(2);
  filter: brightness(2);
}
.footer__copy {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 5rem;
}

.about-me__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
  margin-top: 8.5rem;
}
.about-me__title h2 {
  font-size: 3.5rem;
  color: #fff;
}
.about-me__title p {
  font-size: 2rem;
}

.fun {
  position: relative;
}
.fun__title {
  font-size: 3.5rem;
}
.fun__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}
.fun__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}
.fun__content p {
  font-size: 1.8rem;
  padding: 1rem;
  border: 1px solid #abb2bf;
}
.fun__accordeon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.fun__accordeon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1rem;
  overflow: hidden;
}

.accordeon__btn {
  font-size: 3rem;
}
.accordeon__text {
  font-size: 2rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.accordeon-bnt__box {
  border: 1px solid #abb2bf;
  padding: 1rem 2rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 3rem;
  gap: 2rem;
  cursor: pointer;
}
.accordeon-bnt__box:hover {
  background-color: #212328;
}

.accordeon-span-purple {
  color: #c778dd;
  rotate: 90deg;
}

.accordeon-span {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.projects.page {
  margin-top: 7.5rem;
}

.projects__title.page {
  color: #fff;
}
.projects__title.page::after {
  content: "";
  display: none;
}

.projects__content.page {
  margin-top: 10rem;
}

.projects__inner.project {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2rem;
}

.projects__title-link.mobile {
  display: none;
}

.header__change-lenguage {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  top: 4.7rem;
  right: 13rem;
  z-index: 1000;
}
.header__change-lenguage::after {
  content: "";
  width: 1rem;
  height: 1rem;
  top: 0.7rem;
  position: absolute;
  background-image: url(./../img/icons/change-language-arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__change-lenguage:hover::after {
  content: "";
  rotate: 180deg;
}

.header__change-lenguage:hover .header__change-other {
  display: block;
  border: 1px solid #abb2bf;
}

.header__change-choise {
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  color: #abb2bf;
}

.header__change-other {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  border-radius: 5px;
}

.header__change-other span {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.header__link-mobile.active {
  color: #fff;
}

.header__menu-mobile {
  display: none;
}

@media (max-width: 968px) {
  .header__change-lenguage.for-pc {
    display: none;
  }
  .header__change-lenguage {
    top: 3rem;
    left: 4rem;
  }
  .header__change-lenguage::after {
    content: "";
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .mobile-nav-btn {
    display: block;
  }
  .header {
    padding: 5rem 3rem;
  }
  .header__menu {
    display: none;
  }
  .header__change-lenguage:hover .header__change-other {
    display: block;
  }
  .header__change-lenguage.active .header__change-other {
    display: block;
  }
  .header__change-choise {
    font-size: 3rem;
  }
  .header__menu-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: -150%;
    bottom: 0;
    background-color: #282c33;
    z-index: 10;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
  }
  .header__logo-text {
    font-size: 3rem;
  }
  .header__logo img {
    width: 3rem;
    height: 3rem;
  }
  .header__menu-mobile--open {
    top: 0;
  }
  .header__list-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5rem;
    font-size: 4rem;
  }
  .header__link-mobile {
    color: #abb2bf;
  }
  .header__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    margin-top: 15rem;
  }
  .header__social-list img {
    width: 5rem;
    height: 5rem;
  }
  .andrii__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .andrii__info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .social {
    display: none;
  }
  .andrii__img-me {
    width: 51.5rem;
    height: 44rem;
    left: 3rem;
    right: 0;
  }
  .andrii__img-logo {
    left: 2rem;
  }
  .andrii__img-dots {
    bottom: 20rem;
    right: 15rem;
  }
  .andrii__img-text {
    bottom: 5.9rem;
    left: 7rem;
  }
  .smart {
    padding: 0 2rem;
  }
  .projects__content {
    padding: 0 2rem;
  }
  .projects__title-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .projects__title::after {
    content: "";
    max-width: 30rem;
  }
  .projects__title-link {
    display: none;
  }
  .projects__title-link.mobile {
    display: block;
    text-align: center;
  }
  .projects__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .skill {
    padding: 0 2rem;
  }
  .skill__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .skill__utils {
    margin-top: 20rem;
    max-width: none;
  }
  .skill__inner {
    margin-top: 20rem;
  }
  .skill__inner-tip {
    padding-left: 0rem;
    font-size: 2.5rem;
  }
  .skill__inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4rem;
  }
  .skill-box__title {
    font-size: 4rem;
  }
  .skill-box__skills {
    font-size: 3rem;
  }
  .skill-box.width {
    width: 100%;
    max-width: none;
  }
  .skill-box {
    width: 100%;
    max-width: none;
  }
  .skill__inner-box {
    margin-top: 3rem;
  }
  .purple.tip {
    font-size: 3rem;
  }
  .about {
    padding: 0 2rem;
  }
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about__img {
    display: none;
  }
  .contacts {
    padding: 0 2rem;
  }
  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
  }
  .contacts__text {
    max-width: none;
    font-size: 2.5rem;
  }
  .contacts__box-title {
    font-size: 4rem;
  }
  .contacts__box-inner img {
    width: 5rem;
    height: 5rem;
  }
  .contacts__box-inner a {
    font-size: 3rem;
  }
  .footer {
    padding: 2rem;
  }
  .about-me,
  .fun {
    padding: 0 2rem;
  }
  .fun__content p {
    font-size: 3rem;
  }
  .accordeon__btn {
    font-size: 3rem;
    text-align: start;
  }
  .accordeon__text {
    font-size: 2.5rem;
  }
  .projects__title.page {
    font-size: 4rem;
  }
  .projects__inner.project {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
