* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

html {
  font-size: 10px;
}

body {
  overflow: hidden;
}

.container {
  background: linear-gradient(225deg, #222426 25%, rgba(55, 143, 149, 0.6) 90%), url("img/bg.webp") no-repeat center center/cover;
  overflow-x: hidden;
}

.container header {
  width: 100%;
  height: 100vh;
}

.container header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95vw;
  margin: 0 auto;
}

.container header nav .logo {
  width: 30%;
}

.container header nav .logo a h3 {
  padding: 25px 0 0 40px;
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Orbitron', cursive;
}

.container header nav .logo a h1 {
  color: #fff;
  padding: 0px 0 0 40px;
  margin-top: 0px;
  font-size: 4rem;
  letter-spacing: 4px;
  width: 35vw;
  font-family: 'Orbitron', cursive;
  font-weight: 600;
}

.container header nav #click {
  display: none;
}

.container header nav label {
  color: #fff;
  font-size: 3rem;
  position: absolute;
  top: 10px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 2001;
  padding: 10px;
  background: transparent;
}

.container header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  width: 60%;
  margin-left: 10%;
}

.container header nav ul li {
  list-style-type: none;
  padding: 55px 10px 40px 10px;
}

.container header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
  position: relative;
  padding: 0 10px;
  font-family: 'Bruno Ace SC', cursive;
}

.container header nav ul li a:hover {
  color: #378f95;
}

.container header nav ul li a:after {
  content: "";
  position: absolute;
  background-color: #378f95;
  height: 3px;
  width: 0%;
  left: 0;
  bottom: -10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.container header nav ul li a:hover:after {
  width: 100%;
}

.container header nav ul a.socials {
  border: 1.5px solid #fff;
  border-radius: 10px;
  height: 50px;
  width: 50px;
  position: relative;
  margin: 45px 5px 0 10px;
}

.container header nav ul a.socials i {
  font-size: 3rem;
  color: #fff;
  margin-right: -50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.container header nav ul a.socials:hover {
  background: #fff;
  -webkit-box-shadow: 0px 0px 2px 2px #fff;
  box-shadow: 0px 0px 2px 2px #fff;
}

.container header nav ul a.socials:hover i {
  color: #222426;
}

.container header .sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 100;
  padding: 0 2.5% 0 2.5%;
  background: #222426;
  border-bottom: 1px solid #fff;
}

.container header .main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  height: 80vh;
}

.container header .main-header .header-left {
  width: 68%;
  margin: auto;
  margin-left: 5vw;
}

.container header .main-header .header-left h2 {
  font-size: 4rem;
  color: #fff;
  font-weight: 600;
  padding: 2px 0 2px 0;
}

.container header .main-header .header-left h2 span {
  color: #378f95;
}

.container header .main-header .header-left .welcome p {
  font-size: 2rem;
  border: 1px solid #fff;
  width: 280px;
  padding: 10px;
  color: #222426;
  background: #fff;
  font-family: 'Orbitron', cursive;
  font-weight: 900;
}

.container header .main-header .header-left p {
  font-size: 6rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.container header .main-header .header-left .header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container header .main-header .header-left .header-box .buttonAwesome {
  padding: 25px;
  margin: 25px;
  background: #fff;
  border: 2px solid #222426;
  overflow: hidden;
  min-width: 280px;
}

.container header .main-header .header-left .header-box .buttonAwesome a {
  font-size: 2.3rem;
  color: #222426;
  font-weight: 800;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.container header .main-header .header-left .header-box .buttonAwesome a i {
  margin-left: 15px;
}

.container header .main-header .header-left .header-box .downloadButton {
  position: relative;
  padding: 25px;
  margin: 25px;
  font-size: 2.3rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #fff;
  background-color: #378f95;
  min-width: 280px;
}

.container header .main-header .header-left .header-box .downloadButton .buttonText, .container header .main-header .header-left .header-box .downloadButton .fa-download {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.container header .main-header .header-left .header-box .downloadButton .buttonText {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  font-weight: 800;
  font-family: 'Roboto', sans-serif;
}

.container header .main-header .header-left .header-box .downloadButton .fa-download {
  position: absolute;
  font-size: 3rem;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  fill: #378f95;
  color: #fff;
  overflow: hidden;
  -webkit-transform: translateX(190px);
          transform: translateX(190px);
}

.container header .main-header .header-left .header-box .downloadButton:hover {
  background: linear-gradient(135deg, #378f95 15%, white 50%, #378f95 85%);
  border: 2px solid #378f95;
}

.container header .main-header .header-left .header-box .downloadButton:hover .buttonText {
  color: transparent;
}

.container header .main-header .header-left .header-box .downloadButton:hover .fa-download {
  -webkit-transform: translateX(90px);
          transform: translateX(90px);
  color: #378f95;
  background-color: transparent;
  font-size: 3.5rem;
}

.container header .main-header .header-left .header-box .downloadButton:active {
  border: 1px solid #378f95;
}

.container header .main-header .header-right {
  height: 60vh;
  width: 30vw;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  position: relative;
}

.container header .main-header .header-right .box {
  height: 250px;
  width: 250px;
  position: absolute;
  top: 40%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*transform: rotate(-90deg) */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: block 5s infinite;
          animation: block 5s infinite;
}

@-webkit-keyframes block {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(-50deg);
            transform: rotateX(50deg) rotateY(-50deg);
  }
  25% {
    -webkit-transform: rotateX(-50deg) rotateY(-50deg);
            transform: rotateX(-50deg) rotateY(-50deg);
  }
  50% {
    -webkit-transform: rotateX(50deg) rotateY(50deg);
            transform: rotateX(50deg) rotateY(50deg);
  }
  75% {
    -webkit-transform: rotateX(-50deg) rotateY(50deg);
            transform: rotateX(-50deg) rotateY(50deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(-50deg);
            transform: rotateX(50deg) rotateY(-50deg);
  }
}

@keyframes block {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(-50deg);
            transform: rotateX(50deg) rotateY(-50deg);
  }
  25% {
    -webkit-transform: rotateX(-50deg) rotateY(-50deg);
            transform: rotateX(-50deg) rotateY(-50deg);
  }
  50% {
    -webkit-transform: rotateX(50deg) rotateY(50deg);
            transform: rotateX(50deg) rotateY(50deg);
  }
  75% {
    -webkit-transform: rotateX(-50deg) rotateY(50deg);
            transform: rotateX(-50deg) rotateY(50deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(-50deg);
            transform: rotateX(50deg) rotateY(-50deg);
  }
}

.container header .main-header .header-right .box .card {
  height: 300px;
  width: 300px;
  text-align: center;
  padding: 100px 0;
  border: 4px solid #378f95;
  font-size: 32px;
  position: absolute;
  -webkit-box-shadow: 0px 0px 10px 4px #378f95;
          box-shadow: 0px 0px 10px 4px #378f95;
}

.container header .main-header .header-right .box #left {
  right: 100px;
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
}

.container header .main-header .header-right .box #right {
  left: 150px;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}

.container header .main-header .header-right .box #top {
  bottom: 100px;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.container header .main-header .header-right .box #bottom {
  top: 150px;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.container header .main-header .header-right .box #front {
  -webkit-transform: translateZ(150px);
          transform: translateZ(150px);
}

.container header .main-header .header-right .box #back {
  -webkit-transform: translateZ(-150px);
          transform: translateZ(-150px);
}

.container header .main-header .header-right .box #shadow {
  position: absolute;
}

.container .about-container {
  width: 90vw;
  min-height: 100vh;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container .about-container .about-left {
  height: 100vh;
  width: 100vw;
  max-width: 800px;
  min-width: 600px;
  padding: 0 20px;
  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: 0 auto;
}

.container .about-container .about-left .card {
  position: relative;
  height: 350px;
  width: 350px;
  background: #808080;
  margin: 30px;
  border-radius: 20px;
  -webkit-transition: .8s ease;
  transition: .8s ease;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  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-animation: zoomIn 1s ease forwards, floatImage 2s ease-in-out infinite;
          animation: zoomIn 1s ease forwards, floatImage 2s ease-in-out infinite;
  -webkit-animation-delay: 2s, 3s;
          animation-delay: 2s, 3s;
}

@-webkit-keyframes floatImage {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes floatImage {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.container .about-container .about-left .card .border {
  position: relative;
  height: 300px;
  width: 300px;
  background: transparent;
  border-radius: 15px;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  background: rgba(34, 36, 38, 0.7);
}

.container .about-container .about-left .card .border h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-family: 'Orbitron', cursive;
  text-align: center;
}

.container .about-container .about-left .card .border .icon {
  position: absolute;
  fill: #fff;
  color: #fff;
  height: 100px;
  bottom: 10px;
  right: 0;
  width: 70px;
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.container .about-container .about-left .card .border .icon i {
  font-size: 2.5rem;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.container .about-container .about-left .card .border .icon i:hover {
  font-size: 3rem;
}

.container .about-container .about-left .card .border:hover {
  opacity: 1;
}

.container .about-container .about-left .card {
  background: url(img/portret.jpg) center center no-repeat;
  background-size: 300px;
}

.container .about-container .about-left .card:hover {
  background: url(img/portret.jpg) left center no-repeat;
  background-size: 600px;
  opacity: 0.8;
}

.container .about-container .about-right {
  width: 60%;
  margin: auto;
}

.container .about-container .about-right h3 {
  color: #fff;
  font-size: 5rem;
  padding: 50px;
  text-align: center;
}

.container .about-container .about-right h3 i {
  margin-left: 15px;
}

.container .about-container .about-right p {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}

.container .about-container .about-right .about-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 25px;
}

.container .about-container .about-right .about-categories a {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
}

.container .about-container .about-right .about-categories a:hover p {
  color: #378f95;
}

.container .about-container .about-right .about-categories a:after {
  content: "";
  position: absolute;
  background-color: #378f95;
  height: 1.5px;
  width: 0%;
  left: 0;
  bottom: -10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.container .about-container .about-right .about-categories a:hover:after {
  width: 100%;
}

.container .about-container .about-right .about-categories a#education p {
  color: #378f95;
}

.container .about-container .about-right .info .box {
  width: 70%;
  margin-top: 20px;
}

.container .about-container .about-right .info .box .info-year {
  color: #378f95;
}

.container .about-container .about-right .info .box p {
  font-size: 2rem;
  text-align: left;
}

.container .about-container .about-right .info .box p span {
  color: #378f95;
}

.container .about-container .about-right #courses-more {
  display: none;
}

.container .about-container .about-right #thesis-more {
  display: none;
}

.container .education-container {
  margin-bottom: 100px;
}

.container .education-container .education-top-text {
  color: #fff;
  font-size: 5rem;
  padding: 30px;
  text-align: center;
}

.container .education-container .education-top-text i {
  margin-left: 15px;
}

.container .education-container .education-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container .education-container .education-all .education-left {
  width: calc((100%/10)*4.5);
  text-align: right;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  text-align: left;
}

.container .education-container .education-all .education-year {
  color: #fff;
  font-weight: 800;
  margin-left: 10px;
  font-size: 2rem;
}

.container .education-container .education-all .education-place p {
  color: #fff;
  margin: 0;
  font-size: 2rem;
}

.container .education-container .education-all .education-place .more-all ul li {
  font-size: 2rem;
  color: #378f95;
}

.container .education-container .education-all .education-place #more-left {
  cursor: pointer;
  text-decoration: underline;
}

.container .education-container .education-all .education-middle {
  position: relative;
  width: calc((100%/10));
}

.container .education-container .education-all .dot1 {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #fff;
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 2;
}

.container .education-container .education-all .dot2 {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #fff;
  position: absolute;
  top: 145px;
  left: 50%;
  z-index: 2;
}

.container .education-container .education-all .line {
  width: 1px;
  height: 120px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #fff;
  position: absolute;
  top: 30px;
  left: 55%;
  z-index: 1;
}

.container .education-container .education-all .education-right {
  width: calc((100%/10)*4.5);
  margin-top: 145px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container .education-container .education-all .education-year {
  color: #fff;
  margin-right: 10px;
  font-weight: 800;
}

.container .education-container .education-all .education-place p {
  color: #fff;
  margin: 0;
  font-size: 2rem;
}

.container .education-container .education-all .education-place #more-right {
  cursor: pointer;
  text-decoration: underline;
}

.container .projects-container {
  background: #222426;
  width: 100vw;
  margin-top: 75px;
  min-height: 100vh;
}

.container .projects-container h3 {
  color: #fff;
  font-size: 5rem;
  padding: 30px;
  text-align: center;
}

.container .projects-container h3 i {
  margin-left: 15px;
}

.container .projects-container p {
  font-size: 2rem;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 40px;
}

.container .projects-container .project-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .projects-container .project-buttons button {
  height: 70px;
  background: #444648;
  border: 1px solid #fff;
  width: calc(65%/3);
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.container .projects-container .project-buttons button:hover {
  background: #222426;
}

.container .projects-container .project-buttons button#leftButton {
  background: #222426;
}

.container .projects-container #set2 {
  display: none;
}

.container .projects-container #set3 {
  display: none;
}

.container .projects-container #set3 .info {
  width: 80%;
  font-size: 4rem;
  text-align: center;
}

.container .projects-container .projects-all {
  margin: 30px auto 0 auto;
  padding-bottom: 30px;
  max-width: 50vw;
}

.container .projects-container .projects-all .project {
  position: relative;
  width: 50vw;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.container .projects-container .projects-all .project .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.container .projects-container .projects-all .project .imgBox img {
  opacity: 0.3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.container .projects-container .projects-all .project .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  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;
  text-align: center;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 1;
}

.container .projects-container .projects-all .project .content h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 20px;
  width: 100%;
}

.container .projects-container .projects-all .project .content h2 span {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 200;
  line-height: 20px;
  letter-spacing: 1px;
}

.container .projects-container .projects-all .project:before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  background: linear-gradient(225deg, #222426 20%, rgba(55, 143, 149, 0.6) 100%);
  z-index: 1;
}

.container .projects-container .projects-all .project:after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: linear-gradient(225deg, #fff 20%, #378f95 100%);
  -webkit-filter: blur(8px);
          filter: blur(8px);
  z-index: 0;
}

.container .projects-container .projects-all .project:hover {
  max-height: 520px;
  border: 0.2px solid #fff;
}

.container .projects-container .projects-all .project:hover .imgBox img {
  opacity: 1;
}

.container .projects-container .projects-all .project:hover .content {
  opacity: 1;
}

.container .skills-container {
  width: 80vw;
  min-height: 100vh;
  margin: auto;
  border-radius: 10vh;
  background: #222426;
}

.container .skills-container h3 {
  color: #fff;
  font-size: 5rem;
  padding: 50px;
  text-align: center;
}

.container .skills-container h3 i {
  margin-left: 15px;
}

.container .skills-container p {
  font-size: 2rem;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 40px;
}

.container .skills-container .all-skills {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  justify-items: center;
  padding: 40px;
}

.container .skills-container .all-skills .skill {
  width: 220px;
  height: 220px;
  position: relative;
  margin-bottom: 50px;
}

.container .skills-container .all-skills .skill .outer {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px 4px #378f95;
          box-shadow: 0px 0px 5px 4px #378f95;
  padding: 20px;
}

.container .skills-container .all-skills .skill .outer .inner {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: inset 4px 4px 6px -1px #378f95, inset -4px -4px 6px -1px #378f95, -0.5px -0.5px 0px #378f95;
          box-shadow: inset 4px 4px 6px -1px #378f95, inset -4px -4px 6px -1px #378f95, -0.5px -0.5px 0px #378f95;
}

.container .skills-container .all-skills .skill .outer .inner #numberHTML, .container .skills-container .all-skills .skill .outer .inner #numberCSS, .container .skills-container .all-skills .skill .outer .inner #numberJS, .container .skills-container .all-skills .skill .outer .inner #numberBootstrap, .container .skills-container .all-skills .skill .outer .inner #numberPHP, .container .skills-container .all-skills .skill .outer .inner #numberMYSQL, .container .skills-container .all-skills .skill .outer .inner #numberWordpress, .container .skills-container .all-skills .skill .outer .inner #numberJoomla, .container .skills-container .all-skills .skill .outer .inner #numberExcel, .container .skills-container .all-skills .skill .outer .inner #numberPowerBI {
  font-weight: 600;
  color: #378f95;
  font-size: 3rem;
}

.container .skills-container .all-skills .skill .outer .inner i {
  font-size: 4rem;
  color: #378f95;
  margin-right: 10px;
}

.container .skills-container .all-skills .skill p {
  font-size: 3.5rem;
  font-family: 'Orbitron', cursive;
  color: #378f95;
  text-align: center;
  padding-top: 10px;
}

.container .skills-container .all-skills .skill svg {
  position: absolute;
  top: 0;
  left: 0;
}

.container .skills-container .all-skills .skill svg circle.HTML {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleHTML 2s linear forwards;
          animation: animationCircleHTML 2s linear forwards;
}

@-webkit-keyframes animationCircleHTML {
  100% {
    stroke-dashoffset: 93;
  }
}

@keyframes animationCircleHTML {
  100% {
    stroke-dashoffset: 93;
  }
}

.container .skills-container .all-skills .skill svg circle.CSS {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleCSS 2s linear forwards;
          animation: animationCircleCSS 2s linear forwards;
}

@-webkit-keyframes animationCircleCSS {
  100% {
    stroke-dashoffset: 125;
  }
}

@keyframes animationCircleCSS {
  100% {
    stroke-dashoffset: 125;
  }
}

.container .skills-container .all-skills .skill svg circle.JS {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleJS 2s linear forwards;
          animation: animationCircleJS 2s linear forwards;
}

@-webkit-keyframes animationCircleJS {
  100% {
    stroke-dashoffset: 312.5;
  }
}

@keyframes animationCircleJS {
  100% {
    stroke-dashoffset: 312.5;
  }
}

.container .skills-container .all-skills .skill svg circle.Bootstrap {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleBootstrap 2s linear forwards;
          animation: animationCircleBootstrap 2s linear forwards;
}

@-webkit-keyframes animationCircleBootstrap {
  100% {
    stroke-dashoffset: 250;
  }
}

@keyframes animationCircleBootstrap {
  100% {
    stroke-dashoffset: 250;
  }
}

.container .skills-container .all-skills .skill svg circle.PHP {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCirclePHP 2s linear forwards;
          animation: animationCirclePHP 2s linear forwards;
}

@-webkit-keyframes animationCirclePHP {
  100% {
    stroke-dashoffset: 531;
  }
}

@keyframes animationCirclePHP {
  100% {
    stroke-dashoffset: 531;
  }
}

.container .skills-container .all-skills .skill svg circle.MYSQL {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleMYSQL 2s linear forwards;
          animation: animationCircleMYSQL 2s linear forwards;
}

@-webkit-keyframes animationCircleMYSQL {
  100% {
    stroke-dashoffset: 500;
  }
}

@keyframes animationCircleMYSQL {
  100% {
    stroke-dashoffset: 500;
  }
}

.container .skills-container .all-skills .skill svg circle.Wordpress {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleWordpress 2s linear forwards;
          animation: animationCircleWordpress 2s linear forwards;
}

@-webkit-keyframes animationCircleWordpress {
  100% {
    stroke-dashoffset: 406;
  }
}

@keyframes animationCircleWordpress {
  100% {
    stroke-dashoffset: 406;
  }
}

.container .skills-container .all-skills .skill svg circle.Joomla {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleJoomla 2s linear forwards;
          animation: animationCircleJoomla 2s linear forwards;
}

@-webkit-keyframes animationCircleJoomla {
  100% {
    stroke-dashoffset: 437.5;
  }
}

@keyframes animationCircleJoomla {
  100% {
    stroke-dashoffset: 437.5;
  }
}

.container .skills-container .all-skills .skill svg circle.Excel {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCircleExcel 2s linear forwards;
          animation: animationCircleExcel 2s linear forwards;
}

@-webkit-keyframes animationCircleExcel {
  100% {
    stroke-dashoffset: 100;
  }
}

@keyframes animationCircleExcel {
  100% {
    stroke-dashoffset: 100;
  }
}

.container .skills-container .all-skills .skill svg circle.PowerBI {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 625;
  stroke-dashoffset: 625;
  -webkit-animation: animationCirclePowerBI 2s linear forwards;
          animation: animationCirclePowerBI 2s linear forwards;
}

@-webkit-keyframes animationCirclePowerBI {
  100% {
    stroke-dashoffset: 400;
  }
}

@keyframes animationCirclePowerBI {
  100% {
    stroke-dashoffset: 400;
  }
}

.container .contact-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 70vw;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.1);
  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-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(255, 255, 255, 0.1);
          box-shadow: 0 25px 45px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 150px auto 150px auto;
}

.container .contact-container h3 {
  position: relative;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-size: 4rem;
  padding: 30px;
  text-align: center;
  font-family: 'Orbitron', cursive;
}

.container .contact-container .contact-info {
  width: 40%;
  height: 100%;
  padding: 40px;
  border-right: 1px solid #fff;
}

.container .contact-container .contact-info p {
  font-size: 2.5rem;
  color: #fff;
  font-family: 'Orbitron', cursive;
}

.container .contact-container .contact-info h4 {
  font-size: 3rem;
  color: #fff;
  font-family: 'Orbitron', cursive;
}

.container .contact-container .contact-info h4 i {
  font-size: 4rem;
  margin-right: 10px;
}

.container .contact-container .contact-info .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  color: #fff;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.container .contact-container .contact-info .socials a:nth-child(1) {
  margin: 60px 20px 0px 20px;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
  background: #fff;
}

.container .contact-container .contact-info .socials a:nth-child(1) i {
  font-size: 4rem;
  color: #4267B2;
}

.container .contact-container .contact-info .socials a:nth-child(1):hover {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.container .contact-container .contact-info .socials a:nth-child(2) {
  margin: 60px 20px 0px 20px;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
  background: #fff;
}

.container .contact-container .contact-info .socials a:nth-child(2) i {
  font-size: 4rem;
  color: #0e76a8;
}

.container .contact-container .contact-info .socials a:nth-child(2):hover {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.container .contact-container .contact-info .socials a:nth-child(3) {
  margin: 60px 20px 0px 20px;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 3px 2px rgba(255, 255, 255, 0.5);
  background: #fff;
}

.container .contact-container .contact-info .socials a:nth-child(3) i {
  font-size: 4rem;
  color: #171515;
}

.container .contact-container .contact-info .socials a:nth-child(3):hover {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.container .contact-container .form {
  position: relative;
  width: 60%;
  height: 100%;
  padding: 40px;
  z-index: 4;
}

.container .contact-container .form .inputBox {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container .contact-container .form .inputBox input, .container .contact-container .form .inputBox textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.container .contact-container .form .inputBox input::-webkit-input-placeholder, .container .contact-container .form .inputBox textarea::-webkit-input-placeholder {
  color: #fff;
}

.container .contact-container .form .inputBox input:-ms-input-placeholder, .container .contact-container .form .inputBox textarea:-ms-input-placeholder {
  color: #fff;
}

.container .contact-container .form .inputBox input::-ms-input-placeholder, .container .contact-container .form .inputBox textarea::-ms-input-placeholder {
  color: #fff;
}

.container .contact-container .form .inputBox input::placeholder, .container .contact-container .form .inputBox textarea::placeholder {
  color: #fff;
}

.container .contact-container .form .inputBox input[type="submit"], .container .contact-container .form .inputBox textarea[type="submit"] {
  background: #fff;
  color: #378f95;
  max-width: 300px;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 600;
  margin-left: auto;
}

.container .contact-container .form .inputBox input[type="submit"]:hover, .container .contact-container .form .inputBox textarea[type="submit"]:hover {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.container .contact-container .form .inputBox #name, .container .contact-container .form .inputBox #lastname {
  width: 49.5%;
}

.container .contact-container .form .inputBox #lastname {
  margin-left: 1%;
}

.container .contact-container .square {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(255, 255, 255, 0.1);
          box-shadow: 0 25px 45px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.container .contact-container .square:nth-child(1) {
  top: -70px;
  right: -100px;
  width: 200px;
  height: 200px;
}

.container .contact-container .square:nth-child(2) {
  top: 680px;
  right: 600px;
  width: 200px;
  height: 120px;
}

.container .contact-container .square:nth-child(3) {
  top: 200px;
  right: 1400px;
  width: 80px;
  height: 80px;
}

.container .contact-container .square:nth-child(4) {
  top: -80px;
  right: 1000px;
  width: 140px;
  height: 140px;
}

.container .contact-container .square:nth-child(5) {
  top: 500px;
  right: 1100px;
  width: 130px;
  height: 120px;
}

.container .contact-container .square:nth-child(6) {
  top: 400px;
  right: -150px;
  width: 100px;
  height: 100px;
}

.container footer {
  position: relative;
  min-height: 350px;
  width: 100%;
  background: #222426;
  margin-top: 250px;
  padding: 20px 40px;
}

.container footer .link-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container footer .link-footer a {
  color: #fff;
  font-size: 2.5rem;
  padding: 20px;
  cursor: pointer;
  z-index: 99999;
  font-family: 'Bruno Ace SC', cursive;
  position: relative;
}

.container footer .link-footer a:hover {
  color: #378f95;
}

.container footer .socials-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container footer .socials-footer a {
  color: #fff;
  font-size: 5rem;
  margin: 20px;
  cursor: pointer;
  font-family: 'Bruno Ace SC', cursive;
}

.container footer .socials-footer a:nth-child(1):hover {
  color: #4267B2;
  background: #fff;
}

.container footer .socials-footer a:nth-child(2):hover {
  color: #0e76a8;
  background: #fff;
}

.container footer .socials-footer a:nth-child(3):hover {
  color: #171515;
  background: #fff;
}

.container footer hr {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.container footer .copyright h4 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Bruno Ace SC', cursive;
}

.container footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 70px;
  background: #222426;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
}

.container footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 70px;
  background: #222426;
  -webkit-transform: skewY(2deg);
          transform: skewY(2deg);
}

.spinner-wrapper {
  width: 100%;
  height: 100%;
  background-color: #222426;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spinner-wrapper .loader {
  width: 20em;
  height: 20em;
  font-size: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spinner-wrapper .loader .face {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  -webkit-animation: animate023845 3s linear infinite;
          animation: animate023845 3s linear infinite;
}

@-webkit-keyframes animate023845 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes animate023845 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.spinner-wrapper .loader .face .circle {
  position: absolute;
  width: 50%;
  height: 0.1em;
  top: 50%;
  left: 50%;
  background-color: transparent;
  -webkit-transform: rotate(var(--deg));
          transform: rotate(var(--deg));
  -webkit-transform-origin: left;
          transform-origin: left;
}

.spinner-wrapper .loader .face .circle::before {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  content: '';
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 2em;
          box-shadow: 0 0 2em;
}

.spinner-wrapper .loader .face:nth-child(1) {
  width: 100%;
  height: 100%;
  color: #fff;
  border-color: #378f95 transparent transparent #378f95;
  border-width: 0.2em 0.2em 0em 0em;
  --deg: -45deg;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

.spinner-wrapper .loader .face:nth-child(2) {
  width: 80%;
  height: 80%;
  color: #378f95;
  border-color: #fff #fff transparent transparent;
  border-width: 0.2em 0em 0em 0.2em;
  --deg: -135deg;
  animation-direction: reverse;
}

.spinner-wrapper h1 {
  position: absolute;
  font-size: 4rem;
  font-family: 'Orbitron', cursive;
  color: #378f95;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-wrapper .box ul li {
  position: absolute;
  width: 35px;
  height: 35px;
  list-style: none;
  opacity: 0;
  background: radial-gradient(#378f95, transparent, transparent);
  bottom: 0;
  left: 5vw;
  -webkit-animation: animate 3s linear infinite;
          animation: animate 3s linear infinite;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    bottom: 40;
    background: radial-gradient(#378f95, transparent, transparent);
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  70% {
    background: radial-gradient(#fff, transparent, transparent);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
  100% {
    -webkit-transform: scale(10);
            transform: scale(10);
    background: radial-gradient(#fff, transparent, transparent);
    opacity: 0;
    bottom: 100vh;
  }
}

@keyframes animate {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    bottom: 40;
    background: radial-gradient(#378f95, transparent, transparent);
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  70% {
    background: radial-gradient(#fff, transparent, transparent);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
  100% {
    -webkit-transform: scale(10);
            transform: scale(10);
    background: radial-gradient(#fff, transparent, transparent);
    opacity: 0;
    bottom: 100vh;
  }
}

.spinner-wrapper .box ul li:nth-child(2) {
  left: 15vw;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.spinner-wrapper .box ul li:nth-child(3) {
  left: 25vw;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.spinner-wrapper .box ul li:nth-child(4) {
  left: 35vw;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.spinner-wrapper .box ul li:nth-child(5) {
  left: 45vw;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.spinner-wrapper .box ul li:nth-child(6) {
  left: 55vw;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.spinner-wrapper .box ul li:nth-child(7) {
  left: 65vw;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.spinner-wrapper .box ul li:nth-child(8) {
  left: 75vw;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.spinner-wrapper .box ul li:nth-child(9) {
  left: 85vw;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.spinner-wrapper .box ul li:nth-child(10) {
  left: 95vw;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

::-webkit-scrollbar {
  width: 0;
}

#scrollPath {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

#progressbar {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  background: linear-gradient(225deg, #378f95 25%, #378f95 100%);
  -webkit-animation: animationScrollbar 5s linear infinite;
          animation: animationScrollbar 5s linear infinite;
}

@-webkit-keyframes animationScrollbar {
  0%, 100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(40deg);
            filter: hue-rotate(40deg);
  }
}

@keyframes animationScrollbar {
  0%, 100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(40deg);
            filter: hue-rotate(40deg);
  }
}

#progressbar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, #378f95 25%, #378f95 100%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#progressbar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, #378f95 25%, #378f95 100%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.chat {
  width: 300px;
  height: 50vh;
  z-index: 2;
  overflow: hidden;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
  border: 4px solid #222426;
}

.chat .chat-title {
  background: #222426;
  padding: 10px 10px 10px 50px;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45px;
          flex: 0 1 45px;
  z-index: 2;
  text-align: left;
  text-transform: uppercase;
}

.chat .chat-title h1, .chat .chat-title h2 {
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

.chat .chat-title h2 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.chat .chat-title .avatar {
  position: absolute;
  top: 8px;
  left: 9px;
  background: url(img/portret.jpg);
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid #fff;
}

.chat .chat-title .avatar img {
  width: 100%;
  height: auto;
}

.chat .messages {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.chat .messages-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40px;
          flex: 0 1 40px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px;
  position: relative;
  border-top: 2px solid #222426;
}

.chat .messages-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  color: #222426;
  font-size: 1.4rem;
  height: 17px;
  margin: 0;
  padding-right: 20px;
  width: 265px;
}

.chat .messages-box textarea:focus:-webkit-placeholder {
  color: transparent;
}

.chat .messages-box .message-submit {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 10px;
  border: none;
  color: #fff;
  background: #378f95;
  font-size: 10px;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  outline: none !important;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  border-radius: 4px;
}

.chat .messages-box .message-submit:hover {
  background: #489ea6;
}

.scrollup {
  display: none;
  border: 1px solid #fff;
  width: 64px;
  height: 64px;
  text-decoration: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 15;
  background: #222426;
  border-radius: 5px;
}

.scrollup i {
  font-size: 5rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.scrollup:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #378f95;
}

.scrollup:hover i {
  color: #378f95;
}

section#sideSocials {
  position: fixed;
  left: -40px;
  top: 25%;
  max-width: 30px;
  margin-top: 150px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.4);
  background: #fff;
  z-index: 999;
}

section#sideSocials ul {
  background: #378f95;
  height: 70px;
  position: relative;
}

section#sideSocials ul:hover span {
  display: block;
  padding-left: 10%;
  font-size: 2rem;
}

section#sideSocials a {
  color: #fff;
  display: block;
  min-height: 100%;
  width: 100%;
  line-height: 60px;
  padding-left: 60px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 30px;
  text-decoration: none;
  background: #222426;
}

section#sideSocials a i.fa-facebook-f {
  position: absolute;
  top: 15px;
  left: 60px;
  font-size: 3rem;
}

section#sideSocials a i.fa-linkedin-in {
  position: absolute;
  top: 75px;
  left: 58px;
  font-size: 3rem;
}

section#sideSocials a i.fa-github {
  position: absolute;
  top: 135px;
  left: 55px;
  font-size: 3rem;
}

section#sideSocials a span {
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  margin-left: 35px;
}

section#sideSocials a:hover {
  z-index: 1;
  width: 250px;
  border: 1px solid #378f95;
  -webkit-box-shadow: 0 0 1px 1px #378f95;
          box-shadow: 0 0 1px 1px #378f95;
  color: #378f95;
}

@media (max-width: 1800px) {
  .container .contact-container .contact-info p {
    font-size: 1.7rem;
  }
  .container .skills-container .all-skills {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .container .skills-container .all-skills .skill:nth-child(9) {
    grid-column-end: -3;
    margin-bottom: 100px;
  }
  .container .education-container {
    display: none;
  }
}

@media (max-width: 1530px) {
  .container header nav label {
    display: block;
    position: fixed;
  }
  .container header nav ul {
    z-index: 2000;
    position: fixed;
    top: 0px;
    left: 110%;
    background: #222426;
    height: 100vh;
    width: 100%;
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 20%;
  }
  .container header nav ul a.socials {
    display: none;
  }
  .container header nav #click:checked ~ ul {
    left: -10%;
  }
  .container header nav #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  section#sideSocials {
    display: none;
  }
}

@media (max-width: 1400px) {
  .container header .main-header .header-left {
    width: 100%;
  }
  .container header .main-header .header-right {
    display: none;
  }
  .container .projects-container .projects-all {
    max-width: 100vw;
  }
  .container .projects-container .projects-all .project {
    width: 70vw;
    margin: 0 auto;
  }
  .container .about-container .about-left {
    display: none;
  }
  .container .about-container .about-right {
    width: 100%;
  }
  .container .skills-container .all-skills {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .container .skills-container .all-skills .skill:nth-child(9) {
    grid-column-end: -1;
    margin-bottom: 0;
  }
  .container .skills-container .all-skills .skill:nth-child(10) {
    grid-column-end: -2;
    margin-bottom: 80px;
  }
}

@media (max-width: 1200px) {
  .container header nav .logo {
    width: 100%;
  }
  .container .contact-container {
    width: 90%;
    display: block;
  }
  .container .contact-container h3 {
    font-size: 3rem;
  }
  .container .contact-container h4 {
    text-align: center;
  }
  .container .contact-container .contact-info {
    width: 100%;
    border-right: none;
    padding: 0;
  }
  .container .contact-container .contact-info p {
    font-size: 3rem;
    text-align: center;
  }
  .container .contact-container .contact-info h4 {
    text-align: center;
  }
  .container .contact-container .contact-info h3 {
    padding: 0;
  }
  .container .contact-container .socials {
    margin-bottom: 20px;
  }
  .container .contact-container .form {
    width: 100%;
    margin: 0;
  }
  .container .contact-container .inputBox input, .container .contact-container .inputBox textarea {
    width: 100%;
  }
  .container .contact-container .inputBox input::-webkit-input-placeholder, .container .contact-container .inputBox textarea::-webkit-input-placeholder {
    color: #fff;
  }
  .container .contact-container .inputBox input:-ms-input-placeholder, .container .contact-container .inputBox textarea:-ms-input-placeholder {
    color: #fff;
  }
  .container .contact-container .inputBox input::-ms-input-placeholder, .container .contact-container .inputBox textarea::-ms-input-placeholder {
    color: #fff;
  }
  .container .contact-container .inputBox input::placeholder, .container .contact-container .inputBox textarea::placeholder {
    color: #fff;
  }
  .container .contact-container .inputBox #name, .container .contact-container .inputBox #lastname {
    width: 49.5%;
  }
  .container .contact-container .inputBox #lastname {
    margin-left: 1%;
  }
  .container .contact-container .square {
    display: none;
  }
  .container .projects-container .projects-all .project {
    height: 45vh;
    margin-bottom: 0;
  }
}

@media (max-width: 1000px) {
  .container .projects-container .project-buttons {
    display: block;
  }
  .container .projects-container .project-buttons button {
    width: 80%;
    margin-left: 10%;
  }
  .container .projects-container .project-buttons button:hover {
    background: #222426;
  }
  .container .projects-container .project-buttons button#leftButton {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .container .projects-container .project-buttons button#rightButton {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .container .projects-container .projects-all .project {
    height: 35vh;
  }
  .container .skills-container .all-skills {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .container .skills-container .all-skills .skill:nth-child(9) {
    grid-column-end: -2;
    margin-bottom: 0;
  }
  .container .skills-container .all-skills .skill:nth-child(10) {
    grid-column-end: -1;
    margin-bottom: 80px;
  }
}

@media (max-width: 900px) {
  .container header .main-header .header-left .header-box {
    margin-top: 50px;
    display: block;
  }
  .container header .main-header .header-left .header-box .downloadButton {
    margin-top: 50px;
    position: relative;
    width: 70%;
    text-align: center;
  }
  .container header .main-header .header-left .header-box .downloadButton .fa-download {
    display: none;
  }
  .container header .main-header .header-left .header-box .downloadButton .buttonText {
    width: 100%;
    text-align: center;
  }
  .container header .main-header .header-left .header-box .buttonAwesome {
    text-align: center;
    width: 70%;
  }
  .container header .main-header .header-left .header-box .buttonAwesome a i {
    display: none;
  }
}

@media (max-width: 800px) {
  .container header .main-header .header-left h2 {
    font-size: 3rem;
  }
  .container header .main-header .header-left p {
    font-size: 5rem;
  }
  .container .projects-container .projects-all {
    padding: 0;
  }
  .container .projects-container .projects-all .project {
    height: 30vh;
  }
  .container .contact-container .contact-info p {
    font-size: 2.2rem;
  }
  .container .contact-container .contact-info h4 {
    font-size: 2.2rem;
  }
  .container .contact-container .form .inputBox {
    display: block;
  }
  .container .contact-container .form .inputBox #name, .container .contact-container .form .inputBox #lastname {
    width: 100%;
  }
  .container .contact-container .form .inputBox #lastname {
    margin: 20px 0 0 0;
  }
  .container .about-container .about-right .about-categories {
    display: block;
  }
  .container .about-container .about-right .about-categories a p {
    text-align: center;
  }
  .container footer .link-footer {
    display: block;
    text-align: center;
    font-size: 1.3rem;
  }
  .container footer .copyright {
    font-size: 1.3rem;
  }
  .container .about-container .about-right h3 {
    font-size: 3.5rem;
  }
  .container .skills-container h3, .container .projects-container h3 {
    font-size: 3.3rem;
  }
  .scrollup {
    display: none;
    right: -100px;
    bottom: -50px;
  }
  .spinner-wrapper .box {
    display: none;
  }
}

@media (max-width: 600px) {
  .container header {
    height: 80vh;
  }
  .container header .main-header {
    height: 75vh;
  }
  .container header .main-header .header-left h2 {
    font-size: 2.2rem;
  }
  .container header .main-header .header-left p {
    font-size: 3.5rem;
  }
  .container header .main-header .header-left .welcome p {
    font-size: 1.5rem;
    padding: 5px;
    width: 200px;
  }
  .container header .main-header .header-left .header-box .buttonAwesome {
    width: 70%;
    padding: 7px;
    margin: 5px auto 10px auto;
  }
  .container header .main-header .header-left .header-box .buttonAwesome a {
    margin: 0 auto;
    font-size: 2rem;
  }
  .container header .main-header .header-left .header-box .downloadButton {
    width: 70%;
    padding: 7px;
    margin: 10px auto 5px auto;
  }
  .container header .main-header .header-left .header-box .downloadButton a {
    font-size: 2rem;
  }
  .container header nav .logo a {
    width: 100%;
  }
  .container header nav .logo a h3 {
    font-size: 1.5rem;
    padding: 10px 0 0 5px;
  }
  .container header nav .logo a h1 {
    font-size: 2rem;
    padding: 0 0 0 5px;
  }
  .container .about-container .about-right p {
    font-size: 1.8rem;
  }
  .container .about-container .about-right .info .box p {
    font-size: 1.8rem;
  }
  .container .projects-container .projects-all {
    padding-bottom: 25px;
  }
  .container .projects-container .projects-all .project {
    height: 25vh;
  }
  .container .skills-container .all-skills {
    display: block;
  }
  .container .skills-container .all-skills p {
    font-size: 1.8rem;
  }
  .container .skills-container .all-skills .skill {
    margin: 110px auto;
  }
  .container .skills-container .all-skills .skill:first-child {
    margin-top: 0;
  }
  .container .contact-container {
    margin: 50px auto 0px auto;
  }
  .container .contact-container .contact-info p {
    font-size: 1.8rem;
  }
  .container .contact-container .contact-info h4 {
    font-size: 1.8rem;
  }
  .container .contact-container h4 {
    font-size: 2rem;
  }
  .container footer .link-footer {
    display: block;
    text-align: center;
    font-size: 0.8rem;
  }
  .container footer .copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 450px) {
  .container header .main-header .header-left h2 {
    font-size: 2rem;
  }
  .container header .main-header .header-left p {
    font-size: 3rem;
  }
}
/*# sourceMappingURL=style.css.map */