@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;400;700&display=swap");
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #000;
  font-family: "";
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

img {
  display: block;
  width: 100%;
}

body {
  font-family: "Nunito", sans-serif;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif;
}

h2 {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 40px;
  color: #fff;
  position: relative;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #44d62c, #ffff00);
}

@media screen and (max-width: 768px) {
  h1, h2 {
    text-align: center;
  }
  h2 {
    font-size: 30px;
  }
}
.highlight-blue {
  background: linear-gradient(45deg, #44d62c, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.highlight-yellow {
  background: linear-gradient(45deg, #44d62c, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.header {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  z-index: 999999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 80px;
}
.header__menu {
  flex: 1;
  padding-left: 50px;
  max-width: 500px;
}
.header__menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  justify-content: space-between;
  max-width: 700px;
  margin: auto;
}
.header__menu ul li {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.header__menu ul li a {
  color: #fff;
  text-decoration: none;
}
.header__menu ul li:hover {
  background: linear-gradient(45deg, #44d62c, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu-mobile-burger {
  display: none;
}
.header__menu-mobile-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__menu-mobile-burger {
    display: block;
  }
  .header__menu-mobile-burger .burger-btn {
    flex-direction: column;
    align-items: center;
    max-width: 30px;
    display: flex;
  }
  .header__menu-mobile-burger .burger-btn span.burger-line {
    display: block;
    margin-bottom: 4px;
    background-color: #fff;
    height: 2px;
    width: 100%;
    transition: all 0.25s ease;
  }
  .header__menu-mobile-burger .burger-btn.opened .burger-line.top {
    margin: 0;
    transform: rotate(45deg) translate(7px, 8px);
  }
  .header__menu-mobile-burger .burger-btn.opened .burger-line.middle {
    width: 0;
  }
  .header__menu-mobile-burger .burger-btn.opened .burger-line.bottom {
    margin: 0;
    transform: rotate(135deg) translate(2px, 0);
  }
  .header__menu-mobile-burger .burger-btn.opened .burger-text {
    transform: translateY(100%);
    opacity: 0;
  }
  .header__menu-mobile-wrapper {
    display: none;
    position: absolute;
    height: calc(100vh - 105px);
    width: 100vw;
    background: #000;
    transform: translateX(-2rem);
    overflow: hidden;
    top: 105px;
    z-index: 99;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
  }
  .header__menu-mobile-wrapper ul {
    list-style: none;
  }
  .header__menu-mobile-wrapper ul li {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .header__menu-mobile-wrapper ul li a {
    color: #fff;
    text-decoration: none;
  }
  .header .header__menu-mobile-burger.active + .header__menu-mobile-wrapper {
    display: flex;
  }
}

.hero {
  padding: 80px 0;
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__content {
  padding-right: 50px;
  max-width: 600px;
}
.hero__content-title {
  background: linear-gradient(67.86deg, #44d62c -38.38%, #ffff00 71.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-size: 55px;
  padding-bottom: 30px;
}
.hero__content-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 80%;
  margin: 30px auto;
}
.hero__content-buttons .btn {
  max-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background: linear-gradient(45deg, #44d62c, #ffff00);
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.hero__content p {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 200;
}
.hero__content p .highlight-yellow {
  font-size: 30px;
  font-weight: 700;
}
.hero__content p .highlight-blue {
  font-weight: 700;
}
.hero__photo {
  max-width: 500px;
  width: 100%;
  height: 100%;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  /* @media screen and (min-width: 1200px) {

  &:before {
      content: "";
      position: absolute;
      inset: -8px;
      padding: 10px;
      border-radius: 50%; 
      background: conic-gradient(
              #e3f30a ,
              #0000 30deg 120deg,
              #00f8d3 150deg 180deg,
              #0000 210deg 300deg,
              #e3f30a 330deg
          );
      -webkit-mask:
          linear-gradient(#000 0 0) content-box,
          linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
              mask-composite: intersect
  }


      &:after {
          content: "";
          position: absolute;
          inset: -70px;
          background:
            radial-gradient(200px at left  400px top 150px,#e3f30a 100%,#0000),
            radial-gradient(200px at right 400px bottom 150px,#00f8d3 100%,#0000);
          filter: blur(120px);
          opacity: .5;
        }

      &:before,
      &:after {
          transition:.5s, 99999s 99999s transform;
        }
      &:hover {
          box-shadow: 0 0 0 1px #666;
        }

        &:hover:before,
        &:hover:after {
          transform: rotate(36000deg);
          transition: .5s,600s linear transform;
        }
        &:before {
          background-color: #222;
            border: 2px solid #333;
        }
  } */
}
.hero__photo img {
  border-radius: 50%;
  border: 2px solid deeppink;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
}
.hero__photo p {
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 20px 0 50px;
  }
  .hero .container {
    flex-direction: column-reverse;
  }
  .hero__content {
    padding: 50px 0 0;
  }
  .hero__content-title {
    font-size: 40px;
  }
  .hero__content p {
    font-size: 20px;
  }
  .hero__content p span {
    font-size: 26px;
  }
  .hero__content-buttons {
    flex-direction: column;
    margin-top: 0;
  }
  .hero__content-buttons .download-cv {
    transform: scale(0.75);
  }
  .hero__content-buttons .btn {
    max-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    width: 80%;
    margin-top: 20px;
  }
  .hero__photo {
    max-width: 300px;
  }
}

.download-cv .curcle {
  border-radius: 50%;
  height: 170px;
  width: 170px;
  position: relative;
}
.download-cv img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-42%) translateY(-50%);
}
.download-cv .download-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: animate 20s linear infinite;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.download-cv .download-text p {
  letter-spacing: 4px;
  font-size: 21px;
  font-family: "Roboto Condensed", sans-serif;
}
.download-cv .download-text p span {
  position: absolute;
  left: 50%;
  /* font-size: 1.2em; */
  text-transform: uppercase;
  transform-origin: 0 85px;
  padding: 3px;
}

.skills {
  padding: 100px 0;
  color: #fff;
}
.skills__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  column-gap: 20px;
  row-gap: 70px;
}
@media screen and (max-width: 1150px) {
  .skills__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .skills__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.skills__wrapper-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.skills__wrapper-item-progress {
  /* position: relative;
  width: 150px;
  height: 150px; */
}
.skills__wrapper-item-progress h3 {
  text-align: center;
  padding-top: 10px;
}
.skills__wrapper-item-img {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills__wrapper-item-img img {
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .skills__wrapper-item-img {
    width: 100px;
    height: 100px;
  }
  .skills__wrapper-item-img img {
    max-width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .skills {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .skills__wrapper {
    row-gap: 30px;
  }
  .skills__wrapper-item-progress h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .skills__wrapper-item-img {
    width: 70px;
    height: 70px;
  }
  .skills__wrapper-item-img img {
    max-width: 50px;
  }
}

.github {
  padding: 50px 0;
  color: #fff;
}
.github__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  align-items: center;
}
.github__logo {
  text-align: center;
}
.github__logo img {
  max-width: 200px;
}
.github__logo a {
  color: #fff;
}
.github__activity img {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .github__wrap {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .github__logo img {
    max-width: 150px;
  }
  .github__activity img {
    padding: 0;
  }
}

.experience {
  padding: 50px 0;
  color: #fff;
}
.experience__item {
  padding: 30px 0;
}
.experience__item-company {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.experience__item-company-logo {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.experience__item-company-logo img {
  max-width: 100px;
}
.experience__item-company-name {
  text-align: end;
}
.experience__item-company-time {
  padding-bottom: 30px;
}
.experience__item-company-time h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.experience__item-summary {
  font-size: 24px;
  padding-bottom: 30px;
}
.experience__item-details {
  display: flex;
}
.experience__item-details-left {
  max-width: 500px;
  width: 100%;
}
.experience__item-details-left ul {
  margin-left: 30px;
}
.experience__item-details-left ul li a {
  color: #fff;
}
.experience__item-skills {
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .experience__item-skills {
    max-width: 500px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .experience__item-details {
    flex-direction: column-reverse;
  }
  .experience__item-details-revert {
    flex-direction: column;
  }
  .experience__item-details-left {
    max-width: 100%;
  }
  .experience__item-details-left h3 {
    text-align: center;
    padding-bottom: 15px;
  }
  .experience__item-skills {
    max-width: 90%;
  }
  .experience__item-summary p {
    font-size: 20px;
  }
  .experience .skill-list {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .experience__item-company {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
  }
  .experience__item-company-info {
    padding-bottom: 10px;
  }
  .experience__item-company-name {
    text-align: start;
  }
  .experience__item-company-logo {
    display: block;
  }
}

.experience__item-skills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.experience__item-skills-hard {
  font-style: italic;
  padding: 20px;
}

.skill-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .skill-list {
    max-width: 400px;
  }
}

.skill-slider .inner {
  display: flex;
  width: fit-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: var(--direction);
  animation-duration: var(--duration);
}

.skill-item {
  display: flex;
  text-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  color: #000;
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2), 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
}
.skill-item span {
  font-size: 1.2rem;
  background: linear-gradient(45deg, #44d62c, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.fade {
  pointer-events: none;
  background: linear-gradient(90deg, #000, transparent 30%, transparent 70%, #000);
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.projects {
  padding: 50px 0;
  color: #fff;
}
.projects .project {
  display: flex;
  padding: 30px 0;
}
.projects .project-preview {
  flex-basis: 50%;
}
.projects .project-preview img {
  border: 2px solid;
  border-image: linear-gradient(45deg, purple, orange) 1;
}
.projects .project-info {
  flex-basis: 50%;
  padding-left: 50px;
}
.projects .project-info-title {
  padding-bottom: 10px;
}
.projects .project-info-details ul {
  padding-left: 30px;
}
.projects .project-info-details-btn {
  margin-top: 30px;
}
.projects .project-info-details-btn a {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(45deg, purple, orange);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .projects .project {
    flex-direction: column;
  }
  .projects .project-preview {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    text-align: center;
    align-items: center;
  }
  .projects .project-preview img {
    max-width: 400px;
  }
  .projects .project-info {
    padding: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .projects .project-info-title {
    text-align: center;
  }
  .projects .project-info-details {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    width: 100%;
  }
  .projects .project-info-details-btn {
    margin-left: 20px;
  }
  .projects .project-info-details-btn a {
    text-wrap: nowrap;
  }
  .projects .project:not(:last-child) {
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 500px) {
  .projects .project-info-details {
    flex-direction: column;
  }
  .projects .project-info-details-btn {
    text-align: center;
    margin-left: 0;
  }
}

.education {
  color: #fff;
}
.education .container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .education .container {
    flex-direction: column;
  }
}
.education__university {
  flex-basis: 45%;
}
.education__university-item {
  padding-bottom: 50px;
}
.education__courses {
  flex-basis: 55%;
}
.education__courses-item img {
  max-width: 70%;
  margin: auto;
}
.education__courses-item-name {
  padding: 30px 60px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 7px;
  position: relative;
  cursor: pointer;
}
.education__courses-item-name:before {
  content: "";
  position: absolute;
  background-image: url("../../img/icon-study.png");
  width: 30px;
  height: 30px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.education__courses-item-name:after {
  content: "";
  position: absolute;
  background-image: url("../../img/arrow.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all 0.3s;
}
.education__courses-item-name.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.education__courses-item-certificate {
  padding: 30px 0;
  display: none;
}
.education__courses-item-certificate p {
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .education__courses-item img {
    max-width: 100%;
  }
}

.soft-skills {
  padding: 50px 0;
}
.soft-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.soft-skills-item {
  padding: 10px 20px;
}
.soft-skills-item span {
  font-size: 1.2rem;
  background: linear-gradient(45deg, #44d62c, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.languages {
  color: #fff !important;
}
.languages-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .languages-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.languages-item {
  flex-basis: 20%;
  width: 100%;
  text-align: center;
  margin: 10px;
  min-width: 100px;
  max-width: 250px;
}
.languages-item-progress {
  padding: 6px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.languages-item-progress-bar {
  height: 18px;
  border-radius: 30px;
  background: linear-gradient(45deg, #44d62c, #ffff00);
}
.languages-item-progress-20 {
  width: 20%;
}
.languages-item-progress-60 {
  width: 60%;
}
.languages-item-progress-80 {
  width: 80%;
}
.languages-item-progress-90 {
  width: 90%;
}
.languages-item-progress-100 {
  width: 100%;
}

.hobbies {
  color: #fff !important;
  padding: 50px 0 0;
}
.hobbies-wrap {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .hobbies-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .hobbies-wrap {
    grid-template-columns: 1fr;
  }
}
.hobbies-item {
  margin: 20px;
}
.hobbies-item-img {
  /* background-color: rgba($color: #fff, $alpha: .6); */
  /* background: linear-gradient(45deg, purple, orange); */
  background: linear-gradient(45deg, #44d62c, #ffff00);
  border-radius: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  margin-bottom: 10px;
}
.hobbies-item-img img {
  max-width: 60%;
}
.hobbies-item p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hobbies-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .hobbies-item-img {
    max-width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .hobbies-item-img {
    max-width: 100px;
  }
}

.contact {
  padding: 50px 0;
  background: linear-gradient(45deg, #44d62c, #ffff00);
}
.contact .container {
  max-width: 600px;
}
.contact-descr {
  margin-bottom: 50px;
  font-size: 24px;
  text-align: center;
  color: #000;
}
.contact h1 {
  text-align: center;
  color: #000;
  font-size: 55px;
  padding-bottom: 30px;
}
.contact a {
  color: #fff;
}
.contact-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}
.contact .btn {
  max-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background: #000;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .contact .contact-cta {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
  .contact .contact-cta .download-cv {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
}

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