body {
  margin: 0px;
  padding: 0px;
  font-family: 'Natasha', sans-serif;
  letter-spacing: 1px;
  overflow-x: hidden;
  position: relative;
  color: #1E212C;
  /*background: #4e344b;*/
}

.lock {
  overflow: hidden;
}

/** {*/
/*  scrollbar-width: 0px;*/
/*  scrollbar-color: #d6d6d6;*/
/*}*/

*::-webkit-scrollbar {
  width: 0px;
  background-color: #fff;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: #eee;
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 0 none #fff;
  background-color: #eee;
  transition: all 280ms ease-in-out;
}

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

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

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

.container {
  width: 1340px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

div, ul, li {
  box-sizing: border-box;
}


:root {
  --hue: 223;
  --bg: hsl(var(--hue),90%,10%);
  --fg: hsl(var(--hue),90%,90%);
  --primary: hsl(var(--hue),90%,50%);
  --trans-dur: 0.3s;

}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #031031;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pl {
  --dur: 3s;
  margin: auto;
  position: relative;
  width: 8em;
  height: 8em;
}
.pl__nucleus,
.pl__nucleus-particle {
  position: absolute;
}
.pl__nucleus {
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}
.pl__nucleus-particle,
.pl__ring,
.pl__orbit,
.pl__electron {
  animation: particleTop var(--dur) linear infinite;
}
.pl__nucleus-particle {
  background-color: var(--primary);
  background-image: radial-gradient(37.5% 37.5% at 37.5% 37.5%,hsla(var(--hue),10%,90%,0.25) 48%,hsla(var(--hue),10%,90%,0) 50%);
  border-radius: 50%;
  box-shadow: -0.125em -0.125em 0 hsla(var(--hue),10%,10%,0.25) inset;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  transition: background-color var(--trans-dur);
}
.pl__nucleus-particle:nth-child(2n) {
  background-color: hsl(var(--hue),90%,70%);
}
.pl__nucleus-particle:nth-child(n + 4):nth-child(-n + 9) {
  animation-name: particleMiddle;
}
.pl__nucleus-particle:nth-child(n + 10):nth-child(-n + 12) {
  animation-name: particleBottom;
}
.pl__nucleus-particle:nth-child(2) { animation-delay: calc(var(--dur) * -0.33); }
.pl__nucleus-particle:nth-child(3) { animation-delay: calc(var(--dur) * -0.67); }
.pl__nucleus-particle:nth-child(5) { animation-delay: calc(var(--dur) * -0.17); }
.pl__nucleus-particle:nth-child(6) { animation-delay: calc(var(--dur) * -0.33); }
.pl__nucleus-particle:nth-child(7) { animation-delay: calc(var(--dur) * -0.5); }
.pl__nucleus-particle:nth-child(8) { animation-delay: calc(var(--dur) * -0.67); }
.pl__nucleus-particle:nth-child(9) { animation-delay: calc(var(--dur) * -0.83); }
.pl__nucleus-particle:nth-child(11) { animation-delay: calc(var(--dur) * -0.33); }
.pl__nucleus-particle:nth-child(12) { animation-delay: calc(var(--dur) * -0.67); }
.pl__nucleus-particle:last-child { animation: none; }

.pl__rings {
  display: block;
  width: 100%;
  height: auto;
}
.pl__ring {
  animation-name: ring;
  transform-origin: 64px 64px;
}
.pl__ring:nth-child(n + 5):nth-child(-n + 7) {
  animation-delay: calc(var(--dur) * -0.25);
}
.pl__orbit,
.pl__electron {
  animation-name: orbit;
  transition: stroke var(--trans-dur);
}
.pl__orbit:first-child {
  stroke: hsla(var(--hue),90%,50%,0);
}
.pl__orbit:nth-child(2) {
  stroke: hsla(var(--hue),90%,50%,0.5);
}
.pl__orbit:nth-child(3) {
  stroke: hsla(var(--hue),90%,50%,0.7);
}
.pl__ring:first-child .pl__orbit:first-child { stroke: hsla(var(--hue),90%,50%,0.3); }
.pl__ring:nth-child(2) .pl__orbit { animation-delay: calc(var(--dur) * -0.125); }
.pl__ring:nth-child(3) .pl__orbit { animation-delay: calc(var(--dur) * -0.25); }
.pl__ring:nth-child(4) .pl__orbit { animation-delay: calc(var(--dur) * -0.375); }
.pl__ring:nth-child(5) .pl__orbit:first-child { stroke: hsla(var(--hue),90%,50%,0.3); }
.pl__ring:nth-child(6) .pl__orbit { animation-delay: calc(var(--dur) * -0.25); }
.pl__ring:nth-child(7) .pl__electron:nth-child(2) { animation-delay: calc(var(--dur) * -0.25); }
.pl__ring:nth-child(8) .pl__electron:nth-child(2) { animation-delay: calc(var(--dur) * -0.125); }
.pl__ring:nth-child(8) .pl__electron:nth-child(3) { animation-delay: calc(var(--dur) * -0.25); }
.pl__ring:nth-child(8) .pl__electron:nth-child(4) { animation-delay: calc(var(--dur) * -0.375); }

/* Animations */
@keyframes orbit {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 580; }
}
@keyframes ring {
  from { transform: rotate(0); }
  to { transform: rotate(1turn); }
}
@keyframes particleTop {
  from { transform: rotateY(0) rotateZ(-35deg) translateY(-100%) rotateZ(35deg) rotateY(0); }
  to { transform: rotateY(-1turn) rotateZ(-35deg) translateY(-100%) rotateZ(35deg) rotateY(1turn); }
}
@keyframes particleMiddle {
  from { transform: rotateY(0) rotateZ(90deg) translateY(-100%) rotateZ(-90deg) rotateY(0); }
  to { transform: rotateY(-1turn) rotateZ(90deg) translateY(-100%) rotateZ(-90deg) rotateY(1turn); }
}
@keyframes particleBottom {
  from { transform: rotateY(0) rotateZ(-145deg) translateY(-100%) rotateZ(145deg) rotateY(0); }
  to { transform: rotateY(-1turn) rotateZ(-145deg) translateY(-100%) rotateZ(145deg) rotateY(1turn); } }


.header-wrapper {
  /*background: url(../img/bg5.jpg) no-repeat center top / contain;*/
  /*height: inherit;*/
  color: #fff;
  /*padding: 55px;*/
  /*margin-bottom: 85px;*/
}

.about-bg {
  background: url(../img/bg5.jpg) no-repeat center center / cover;
  /*height: 100vh;*/
  color: #fff;
  /*padding: 55px;*/
  /*margin-bottom: 85px;*/
}

.skills-bg {
  /*background: url(../img/bg17.jpg) no-repeat center center / cover;*/
  height: 100vh;
  color: #fff;
  position: relative;
  /*padding: 55px;*/
  /*margin-bottom: 85px;*/
}

.skills-bg > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px 0;
}

.header__me {
  display: none;
  align-items: center;
}

.fa-angle-down {
  margin-left: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}

.logo span {
  text-transform: uppercase;
  font-family: 'MuseoSansCyrl';
  font-weight: 900;
}

.logo {
  font-size: 17px;
  letter-spacing: 2px;
}

nav {
  display: flex;
  justify-content: space-between;
}

.navbar__link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding-right: 40px;
}

.navbar__contacts a {
  font-family: 'MuseoSansCyrl';
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.navbar__contacts:after {
  width: 100%;
  background: #6d706b;
  height: 1px;
  content: '';
  display: block;
  margin-top: 5px;
}

h1 {
  text-align: center;
  padding-top: 18%;
  font-size: 44px;
  margin: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}

h1 span {
  max-width: 500px;
  display: block;
}

.header__subtitle {
  font-family: 'MuseoSansCyrl';
  font-size: 45px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
}

.header__arrow {
  height: 40px;
  width: 40px;
  border: 1.1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  line-height: 40px;
  margin-top: 30px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__arrow::after {
  border: none;
}

.title {
  font-size: 37px;
  color: #fff;
}

.about {
  margin: 75px 0 50px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about__items {
  display: flex;
  flex-direction: column;
  flex-basis: 55%;
}

.about__items-adv {
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about__items_title {
  font-size: 22px;
  color: #888886;
  margin-bottom: 45px;
}

.about__items_text {
  font-family: 'MuseoSansCyrl', sans-serif;
  font-weight: 300;
  font-size: 15px;
  padding-bottom: 40px;
  line-height: 165%;
}

.skills-btn {
  width: 250px;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.advantages {
  display: flex;
  gap: 50px;
}

.advantages__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages__items_img {
  background: url(../img/square.png) no-repeat center top / cover;
  width: 100px;
  height: 100px;
  float: left;
  display: block;
  text-align: center;
  line-height: 100px;
  font-family: 'MuseoSansCyrl', sans-serif;
  font-weight: 100;
  font-size: 20px;
}


.advantages__items_text {
  font-size: 12px;
  font-family: 'MuseoSansCyrl';
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  text-transform: uppercase;
  line-height: 1.5em;
}

.conection__title {
  margin: 70px 0 10px 0;
  font-size: 22px;
  color: #888886;
}

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

.conection__contacts {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.conection__contacts svg {
  margin-right: 4px;
}

.conections__items {
  font-family: 'MuseoSansCyrl', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding-top: 12px;
  text-decoration: none;
  color: #fff;
  transition: 0.35s;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  position: relative;
  display: inline-block;
}

.conections__items:hover {
  color: #ffaa1a;
  transition: 0.35s;
  border-bottom: 1px solid #ffaa1a;
}

.modal__contacts .conections__items {
  color: #000;
  border-bottom: 1px solid #000;
}

.conection__contacts .conections__items:not(:first-child):hover {
  color: #ffaa1a;
  transition: 0.35s;
  border-bottom: 1px solid #ffaa1a;
}


.conections__items span {
  margin-right: 5px;
}

.conection__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-top: 20px;
}

.conection__logo_icon {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 2px solid #ffaa1a;
  cursor: pointer;
}

.conection__text {
  font-family: 'MuseoSansCyrl', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #797a77;
  margin-left: 15px;
  color: #fff;
}

.skills {
  font-family: 'MuseoSansCyrl', sans-serif;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.skills__item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.skills__round {
  width: 170px;
  height: 170px;
  background:  #FFD554;
  border: 5px solid #fff;
  border-radius: 50%;
  position: relative;
  padding: 2px;
  outline: 2px solid #FFAA1A;
  /*background: linear-gradient(#FFD554, rgba(225, 135, 40, 0) 80%) content-box;*/
  background: linear-gradient(0deg, rgb(247, 198, 47), rgb(255, 255, 255) 100%) content-box;
}

.skills__item:nth-child(3) .skills__round,
.skills__item:nth-child(4) .skills__round,
.skills__item:nth-child(8) .skills__round,
.skills__item:nth-child(9) .skills__round {
  background: linear-gradient(45deg, rgb(247, 198, 47) 50%, rgb(255, 255, 255));
}

.skills__item:nth-child(6) .skills__round {
  background: linear-gradient(0deg, rgb(247, 198, 47), rgb(255, 255, 255) 75%) content-box;
}

.skills__item-wrapper:last-child .skills__round {
  background: linear-gradient(0deg, rgb(247, 198, 47), rgb(255, 255, 255) 10%) content-box;
}

.skills__item-wrapper:last-child .skills__round .skills__round-inner {
  color: #FFAA1A;
}



.skills__round-inner {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  text-align: center;
  padding-top: 17px;
  font-weight: 100;
  font-size: 14px;
  color: #211818;
  padding: 0.125em;
  margin: 0 auto;
  padding-top: 40px;
  color: white;
  font: 700 2em/2 comic sans ms, verdana, sans serif;
  text-align: center;
}

.skills__text {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 10px);
}

.work__title {
  font-size: 22px;
  color: #CDCBC6;
  margin: 45px 0px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow-slider-arrow {
  display: flex;
  align-items: center;
}

.arrow-slider-title-wrapper_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: initial;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-slider-title-wrapper_btn:hover {
  background: #ffaa1a;
  transition: 0.3s;
}

.arrow-slider-title-wrapper_btn svg path {
  transition: 0.3s;
}

.arrow-slider-title-wrapper_btn:hover svg path {
  fill: #fff;
  transition: 0.3s;
}

.works {
  display: flex;
  flex-wrap: wrap;
}

.works__items {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: 30px;
  margin-right: 10px;
}

.works__items img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.overlay {
  font-family: 'MuseoSansCyrl';
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  left: 0px;
  top: 0px;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 130px 0px;
  transition: all ease 1s;
  display: none;
}

.overlay a {
  color: #fff;
  font-weight: 300;
  text-transform: capitalize;
  text-decoration: none;
}

.skills-overlay {
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  position: absolute;
}

.overlay hr {
  width: 70px;
  background-color: #fff;
}

.works__items:hover .overlay {
  display: block;
}

.future {
  font-family: 'MuseoSansCyrl';
  font-weight: 300;
  color: #888886;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin-top: 100px;
  width: 100%;
}

.menu__modal {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 35px;
  right: 80px;
}

.modal__menu-content {
  display: none;
  flex-direction: column;
}

.modal__navbar {
  display: flex;
  flex-direction: column;
}

.modal__navbar-link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
}

.menu__modal-title {
  font-family: sans-serif;
  color: #fff;
  text-align: left;
  font-size: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 87, 90, 0.493);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'MuseoSansCyrl';
  display: none;
}

.modal__block {
  background-color: #fff;
  padding: 30px;
  max-width: 600px;
  margin: 30px;
  position: relative;
}

.modal__image {
  max-width: 200px;
  border: 1px solid #ccc;
  margin-right: 15px;
  border-radius: 5px;
}

.modal__header {
  margin-bottom: 15px;
  font-family: 'Natasha';
}

.modal__header-item {
  margin-bottom: 15px;
  font-family: 'Natasha';
  margin-top: 7px;
}

.modal__content {
  display: flex;
}

.modal__description p {
  margin-top: 10px;
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: transparent;
  border-color: transparent;
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
}

.modal__close:hover {
  color: #ffaa1a;
}

.is-open {
  display: flex;
}

/*new*/

#section2 {
  /*background: #fff;*/
  height: 100vh;
  position: relative;
  /*z-index: 1;*/
}

#section1 {
  height: 100vh;
  position: relative;
}

/*#section2 .container {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  height: 100%;*/
/*}*/

#section0 {
  height: 100vh;
  /*position: sticky;*/
  /*top: 0;*/
}

/*#section0 {*/
/*  position: relative;*/
/*}*/

.svg-avatar {
  position: absolute;
  top: 46%;
  left: 51%;
  transform: translate(-47%, -55%);
}

.preview__text-block_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  /*overflow: hidden;*/
}

.round,
.round2 {
  width: 500px;
  height: 500px;
  border: 2px solid #FFAA1A;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -700px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}

.round2 {
  left: initial;
  right: -700px;
}

.round-inside {
  width: 450px;
  height: 450px;
  border: 2px solid #FFAA1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-inside > div {
  width: 400px;
  height: 400px;
}

.round-inside > div > div {
  width: 350px;
  height: 350px;
}

.round-inside > div > div > div {
  width: 300px;
  height: 300px;
}

.preview-title {
  padding-top: 5px;
}

.preview-title div,
.preview-subtitle div {
  display: inline-block;
}

.blob-btn,
.animating-btn {
  /*$ numOfBlobs: 4;*/
  z-index: 1;
  position: relative;
  padding: 15px 46px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #ffaa1a;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
}

.blob-btn::before,
.animating-btn::before,
.bubble-link::before {
   content: "";
   z-index: 1;
   position: absolute;
   left: -2px;
   top: -2px;
   width: 100%;
   height: 100%;
   border: 2px solid #ffaa1a;
   border-radius:30px;
 }

.blob-btn::after,
.animating-btn::after,
.bubble-link::after {
   content: "";
   z-index: -2;
   position: absolute;
   left: 3px;
   top: 3px;
   width: 100%;
   height: 100%;
   transition: all 0.3s 0.2s;
   border-radius: 30px;
 }

.blob-btn:hover,
.animating-btn:hover,
.bubble-link:hover{
  color: #fff;
  border-radius: 30px;
}

.blob-btn:hover::after,
.animating-btn:hover::after,
.bubble-link::after {
   transition: all 0.3s;
   left: 0;
   top: 0;
   border-radius:30px;
}

.bubble-link::before,
.bubble-link::after {
  border: none;
}

.bubble-link svg path,
.animating-btn svg path {
  transition: all 0.3s;
}

.bubble-link:hover svg path,
.animating-btn:hover svg path {
  fill: #fff;
  transition: all 0.3s;
}

.blob-btn__inner {
   z-index: -1;
   overflow: hidden;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   border-radius: 30px;
   background: #fff;
 }

.blob-btn__blobs {
   position: relative;
   display: block;
   height: 100%;
   filter: url('#goo');
 }

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #ffaa1a;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}


.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob,
.animating-btn:hover .blob-btn__blob,
.bubble-link:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

.preview-button {
  text-align: center;
  margin-top: 10px;
  animation: ask 1.2s ease-in-out infinite;
}

@keyframes ask {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

.preloader {
  /*background-image: radial-gradient(circle, #000000, #1f1112, #341b18, #492719, #593717, #5b3d14, #5c4311, #5c490e, #55430b, #4e3d07, #483704, #413100);*/
  background-image: radial-gradient(circle, #e38f00, #d8653b, #b54a54, #823e5a, #4e344b, #52384e, #563c50, #5a4053, #975668, #d07368, #f69e5c, #ffd554);
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.preloader .container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 100px auto;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: daylight 15s ease infinite;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, .3), inset 0 0 0 15px rgba(0, 0, 0, .05), inset 0 0 0 30px rgba(0, 0, 0, .05), inset 0 0 0 45px rgba(0, 0, 0, .05), inset 0 0 0 60px rgba(0, 0, 0, .05), inset 0 0 0 75px rgba(0, 0, 0, .05), inset 0 0 0 90px rgba(0, 0, 0, .05);
}
.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: linear-gradient(to bottom, #fecf4e 1%, #a62a44 50%, #310441 100%);
  border-radius: 50%;
  transform: rotate(-15deg) translate(-35%, -55%);
}

@supports not (clip-path: inset(50% 0 0 0)) {
  .ring-before, .ring-after, .ring-bigger-before, .ring-bigger-after {
    display: none;
  }
}

.ring-before, .ring-after, .ring-bigger-before, .ring-bigger-after {
  content: "";
  width: 126px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(248, 197, 77, .8);
  position: absolute;
  top: 125px;
  left: 84px;
  transform: skew(-54deg);
}

.ring-bigger-before, .ring-bigger-after {
  transform: skew(-54deg) scale(1.3);
  border-color: #d3bc68;
}

.ring-before, .ring-bigger-before {
  z-index: 3;
  clip-path: inset(50% 0 0 0);
}

.ring-after, .ring-bigger-after {
  z-index: 1;
  clip-path: inset(0 0 50% 0);
}

.sub-planet {
  position: absolute;
  top: 24%;
  left: 75%;
  z-index: 4;
  width: 35px;
  height: 35px;
  background: linear-gradient(to bottom, #70a27d 1%, #4552a1 50%, #371a6a 100%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.orbit {
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.orbit-1 {
  animation: orbit-1 5s linear infinite;
}

@keyframes orbit-1 {
  from {
    transform: rotate(0deg) translateX(65px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(65px) rotate(-360deg);
  }
}

.orbit-2 {
  animation: orbit-2 10s linear infinite;
}

@keyframes orbit-2 {
  from {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}

.orbit-3 {
  animation: orbit-3 15s linear infinite;
}

@keyframes orbit-3 {
  from {
    transform: rotate(0deg) translateX(95px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(95px) rotate(-360deg);
  }
}

.orbit-4 {
  animation: orbit-4 20s linear infinite;
}

@keyframes orbit-4 {
  from {
    transform: rotate(0deg) translateX(110px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(110px) rotate(-360deg);
  }
}

.orbit-5 {
  animation: orbit-5 25s linear infinite;
}

@keyframes orbit-5 {
  from {
    transform: rotate(0deg) translateX(125px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(125px) rotate(-360deg);
  }
}

.orbit-6 {
  animation: orbit-6 30s linear infinite;
}

@keyframes orbit-6 {
  from {
    transform: rotate(0deg) translateX(140px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(140px) rotate(-360deg);
  }
}

.cloud {
  background: #f1f1f1;
  width: 100px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  bottom: -5px;
  box-shadow: 0 0 40px rgba(0, 0, 0, .1);
}

.cloud:before, .cloud:after {
  content: "";
  background: #f1f1f1;
  border-radius: 50%;
  position: absolute;
}

.cloud:before {
  width: 50px;
  height: 50px;
  bottom: 2px;
  left: 5px;
}

.cloud:after {
  width: 40px;
  height: 40px;
  bottom: 2px;
  right: 15px;
}

.cloud-group-1, .cloud-group-2, .cloud-group-3 {
  position: absolute;
  bottom: 0;
  width: 211px;
  height: 100px;
  opacity: 0.2;
}

.cloud-group-1 {
  bottom: -5px;
}

.cloud-group-2 {
  transform: scale(2);
  bottom: 20px;
  left: -50px;
}

.cloud-group-3 {
  transform: scale(3);
  bottom: 100px;
  left: -24px;
}

.cloud-2 {
  left: 10px;
}

.cloud-3 {
  right: 10px;
}

.cloud-4 {
  right: 184px;
  bottom: 0;
}

.cloud-5 {
  right: 24px;
  bottom: 12px;
}

.cloud-6 {
  right: -45px;
  bottom: 9px;
}

.star {
  position: absolute;
  left: 0;
  top: 50px;
  width: 1px;
  height: 1px;
  background-color: white;
  animation: shooting 5s linear infinite;
}

.star:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  right: 1px;
  top: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, .4) 100%);
}

.star-2 {
  top: 100px;
  animation: shooting 8s 1s linear infinite;
}

.star-3 {
  top: 250px;
  animation: shooting 3s 2s linear infinite;
}

@keyframes daylight {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shooting {
  from {
    left: -100px;
  }
  to {
    left: calc(100% + 100px);
  }
}

.section-panel__wrapper {
  position: relative;
}

.panel2:not(:first-child) {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
}
.panel2:not(:first-child) {
  opacity: 0 ;
}

/*#best-works,*/
/*#sites,*/
/*#react,*/
/*#js-services,*/
/*#games {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  background: #fff;*/
/*}*/

#skills {
  height: 100vh;
  position: relative;
  /*z-index: 1;*/
  /*background: #fff;*/
}

.skills {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 40px 170px;
  margin-top: 65px;
}

#skills .container {
  width: 1340px;
}

/*.skills__item:nth-child(1),*/
/*.skills__item:nth-child(3),*/
/*!*.skills__item:nth-child(5),*!*/
/*.skills__item:nth-child(6),*/
/*!*.skills__item:nth-child(7),*!*/
/*.skills__item:nth-child(8) {*/
/*  animation:*/
/*          skill1 3s 1,*/
/*          float 2.5s 3s infinite;*/
/*}*/

/*.skills__item:nth-child(2),*/
/*.skills__item:nth-child(4)*/
/* {*/
/*  animation:*/
/*          skill1 3s 1,*/
/*          float2 2.5s 3s infinite;*/
/*}*/

/*.skills__item:nth-child(5),*/
/*.skills__item:nth-child(7)*/
/*{*/
/*  animation:*/
/*          skill1 3s 1,*/
/*          float3 2.5s 3s infinite;*/
/*}*/

/*.skills__item:nth-child(9),*/
/*.skills__item:nth-child(10),*/
/*.skills__item:nth-child(11)*/
/*{*/
/*  animation:*/
/*          skill1 3s 1,*/
/*          float4 2.5s 3s infinite;*/
/*}*/

@keyframes skill1 {
  0% {
    transform: translate(0,0px);
  }

  100% {
    transform: translate(0,-50px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translatey(-50px);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translatey(-30px);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translatey(-60px);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translatey(-70px);
  }
}

/*.panel_animation2 {*/
/*  height: 100vh;*/
/*  position: relative;*/

/*  height: inherit;*/
/*  width: 100%;*/
/*}*/

/*.panel_animation__color {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100vh;*/
/*  background: url(../img/bg5.jpg) no-repeat center top / cover;*/
/*  z-index: 1;*/
/*}*/

/*.panel_animation__color.blue {*/
/*  background-color: blue;*/
/*}*/

/*.panel_animation__color.red {*/
/*  background-color: red;*/
/*}*/

/*.wrapper section {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/

/*.section-wrapper {*/
/*  height: 100vh !important;*/
/*  width: 500vw !important;*/
/*  display: flex;*/
/*}*/

/*.section-wrapper section {*/
/*  height: 100%;*/
/*  width: 100vw;*/
/*}*/

.works-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-decoration: none;
  margin-top: 20px;
}

.work-tab {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffaa1a;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.swiper {
  padding-bottom: 75px !important;
}

.swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffaa1a;
  margin-left: 10px;
  cursor: pointer;
  background: transparent;
  opacity: 1;
}

.swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background-color: #ffaa1a;
  opacity: 0;
  transition: 300ms;
}

.swiper-pagination-bullet:hover:after {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: transparent;
}

.swiper-pagination-bullet-active:after {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

/*#best-works,*/
/*#sites,*/
/*#react,*/
/*#js-services,*/
/*#games {*/
/*  background: url(../img/bg13.jpg) no-repeat center top / cover;*/
/*}*/

#section0 svg a svg g path {
  transition: 0.35s;
}

#section0 svg a:hover svg g path{
  transform: scale(1.1);
  transition: 0.35s;
}

.bubble-link {
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 47%;
  left: 10%;
}

.bubble-link:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
  top: 5%;
}

.bubble-link:last-child {
  right: 10%;
  left: initial;
  transform: translateX(-20%);
}

.wrapper {
  flex: 1 0 auto;
  overflow: hidden;
}



.about-me__item {
  display: none;
}

.about-me__item._is-open {
  display: block;
  height: 100vh;
}

.connect-btn {
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0;
  margin: 0;
}

.connect-btn svg {
  margin-right: 0;
}


.connect-btn:first-child svg {
  margin-right: 2px;
}

.modal__contacts .conection__contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.title__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.title__wrapper svg {
  cursor: pointer;
}

.skills__item-wrapper {
  position: relative;
  transition: 0.3s ease-in-out;
}

.skills__item-wrapper:hover {
  transform: scale(1.1); /* увеличение круга */
  opacity: 0.7;
}

.subskills-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: 1s;
}

.subskills {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgb(247, 198, 47) 50%, rgb(255, 255, 255));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.subskills__text {
  font-size: 12px;
  margin-top: 5px;
}

.skills__item-wrapper {
  cursor: pointer;
}

.skills__item-wrapper.shattered .skills__item {
  animation: shatter 1s forwards;
  transform: rotate(360deg);
}

.skills__item-wrapper.shattered .subskills-wrapper {
  z-index: 1;
  opacity: 1;
  transition: 1s ease-in-out;
  transform: rotate(360deg);
}

/*.shattered {*/
/*  animation: shatter 1s forwards;*/
/*}*/

@keyframes shatter {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2) rotate(180deg);
    opacity: 0;
  }
}

@keyframes reverse-shatter {
  0% {
    transform: scale(2) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.reverse-shatter-animation {
  animation: reverse-shatter 1s forwards;
}

.skills__item-wrapper div {
  pointer-events: none;
  text-align: center;
}

.no-click {
  pointer-events: none;
}

.modal__submenu {
  display: none;
}

/*#games {*/
/*  display: none;*/
/*}*/

#react .arrow-slider-arrow {
  display: none;
}

.section-wrapper {
  height: 90vh;
  width: 400vw;
  display: flex;
}

.section-wrapper section {
  padding-top: 100px;
  /*padding: 100px 0;*/
  height: 100%;
  width: 100vw;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1); /* увеличение круга */
    opacity: 0.7; /* уменьшение прозрачности */
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse {
  animation: pulse 2s;
}

.no-click.pulse {
  animation: none;
}

.works__items-title {
  font-size: 36px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Irish Grover', sans-serif;
  text-align: center;
  transition: 0.35s ease-in-out;
}

.swiper-button-disabled {
  cursor: initial;

  svg {
    opacity: 0.5;
  }
}

.swiper-button-disabled:hover {
  background: transparent;

  svg path {
    fill: #888886;
  }
}

/*.works__items:hover:after {*/
/*  content: '';*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  inset: 0;*/
/*  display: block;*/
/*  position: absolute;*/
/*  z-index: 1;*/
/*  background: rgba(0, 0, 0, 0.6);*/
/*}*/

.works__items:hover {
  .works__items-title {
    scale: 1.05;
    z-index: 99;
  }
}

.section-wrapper-links {
  display: none;
}

.arrow-slider-title-wrapper_btn[data-slider-id="4"] {
  opacity: 0;
  z-index: -9;
}

.fourth:has(~ .active) .arrow-slider-arrow {
  display: none;
}

/*.spinner {*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  border: 5px solid #cccccc;*/
/*  border-top-color: #1a1a1a;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*@keyframes spin {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/
/*  100% {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/
