@import url("https://fonts.googleapis.com/css?family=Girassol|Oswald&display=swap");
/*Oswald , sans-serif*/
@import url("https://fonts.googleapis.com/css?family=Girassol|Oswald|Source+Sans+Pro&display=swap");
/*Source Sans Pro , sans-serif*/
@import url("https://fonts.googleapis.com/css?family=Public+Sans&display=swap");
/*Public Sans , sans-serif*/
@import url("https://fonts.googleapis.com/css?family=Alegreya+Sans:500&display=swap");
/* Presets */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", "Public Sans", sans-serif;
}
/* End of Presets */

/* Delays */
.delay-250ms {
  animation-delay: 0.25s;
}
.delay-500ms {
  animation-delay: 0.5s;
}
.delay-750ms {
  animation-delay: 0.75s;
}
.delay-1000ms {
  animation-delay: 1s;
}
.delay-1250ms {
  animation-delay: 1.25s;
}
/* End of Delays */

/* Buttons */
.button {
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 1.2rem;
  background: #5bc0de;
  border: 1px solid #5bc0de;
  border-radius: 0.3rem;
  color: white;
  padding: 0.4rem;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;
}

.button:hover,
.button:active {
  color: #5bc0de;
  background: none;
}
/* End of Buttons */

/* Icons */
.fab {
  font-family: "Font Awesome 5 Brands";
}
.icon {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
}
/* End of Icons */

.main-brand a {
  color: black;
  text-decoration: none;
  display: flex;
}

.main-brand a {
  display: block;
}

.main-brand_image {
  width: 3rem;
  height: 3rem;
  margin-left: 0.75rem;
  animation: flipLeft 1s;
  transition: transform 0.5s 0.28s;
}
.main-brand_image:hover,
.main-brand_image:active {
  transform: rotateY(360deg);
}

@keyframes flipLeft {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: fixed;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid white;
}

.main-nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 1rem;
  cursor: pointer;
  flex-wrap: wrap;
}
.main-nav_items a {
  text-decoration: none;
}

.main-nav_item {
  margin: 0 0.75rem;
  color: white;
  transition: color 0.5s;
}
.main-nav_item:hover,
.main-nav_item:active {
  color: #75d5fd;
}

.mobile-nav-bars {
  display: none;
  padding-bottom: 0.5rem;
}

.mobile-nav {
  width: 100vw;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  padding: 0 0.75rem;
  padding-top: 5rem;
  display: none;
}
.mobile-nav_items {
  list-style: none;
  text-align: right;
}
.mobile-nav_items a {
  text-decoration: none;
  font-style: normal;
}
.mobile-nav_item {
  color: white;
  cursor: pointer;
  transition: color 0.5s;
}
.mobile-nav_item:hover {
  color: #5bc0de;
}
/* Beginning Header Section */
.main-header {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/computer-desk.jpg") center/cover no-repeat border-box, #14a5d5;
  height: 100vh;
  min-height: 35rem;
  padding-top: 15rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: white;
  text-align: center;
}

.main-header-container {
  display: flex;
  font-family: inherit;
  color: white;
  font-size: 1.1rem;
  width: 100%;
  margin: 0;
  justify-content: center;
}
.main-header-container .main-header-content {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: 470px;
  text-align: center;
}
.main-header-container .main-header-content .main-full-brand_image {
  width: 6rem;
}
.main-header-container .main-header-content h1 {
  font-family: "Oswald", sans-serif;
}
.main-header-container .main-header-content a {
  display: block;
}

.main-header-side-content {
  display: none;
}

.arrow {
  color: white;
  transition: color 0.5s, transform 0.2s;
}

.fa-sort-down {
  font-size: 5rem;
}

/* Beginning Summary Section */
.summary {
  padding: 5rem;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}

.summary-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.summary-about-me {
  font-family: inherit;
}

.heavy {
  font-size: 1.2rem;
}

.summary-about-me h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}

.summary hr {
  width: 50%;
  display: inline-block;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.summary-image-container {
  padding: 1rem;
  margin-top: 1rem;
  flex-grow: 1;
  flex-shrink: 1;
}

.summary-image {
  width: 256px;
  padding: 1rem;
}

/* Beginning Projects Section */

.projects {
  margin-top: 2.5rem;
  padding-top: 4.5rem;
  text-align: center;
}

.projects-content h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}

.projects-content hr {
  width: 8rem;
  display: inline-block;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
}

.projects-figures {
  display: block;
}

.figure-image img {
  width: 100%;
}

.projects-figures figure {
  padding: 1rem;
  text-align: center;
  transition: all 1s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projects-figures figure figcaption p {
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.projects-figures figure a button {
  cursor: pointer;
  font-family: "Source Sans Pro", "Public Sans", sans-serif;
  background-color: #5bc0de;
  border: solid #5bc0de 1px;
  color: white;
  font-size: 16px;
  padding: 8px 21px;
  min-width: 100px;
  text-align: center;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 0.25rem;
}
.projects-figures figure a button:hover {
  background: none;
  color: #5bc0de;
}

.projects-figures figure:hover {
  background-color: #f5f5f5;
}

.figure-technologies_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 100px);
  grid-auto-rows: 1fr;
  grid-gap: 5px;
  justify-content: center;
  list-style-type: none;
  width: 300px;
  margin: 0 auto;
  padding: 0;
}

.technologies_list-item {
  margin: 0;
  padding: 5px 0;
  background-color: #5bc0de;
  border: solid #5bc0de 1px;
  color: white;
  text-align: center;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 0.25rem;
  cursor: default;
}

.technologies_list-item:hover {
  background: none;
  color: #5bc0de;
}

/* End of Projects Sections */

/* Begginning of Skills 
Section */
.skills {
  padding: 3rem 1rem;
  background: #F5F5F5;
}
.skills h2 {
  text-align: center;
  font-size: 2rem;
}
.skills-block {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px); /*auto fill will leave empty cells*/
  grid-template-rows: repeat(auto-fit, 50px); /*auto fit will center cells and will share empty cells to center*/
  grid-gap: 5px;
  justify-content: center;
  font-family: "Alegreya Sans", sans-serif;
  color: white;
}
.skills-block p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: inherit;
  background-color: #5bc0de;
  border: solid #5bc0de 1px;
  padding: 1rem 1rem;
  text-align: center;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 0.25rem;
  cursor: default;
}

.skills-block svg {
  margin-left: 8px;
}

.skills-block p:hover {
  color: #5bc0de;
  background-color: white;
}

.pos {
  margin-left: 0.5rem;
  font-size: 20px;
}

/* End of skills Section */

/* Beginning of Footer */
/* ----------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------- */

.main-footer {
  background-color: #484848;
  color: white;
  padding: 3rem 1rem;
  font-family: inherit;
}
.main-footer a {
  text-decoration: none;
  font-family: inherit;
  color: white;
}
.main-footer-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.footer-social-content a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: color 0.5s;
}
.footer-social-content a:hover {
  color: #5bc0de;
}
.footer-address-content a {
  display: inline-block;
  margin-top: 0.5rem;
}
.footer-address-content i {
  display: inline-block;
  margin-right: 0.2rem;
}
.footer-rights {
  text-align: center;
  margin-top: 5rem;
}
/* End of Footer */

/*------------------------------------------

Beginnning of Media

-------------------------------------------*/

@media (min-width: 46.88rem) {
  .main-header-side-content {
    display: block;
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 4rem 2rem;
    margin-left: 1rem;
    max-width: 470px;
  }

  .main-header-side-content button {
    text-decoration: none;
    padding: 0.25rem 6rem;
    background: none;
    border: 1px solid #5bc0de;
    border-radius: 0.3rem;
    color: #5bc0de;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    transition: background-color 0.5s, color 0.5s;
    cursor: pointer;
  }

  .main-header-side-content button:hover,
  .main-header-side-content button:active {
    color: white;
    background: #5bc0de;
  }

  .main-header-content {
    text-align: left;
  }

  .summary-block {
    flex-direction: row;
    max-width: 720px;
    min-width: 600px;
  }

  .summary-about-me {
    text-align: left;
  }

  .summary-image-container {
    margin: 0;
    margin-left: 1rem;
  }

  .summary-image {
    border: 0.3rem solid #5bc0de;
    border-radius: 0.5rem;
  }

  .projects {
    min-height: 350px;
    margin-top: 3rem;
  }

  /* projects figures grid */
  .projects-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, 700px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    width: 100%;
    grid-gap: 5px;
    justify-content: center;
    padding: 1rem;
  }

  .projects-figures figure {
    margin: 0;
    height: 100%;
  }
  .projects-figures .figure-image__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .projects-figures .buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    justify-content: center;
    width: 500px;
    margin: 0 auto;
  }
  .projects-figures .buttons-container a {
    max-width: 150px;
    display: block;
  }

  .projects-figures .buttons-container a button {
    min-width: 150px;
  }

  .projects-figures .figure-image__desktop-image {
    width: 80%;
  }

  .projects-figures .figure-image__mobile-image {
    width: 18.8%;
  }

  .figure-technologies_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    justify-content: center;
    list-style-type: none;
    width: 500px;
    margin: 0 auto;
    padding: 0;
  }

  .technologies_list-item {
    margin: 0;
    padding: 5px 0;
    background-color: #5bc0de;
    border: solid #5bc0de 1px;
    color: white;
    text-align: center;
    transition: background-color 0.5s, color 0.5s;
    border-radius: 0.25rem;
    cursor: default;
  }

  .technologies_list-item:hover {
    background: none;
    color: #5bc0de;
  }

  .main-footer-content {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .footer-about-me {
    max-width: 30rem;
  }
}
.certifications-block {
    font-family: 'Arial', sans-serif;
    background: white;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.certifications-block h2 {
  margin: 0;
  margin-bottom: 40px;
  font-size: 2rem;
}

.certifications-block .card-container {
  max-width: 60%;
}

.hardware-block {
    font-family: 'Arial', sans-serif;
    background: white;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hardware-block h2 {
  margin: 0;
  margin-bottom: 40px;
  font-size: 2rem;
}

.card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: auto;
    width: 100%;
}

.hardware-block .card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.card {
    background: white;
    border: 1px solid black;
    border-radius: 20px;
    padding: 10px;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.hardware-block .card {
    background: white;
    border: 1px solid black;
    border-radius: 20px;
    padding: 10px;
    width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.card-container .card a {
  color: white;
  background-color: #5bc0de;
  border: 2px solid #5bc0de;
  border-radius: 8px;      /* curved corners */
  padding: 8px 16px;       /* some padding for nice button-like look */
  text-decoration: none;   /* remove underline */
  display: inline-block;   /* so padding and border behave nicely */
  transition: background-color 0.5s, color 0.5s;
}

.card-container .card a:hover {
  background-color: white;
  color: #5bc0de;            /* keep font color black on hover */
  border: 2px solid #5bc0de; /* border stays the same */
  cursor: pointer;         /* show pointer cursor */
}
.card img {
  width: 100px;
  height: auto;
}

.hardware-block .card img {
  width: 250px;
  height: auto;
}



.card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}

.card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card:hover .card-title {
}

.card-description {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.card:hover .card-description {

}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .card {
        width: 280px;
        height: 300px;
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card:hover {
        transform: scale(1.03);
    }
}

@media (max-width: 480px) {
    .card {
        width: 90%;
        max-width: 320px;
        height: 300px;
        padding: 18px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 13px;
        line-height: 1.5;
    }
}



@media (max-width: 30rem) {
  .figure-image img {
  }
  .main-nav_items {
    display: none;
  }

  .mobile-nav-bars {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 2rem;
  }

  .open {
    display: block;
  }
}
/* Landscape*/
@media (max-height: 450px) {
  .main-header {
    padding-top: 9rem;
  }

  .main-header-content h1 {
    margin: 0;
  }
}
@media (max-height: 820px) and (max-width: 450px) {
  .main-header {
    padding-top: 50%;
  }

  .main-header-content h1 {
    font-size: 1.6rem;
  }

  .main-header-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 1700px) {
  /* projects figures grid */
  .projects-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, 600px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    justify-content: center;
  }

  .projects-figures .buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    justify-content: center;
    width: 500px;
    margin: 0 auto;
  }

  .projects-figures .buttons-container a {
    max-width: 150px;
    display: block;
  }

  .projects-figures .buttons-container a button {
    min-width: 150px;
  }
}

@media (max-width: 750px) {
  .projects-figures .figure-image__mobile-image {
    display: none;
  }
}
@media (max-width: 390px) {
  /* projects figures grid */
  .projects-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px); /*auto fill will leave empty cells*/
    grid-auto-rows: 1fr;
    justify-content: center;
  }

  .projects-figures figure {
    max-height: 800px;
  }

  .projects-figures figure figcaption a {
    display: inline-block;
  }

  .projects-figures .buttons-container {
    width: 300px;
  }

  .projects-figures .buttons-container a button {
    min-width: auto;
  }

  .skills-block {
    grid-template-columns: repeat(auto-fit, 150px);
  }
}

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