/* General Start */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  cursor: url('../Resources/Images/MyFace.png');
  color: #fff;
}

@font-face {
  font-family: "PressStart2P";
  src: url("../Resources/Fonts/PressStart2P_FNT.ttf");
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: "Montserrat";
  overflow-x: hidden;
}

::-webkit-scrollbar {
  background-color: #000;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.fullscreen-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -9999;
}

.fullscreen-video-wrap video {
  min-height: 100%;
  min-width: 100%;
}

/* General End */
/* Navbar Start */
#navbar {
  width: 100%;
  height: 175px;
  position: fixed;
  z-index: 10;
  box-shadow: 0 4px 10px #404040;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  animation-name: slide-down;
  animation-duration: 1.5s;
}

@keyframes slide-down {
  from {
    top: -175px;
  }

  to {
    top: 0px;
  }
}

#inner-navbar {
  height: 100%;
  width: calc(100% - 50px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#inner-navbar-top {
  height: 100%;
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#navbar img {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

#inner-navbar-middle {
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#inner-navbar-bottom {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  visibility: visible;
}

#navbar-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-right: 20px;
}

#navbar-item-image:hover {
  transform: scale(1.1);
}

#navbar-item-image:hover+#navbar-item-label {
  visibility: visible
}

#navbar-item-label {
  padding-top: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  visibility: hidden
}

/* Navbar End */

/* General End */
.section {
  padding: 0;
  margin: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  float: left;
}

/* General End */

/* About Start */
#about {
  height: 800px;
  min-width: 1000px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 200;
  padding-top: 150px;
  padding-bottom: 200px;
}

#about-inner {
  width: 950px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

#about-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 500px;
  width: 950px;
  font-weight: bold;
}

#about-top img {
  width: 96px;
  height: 96px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

#about-bottom-details-bottom {
  visibility: hidden;
}

#about-title {
  padding-left: 25px;
  text-transform: uppercase;
  color: #fff;
  font-size: 72px;
}

#project-title {
  padding-left: 25px;
  text-transform: uppercase;
  color: #fff;
  font-size: 42px;
}

hr.section-line {
  margin-left: 50px;
  border-top: 2px solid #fff;
}

#about-top hr.section-line {
  width: 80%;
}

#about-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 800px;
  width: 100%;
  padding-top: 50px;
}

#about-bottom-details {
  height: 220px;
  width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 42px;
  padding-top: 50px;
  text-align: center;
}

#about-bottom-image {
  height: 420px;
  width: 420px;
}

#about-bottom-details-bottom-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

#about-github {
  content: url("../Resources/Images/Icons/GithubLogo.svg");
}

#about-linkedin {
  content: url("../Resources/Images/Icons/LinkedinLogo.svg");
}

#about-bottom-details-bottom-info:hover {
  text-decoration: underline;
}

#about-bottom-details-bottom-info:hover #about-github {
  content: url("../Resources/Images/Icons/GithubLogoHover.svg");
}


#about-bottom-details-bottom-info:hover #about-linkedin {
  content: url("../Resources/Images/Icons/LinkedinLogoHover.svg");
}

#about-my-face {
  box-shadow: 0px 0px 15px #404040;
}

#about-bottom p span {
  font-weight: bold;
  color: #fff;
}

/* About End */

/* Skills Start */
#skills {
  height: 100%;
  min-width: 1000px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 200;
  font-size: 42px;
  padding-top: 150px;
  padding-bottom: 1400px;
}

.skills-slide {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 50px;
  width: 100%;
  height: 70px;
  text-align: center;
}

.skills-slide a {
  padding-top: 5px;
  width: 400px;
}

.skills-slide-button {
  color: #fff;
  background-color: #000;
  border: none;
  height: 100%;
  width: 280px;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  border: 5px solid #fff;
}

.skills-slide-button:hover {
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

#skills-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 400px;
  width: 950px;
}

#skills-bottom-details {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 950px;
  font-size: 42px;
  padding-bottom: 20px;
}

#skills-bottom-table {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  height: 400px;
  width: 950px;
  padding-top: 100px;
  padding-bottom: 50px;
}

.skills-tasks {
  margin-left: 0px;
  padding-left: 50px;
  line-height: 34px;
  list-style-type: upper-roman;
}

.skills-tasks li {
  list-style-type: circle;
  padding-top: 18px;
}

#skills-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.skills-main-label {
  font-size: 42px;
  padding-bottom: 15px;
  font-weight: bold;
}

.skills-date {
  font-size: 32px;
}

.skills-sub-label {
  font-size: 42px;
  padding-top: 10px;
}

/* Skills End */

/* Projects Start */
#projects {
  height: 1000px;
  padding-top: 200px;
  min-width: 1000px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 200;
  font-size: 35px;
}

#projects-inner {
  padding-top: 500px;
  width: 950px;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

#projects-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 500px;
  font-weight: bold;
}

#projects-top img {
  width: 96px;
  height: 96px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

#projects-top hr.section-line {
  width: 380px;
}

#project-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#projects-bottom-sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 900px;
  padding-top: 50px;
}

#projects-bottom-sub button {
  color: #fff;
  background-color: #000;
  border: none;
  height: 50px;
  width: 280px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  border: 5px solid #fff;
}

#projects-bottom-sub:hover button {
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

#projects-bottom-tabs-first {
  width: 950px;
  height: 550px;
  background-color: #fff;
  color: #000 !important;
}

#projects-bottom-tabs-left {
  width: 700px;
  height: 550px;
  background-color: rgb(0, 0, 0);
}

#projects-bottom-tabs-right {
  width: 100%;
  height: 200px;
  color: #fff;
  border-top: 2px solid #fff;
}

#projects-bottom-tabs-right-top {
  width: 220px;
  height: 20px;
  height: 40%;
  font-weight: bold;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

#projects-bottom-tabs-right-middle {
  padding-top: 20px;
  height: 45%;
  font-size: 16px;
  color: #fff;
  overflow-wrap: break-word;
  font-size: 32px;
}

#mySlides {
  display: none;
}

#projects-bottom-tabs-right-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 15%;
  line-height: 55px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  border-top: 4px solid #000;
}

#projects-bottom-tabs-right-bottom a {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}

#projects-bottom-tabs-right-bottom a:visited {
  color: #fff;
}

#projects-bottom-tabs-right-bottom a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Projects End */
/* Contact Start */
#contact {
  height: 800px;
  min-width: 1000px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 200;
  font-size: 35px;
  padding-top: 200px;
}

#contact img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

#contact-inner {
  width: 950px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

#contact-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 500px;
  font-weight: bold;
}

#contact-top img {
  width: 96px;
  height: 96px;
}

#contact-title {
  padding-left: 25px;
  text-transform: uppercase;
  color: #fff;
  font-size: 72px;
}

#contact-top hr.section-line {
  width: 400px;
}

#contact-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 400px;
  width: 950px;
  font-size: 42px;
}

/* Contact End */

/* Footer Start */
#footer {
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 32px;
}

#footer p {
  color: #838573;
  padding-top: 50px;
}

#footer p span {
  font-weight: bold;
  color: #fff;
}

/* Footer End */

/* MEDIA */

@media (min-width:1112px) {
  #navbar {
    width: 100%;
    height: 65px;
    position: fixed;
    z-index: 10;
    box-shadow: 0 4px 10px #404040;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation-name: slide-down;
    animation-duration: 1.5s;
  }

  @keyframes slide-down {
    from {
      top: -65px;
    }

    to {
      top: 0px;
    }
  }

  #inner-navbar {
    height: 100%;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  #inner-navbar-top {
    height: 100%;
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  #navbar img {
    width: 32px;
    height: 32px;
  }

  #inner-navbar-middle {
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  #inner-navbar-bottom {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    visibility: visible;
  }

  #navbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-right: 20px;
  }

  #navbar-item-image:hover {
    transform: scale(1.1);
  }

  #navbar-item-image:hover+#navbar-item-label {
    visibility: visible
  }

  #about {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

@media (min-width:1281px) {

  /* big landscape tablets, laptops, and desktops */
  #navbar {
    width: 65px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    box-shadow: 0 2px 10px #404040;
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation-name: slide-in;
    animation-duration: 1.5s;
  }

  @keyframes slide-in {
    from {
      left: -65px;
    }

    to {
      left: 0px;
    }
  }

  #navbar img {
    width: 32px;
    height: 32px;
  }

  #inner-navbar {
    height: calc(100% - 50px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #inner-navbar-top {
    height: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  #inner-navbar-middle {
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #inner-navbar-bottom {
    height: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  #navbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-top: 0px;
    padding-right: 0px;
  }

  #navbar-item-label {
    padding-top: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    visibility: hidden;
  }

  #about {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  #about-top img {
    width: 64px;
    height: 64px;
  }

  #about-title {
    font-size: 42px;
  }



  #about-bottom {
    flex-direction: row;
  }

  #about-bottom-details-top {
    height: 310px;
    font-size: 32px;
  }

  #about-bottom-details-bottom {
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    visibility: visible;
  }

  #about-bottom-details {
    height: 420px;
    width: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    font-size: 42px;
    padding-top: 0px;
    text-align: center;
  }

  #about-bottom-details {
    font-size: 32px;
    padding-left: 20px;
    text-align: start;
  }

  #skills {
    padding-bottom: 1000px;
  }

  #skills-bottom-details {
    font-size: 32px;
  }

  .skills-main-label {
    font-size: 32px;
  }

  .skills-date {
    font-size: 26px;
  }

  .skills-sub-label {
    font-size: 32px;
  }

  #projects-top img {
    width: 64px;
    height: 64px;
  }

  #contact-title {
    font-size: 42px;
  }

  #contact-bottom {
    font-size: 32px;
  }

  #contact-top img {
    width: 64px;
    height: 64px;
  }

  #footer {
    font-size: 16px;
  }
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

#se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
  background: url("../Resources/Videos/Loading.gif") center no-repeat #000;
}

#se-pre-con a {
  font-size: 24px;
}