.about-me .about-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 20px;
}
@media (max-width: 736px) {
  .about-me .about-title {
    line-height: inherit;
  }
}
.about-me .about-content {
  margin: 0;
}
.about-me .about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
}
@media (max-width: 736px) {
  .about-me .about-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/**


Project Preview


**/
.project .project-image-container.animated {
  -webkit-transform: translateY(5%) scale(0.95);
      -ms-transform: translateY(5%) scale(0.95);
          transform: translateY(5%) scale(0.95);
  opacity: 0;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
}
.project .project-image-container.shown {
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
@media (max-width: 736px) {
  .project .project-image-container {
    width: 100%;
    margin-top: 20px;
  }
}
.project .project-image-container.site {
  -webkit-box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1.5px 3px 0 rgba(0, 0, 0, 0.15);
}
.project .project-image-container .project-image {
  max-width: 100%;
}

.articles {
  padding: 20px 20px 4rem 20px;
}
.articles .articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.articles .project-image {
  max-width: 100%;
  border-radius: 5px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.articles .article-header {
  padding-top: 20px;
}
.articles .article {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.02);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 1rem;
  text-decoration: none;
  color: #000;
  height: 100%;
}

/**


VIEW MORE


**/
.view-more {
  padding: 40px 0;
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.button {
  padding: 14px 28px;
  background: #186d5d;
  color: rgb(255, 255, 255);
  font-size: 1em;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  border: 0 solid;
  min-height: 49px;
  outline: 0;
  margin: 0;
}
.button:hover, .button:focus {
  background-color: #24a28b;
  cursor: pointer;
}
.button:active {
  opacity: 0.9;
}

footer {
  background-color: #1C232F;
  color: rgba(245, 247, 250, 0.639216);
  padding: 4em 20px 1em 20px;
}
@media (max-width: 736px) {
  footer {
    height: 100vh;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-height: 600px;
  }
}
footer .footer-title {
  font-size: 1.1em;
  margin-bottom: 1em;
}
footer .footer {
  padding-top: 1em;
  text-align: center;
}
footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8em;
}

.reach-out {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reach-out a {
  color: inherit;
  text-decoration: none;
}
.reach-out a:hover, .reach-out a:focus, .reach-out a:active {
  text-decoration: underline;
}
.reach-out a:hover .icon, .reach-out a:focus .icon, .reach-out a:active .icon {
  fill: rgba(255, 255, 255, 0.9);
}
@media (max-width: 736px) {
  .reach-out {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.reach-out .icon {
  vertical-align: middle;
  fill: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  margin-right: 12px;
}