.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-1 {
  flex: 1;
}
.center-v {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-bottom {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.no-underline {
  text-decoration: none !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* fade in animations */
.no-js .fade-in {
  transform: translateY(0rem) !important;
  opacity: 1 !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.show {
  transform: translateY(0rem);
  opacity: 1;
}
/* scale in animations */
.no-js .scale-in {
  transform: scale(1) !important;
  opacity: 1 !important;
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-in.show {
  transform: scale(1);
  opacity: 1;
}
.shadow {
  box-shadow: -1rem 1rem 2rem rgba(0, 0, 0, 0.1);
}
.shadow-sm {
  box-shadow: 0rem 1rem 2rem rgba(0, 0, 0, 0.08);
}


.delay-fade {
  transition-delay: 0.6s;
  transform: rotateZ(0);
}
.delay-fade-sm {
  transition-delay: 0.3s;
  transform: rotateZ(0);
}
.text-center {
  text-align: center !important;
  display: block;
  width: 100%;
}
.next_project_link {
  z-index: 2;
  display: block;
  position: relative;
  text-decoration: none !important;
}
.next_project_text > span {
  display: block;
}
.next_project_text {
  position: absolute;
  top: 2rem;
  left: 2rem;
  line-height: 5rem;
  font-size: 4.5rem;
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 600;
}
.next_project_text .arrow-right {
  background-image: url(/images/common/arrow-right-white.svg);
  width: 3.5rem;
  height: 2.5rem;
}
.d-block {
  display: block;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.full_image,
.page-section,
.home_project {
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background-size: cover;
}
.home_project {
  position: relative;
}
.home_project img {
  width: 100%;
}
.home_project.left .page-feature-overlay {
  transition: transform ease 0.5s;
  transform: translateX(-100%);
}
.home_project.right .page-feature-overlay {
  transition: transform ease 0.5s;
  transform: translateX(100%);
}
.home_project:hover .page-feature-overlay {
  transform: translateX(0);
}

.full_image{
  overflow: hidden;
}
.home_project img,
.full_image img {
  transform: scale(1);
  transition: transform linear 0.5s;
}
.home_project:hover img,
.full_image:hover img {
  transform: scale(1.05);
}
.no-max-width {
  max-width: none !important;
}
.edge_image {
  position: relative;
}
.edge_image .page-section {
  z-index: 1;
}
.edge_image .edge_image_link {
  z-index: 2;
  text-decoration: none !important;
}
.edge_image .container {
  position: relative;
  z-index: 2;
}
.edge_footer {
  text-align: center;
  margin-top: 4rem;
}
.edge_footer .caption {
  font-weight: bold;
  color: #404040;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.edge_footer .about_me {
  color: #6a6666;
  font-size: 1.5rem;
}
.edge_bottom {
  z-index: 1;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.edge_content {
  background-size: cover;
  padding: 4rem 2rem;
  display: block;
  margin: 0;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center center;
}
.edge_blockquote {
  color: #404040;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 2.5rem;
  padding: 0;
  margin: 0;
}

.edge_blockquote .comma {
  width: 40px;
  display: block;
}
.edge_blockquote .content {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto auto;
  grid-column-gap: 1.5rem;
}
.grid_row_content p {
  font-family: 'Oxygen', sans-serif;
  font-size: 1.5rem;
  line-height: 2.3rem;
  color: #404040;
}
.legal-text {
  color: #404040;
  font-size: 0.8rem;
  line-height: 1rem;
  text-align:center;
  padding: 0.2rem;
}


