/* ------------ Navigation/Header bar --------------------------------------------------------------------*/
#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  width: 100%;
  background-color: transparent;
  padding: 0px 5%;
  position: fixed;
  z-index: 5;
  transition: all 0.3s ease-in;
  max-width: inherit;
}
#navbar a {
  margin: 0 1em;
}
#navbar ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
#navbar ul li a {
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 600;
}
#navbar ul li a:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#navbar.white-header {
  background: rgb(255, 255, 255);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in;
}
#navbar.white-header ul li a {
  color: rgba(125, 125, 125, 0.95);
}
#navbar.white-header ul li a:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-size {
  height: 2em;
  width: 2.5em;
}

/* TOGGLE menu */
#check-button {
  font-size: 30px;
  float: right;
  line-height: 80px;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-in-out;
  margin: 0;
}

#check {
  display: none;
}

#menu-btn__burger {
  width: 0.9em;
  height: 0.15em;
  border-radius: 0.3em;
  transition: all 0.5s ease-in-out;
  background: rgb(212, 175, 55);
}
#menu-btn__burger::before, #menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 0.9em;
  height: 0.15em;
  border-radius: 0.3em;
  transition: all 0.5s ease-in-out;
  background: rgb(212, 175, 55);
}
#menu-btn__burger::before {
  transform: translateY(-0.3em);
  -webkit-transform: translateY(-0.3em);
  -moz-transform: translateY(-0.3em);
  -ms-transform: translateY(-0.3em);
}
#menu-btn__burger::after {
  transform: translateY(0.3em);
  -webkit-transform: translateY(0.3em);
  -moz-transform: translateY(0.3em);
  -ms-transform: translateY(0.3em);
}

#check-button.checkedBox #menu-btn__burger {
  transform: translateX(-1em);
  -webkit-transform: translateX(-1em);
  -moz-transform: translateX(-1em);
  -ms-transform: translateX(-1em);
  background: transparent;
}
#check-button.checkedBox #menu-btn__burger::before {
  transform: rotate(45deg) translate(20px, -20px);
  -webkit-transform: rotate(45deg) translate(20px, -20px);
  -moz-transform: rotate(45deg) translate(20px, -20px);
  -ms-transform: rotate(45deg) translate(20px, -20px);
}
#check-button.checkedBox #menu-btn__burger::after {
  transform: rotate(-45deg) translate(20px, 20px);
  -webkit-transform: rotate(-45deg) translate(20px, 20px);
  -moz-transform: rotate(-45deg) translate(20px, 20px);
  -ms-transform: rotate(-45deg) translate(20px, 20px);
}

/*--------------Media frames-------------- */
@media (max-width: 750px) {
  #navbar {
    justify-content: space-between;
  }
  #navbar ul {
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
    flex-direction: column;
    position: fixed;
    left: -100%;
    top: 2.5em;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    transition: all 0.3s ease-in;
  }
  #navbar ul li {
    padding: 10px;
  }
  #navbar ul li a {
    font-size: 1.5em;
    text-transform: uppercase;
    color: rgba(125, 125, 125, 0.95);
  }
  #navbar ul li a:hover {
    color: #000000;
  }
  #navbar.open-toggle-menu ul {
    left: 0;
  }
  #check-button {
    display: inline-block;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
  }
  #menu-btn__burger {
    display: inline-block;
  }
}
#landing-section {
  height: 770px;
  width: 100%;
  position: relative;
  background-color: #0f0f0f;
}
#landing-section > img {
  object-fit: cover;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
}

#home-sect {
  height: 100%;
}

/* ------------ Main Landing --------------------------------------------------------------------*/
.landing-text {
  margin: 256.6666666667px auto 0 auto;
  text-align: center;
}
.landing-text p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25em;
  overflow: hidden;
  margin: 0 auto;
  white-space: nowrap;
  font-weight: bold;
}
.landing-text p:nth-child(1) {
  color: #000000;
  font-size: 2.5em;
  margin-bottom: 0;
  width: 3em;
  animation: typing1 0.3s steps(15, end);
  animation-fill-mode: forwards;
  border-right: 0.15em solid black;
}
.landing-text p:nth-child(2) {
  letter-spacing: 0.2vw;
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 0;
  opacity: 0;
  width: 6em;
  animation: typing2 0.5s steps(35, end);
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  border-right: 0.15em solid white;
}

.landing-row-class {
  position: relative;
}

.landing-logo {
  position: relative;
  display: inline-block;
}
.landing-logo img {
  margin-top: 1em;
  width: 36px;
  height: 31px;
}
.landing-logo :hover .black-logo {
  display: inline;
}
.landing-logo .black-logo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------Keyframes-------------- */
@keyframes typing1 {
  0% {
    width: 0;
  }
  99.9% {
    border-right: 0.15em solid black;
  }
  100% {
    border: none;
  }
}
@keyframes typing2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 0.15em solid white;
  }
  100% {
    opacity: 1;
    border: none;
  }
}
/*--------------Media frames-------------- */
@media (max-width: 750px) {
  .landing-text {
    margin: 200px auto 0 auto;
    left: auto;
    text-align: center;
    width: 100%;
  }
  .landing-text p:nth-child(1) {
    font-size: 2em;
  }
  .landing-text p:nth-child(2) {
    font-size: 3em;
  }
}
/* ------------ Footer Section --------------------------------------------------------------------*/
.footer-section {
  height: 500px;
  background-color: #ffffff;
}

.footer-logo {
  width: 10%;
  margin: 1% 5%;
}

.footer-logo:hover {
  transform: scale(1.1);
}

.footer-list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  float: left;
  background-color: #ffffff;
}

@media (max-width: 750px) {
  .footer-logo {
    width: 20%;
  }
  .footer-section {
    height: 160px;
  }
}
/* ------------ Projects Section --------------------------------------------------------------------*/
.projects-section {
  height: 770px;
  background-color: #ffffff;
}

.project-list {
  list-style: none;
  width: 50%;
  height: auto;
  float: left;
}

.project-card {
  height: 400px;
  background-color: #000000;
  margin: 10px;
  padding: 10px;
  display: flex;
  align-items: center; /* y-axis center, work with display:flex*/
  justify-content: center; /* x-axis center*/
  color: white;
}

.project-card a {
  color: white;
}

.vermilion:hover {
  background-color: rgb(134, 25, 6);
  transition: background-color 0.05s ease 0.2s;
  cursor: pointer;
}

.recipeFinder:hover {
  background-color: rgb(240, 136, 0);
  transition: background-color 0.05s ease 0.2s;
  cursor: pointer;
}

.recipeFinder-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  border: 1px solid #888;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.recipeFinder-modal div {
  margin: auto;
  width: 66%;
}

.recipeFinder-header {
  background-color: rgb(240, 136, 0);
  padding: 5px 20px;
}

.recipeFinder-content {
  background-color: #fefefe;
  padding: 20px;
}

.recipeFinder-modal img {
  width: 100%;
}

.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 750px) {
  .project-list {
    width: 100%;
    display: inline-block;
  }
  .project-card {
    height: 300px;
  }
}
.timeline {
  background: linear-gradient(-30deg, #bbf0f3 0%, #f5f5f5 60%);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.timeline .my-image-outter {
  margin: auto;
  display: flex;
  flex-shrink: 0;
  height: calc(250px + 4vw);
  width: calc(250px + 4vw);
  background-image: linear-gradient(to bottom right, #bbf0f3, #f6d285, #7ee8fa);
}
.timeline .my-image-outter .my-image-inner {
  height: calc(200px + 4vw);
  width: calc(200px + 4vw);
  background: url("../img/foto-perfil3.png");
  background-size: cover;
  margin: auto;
}
.timeline .parallelogram {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.timeline .bubble-container {
  position: absolute;
  width: 25%;
  left: 65%;
}
.timeline .bubble-container #talkbubble {
  width: 100%;
  height: auto;
  background: linear-gradient(315deg, #bbf0f3 0%, #f6d285 74%);
  position: relative;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
}
.timeline .bubble-container #talkbubble:before {
  content: "";
  position: absolute;
  right: 98%;
  top: 40%;
  border-top: 13px solid transparent;
  border-right: 26px solid #f6d285;
  border-bottom: 13px solid transparent;
}
.timeline .bubble-container #talkbubble p {
  font-size: 1.5rem;
  padding: 0.75rem;
  font-family: "Encode Sans Semi Condensed", sans-serif;
}
.timeline .about-me-img {
  margin: auto;
  display: flex;
  width: 16%;
  height: auto;
  border-bottom: 6px solid black;
  border-left: 6px solid black;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: black;
}
.timeline ul li::before, .timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.timeline ul li::before {
  z-index: 3;
  bottom: 5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
}
.timeline ul li::after {
  z-index: 2;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #050505;
}
.timeline ul li > div {
  border: 2px solid #050505;
  flex-direction: column;
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.timeline ul li > div img {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-out;
}
.timeline ul li > div img:hover {
  border: 2px solid #050505;
  transform: scale(0.98);
}
.timeline ul li > div time {
  position: absolute;
  background: linear-gradient(315deg, #bbf0f3 0%, #f6d285 74%);
  width: auto;
  padding: 0 10px;
  height: 30px;
  top: -15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
}
.timeline ul li > div h2, .timeline ul li > div p {
  text-align: center;
}
.timeline ul li > div p {
  margin-top: 1rem;
  font-size: 15px;
}
.timeline ul li > div a {
  text-decoration: none;
  color: #050505;
}
.timeline ul li > div .project-buttons {
  margin: 5px auto;
}
.timeline ul li > div .live-demo-button, .timeline ul li > div .source-code-button {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #050505;
  display: inline;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #bbf0f3 80%;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  overflow: hidden !important;
}
.timeline ul li > div .live-demo-button:hover, .timeline ul li > div .source-code-button:hover {
  background: #ffffff;
  box-shadow: 2px 2px 12px rgb(0, 0, 0);
  font-weight: 700;
}
.timeline ul li > div .live-demo-button.vermilion:hover, .timeline ul li > div .live-demo-button.recipefinder:hover {
  color: transparent;
  font-weight: 700;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.timeline ul li > div .live-demo-button.vermilion:hover {
  background-image: url("../img/vermillion-homepage.jpg");
}
.timeline ul li > div .live-demo-button.recipefinder:hover {
  background-image: url("../img/recipe-finder-homepage.png");
}
.timeline ul li:nth-of-type(odd) > div {
  left: 20px;
}
.timeline ul li:nth-of-type(even) > div {
  left: -420px;
}

/*--------------Media Queries-------------- */
@media screen and (max-width: 900px) {
  .timeline ul li > div {
    width: 350px;
  }
  .timeline ul li:nth-of-type(even) > div {
    left: -370px;
  }
  .timeline .about-me-img {
    width: 20%;
  }
  .timeline .bubble-container {
    width: 30%;
    left: 65%;
  }
}
@media screen and (min-width: 1300px) {
  .timeline .bubble-container {
    top: 200px;
  }
}
@media screen and (max-width: 770px) {
  .timeline .about-me-img {
    margin: 0 0 0 10px;
    width: 30%;
  }
  .timeline .my-image-outter {
    margin: 0 0 0 10px;
  }
  .timeline .bubble-container {
    width: 40%;
    left: 40%;
  }
  .timeline ul li {
    margin-left: 5px;
  }
  .timeline ul li > div {
    width: calc(100vw - 100px);
  }
  .timeline ul li > div h2, .timeline ul li > div p {
    text-align: center;
  }
  .timeline ul li:nth-of-type(even) > div {
    left: 20px;
  }
}
@media screen and (max-width: 610px) {
  .timeline .bubble-container {
    position: static;
    width: 80%;
    margin: auto;
  }
  .timeline .bubble-container:before {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .timeline .about-me-img {
    margin: 0 0 0 10px;
    width: 30%;
  }
  .timeline .my-image-outter {
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 353px) {
  .timeline ul li > div .live-demo-button, .timeline .source-code-button {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 317px) {
  .timeline ul li > div {
    width: 245px;
  }
}
#wrapper {
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-width: 320px;
}

/* =======================================MEDIA QUERIES=========================================== */
/*--- 1000px and down------------------------------------*/
@media (max-width: 1000px) {
  * {
    box-sizing: border-box;
  }
  .about-container {
    width: 90%;
    border-radius: 10px;
  }
}
/* Height 500px and less*/
@media (max-height: 500px) {
  section {
    height: 100%;
  }
}

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