html {
  box-sizing: border-box;
  font-family: Work Sans, "sans-serif";
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.5;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h3 {
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
}

.unified-btn {
  width: 8rem;
}

.margin-btn {
  margin: 0.5rem;
}

.wrapper {
  min-height: 99vh;
  display: flex;
  flex-direction: column;
  max-width: 90%;
}
.wrapper hr {
  color: #fff;
}
.wrapper i {
  padding: 0;
  color: white;
  font-size: 64px;
  height: auto;
  margin: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.wrapper i:hover {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  color: #252525;
}
.wrapper .btn-small {
  border-radius: 3px;
  background-color: #fff;
  text-decoration: none;
  padding: 0 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #bc0301;
}
.wrapper .btn-small:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  color: #fff;
  background: #252525;
}
.wrapper .section-1,
.wrapper .section-2 {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.24);
}
.wrapper .section-1 .project-card,
.wrapper .section-2 .project-card {
  margin-bottom: 3rem;
}
.wrapper .section-1 h2,
.wrapper .section-2 h2 {
  color: #bc0301;
}
.wrapper .section-1 {
  background-color: #bc0301;
  color: #fff;
}
.wrapper .section-1 .section-1-contact {
  display: flex;
  padding: 1rem 0;
  justify-content: center;
  flex-wrap: wrap;
}
.wrapper .section-2 {
  background-color: #fff;
  background-image: url("../images/bg1.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.wrapper .section-2 .project-card {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  overflow: hidden;
}
.wrapper .section-2 .project-card .project-card-title,
.wrapper .section-2 .project-card .project-card-thumb,
.wrapper .section-2 .project-card .project-card-description,
.wrapper .section-2 .project-card .project-card-footer {
  padding: 1rem 2rem;
}
.wrapper .section-2 .project-card .project-card-title {
  background-color: #bc0301;
  color: #fff;
}
.wrapper .section-2 .project-card .project-card-description p {
  padding: 0;
  margin: 0;
}
.wrapper .section-2 .project-card .project-card-footer {
  background-color: #cacaca;
  display: flex;
  padding: 1rem 0;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  body {
    font-size: 1.3rem;
    background-image: linear-gradient(to right, #252525 50%, #cacaca 50%);
  }
  .wrapper {
    flex-direction: row;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.24);
  }
  .wrapper .section-1,
.wrapper .section-2 {
    box-shadow: none;
    width: 50%;
    padding: 0 3rem;
    background-size: 100% 100%;
  }
  .wrapper .section-1 {
    position: fixed;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    flex: 1 0 auto;
    align-self: flex-start;
    height: 100vh;
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */