* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

@keyframes slideInFromLeft {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes changeFontColor {
  0% {
    color: white;
  }
  100% {
    color: #ff652f;
  }
}
@keyframes slideInFromBottom {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0%;
  }
}
@keyframes slideInToBottom {
  0% {
    bottom: 0%;
  }
  100% {
    bottom: -100%;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes changeFontColor2 {
  0% {
    color: white;
  }
  50% {
    color: #ff652f;
  }
  100% {
    color: white;
  }
}
.home {
  height: 100vh;
  padding-top: 16vh;
  overflow: scroll;
  align-items: center;
  text-align: center;
  background: url("../img/model-1.jpg") center;
  background-size: cover;
}
.home .myname {
  animation: changeFontColor2 10s infinite;
  font-weight: bold;
  font-style: italic;
}
.home audio {
  margin-top: 2rem;
  border-radius: 20px;
}
.home .occupations span {
  line-height: 190%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  padding: 7px 5px;
  border-radius: 3.5px;
}
.home .toggle-language {
  display: none;
}
.home .short-bio-eng button,
.home .short-bio-gr button {
  visibility: hidden;
}
.home__name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
}
.home__name--last {
  animation: changeFontColor;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-direction: normal;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-weight: 700;
}
.home__name span {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  padding: 0px 10px;
  line-height: 150%;
}
.home .animation-container-title {
  position: relative;
  animation-name: slideInFromLeft;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-direction: normal;
}
.home .animation-container-short-bio p {
  text-align: center;
  font-weight: 500;
  font-size: large;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.home .short-bio-eng {
  flex: 0.5;
  padding-right: 2rem;
  border-right: 2px solid white;
}
.home .short-bio-gr {
  padding-left: 2rem;
  padding-bottom: 2rem;
  flex: 0.5;
}
.home .short-bio-eng a,
.home .short-bio-gr a {
  text-decoration: underline;
  font-style: italic;
}
.home .animation-container-short-bio {
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.8));
  padding: 1rem;
  margin-top: 2rem;
  margin-left: 25%;
  margin-right: 25%;
  position: relative;
  animation: slideInFromBottom;
  animation-duration: 4s;
  display: flex;
  flex-direction: row;
  border-radius: 2%;
  padding-bottom: 90px;
}

.menu-btn {
  position: absolute;
  z-index: 100;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger.open {
  transform: rotate(720deg);
  background: transparent;
}
.menu-btn__burger.open::before {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-btn__burger.open::after {
  width: 28px;
  transform: rotate(-45deg) translate(3px, -7px);
}

.nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  opacity: 0.98;
  visibility: hidden;
}
.nav.open {
  visibility: visible;
}
.nav .menu-nav {
  z-index: 102;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #272727;
  list-style-type: none;
  padding-right: 1rem;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav.open {
  transform: translateY(0);
}
.nav .menu-nav__item {
  transform: translateX(100vw);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav__item.open {
  transform: translateX(0);
}
.nav .menu-nav__item.active > a {
  color: #ff652f;
}
.nav .menu-nav__link {
  z-index: 102;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900px;
  text-transform: uppercase;
  padding: 2rem 0;
  font-weight: 300;
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav__link:hover {
  color: #ff652f;
}

.menu-nav__item:nth-child(1) {
  transition-delay: 0.25s;
}

.menu-nav__item:nth-child(2) {
  transition-delay: 0.35s;
}

.menu-nav__item:nth-child(3) {
  transition-delay: 0.45s;
}

.menu-nav__item:nth-child(4) {
  transition-delay: 0.55s;
}

.programming-languages {
  padding-bottom: 2rem;
}
.programming-languages .main-header {
  font-size: xx-large;
  color: #ff652f;
  padding: 10px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  position: relative;
  animation: slideInFromLeft 2s;
}
.programming-languages .subheader {
  font-size: x-large;
  color: white;
  padding: 10px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  position: relative;
  animation: slideInFromLeft 2.5s;
}
.programming-languages__bio-image {
  height: 50vh;
  width: 100%;
  background: url("../img/model-1.jpg") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.programming-languages__bio-image p {
  margin-bottom: 2rem;
}
.programming-languages__bio p {
  width: 50%;
  text-align: center;
}
.programming-languages__bio p .text-secondary {
  padding-bottom: 1rem;
}
.programming-languages .technologies {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
}
.programming-languages .technologies div {
  position: relative;
  animation: slideInFromBottom 2s;
  width: 100%;
  max-width: 200px;
  height: 165px;
}
.programming-languages .technologies .javascript {
  background: url("../img/javascript.png");
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .htmlcss {
  background: url("../img/htmlcss.jpg") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .php {
  background: url("../img/php.png") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .scss {
  background: url("../img/scss.webp") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .wordpress {
  background: url("../img/wordpress.png") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .joomla {
  background: url("../img/joomla.png") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .sql {
  background: url("../img/sql.jpg") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .python {
  background: url("../img/python.png") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .r {
  background: url("../img/R.png");
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .javase {
  background: url("../img/javase.png") center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .c {
  background: url("../img/c++.png") center;
  background-size: cover;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .vba {
  background: url("../img/vba.jpg") center;
  background-size: contain;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .ba {
  background: url("../img/ba.jpg") center;
  background-size: contain;
  padding: 0.5rem;
  border-bottom: 5px solid #ff652f;
}
.programming-languages .technologies .social-icons {
  display: flex;
  flex-direction: column;
}
.programming-languages .technologies footer {
  transform: rotate(90deg) translate(-3rem, -5rem);
}

.projects {
  padding-bottom: 2rem;
}
.projects__bio-image {
  height: 30vh;
  width: 100%;
  background: url("../img/model-1.jpg") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.projects__bio-image .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  padding: 10px;
  position: relative;
  animation: slideInFromLeft 3s;
}
.projects__items {
  width: 70%;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.projects__item {
  position: relative;
  animation: slideInFromBottom 3s;
  border-bottom: 5px solid #ff652f;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-height: 500px;
}
.projects__item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ff652f;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.projects__item:hover .project__description {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.projects__item:hover::after {
  top: 0;
  opacity: 1;
}
.projects .project__description {
  position: absolute;
  top: 0;
  padding: 10px;
  text-align: center;
  line-height: 1.3;
  font-size: 25px;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.contact {
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../img/model-1.jpg") center;
  background-size: cover;
}
.contact h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  padding: 0px 10px;
  line-height: 150%;
  position: relative;
  animation-name: slideInFromLeft;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  text-align: center;
}
.contact__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  font-size: 1.5rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  padding: 10px 10px;
  position: relative;
  animation-name: slideInFromBottom;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-direction: normal;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

@keyframes slideInFromLeft {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes changeFontColor {
  0% {
    color: white;
  }
  100% {
    color: #ff652f;
  }
}
@keyframes slideInFromBottom {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0%;
  }
}
@keyframes slideInToBottom {
  0% {
    bottom: 0%;
  }
  100% {
    bottom: -100%;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes changeFontColor2 {
  0% {
    color: white;
  }
  50% {
    color: #ff652f;
  }
  100% {
    color: white;
  }
}
@media screen and (max-width: 767px) {
  projects__items {
    width: 80%;
  }
  .technologies {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .short-bio-gr {
    display: none;
  }
  .animation-container-short-bio {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 80% !important;
  }
  .short-bio-eng {
    flex: 1;
    border: none;
    justify-content: center;
  }
  .short-bio-eng button,
  .short-bio-gr button {
    visibility: visible !important;
    position: absolute;
    left: 40%;
    top: -2rem;
    padding: 14px 15px;
    width: 85px;
    height: 14px;
    border-radius: 10px;
  }
  .short-bio-eng span,
  .short-bio-gr span {
    position: relative;
    top: -7px;
  }
  .toggle-language {
    display: block;
  }
  .gr .short-bio-eng {
    display: none;
  }
  .gr .short-bio-gr {
    position: relative;
    animation: slideInFromBottom 2s;
    display: block;
    flex: 1;
    border: none;
    padding: 0;
    justify-content: center;
  }
  .eng .short-bio-gr {
    display: none;
  }
  .eng .short-bio-eng {
    position: relative;
    animation: slideInFromBottom 2s;
    display: block;
    flex: 1;
    padding: 0;
    border: none;
    justify-content: center;
  }
  .social-icons,
  .copyright {
    display: inline-block !important;
  }
  .fa-facebook {
    position: relative !important;
    right: -150% !important;
    bottom: 35px !important;
  }
  .fa-instagram {
    position: relative !important;
    right: -97% !important;
  }
  .copyright {
    position: relative !important;
    bottom: 15px !important;
    left: -95% !important;
    transform: rotate(-90deg) !important;
  }
  .contact__list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media screen and (min-width: 768px) {
  .menu-btn {
    visibility: hidden;
  }
  .technologies {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .nav {
    visibility: visible;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: right;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  }
  .nav .menu-nav__item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav__link {
    font-size: 1.5rem;
    font-weight: 900;
  }
  .about__bio {
    font-size: 1.5rem;
  }
  .projects__bio-image {
    height: 40vh;
  }
  .projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .technologies {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .projects__bio-image {
    height: 50vh;
  }
}
body {
  background: #272727;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

.text-secondary {
  color: #ff652f;
}

header {
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100vh;
  width: 100vw;
}
main .social-icons {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
main .social-icons a {
  padding: 0.4rem;
  transition: all 0.5s ease-in-out;
}
main .social-icons a:hover {
  color: #ff652f;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  width: 100vw;
  text-align: right;
  padding: 1rem;
  color: #fff;
}

.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; /* so that it stays on top of all other elements */
}

.social-icons,
.copyright {
  display: block;
}

.social-icons {
  position: relative;
  right: 1%;
}

.copyright {
  position: relative;
  right: 1%;
}/*# sourceMappingURL=main.css.map */