@charset "UTF-8";
/* CSS Document */

.project-card img {
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.project-title {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-title {
  opacity: 1;
  padding: 0 5px;
}



.uk-slidenav-next {
  background-color: rgba(47,49,47, 0.8)!important;
  border-radius: 50%!important;
  color: #fff!important;
  padding: 10px 10px 10px 11px!important;
  
}

.uk-slidenav-previous {
  background-color: rgba(47,49,47, 0.8)!important;
  border-radius: 50%!important;
  color: #fff!important;
  padding: 10px 11px 10px 10px!important;
}

.uk-slidenav-next svg, .uk-slidenav-previous svg {
    width: 14px;
    height: 14px;
}

.info-offcanvas {
  background-color: #fff;
  color: #000;
  position: absolute;
  top: 0;
  right: 0;
  text-transform: uppercase;
  font-family: var(--fontbody);
  font-size: 1.0rem;
  padding: 20px;
  border: none;
  font-weight: 700;
}
.info-offcanvas:hover {
  cursor: pointer;
  background-color: transparent;
  transition: opacity 0.5s ease;
}
.uk-offcanvas-bar {
  background: #fff!important;
  padding: 50px 20px 90px 20px!important;
  width: 386px!important;
}

.uk-offcanvas-bar a {
  color: #e87a67!important;
  text-decoration: none;
  font-weight: 600;
}

.uk-offcanvas-close svg {
  color: #000;
}

.uk-offcanvas-bar .title {
  font-size: 2.4rem;
  font-family: var(--fontheading);
  font-weight: 600;
  text-transform: uppercase;
  color: #777777;
  margin: 20px 0;
}

.uk-offcanvas-bar .description p {
  font-family: var(--fontbody);
  font-size: 1.4rem;
  color: #777777;
}

.uk-offcanvas-bar .credit {
  font-family: var(--fontheading);
  font-size: 1.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 40px 0 10px 0;
}

.uk-offcanvas-bar p {
  font-family: var(--fontbody);
  font-size: 1.2rem;
  color: #777777;
  font-weight: 400;
  margin-bottom: 0;
}

.uk-offcanvas-bar .description p {
  margin-top: 28px; 
}

.uk-offcanvas-bar span {
  font-weight: 700;
}

.canvas-footer {
  position: absolute;
  bottom: 90px;
}

.adjacent-grid { 
  width: 99%;
  box-sizing: border-box;
}

.adjacent-grid .meta-nav {
  font-size: 1.0rem;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20px;
}

.adjacent-grid h4 {
  line-height: .8em;
  min-height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adjacent-grid h4 a { 
  font-size: 1.4rem;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff!important;
  line-height: 1.25em;
}

.adjacent-grid .proj-btn a {
  margin-top: 0;
  color: #fff!important;
}

.adjacent-grid .proj-btn {
  bottom: 0;
  position: absolute;
  left: 50%;
  margin-left: -33px;
}

.vertical-cover {
    object-fit: contain;
    max-height: 100vh;
}

.wide-cover {
    object-fit: cover;
    width: 100vw;
}

/** ================== | MOBILE | ================== **/
@media screen and (max-width : 780px) {
    .wide-cover { height: 100vh; }
    .vertical-cover {object-fit: cover; height: 100vh;}
}