.page-header {
  position: relative;
}
.page-header__image-container {
  position: relative;
  width: 100%;
  display: block;
}
.page-header__image-container:before {
  content: "";
  display: block;
  padding-top: 27.34375%;
}
.page-header__image-container .ratio-item {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991.98px) {
  .page-header__image-container {
    position: relative;
    width: 100%;
    display: block;
  }
  .page-header__image-container:before {
    content: "";
    display: block;
    padding-top: 71.4285714286%;
  }
  .page-header__image-container .ratio-item {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-header__image-container {
    position: relative;
    width: 100%;
    display: block;
  }
  .page-header__image-container:before {
    content: "";
    display: block;
    padding-top: 116.6666666667%;
  }
  .page-header__image-container .ratio-item {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-header__image-container {
  height: 100%;
}
.page-header__image-container::after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}
.page-header__container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.page-header__info {
  max-width: 50%;
}
@media only screen and (max-width: 991.98px) {
  .page-header__info {
    max-width: 100%;
  }
}
.page-header__title {
  font-size: 64px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 2.5px;
}
@media only screen and (max-width: 1399.98px) {
  .page-header__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991.98px) {
  .page-header__title {
    font-size: 32px;
  }
}
.page-header__subtitle {
  font-size: 24px;
  color: white;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 1399.98px) {
  .page-header__subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991.98px) {
  .page-header__subtitle {
    font-size: 16px;
    letter-spacing: unset;
  }
}

.card-portfolio {
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}
.card-portfolio__image-container {
  position: relative;
  width: 100%;
  display: block;
}
.card-portfolio__image-container:before {
  content: "";
  display: block;
  padding-top: 116.6666666667%;
}
.card-portfolio__image-container .ratio-item {
  -o-object-fit: cover;
     object-fit: cover;
}
.card-portfolio__image-container {
  display: block;
  overflow: hidden;
}
.card-portfolio__image {
  transition: 1s ease;
}
.card-portfolio__info-container {
  padding: 16px;
  position: absolute;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  width: 80%;
  background-color: #1C1C1C;
  transition: 0.4s ease;
}
.card-portfolio__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-portfolio__title {
  margin-bottom: 0px;
  font-size: 22px;
  letter-spacing: 1.5px;
  font-weight: 300;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}
.card-portfolio__category {
  font-size: 12px;
  color: white;
}
.card-portfolio:hover .card-portfolio__image {
  transform: scale(1.1);
}
.card-portfolio:hover .card-portfolio__info-container {
  left: 0px;
}

.portfolio-listing {
  position: relative;
  padding: 7.2916666667vw 0vw;
  background-color: #E2DED2;
  /* background-color: #FFFFFF; */
}
@media screen and (max-width: 1199px) {
  .portfolio-listing {
    padding: 11.6763969975vw 0vw;
  }
}
@media screen and (max-width: 767px) {
  .portfolio-listing {
    padding: 7.8226857888vw 0vw;
  }
}
@media screen and (max-width: 480px) {
  .portfolio-listing {
    padding: 12.5vw 0vw;
  }
}
.portfolio-listing__lines {
  display: grid;
  /* grid-template-columns: repeat(6, 1fr); */
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-listing__line {
  height: 100%;
  width: 1px;
  background-color: #dfdfdf;
}
.portfolio-listing__line:nth-child(1) {
  opacity: 0;
}
.portfolio-listing__button-group {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  z-index: 2;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  .portfolio-listing__button-group {
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 575.98px) {
  .portfolio-listing__button-group {
    margin-bottom: 42px;
  }
}

/* ---- button ---- */
.button {
  display: inline-block;
  padding: 10px 24px;
  margin-bottom: 10px;
  background: #EEE;
  border: none;
  color: #222;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
  .button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

.button:hover {
  background-color: #1C1C1C;
  color: white;
}

.button:active,
.button.is-checked {
  background-color: #1C1C1C;
  color: white;
}

.button.is-checked {
  color: white;
}

/* ---- button-group ---- */
.button-group:after {
  content: "";
  display: block;
  clear: both;
}

.button-group .button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.button-group .button:first-child {
  border-radius: 0.5em 0 0 0.5em;
}

.button-group .button:last-child {
  border-radius: 0 0.5em 0.5em 0;
}

/* ---- isotope ---- */
.grid {
  margin-left: -16px;
  margin-right: -16px;
}

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .element-item ---- */
.element-item {
  position: relative;
  float: left;
  width: 23.2%;
  margin: 10px;
  background: #888;
  color: #262524;
}
@media only screen and (max-width: 1399.98px) {
  .element-item {
    width: 22.9%;
  }
}
@media only screen and (max-width: 1199.98px) {
  .element-item {
    width: 22.7%;
  }
}
@media only screen and (max-width: 991.98px) {
  .element-item {
    width: 31%;
    margin: 8px;
  }
}
@media only screen and (max-width: 767.98px) {
  .element-item {
    width: 46%;
  }
}
@media only screen and (max-width: 575.98px) {
  .element-item {
    width: 100%;
  }
}

/*# sourceMappingURL=portfolio.css.map*/