@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Roboto", sans-serif;
  color: #c7c7c7;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1c1c1c;
}

.header {
  width: 100%;
  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;
  position: fixed;
}

.header nav {
  width: 50%;
  padding: 0px 40px;
  height: 50px;
  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;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #000;
}

.header nav:hover {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header nav ul a {
  text-decoration: none;
  margin: 0px 20px;
  color: #272727;
}

.header nav ul a li {
  list-style: none;
}

.header nav .menu {
  position: absolute;
  top: 45px;
}

.header nav .menu ion-icon {
  color: azure;
  font-size: 3rem;
  -webkit-animation: anime 0.6s linear infinite;
          animation: anime 0.6s linear infinite;
}

@-webkit-keyframes anime {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes anime {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.home {
  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;
  padding: 150px 50px;
}

.home .infos {
  width: 50%;
}

.home .infos .biobox {
  padding: 15px;
  border-radius: 15px;
  -webkit-box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
          box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
  width: 90%;
  background: linear-gradient(320deg, #2a2a2a, #141414);
}

.home .infos .biobox h1 {
  font-size: 2.5rem;
  color: #8d8d8d;
}

.home .infos .biobox p {
  font-size: 1.2rem;
  color: #8d8d8d;
}

.home .infos .resumebox {
  background: linear-gradient(320deg, #2a2a2a, #141414);
  padding: 20px;
  -webkit-box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
          box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
  margin: 20px 0px;
  border-radius: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.home .infos .resumebox p {
  font-size: 1.3rem;
  color: #bcbcbc;
  margin-bottom: 30px;
}

.home .infos .resumebox .btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
}

.home .infos .resumebox .btnbox a {
  padding: 10px;
  width: 100px;
  margin-right: 10px;
  text-align: center;
  text-decoration: none;
  color: #919191;
  font-size: 1.3rem;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
          box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
}

.home .infos .resumebox .btnbox a:hover {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home .imagebox {
  width: 50%;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.home .imagebox .homebox {
  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;
  width: 50%;
}

.home .imagebox .homebox .image {
  width: 90%;
  margin-bottom: 20px;
}

.home .imagebox .homebox .image img {
  width: 100%;
  border-radius: 50%;
  border: 10px solid rgba(67, 67, 67, 0);
  -webkit-box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
          box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
  position: relative;
}

.home .imagebox .homebox .social {
  border-radius: 20px;
  -webkit-box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
          box-shadow: #5b5b5b -2px -2px 5px -2px, black 2px 2px 5px -2px;
  padding: 15px;
  background: linear-gradient(320deg, #2a2a2a, #141414);
}

.home .imagebox .homebox .social p {
  font-size: 1.1rem;
  text-align: center;
}

.home .imagebox .homebox .social .btnbox {
  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;
  margin-top: 10px;
}

.home .imagebox .homebox .social .btnbox a {
  padding: 10px;
  border-radius: 5px;
  margin-right: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: #050505 3px 3px 5px -2px, #373737 -3px -3px 5px -2px;
          box-shadow: #050505 3px 3px 5px -2px, #373737 -3px -3px 5px -2px;
  outline: none;
}

.home .imagebox .homebox .social .btnbox a:hover {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home .imagebox .homebox .social .btnbox ion-icon {
  font-size: 1.5rem;
  color: #aeaeae;
}

.services h1 {
  font-size: larger;
  text-align: center;
  font-size: 2rem;
  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;
  margin-bottom: 25px;
}

.services h1 ion-icon {
  margin: 0px 10px;
  font-size: 2.5rem;
  z-index: -1;
}

.services .serviceroom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services .serviceroom .servicebox {
  margin: 10px;
  width: 30%;
  min-width: 275px;
  max-width: 650px;
  background: linear-gradient(330deg, rgba(47, 47, 47, 0.275), rgba(0, 0, 0, 0.568));
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: #343434 -3px -3px 10px -2px, black 3px 3px 10px -2px;
          box-shadow: #343434 -3px -3px 10px -2px, black 3px 3px 10px -2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.services .serviceroom .servicebox:hover {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.services .serviceroom .servicebox .logo ion-icon {
  color: #cca83a;
  font-size: 2rem;
  padding: 10px;
  border-radius: 10px;
}

.services .serviceroom .servicebox h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 10px 0px;
  color: #acacac;
}

.services .serviceroom .servicebox p {
  font-size: 1.1rem;
  color: #939393;
  line-height: 25px;
}

.skills {
  padding-bottom: 100px;
}

.skills h1 {
  font-size: larger;
  text-align: center;
  font-size: 2rem;
  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;
  margin-top: 35px;
}

.skills h1 ion-icon {
  margin: 0px 10px;
  font-size: 2.5rem;
  z-index: -1;
}

.skills .skillroom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skills .skillroom .skillbox {
  margin: 0px 10px;
  border-bottom: 1px solid #848484;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-radius: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 350px;
}

.skills .skillroom .skillbox .percentbox {
  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;
  padding: 5px;
  width: 50px;
  height: 50px;
  border: 3px solid #8b8b8b;
  border-radius: 50%;
}

.skills .skillroom .skillbox .line {
  width: 2px;
  background: #959595;
}

.skills .skillroom .skillbox ion-icon {
  border-top: 1px solid whitesmoke;
  border-radius: 50%;
  padding: 10px;
  height: 40px;
  width: 40px;
  font-size: 40px;
}

.skills .skillroom .a {
  -webkit-animation: a 0.9s alternate linear infinite;
          animation: a 0.9s alternate linear infinite;
}

.skills .skillroom .b {
  -webkit-animation: b 0.9s alternate linear infinite;
          animation: b 0.9s alternate linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.skills .skillroom .c {
  -webkit-animation: c 0.9s alternate linear infinite;
          animation: c 0.9s alternate linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.skills .skillroom .d {
  -webkit-animation: d 0.9s alternate linear infinite;
          animation: d 0.9s alternate linear infinite;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.skills .skillroom .e {
  -webkit-animation: e 0.9s alternate linear infinite;
          animation: e 0.9s alternate linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.skills .skillroom .f {
  -webkit-animation: f 0.9s alternate linear infinite;
          animation: f 0.9s alternate linear infinite;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes a {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes b {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes b {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes c {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes c {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes d {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes d {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes e {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes e {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes f {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes f {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@media only screen and (max-width: 800px) {
  .header nav {
    width: 100%;
  }
  .home {
    padding: 50px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home .infos {
    width: 100%;
    margin: 20px 0px;
    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;
  }
  .home .infos .biobox {
    width: 100%;
  }
  .home .infos .biobox h1 {
    margin-bottom: 20px;
  }
  .home .infos .resumebox {
    width: 100%;
  }
  .home .infos .resumebox p {
    text-align: center;
  }
  .home .infos .resumebox .btnbox {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .home .imagebox {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .imagebox .homebox {
    width: 100%;
  }
  .home .imagebox .homebox .image {
    width: 100%;
  }
  .home .imagebox .homebox .image img {
    width: 100%;
  }
  .home .imagebox .homebox .social {
    width: 100%;
  }
  .home .imagebox .homebox .social p {
    margin-bottom: 30px;
  }
  .home .imagebox .homebox .social .btnbox {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .skills {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .skills .skillroom {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
/*# sourceMappingURL=style.css.map */