@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;1,300&display=swap");
.border, .home-content > p:nth-of-type(2), .home-content > p:nth-of-type(2) > strong, .about-content-1 > h3 > span, .skills-content > h3 > span, .contact-content > h3 > span {
  border: none;
}

body {
  font-family: 'Jost', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #818181;
          box-shadow: inset 0 0 5px #818181;
  background-color: #d6d6d6;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #5daad6;
}

::-webkit-scrollbar-thumb:hover {
  background: #4e8fb4;
}

main {
  min-height: 100vh;
  overflow: hidden !important;
}

main > video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

main > header {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 3px solid #5daad6;
}

main > header > .Menu-Bars {
  height: 100%;
  background-color: transparent;
  color: #5daad6;
  border: none;
}

main .Left-side {
  position: fixed;
  top: 0;
  left: 0;
  border-right: 3px solid #5daad6;
}

#Menu {
  -webkit-transition: .4s;
  transition: .4s;
  width: 250px;
  left: -250px;
  top: 0;
  background-color: #202020;
  -webkit-box-shadow: inset 1px 1px 50px rgba(0, 0, 0, 0.753);
          box-shadow: inset 1px 1px 50px rgba(0, 0, 0, 0.753);
}

#Menu > nav {
  width: 100%;
  height: 100%;
}

#Menu > nav > ul {
  width: 100%;
  height: 100%;
}

#Menu > nav > ul > li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #4e8fb4;
}

#Menu > nav > ul > li > a {
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: .4s;
  transition: .4s;
}

#Menu > nav > ul > li > a:hover {
  background-color: rgba(81, 77, 77, 0.569);
  color: #d6d6d6;
}

#Menu > nav > ul > li:nth-of-type(1) {
  border-bottom: 3px solid #5daad6;
}

#Menu > nav > ul > li:nth-of-type(1) > button {
  background-color: transparent;
  border: none;
  color: inherit;
}

#Home,
#About,
#Skills,
#Contact {
  position: fixed;
  bottom: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

#About,
#Skills,
#Contact {
  overflow-x: hidden;
  overflow-y: scroll;
  right: -100%;
  background-color: #202020;
}

#Home > section,
#About > section,
#Skills > section,
#Contact > section {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  min-height: 100%;
  padding: 30px;
}

#Home {
  right: 0;
  height: 100%;
  overflow: hidden;
}

#Home > section {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-content > * {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  font-family: 'Lobster', cursive;
}

.home-content > h1 {
  color: #202020;
  font-size: 5rem;
}

.home-content > p:nth-of-type(1) {
  color: #202020;
  font-weight: bolder;
}

.home-content > p:nth-of-type(2) {
  color: #000049;
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.home-content > p:nth-of-type(2) > strong {
  width: 100%;
  height: 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: absolute;
  left: 0;
}

.home-content > p:nth-of-type(2) > strong:nth-of-type(1) {
  top: 0;
  -webkit-animation: Move-1 5s linear infinite;
          animation: Move-1 5s linear infinite;
}

.home-content > p:nth-of-type(2) > strong:nth-of-type(2) {
  top: 100%;
  -webkit-animation: Move-2 5s linear infinite;
          animation: Move-2 5s linear infinite;
}

.about-content-1 > h3 {
  color: #d6d6d6;
  position: relative;
  font-family: 'Lobster', cursive;
}

.about-content-1 > h3 > span {
  display: block;
  height: 5px;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: -5px;
  overflow: hidden;
}

.about-content-1 > h3 > span > span {
  position: absolute;
  width: 50px;
  height: 100%;
  bottom: 0;
  left: -100%;
  background-color: #5daad6;
  -webkit-animation: Move-3 2s linear infinite;
          animation: Move-3 2s linear infinite;
}

.about-content-1 > section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-content-1 > section:nth-of-type(2) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-content-1 > section:nth-of-type(2) > p {
  font-size: 1.1rem;
  color: #d6d6d6;
}

.about-content-1 > section:nth-of-type(1) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-content-1 > section:nth-of-type(1) > figure {
  border-radius: 50%;
  border: 10px solid #4e8fb4;
  position: relative;
}

.about-content-1 > section:nth-of-type(1) > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.about-content-1 > section:nth-of-type(1) > figure > a {
  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;
  width: 50px;
  height: 50px;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  border: 3px solid #d6d6d6;
  background-color: #131313;
  color: #d6d6d6;
  position: absolute;
}

.about-content-1 > section:nth-of-type(1) > figure > a:hover {
  background-color: #000049;
}

.about-content-1 > section:nth-of-type(1) > figure > a:nth-of-type(1) {
  left: calc(25% - 25px);
  bottom: 0;
}

.about-content-1 > section:nth-of-type(1) > figure > a:nth-of-type(2) {
  left: calc(50% - 25px);
  bottom: -25px;
}

.about-content-1 > section:nth-of-type(1) > figure > a:nth-of-type(3) {
  left: calc(75% - 25px);
  bottom: 0;
}

.about-content-2 > section:nth-of-type(1) > section > section > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 0;
  font-size: 1.4rem;
}

.about-content-2 > section:nth-of-type(1) > section > section:nth-of-type(1) > span {
  color: #4e8fb4;
}

.about-content-2 > section:nth-of-type(1) > section > section:nth-of-type(2) > span {
  color: #d6d6d6;
}

.about-content-2 > section:nth-of-type(2) > section > section {
  height: 120px;
  margin-top: 50px;
}

.about-content-2 > section:nth-of-type(2) > section > section > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  -webkit-transition: .4s;
  transition: .4s;
  color: #407696;
  border: 3px solid #407696;
  border-radius: 10px;
}

.about-content-2 > section:nth-of-type(2) > section > section > a:hover {
  color: #5daad6;
  border-color: #5daad6;
}

.about-content-2 > section:nth-of-type(2) > section > section > a > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.7rem;
}

.skills-content > h3 {
  color: #d6d6d6;
  position: relative;
  font-family: 'Lobster', cursive;
}

.skills-content > h3 > span {
  display: block;
  height: 5px;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: -5px;
  overflow: hidden;
}

.skills-content > h3 > span > span {
  position: absolute;
  width: 50px;
  height: 100%;
  bottom: 0;
  left: -100%;
  background-color: #5daad6;
  -webkit-animation: Move-3 2s linear infinite;
          animation: Move-3 2s linear infinite;
}

.skills-content > p {
  color: #d6d6d6;
  font-size: 1.4rem;
}

.progress_bar {
  height: 10px;
  background-color: #d6d6d6;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 7px -5px #202020;
          box-shadow: 0 4px 7px -5px #202020;
  margin-top: 5px;
  margin-bottom: 40px;
}

.progressbar-title {
  font-size: 1.2rem;
  color: #d6d6d6;
}

.pro-bar {
  position: relative;
  height: 100%;
  -webkit-box-shadow: 0 1px 11px -4px #fff inset;
          box-shadow: 0 1px 11px -4px #fff inset;
  border-radius: 15px;
  background-color: #407696;
}

.pro-bar > span {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #3d4131), color-stop(233%, #fff));
  background: linear-gradient(to top, #3d4131 35%, #fff 233%);
  color: #d6d6d6;
  -webkit-box-shadow: 1px 1px 3px #202020;
          box-shadow: 1px 1px 3px #202020;
  font-size: 14px;
  font-weight: bolder;
  position: absolute;
  top: -37px;
  right: -10%;
  padding: 4px 10px;
  border-radius: 3px 3px 3px 0px;
}

.pro-bar > span:after {
  content: "";
  border-top: 6px solid #3d4131;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.pro-1 {
  width: 90%;
}

.pro-2 {
  width: 80%;
}

.pro-3 {
  width: 70%;
}

.pro-4 {
  width: 15%;
}

.pro-4 > span {
  right: -40%;
}

.contact-content > h3 {
  color: #d6d6d6;
  position: relative;
  font-family: 'Lobster', cursive;
}

.contact-content > h3 > span {
  display: block;
  height: 5px;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: -5px;
  overflow: hidden;
}

.contact-content > h3 > span > span {
  position: absolute;
  width: 50px;
  height: 100%;
  bottom: 0;
  left: -100%;
  background-color: #5daad6;
  -webkit-animation: Move-3 2s linear infinite;
          animation: Move-3 2s linear infinite;
}

.contact-content > p {
  color: #d6d6d6;
  font-size: 1.4rem;
}

.contact-content > section:nth-of-type(1) form > input {
  height: 70px;
}

.contact-content > section:nth-of-type(1) form > textarea {
  height: 200px;
  padding-top: 20px;
  resize: none;
}

.contact-content > section:nth-of-type(1) form > * {
  background-color: transparent;
  color: #d6d6d6;
  border: 1px solid #d6d6d6;
  padding-left: 20px;
  font-size: 1.2rem;
  margin: 2px 0;
}

.contact-content > section:nth-of-type(1) form > #Send {
  cursor: pointer;
  border-width: 2px;
  padding-left: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.contact-content > section:nth-of-type(1) form > #Send:hover {
  color: #407696;
  border-color: #407696;
}

.contact-content > section:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-content > section:nth-of-type(2) > a {
  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;
  width: 35px;
  height: 35px;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  border: 2px solid #d6d6d6;
  background-color: #131313;
  color: #d6d6d6;
  margin: 0 20px;
}

.contact-content > section:nth-of-type(2) > a:hover {
  border-color: #131313;
  background-color: #d6d6d6;
  color: #131313;
}

.contact-content > iframe {
  height: 300px;
  border-radius: 5px;
}

.contact-content > footer {
  padding-top: 50px;
}

.contact-content > footer > h6 {
  color: #d6d6d6;
  font-size: 1rem;
  font-weight: normal;
  padding: 5px 0;
}

.contact-content > footer > h6 > strong {
  font-weight: normal;
  color: #5daad6;
}

@-webkit-keyframes Move-1 {
  0% {
    top: 0;
    opacity: 1;
  }
  30% {
    top: 0;
    opacity: 1;
  }
  45% {
    top: -100%;
    opacity: 0;
  }
  45.000000001% {
    top: 100%;
    opacity: 0;
  }
  85% {
    top: 100%;
    opacity: 0;
  }
  95% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes Move-1 {
  0% {
    top: 0;
    opacity: 1;
  }
  30% {
    top: 0;
    opacity: 1;
  }
  45% {
    top: -100%;
    opacity: 0;
  }
  45.000000001% {
    top: 100%;
    opacity: 0;
  }
  85% {
    top: 100%;
    opacity: 0;
  }
  95% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes Move-2 {
  0% {
    top: 100%;
    opacity: 0;
  }
  30% {
    top: 100%;
    opacity: 0;
  }
  45% {
    top: 0;
    opacity: 1;
  }
  85% {
    top: 0;
    opacity: 1;
  }
  95% {
    top: -100%;
    opacity: 0;
  }
  95.000000001% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes Move-2 {
  0% {
    top: 100%;
    opacity: 0;
  }
  30% {
    top: 100%;
    opacity: 0;
  }
  45% {
    top: 0;
    opacity: 1;
  }
  85% {
    top: 0;
    opacity: 1;
  }
  95% {
    top: -100%;
    opacity: 0;
  }
  95.000000001% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@-webkit-keyframes Move-3 {
  0% {
    left: -100%px;
  }
  100% {
    left: 100%;
  }
}

@keyframes Move-3 {
  0% {
    left: -100%px;
  }
  100% {
    left: 100%;
  }
}
/*# sourceMappingURL=master.css.map */