*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "MADE_Bon_Voyage";
  src: url("../fonts/MADE-Bon-Voyage/MADE-Bon-Voyage-Regular.otf")
    format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "MADE_Bon_Voyage";
  src: url("../fonts/MADE-Bon-Voyage/MADE-Bon-Voyage-Thin.otf")
    format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
:root {
  --black-color: #1c1a1b;
  --gold-color: #cdae7e;
  --gold-dark-color: #977b56;
  --color-text: #ccc7c7;
  --color-gray-text: #8e8a8a;
  --gradient-top: linear-gradient(
    180deg,
    #cdae7e 0%,
    rgba(205, 174, 126, 0) 100%
  );
  --gradient-bottom: linear-gradient(
    to bottom,
    rgba(205, 174, 126, 0.3) 0% #cdae7e 100%
  );
  --gradient-horizontal-left: linear-gradient(
    90deg,
    rgba(205, 174, 126, 0.1) 0%,
    rgba(205, 174, 126, 0.5) 5%,
    rgba(205, 174, 126, 0.1) 100%
  );
  --gradient-horizontal-right: linear-gradient(
    90deg,
    rgba(205, 174, 126, 0.1) 0%,
    rgba(205, 174, 126, 0.5) 95%,
    rgba(205, 174, 126, 0.1) 100%
  );
  --gradient-vertical: linear-gradient(
    0deg,
    rgba(205, 174, 126, 0.1) 0%,
    rgba(205, 174, 126, 0.5) 5%,
    rgba(205, 174, 126, 0.1) 100%
  );
  --gradient-radial: radial-gradient(
    circle,
    rgba(205, 174, 126, 1) 0%,
    rgba(205, 174, 126, 0.3) 100%
  );
  --font-title: "MADE_Bon_Voyage", sans-serif;
  --font-text: "Lato", sans-serif;
}
body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--black-color);
  color: var(--color-gray-text);
  font-family: var(--font-text);
}
img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.btn {
  display: block;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--gold-color);
  opacity: 0.75;
  line-height: 1;
  transition: opacity 400ms linear;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  -ms-transition: opacity 400ms linear;
  -o-transition: opacity 400ms linear;
}
.btn:hover {
  opacity: 1;
}
h1 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 8rem;
  color: var(--gold-color);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-align: center;
}
h2 {
  font-family: "MADE Bon Voyage";
  font-weight: 300;
  font-size: 6.25rem;
  line-height: 100%;
  color: var(--gold-color);
  display: flex;
  position: relative;
}
h2::before {
  content: "";
  width: 152px;
  height: 152px;
  background-image: url(../img/ellipse-min.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -40px;
  left: -50px;
}
p {
  margin-bottom: 16px;
}
a {
  color: var(--gold-color);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 400ms linear;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  -ms-transition: opacity 400ms linear;
  -o-transition: opacity 400ms linear;
}
a:hover {
  opacity: 1;
}
.section {
  display: flex;
  margin-bottom: 100px;
  overflow: hidden;
}
.container {
  margin: 0 auto;
  max-width: 1532px;
  width: 100%;
  padding: 16px;
}

/*-------- HEADER --------*/
.header {
  padding-top: 20px;
  margin-bottom: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.header__item {
  display: block;
  background-color: var(--black-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__major {
  font-family: var(--font-text);
  color: var(--gold-dark-color);
  padding-right: 24px;
  flex-shrink: 0;
}
.header__name {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--gold-color);
  padding: 0 24px;
  position: absolute;
  flex-shrink: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.header__line {
  height: 1px;
  background-color: var(--gold-color);
  flex-grow: 1;
  opacity: 0.5;
  margin: auto 5%;
}
.header__menu {
  padding-left: 24px;
  list-style-type: none;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 0.8rem;
}
.header__menu li::after {
  content: "";
  display: inline-block;
  background-color: var(--gold-color);
  width: 3px;
  height: 3px;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 3px;
  opacity: 0.75;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.header__menu li:last-child::after {
  display: none;
}
.header-container::after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--gold-color);
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  z-index: -1;
  opacity: 0.5;
}
.header__menu__btn {
  display: none;
}

/*-------- MAIN --------*/
.main {
  flex-direction: column;
  position: relative;
  height: 100vh;
}
.main__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 100px 0;
}
.main h1 {
  margin-bottom: 12px;
}
.main h1 span {
  background: var(--gradient-top);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main span {
  display: block;
}
.main__text__subtitle {
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--gold-color);
  text-align: center;
}
.main__ellipses {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.25;
  position: relative;
  width: auto;
  top: 50%;
  transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
}
.main__ellips-center {
  width: 50%;
  max-height: 100vh;
  transition: transform 16s;
  -webkit-transition: transform 16s;
  -ms-transition: transform 16s;
  -moz-transition: transform 16s;
  -o-transition: transform 16s;
}
.main__ellips-center:hover {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.main__ellips-side {
  width: 50%;
  max-height: 100vh;
  transition: transform 16s;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -webkit-transition: transform 16s;
  -moz-transition: transform 16s;
  -ms-transition: transform 16s;
  -o-transition: transform 16s;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.main__more {
  width: 100%;
  padding: 28px 0;
  position: absolute;
  bottom: 0;
  /*z-index: 1;*/
  display: flex;
  justify-content: center;
}
.main__more::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
  width: 100%;
  background: var(--gradient-radial);
  opacity: 0.2;
}
.main__more-btn {
  background-color: var(--black-color);
  padding: 0 24px;
  width: auto;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  opacity: 1;
  color: var(--gold-dark-color);
  transition: color 400ms linear;
  -webkit-transition: color 400ms linear;
  -moz-transition: color 400ms linear;
  -ms-transition: color 400ms linear;
  -o-transition: color 400ms linear;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.main__more-btn:hover {
  color: var(--gold-color);
}
.main__more-btn::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
  margin-bottom: -3px;
  opacity: 0.5;
  transition: opacity 400ms linear;
}
.main__more-btn:hover::before {
  opacity: 1;
}

/*-------- ABOUT --------*/
.about-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.about__title {
  margin-bottom: 64px;
  display: inline-block;
}
.about__heading {
  width: calc(45% - 15px);
}
.about__title::after {
  content: "";
  width: 255px;
  height: 150px;
  background-image: url(../img/design.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -255px;
}
.about__text {
  width: calc(60% - 15px);
  padding: 64px 0 64px 64px;
  position: relative;
  transition: color 400ms linear;
  -webkit-transition: color 400ms linear;
  -moz-transition: color 400ms linear;
  -ms-transition: color 400ms linear;
  -o-transition: color 400ms linear;
}
.about:hover .about__text {
  color: var(--color-text);
}
.about__text::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--gradient-vertical);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.about__text::after {
  content: "";
  width: 90%;
  height: 1px;
  background: var(--gradient-horizontal-left);
  position: absolute;
  bottom: 0;
  left: -20px;
}
.about__visual {
  position: absolute;
  max-width: 500px;
  width: calc(40% - 15px);
  right: 0;
  bottom: -24px;
}

/*-------- SKILLS --------*/
.skills {
  flex-direction: column;
}
.skills__title {
  margin: 0 auto 76px;
  justify-content: center;
}
.skills__title::before {
  left: 50%;
  transform: translateX(-90%);
  -webkit-transform: translateX(-90%);
  -moz-transform: translateX(-90%);
  -ms-transform: translateX(-90%);
  -o-transform: translateX(-90%);
}
.skills__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.skills__box::after {
  content: "";
  display: block;
  width: 110px;
  height: 110px;
  background-image: url(../img/ellipse-min.svg);
  background-repeat: no-repeat;
  background-size: 110px 110px;
  position: absolute;
  top: -35px;
  left: -53px;
}
.skills__list {
  transition: color 400ms linear;
  -webkit-transition: color 400ms linear;
  -moz-transition: color 400ms linear;
  -ms-transition: color 400ms linear;
  -o-transition: color 400ms linear;
}
.skills__list:hover {
  color: var(--color-text);
}
.skills__list {
  list-style-type: none;
  padding-left: 18px;
  margin-right: 30px;
}
.skills__list__item {
  margin-bottom: 54px;
  position: relative;
}
.skills__list__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url(../img/bullet.svg);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  position: absolute;
  top: 6px;
  left: -16px;
  margin-right: 8px;
}
.skills__list__item span {
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}
.skills__grid {
  width: 56%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.skills__grid__item {
  width: 25%;
  height: 1px;
  background: var(--gradient-radial);
  position: relative;
  padding-bottom: 25%;
  margin-right: 25%;
}
.skills__grid__item-bottom {
  padding-bottom: 25%;
  margin-right: 0;
  margin-left: 25%;
}
.skills__grid__inner {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--black-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.skills__grid__inner img {
  width: auto;
  height: 60%;
  opacity: 0.6;
  transition: opacity 400ms linear;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  -ms-transition: opacity 400ms linear;
  -o-transition: opacity 400ms linear;
}
.skills__grid:hover .skills__grid__inner img {
  opacity: 1;
}
.skills__grid__inner span {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
  transition: color 400ms linear;
  -webkit-transition: color 400ms linear;
  -moz-transition: color 400ms linear;
  -ms-transition: color 400ms linear;
  -o-transition: color 400ms linear;
}
.skills__grid:hover .skills__grid__inner span {
  color: var(--color-text);
}
.skills::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gradient-radial);
  margin-top: 100px;
  opacity: 0.2;
}

/*-------- WORKS --------*/
.works {
  margin-bottom: 40px;
}
.works__title {
  justify-content: flex-end;
  padding-bottom: 56px;
  padding-right: 64px;
  margin-bottom: 76px;
}
.works__title::before {
  left: auto;
  -webkit-transform: translateX(-102%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}
.works__title::after {
  content: "";
  width: 500px;
  height: 1px;
  background: var(--gradient-horizontal-right);
  position: absolute;
  bottom: 0;
  right: -20px;
}
.works__item {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 64px 64px 72px;
  transition: color 400ms linear;
  -webkit-transition: color 400ms linear;
  -moz-transition: color 400ms linear;
  -ms-transition: color 400ms linear;
  -o-transition: color 400ms linear;
}
.works__item:hover {
  color: var(--color-text);
}
.works__item::before {
  content: "";
  width: 1px;
  background: var(--gradient-vertical);
  background-repeat: no-repeat;
  position: absolute;
  top: -84px;
  bottom: -40px;
  right: 0;
}
.works__item::after {
  content: "";
  height: 1px;
  background: var(--gradient-radial);
  position: absolute;
  bottom: 0;
  left: -40px;
  right: -40px;
  opacity: 0.5;
}

.works__item h3 {
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
}
.works__item h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/star.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  position: absolute;
  top: 5px;
  left: -20px;
  margin-right: 8px;
}
.works__text {
  width: calc(50% - 15px);
  margin-right: 30px;
}
.works__text ul {
  list-style-type: none;
  padding-left: 18px;
  margin-right: 30px;
  margin-bottom: 12px;
}
.works__text li {
  margin-bottom: 8px;
  position: relative;
}
.works__text li::before {
  content: "";
  display: block;
  background-color: var(--gold-dark-color);
  width: 3px;
  height: 3px;
  position: absolute;
  top: 9px;
  left: -12px;
  margin-right: 8px;
}
.btn-works {
  display: block;
  margin-top: 40px;
  margin-left: -100px;
  opacity: 0;
  transition: all 400ms linear;
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
}
.btn-works::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 14px;
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 12px;
  margin-bottom: -7px;
}
.works__item:hover .btn-works {
  opacity: 0.75;
  margin-left: 0;
}
.works__img {
  width: calc(50% - 15px);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
  padding: 8px;
  background: var(--gradient-radial);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
}
.works__img a {
  opacity: 0.8;
}
.works__item:hover .works__img a {
  opacity: 1;
}
.works__img img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.works__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.works__item:nth-child(2n)::before {
  content: "";
  width: 1px;
  height: 120%;
  background: var(--gradient-vertical);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: auto;
  left: 0;
}
.works__item:nth-child(2n) .works__text {
  margin-right: 0;
  margin-left: 80px;
}
.contacts {
  padding: 200px 0 20px;
  overflow: hidden;
  margin-left: 0;
}
.contacts-container {
  display: flex;
  align-items: center;
}
.contacts__title::before {
  width: 500px;
  height: 500px;
  background-image: url(../img/ellipses-bottom.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.contacts__arrow {
  display: block;
  width: auto;
  height: 5px;
  margin-left: 5%;
  margin-right: 28px;
  opacity: 0.5;
  flex-grow: 1;
  background: url(../img/arrow-right-long.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.contacts__links {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.contacts__links li::after {
  content: "";
  display: inline-block;
  background-color: var(--gold-color);
  width: 40px;
  height: 1px;
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 3px;
  opacity: 0.5;
}
.contacts__links li:last-child::after {
  display: none;
}
.contacts__footer {
  text-align: right;
}

@media (max-height: 500px) {
  h1 {
    font-size: 3.5rem;
  }
  .header__item {
    background-color: transparent;
  }
  .header-container::after {
    display: none;
  }
  .main {
    height: 500px;
  }
  .main__ellips-side,
  .main__ellips-center {
    max-height: 500px;
  }
  .main__text__subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 1200px) {
  .about__visual {
    bottom: 0;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 6rem;
  }
  h2 {
    font-size: 5rem;
  }
  .main__text__subtitle {
    font-size: 1.8rem;
  }
  .header {
    padding-top: 8px;
  }
  .header__name {
    font-size: 1.4rem;
  }
  .header__menu li::after {
    margin-left: 8px;
    margin-right: 8px;
  }
  .about__title {
    margin-bottom: 32px;
  }
  .about__title::after {
    width: 200px;
    height: 118px;
    right: -200px;
  }
  h2::before {
    width: 125px;
    height: 126px;
    top: -34px;
  }
  .skills__title::before {
    left: 49%;
  }
  .skills__box {
    flex-direction: column;
  }
  .skills__list {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .skills__list__item {
    margin-right: 52px;
  }
  .skills__list__item:last-child {
    margin-right: 0;
  }
  .skills__grid {
    width: 94%;
    max-width: 594px;
    margin: 0 auto;
  }
  .skills__grid__inner span {
    font-size: 0.75rem;
  }
  .skills__list__item {
    margin-right: 52px;
    width: 25%;
  }
  .contacts__title {
    margin-bottom: 16px;
  }
  .contacts {
    padding: 130px 0 20px;
  }
  .contacts-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 4rem;
  }
  .header {
    padding-top: 0;
  }
  .header-container {
    flex-wrap: wrap;
  }
  .header__name {
    order: 1;
    font-size: 1rem;
    position: static;
    transform: none;
    padding-left: 0;
    line-height: 1;
  }
  .header__major {
    order: 3;
    font-size: 0.7rem;
    width: 50%;
  }
  .header__menu {
    order: 2;
  }
  .header-container::after {
    display: none;
  }
  .about__heading {
    width: calc(61% - 15px);
  }
  .about__title {
    margin-bottom: 16px;
  }
  .about__text {
    padding: 20px 0 20px 36px;
  }
  .about__visual {
    position: static;
  }
  h2::before {
    width: 100px;
    height: 100px;
    top: -28px;
  }
  .skills__list {
    flex-wrap: wrap;
  }
  .skills__list__item {
    width: calc(50% - 40px);
  }
  .skills__list__item:nth-child(even) {
    margin-right: 0;
  }
  .works__item {
    padding: 52px 52px 68px;
  }
  .works__item,
  .works__item:nth-child(2n) {
    flex-direction: column;
  }
  .works__title {
    padding-bottom: 44px;
    margin-bottom: 0;
  }
  .works__text,
  .works__img {
    width: 100%;
  }
  .works__text {
    margin-right: 30px;
    padding-left: 22px;
  }
  .works__item:nth-child(2n) .works__text {
    margin-right: 0;
    margin-left: 0;
    padding-right: 22px;
  }
  .btn-works {
    margin-top: 20px;
    margin-bottom: 36px;
  }
}
@media (max-width: 660px) {
  .about__title::after {
    width: 170px;
    height: 100px;
    right: -188px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 5.3rem;
  }
  h2 {
    font-size: 3.5rem;
  }
  .header__menu__btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    opacity: 0.9;
  }
  .header__menu__btn--open img {
    width: 32px;
    height: 8px;
  }
  .header__menu__btn--close {
    position: fixed;
    z-index: 2;
    display: none;
  }
  .header__menu__btn--close img {
    width: 16px;
    height: 16px;
  }/*
  .header__menu__btn--close.active {
    display: block;
  }*/
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__item {
    background-color: transparent;
  }
  .header__menu {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: var(--black-color);
    flex-direction: column;
    justify-content: center;
    padding: 30px 40%;
    align-items: flex-start;
    font-size: 0.9rem;
    background-color: var(--black-color);
  } /*
  .header__menu.active {
    display: flex;
  }*/
  .header__menu li {
    margin-bottom: 32px;
    margin-left: -30px;
    transition: transform 400ms linear;
    -webkit-transition: transform 400ms linear;
    -moz-transition: transform 400ms linear;
    -ms-transition: transform 400ms linear;
    -o-transition: transform 400ms linear;
  }
  .header__menu li::after {
    display: none;
  }
  .header__menu li::before {
    content: "";
    display: none;
    width: 20px;
    height: 6px;
    display: inline-block;
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
    margin-bottom: 2px;
    opacity: 0;
    transition: opacity 500ms linear;
    -webkit-transition: opacity 500ms linear;
    -moz-transition: opacity 500ms linear;
    -ms-transition: opacity 500ms linear;
    -o-transition: opacity 500ms linear;
  }
  .header__menu li:hover {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
  }
  .header__menu li:hover::before {
    opacity: 1;
  }
  .main__text__subtitle {
    font-size: 1.6rem;
  }
  .about__heading {
    padding-bottom: 124px;
  }
  .about__text {
    width: 100%;
    order: 3;
  }
  .about__title::after {
    right: auto;
    bottom: -114px;
    top: auto;
    left: 26px;
  }
  .about__visual {
    order: 2;
  }
  h2::before {
    width: 86px;
    height: 88px;
    top: -25px;
  }
  .works__item {
    padding: 58px 0 52px;
  }
  .works__item::before {
    display: none;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3.3rem;
  }
  .main__text__subtitle {
    font-size: 1.2rem;
  }

  .about__heading {
    padding-bottom: 86px;
  }
  .about__title::after {
    width: 122px;
    height: 72px;
    bottom: -100px;
  }
  .skills__grid__inner span {
    font-size: 0.6rem;
    margin: 0 4px;
  }
  h2::before {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 460px) {
  h2 {
    font-size: 2.5rem;
  }
  .about-container {
  }
  .about__visual {
    max-width: 360px;
    margin-left: 12%;
    width: 72%;
  }
  .about__heading {
    padding-bottom: 8px;
  }
  .about__title::after {
    bottom: -73px;
    left: auto;
    right: -110px;
  }
  .skills__list__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .skills__grid {
    width: 100%;
  }
  h2::before {
    width: 62px;
    height: 62px;
    top: -17px;
  }
}
@media (max-width: 360px) {
  .about__text {
    padding: 16px 0 16px 32px;
  }

  .about__heading {
    padding-bottom: 8px;
  }
  .about__title::after {
    bottom: -63px;
    right: -74px;
  }
  .about__visual {
    margin-left: 2.5%;
    width: 88%;
  }
  .works__img {
    padding: 6px;
  }
}
