@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap");
/* MAIN COLORS */
/* STANDARD ELEMENTS */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

img {
  width: 100%;
  height: auto;
}

.btn {
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
  border-radius: 4px;
  -webkit-transition: 0.15s all ease-out;
  transition: 0.15s all ease-out;
  position: relative;
  color: #000;
  text-decoration: none;
}

.btn:first-child {
  margin-right: 3rem;
}

.btn--underline:after {
  content: '';
  display: block;
  width: 0;
  height: 1rem;
  background-color: #FCC999;
  -webkit-transition: 0.15s all ease-out;
  transition: 0.15s all ease-out;
}

.btn--underline:hover, .btn--underline :focus {
  color: #04cc90;
}

.btn--underline:hover:after, .btn--underline :focus:after {
  width: 100%;
}

.container {
  width: 95%;
  margin: 0 auto;
}

/* HERO SECTION */
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  padding: 2rem 0 2rem;
}

.social-media {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-media--mobile {
  display: none;
}

.social-media__item {
  margin-right: 1rem;
}

.social-media__item :last-child {
  margin-right: 0;
}

.navbar {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar--footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navbar__item {
  font-size: 2rem;
  margin-right: 3rem;
}

.navbar__item :last-child {
  margin-right: 0;
}

.navbar__link {
  cursor: pointer;
  text-decoration: none;
  font-weight: 300;
  color: #7c7c7c;
}

.navbar__link--footer {
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
  color: #c7c7c7;
}

.navbar__link--footer:hover, .navbar__link--footer:active {
  color: white;
}

.navbar__link:hover {
  color: #000;
}

.fab, .fas {
  font-size: 3rem;
  color: #000;
  cursor: pointer;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 7rem);
}

.hero__text {
  width: 50%;
  padding: 12vh 10rem;
}

.hero__image {
  position: relative;
  width: 50%;
  background-image: url("../images/architecture-balconies-building-1829191.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__title {
  font-size: 6.5rem;
  color: #14262D;
}

.hero__subtitle {
  font-weight: 300;
  letter-spacing: 0.4rem;
  margin-top: 1.5rem;
  color: #818181;
}

.hero__subtitle:after {
  content: '';
  display: block;
  margin-top: 0.5rem;
  width: 12rem;
  height: 1rem;
  background-color: #FCC999;
}

.hero__location-text {
  font-size: 2.4rem;
  font-weight: 300;
  color: #818181;
  margin-top: 4rem;
}

.hero__down-arrow {
  display: block;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-120%, 15%);
          transform: translate(-120%, 15%);
  width: 50px;
  height: 50px;
  background-color: #FCC999;
  -webkit-clip-path: polygon(100% 0, 42% 0, 100% 100%);
          clip-path: polygon(100% 0, 42% 0, 100% 100%);
}

.hero:after {
  content: '';
  display: none;
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 15%);
          transform: translate(-50%, 15%);
  background-color: #000;
  -webkit-clip-path: polygon(100% 0, 42% 100%, 42% 0);
          clip-path: polygon(100% 0, 42% 100%, 42% 0);
}

/* PROJECTS SECTION */
.projects {
  padding: 10rem 3rem;
}

.projects__title {
  margin: 0 10rem 10rem;
  font-size: 5rem;
}

.projects__title:after {
  content: '';
  display: block;
  margin-top: 0.5rem;
  width: 19rem;
  height: 1.5rem;
  background-color: #FCC999;
}

.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  margin: 0 auto 12rem;
}

.project__sidebar {
  width: 40%;
  margin: 0 3rem;
  text-align: right;
  position: relative;
}

.project__body {
  width: 50%;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.project__image {
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
  width: 100%;
  height: auto;
  margin: 0 1rem 0 auto;
  -webkit-transition: 0.15s all ease-out;
  transition: 0.15s all ease-out;
}

.project__image--overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.project__image--overlay:hover {
  opacity: 1;
}

.project__description {
  font-size: 1.6rem;
  line-height: 2.4rem;
  width: 100%;
  min-height: 150px;
  color: #636363;
}

.project__stack {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project__title {
  color: #19232A;
  font-weight: 500;
  font-size: 3.6rem;
  margin: 0 0 0.3rem 0;
}

.project__footer {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stack__item {
  font-weight: 300;
  font-size: 1.8rem;
  padding: 0px 1rem;
  margin-bottom: 1rem;
  color: #04cc90;
  border-right: solid 1px #04cc90;
}

.stack__item:first-child {
  padding-left: 0;
}

.stack__item:last-child {
  border-right: none;
}

/* FOOTER SECTION */
footer {
  background-color: black;
  color: #999;
  padding: 1rem 0 5rem;
}

.footer {
  text-align: center;
  font-size: 2rem;
}

.footer__links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__links i {
  color: #c7c7c7;
  font-size: 2rem;
}

.email__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0 1rem;
}

.email__link {
  display: block;
  margin: 0 auto;
  text-decoration: none;
  color: #c7c7c7;
  font-size: 2rem;
}

.email__link i {
  font-size: 2rem;
  color: #c7c7c7;
}

.email__link:hover, .email__link:focus {
  color: #FFF;
}

.email__link:hover i, .email__link:focus i {
  color: #FFF;
}

.footer-media {
  list-style: none;
}

.footer-media__wrapper {
  width: 30%;
  text-align: right;
}

.media__link {
  text-decoration: none;
  color: #c7c7c7;
}

.media__link:hover, .media__link:focus {
  color: #FFF;
}

.media__link:hover i, .media__link:focus i {
  color: #FFF;
}

/******************/
/*  MEDIA QUERIES */
/******************/
@media screen and (max-width: 1200px) {
  .hero__text {
    padding-right: 0rem;
  }
  .project {
    width: 95%;
  }
  .project__sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .project__description {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .hero__text {
    padding-left: 3rem;
  }
  .hero__title {
    font-size: 5rem;
  }
  .btn:first-child {
    margin-left: -0.7rem;
  }
  .projects {
    padding-top: 3rem;
  }
  .projects__title {
    margin-left: 0;
  }
  .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .project__sidebar {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    margin: 0;
  }
  .project__body {
    width: 100%;
    padding: 0 1rem;
  }
  .project__image {
    -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
            box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.25);
    width: 50%;
    min-width: 450px;
    margin: 0 auto;
  }
  .project__image--overlay {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0 auto;
  }
  .project__description {
    margin: 1.5rem auto 0 auto;
    min-height: 0;
    font-size: 1.4rem;
  }
  .project__stack {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .project__title {
    font-weight: 500;
    font-size: 3rem;
    margin-top: 1.5rem;
  }
  .project__footer {
    margin-top: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-media__wrapper {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .projects {
    padding: 3rem 1rem;
  }
  .projects__title {
    font-size: 4rem;
  }
  .projects__title:after {
    width: 15rem;
    height: 1rem;
  }
  .project__description {
    text-align: justify;
    width: 90%;
  }
  .project__sidebar {
    margin: 0;
    padding: 0;
  }
  .project__image {
    width: 80%;
    min-width: 0;
    min-height: 0;
  }
  .hero__text {
    width: 100%;
    text-align: center;
    padding: 4rem 0;
  }
  .hero:after {
    bottom: 60px;
  }
  .hero__subtitle {
    display: inline-block;
    margin: 0 auto;
  }
  .hero__subtitle:after {
    content: '';
    display: block;
    width: 12rem;
    height: 1rem;
    background-color: #FCC999;
    margin: 0.5rem auto 0;
  }
  .hero__image {
    width: 0;
  }
  .hero:after {
    display: block;
  }
  .hero__down-arrow {
    bottom: 60px;
  }
  .navbar {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .social-media {
    display: none;
  }
  .social-media--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.5rem;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__text {
    padding-top: 8rem;
  }
  .hero__title {
    font-size: 6rem;
  }
  .project__description {
    width: 100%;
  }
  .project__image {
    width: 100%;
    min-width: 0;
  }
  .projects {
    width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */