@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  background-image: url("../img/background_lossy.png");
  background-attachment: fixed;
  background-size: cover;
  background-color: black;
}

header {
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-flow: row wrap;
  align-content: center;
}
header h1 {
  font: normal normal 600 5rem/130% "Montserrat", sans-serif;
  width: 100%;
  text-align: center;
  color: white;
}
header h2 {
  font: normal normal 700 2rem/130% "Montserrat", sans-serif;
  width: 100%;
  text-align: center;
  color: white;
}

main {
  height: 650px;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  align-items: center;
}
main .portfolio {
  width: 80vw;
  margin: 0 auto;
}
main .portfolio h2 {
  font: normal normal 700 2rem/130% "Montserrat", sans-serif;
  width: 100%;
  text-align: left;
  color: white;
  margin: 20px 0;
}
main .portfolio .portfolio_slider {
  width: 80vw;
}
main .portfolio .card {
  width: 80%;
  height: auto;
  background: #060606;
  border-radius: 5px;
  overflow: hidden;
  color: #ddd;
  margin: 0 auto;
}
main .portfolio .card__image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
main .portfolio .card__image img {
  width: 100%;
  transition: 0.3s ease-in-out;
  filter: brightness(0.8);
  margin: 0 auto;
}
main .portfolio .card__image img:hover {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1);
}
main .portfolio .card__title {
  height: 40px;
  border-bottom: 1px solid #05141d;
}
main .portfolio .card__title h3 {
  font: normal normal 600 1.4rem/40px "Montserrat", sans-serif;
  text-align: center;
  color: #6ecde6;
}
main .portfolio .card__desc {
  height: 90px;
  padding: 10px 20px;
  font: normal normal 400 0.8rem/130% "Open Sans", sans-serif;
  background: black;
}
main .portfolio .card__links {
  border-top: 1px solid #05141d;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
}
main .portfolio .card__links a {
  font: normal normal 600 0.8rem/130% "Open Sans", sans-serif;
  text-decoration: none;
  color: #6ecde6;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
main .portfolio .card__links a:hover {
  background: black;
  color: #c5ebf5;
}

.slick-next:before {
  content: "";
  font-family: "Honeybee";
  width: 30px;
  height: 30px;
  font-weight: 600;
  font-size: 25px;
}

.slick-prev {
  left: -30px;
}
.slick-prev:before {
  content: "";
  font-family: "Honeybee";
  width: 30px;
  height: 30px;
  font-weight: 600;
  font-size: 25px;
}

/* the slides */
.slick-slide {
  width: 100%;
  margin: 0 10px;
}

/* the parent */
.slick-list {
  height: auto;
}

footer {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  height: 250px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
}
footer h2 {
  font: normal normal 700 2rem/130% "Montserrat", sans-serif;
  width: 100%;
  text-align: center;
  color: #6ecde6;
  margin-bottom: 20px;
}
footer .contact-links a {
  margin: 0 20px;
  font-size: 40px;
  color: white;
}
footer .contact-links a .fab, footer .contact-links a .fas {
  transition: 0.3s ease-in-out;
}
footer .contact-links a .fab:hover, footer .contact-links a .fas:hover {
  transform: scale(1.1) rotate(4deg);
}

@media screen and (max-width: 768px) {
  header h1 {
    font-size: 4rem;
  }
  header h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  header h1 {
    font-size: 3rem;
  }
  header h2 {
    font-size: 1.2rem;
  }

  main {
    height: 600px;
  }
  main .portfolio h2 {
    font-size: 1.2rem;
  }
  main .portfolio .card__title h3 {
    font-size: 1rem;
  }

  footer h2 {
    font-size: 1.2rem;
  }
  footer .contact-links a {
    font-size: 30px;
  }

  .slick-next:before, .slick-prev:before {
    font-size: 20px;
  }

  .slick-slide {
    width: 100%;
    margin-right: 0;
  }
}

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