@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,100;1,300&family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap");
@import '../node_modules/mdb-ui-kit/css/mdb.min.css';
* {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
}
main h1, main h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
}
main p {
  font-family: "Karla", sans-serif;
  font-size: 1.3rem;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.92);
  font-family: "Lato", sans-serif;
}

.nav-item {
  font-size: 1.15rem;
}

.li-title {
  padding-left: 1rem;
}

.nav-link {
  cursor: pointer;
}

.nav-icons {
  padding-right: 6rem;
}
.nav-icons .li-icon {
  padding-left: 1rem;
}
.nav-icons .li-icon > a:hover {
  padding-left: calc(1rem - 10px);
}
.nav-icons .li-icon a {
  padding-top: 2px;
  padding-bottom: 2px;
  transition: padding 300ms ease;
}
.nav-icons .li-icon a img {
  width: 35px;
  transition: width 300ms ease;
}
.nav-icons .li-icon a:hover {
  padding-top: 0px;
  padding-bottom: 0px;
}
.nav-icons .li-icon a:hover img {
  width: 37px;
}

.nav-item .nav-dot {
  color: rgba(0, 0, 0, 0);
  transition: color 300ms ease;
}

.nav-item:hover .nav-dot {
  color: black;
}

.intro-section {
  display: flex;
  background-color: #b8b8b8;
  height: 100vh;
  justify-content: space-evenly;
  border-bottom: solid 0.1px #878787;
  box-shadow: 0px 4px 5px #cbcbcb;
}
.intro-section .business-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35vw;
}
.intro-section .business-card h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  color: white;
  text-decoration: none;
  padding-bottom: 15vh;
}
.intro-section .business-card h1 .bold-role {
  font-weight: 900;
}
.intro-section .illustration {
  align-self: flex-end;
}
.intro-section .illustration img {
  max-height: 85vh;
  max-width: 45vw;
}

.chevron-container {
  align-self: center;
  bottom: 100px;
  width: 2vw;
  height: 11vh;
  animation: 10s ease 0s normal forwards 1 fadeIn;
}

.chevron-container:hover {
  cursor: pointer;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
.about {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  padding: 2.5rem 4rem;
  max-width: 90vw;
  text-align: justify;
}
.about .container-about {
  padding-left: 8vw;
}
.about .container-about h1 {
  padding-bottom: 1vh;
}
.about img {
  max-width: 30vw;
}

.front ul, .back ul, .additional ul, .currently-learning ul {
  font-family: "Lato", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.skills {
  padding: 4rem;
}

.skills-li {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  transition: font-size 500ms ease;
  border: solid 0.01em black;
  border-radius: 7px;
  padding: 5px 15px;
  margin: 0 0.5rem;
  margin-bottom: 1rem;
  width: 8rem;
  height: 8rem;
  transition: color 100ms ease, background 300ms ease;
}
.skills-li h4 {
  padding-top: 10px;
  text-decoration: none;
  border-bottom: solid 0.1px transparent;
  transition: border-bottom 300ms ease;
  font-size: 1rem;
  text-align: center;
}

.skills-li:hover {
  cursor: default;
  background-color: #b8b8b8;
  color: white;
}

.additional {
  border-bottom: dotted 0.01rem black;
  padding-bottom: 2.5rem;
}

.currently-learning {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 3.5rem;
}
.currently-learning .container-currently-learning {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.currently-learning .container-currently-learning .container-dot {
  padding-left: 2vw;
}
.currently-learning .container-currently-learning .container-dot .dot-typing {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #4f4f4f;
  color: #4f4f4f;
  box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  animation: dotTyping 1.5s infinite linear;
}

@keyframes dotTyping {
  0% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
  16.667% {
    box-shadow: 9984px -10px 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
  33.333% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
  50% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px -10px 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
  66.667% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
  83.333% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px -10px 0 0 #4f4f4f;
  }
  100% {
    box-shadow: 9984px 0 0 0 #4f4f4f, 9999px 0 0 0 #4f4f4f, 10014px 0 0 0 #4f4f4f;
  }
}
.projects-section {
  display: flex;
  flex-direction: column;
  color: #4f4f4f;
  padding: 2.5rem 5rem;
  border-top: solid 0.1px #878787;
  border-bottom: solid 0.1px #878787;
  box-shadow: 0px -3px 5px #cbcbcb, 0px 3px 5px #cbcbcb;
  background-color: #f2f2f2;
}
.projects-section h1 {
  padding-bottom: 1.5rem;
  padding-left: 4.5rem;
}
.projects-section .project-div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.projects-section .project-div img {
  width: 30vw;
  padding-bottom: 5vh;
}
.projects-section .project-div .project-detail {
  display: flex;
  flex-direction: column;
  padding-left: 5vw;
  padding-right: 5vw;
  font-size: 5rem;
}
.projects-section .project-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
}
.projects-section .project-buttons .container-arrow {
  width: 5vw;
  height: 5vh;
  text-align: center;
  cursor: pointer;
}
.projects-section .project-buttons .container-arrow i {
  font-size: 1.2rem;
  transition: font-size 100ms linear;
}
.projects-section .project-buttons .container-arrow:hover i {
  font-size: 1.5rem;
}
.projects-section #project-description {
  padding-bottom: 2rem;
  text-align: justify;
}
.projects-section .container-redirects {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.projects-section .container-redirects a {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  color: #4f4f4f;
  font-size: 1rem;
  padding: 1px 1px;
  border: 1.7px solid white;
  border-radius: 5px;
  transition: background-color 300ms linear;
}
.projects-section .container-redirects a:hover {
  background-color: white;
}
.projects-section .container-redirects a:hover h4 {
  padding-left: calc(3vw + 0.5vw);
  padding-right: calc(3vw - 0.5vw);
}
.projects-section .container-redirects a:hover .container-img img {
  opacity: 1;
}
.projects-section .container-redirects a h4, .projects-section .container-redirects a img {
  margin: 0;
  padding: 0;
}
.projects-section .container-redirects a h4 {
  padding: 5px 3vw;
  font-weight: 100;
  font-size: 1.3rem;
  transition: padding 300ms linear;
}
.projects-section .container-redirects a .container-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  background: white;
  border-radius: 0px 5px 5px 0px;
}
.projects-section .container-redirects a .container-img img {
  opacity: 0.5;
  width: 1.5vw;
  transition: opacity 300ms linear;
}

.container-laptop-screen {
  position: relative;
}
.container-laptop-screen #laptop {
  position: relative;
}
.container-laptop-screen #screen {
  position: absolute;
  left: 12.95%;
  top: 7%;
  width: 22.2vw;
}
.container-laptop-screen .demote {
  opacity: 0;
}

.experience-section {
  display: flex;
  flex-direction: column;
  color: #4f4f4f;
  padding: 2.5rem 5rem;
}
.experience-section h1 {
  padding-bottom: 1.5rem;
  padding-left: 4.5rem;
}
.experience-section .container-exp-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.experience-section .exp-div {
  width: 27vw;
  padding: 10px 20px;
}
.experience-section .exp-div .container-exp-img {
  display: flex;
  justify-content: flex-start;
  height: 130px;
  margin-bottom: 15px;
}
.experience-section .exp-h3 {
  font-size: 1.5rem;
}
.experience-section .exp-h4 {
  font-size: 1rem;
  padding-top: 15px;
  padding-bottom: 15px;
}
.experience-section .exp-p {
  font-size: 1.3rem;
  text-align: justify;
  text-justify: auto;
}

.getintouch-section {
  display: flex;
  flex-direction: column;
  color: #4f4f4f;
  padding: 2.5rem 5rem;
  border-top: solid 0.1px #878787;
  box-shadow: 0px -5px 5px #cbcbcb;
  background-color: #f2f2f2;
}
.getintouch-section h1 {
  padding-bottom: 1.5rem;
  padding-left: 4.5rem;
}
.getintouch-section .container-contacts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.getintouch-section .container-contacts #linkedin-logo {
  padding-left: 100px;
  padding-right: 100px;
}
.getintouch-section .container-contacts img {
  width: 10vw;
  padding-bottom: 10px;
  transition: width 300ms ease, padding-bottom 300ms ease;
}
.getintouch-section .container-contacts img:hover {
  width: 10.5vw;
  padding-bottom: calc(10px - 0.5vw);
}

footer {
  background-color: #f2f2f2;
  border-top: none;
  text-align: right;
}
footer small {
  padding-right: 20px;
}

@media only screen and (max-width: 1280px) {
  .experience-section .container-exp-div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
  .experience-section .exp-div {
    width: 90%;
  }
}
@media only screen and (max-width: 1024px) {
  .about-section .about {
    padding: 2.5rem 1rem;
  }
  .about-section .skills {
    padding-top: 5px;
  }
  .about-section p {
    font-size: 1.2rem;
  }

  .projects-section {
    padding: 2.5rem 3rem;
  }

  .experience-section {
    padding: 2.5rem 3rem;
  }
}
@media only screen and (max-width: 800px) {
  .intro-section {
    flex-direction: column;
    justify-content: space-between;
  }
  .intro-section .business-card {
    padding-top: 10vh;
    margin: 0 auto;
    width: auto;
  }
  .intro-section .business-card #typewriter {
    padding-bottom: 5vh;
    font-size: 1.5rem;
  }
  .intro-section .illustration {
    align-self: center;
  }
  .intro-section .illustration img {
    max-height: 60vh;
    max-width: unset;
  }

  .about-section .container-currently-learning {
    max-width: 27vw;
  }
  .about-section .container-currently-learning h2 {
    margin: 0;
  }
  .about-section .container-currently-learning .container-dot {
    align-items: unset;
    align-self: flex-end;
  }

  .projects-section h1 {
    padding-bottom: 3rem;
  }
  .projects-section .project-div {
    flex-direction: column;
    align-items: center;
  }
  .projects-section .project-div #laptop {
    width: 70vw;
    padding-bottom: 3vh;
  }
  .projects-section .project-div #screen {
    width: 52vw;
    left: 12.9%;
    top: 6.9%;
  }
  .projects-section .project-div .project-detail {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 414px) {
  main h1 {
    font-size: 2rem;
  }

  .intro-section .business-card {
    padding-top: 12vh;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .intro-section .business-card #typewriter {
    padding-bottom: 2vh;
    font-size: 1.5rem;
  }
  .intro-section .illustration img {
    max-height: 45vh;
  }

  .about-section {
    padding: 2.5rem 3rem;
  }
  .about-section .about {
    padding: unset;
    margin: unset;
  }
  .about-section .about .container-about {
    padding-left: unset;
  }
  .about-section p {
    font-size: 1rem;
  }
  .about-section img {
    display: none;
  }
  .about-section .skills {
    padding: unset;
  }
  .about-section .skills ul {
    padding: unset;
  }
  .about-section .skills-li {
    padding: 5px;
    width: 25vw;
    height: 15vh;
  }
  .about-section .skills-li h4 {
    font-size: 0.9rem;
  }
  .about-section .currently-learning {
    flex-direction: column;
  }
  .about-section .currently-learning .container-currently-learning {
    padding-bottom: 40px;
  }
  .about-section .currently-learning .container-currently-learning h2 {
    font-size: 2rem;
  }
  .about-section .currently-learning .container-currently-learning .container-dot {
    padding-left: 7vw;
  }
  .about-section .currently-learning .container-currently-learning .container-dot .dot-typing {
    width: 6px;
    height: 6px;
  }

  .projects-section {
    padding: 2.5rem 3rem;
  }
  .projects-section h1 {
    padding-left: unset;
  }
  .projects-section .project-detail {
    padding-left: unset;
    padding-right: unset;
  }
  .projects-section .project-detail h3 {
    font-size: 1.2rem;
  }
  .projects-section .project-detail p {
    font-size: 1rem;
  }
  .projects-section .project-detail .container-redirects {
    flex-direction: column;
    align-items: center;
  }
  .projects-section .project-detail .container-redirects a {
    margin-bottom: 15px;
    justify-content: space-between;
    width: 40vw;
  }
  .projects-section .project-detail .container-redirects h4 {
    font-size: 1rem;
  }
  .projects-section .project-detail .container-redirects .container-img {
    padding: 10px;
  }
  .projects-section .project-detail .container-redirects .container-img img {
    width: 7vw;
  }

  .experience-section h1 {
    padding-left: unset;
  }
  .experience-section .container-exp-div .exp-div {
    padding-left: unset;
    padding-right: unset;
  }
  .experience-section .container-exp-div .exp-div .container-exp-img {
    height: 90px;
    justify-content: center;
  }
  .experience-section .container-exp-div .exp-div h3 {
    font-size: 1.3rem;
  }
  .experience-section .container-exp-div .exp-div h4 {
    font-size: 1rem;
  }
  .experience-section .container-exp-div .exp-div p {
    font-size: 1rem;
  }

  .getintouch-section {
    padding: 2.5rem 3rem;
  }
  .getintouch-section h1 {
    padding-left: unset;
  }
  .getintouch-section .container-contacts {
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }
  .getintouch-section .container-contacts a {
    padding: 5px;
  }
  .getintouch-section .container-contacts #linkedin-logo {
    padding-left: 20px;
    padding-right: 20px;
  }
  .getintouch-section .container-contacts img {
    width: 13vw;
  }
}
@media only screen and (max-width: 360px) {
  .skills .skills-li {
    padding-top: 15px;
  }

  .projects-section .project-detail .container-redirects a {
    width: 45vw;
  }
}

/*# sourceMappingURL=main.css.map */
