/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 550px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

.portfolio {
  padding-top: 155px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .portfolio {
    padding-top: 250px;
    padding-bottom: 110px;
  }
}
.portfolio .portfolio-title {
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 100px;
  font-weight: 300;
}
.portfolio-gallery {
  margin-right: -25px;
}
.portfolio-gallery::after {
  content: "";
  display: block;
  clear: both;
}
.portfolio-gallery__sizer {
  width: 25%;
}
@media (min-width: 1280px) {
  .portfolio-gallery__sizer {
    width: 25px;
  }
}
.portfolio-gallery__empty {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  padding: 50px 0;
}
.portfolio-gallery__empty.active {
  display: flex;
}
.portfolio-gallery__empty a {
  text-decoration: none;
}
.portfolio-gallery__item {
  height: 200px;
  width: 100%;
  margin-bottom: 25px;
  cursor: pointer;
  border-right: 25px solid var(--sk-color-body);
}
.portfolio-gallery__item:hover .portfolio-gallery__content {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .portfolio-gallery__item {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .portfolio-gallery__item {
    width: 275px;
  }
}
.portfolio-gallery__item:nth-child(1n+1) {
  height: 250px;
}
.portfolio-gallery__item:nth-child(2n+1) {
  height: 300px;
}
.portfolio-gallery__item:nth-child(3n) {
  height: 325px;
}
.portfolio-gallery__item:nth-child(4n+1):not(:first-child) {
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  .portfolio-gallery__item:nth-child(4n+1):not(:first-child) {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .portfolio-gallery__item:nth-child(4n+1):not(:first-child) {
    width: 275px;
  }
}
.portfolio-gallery__item:nth-child(4n) {
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .portfolio-gallery__item:nth-child(4n) {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .portfolio-gallery__item:nth-child(4n) {
    width: 400px;
  }
}
.portfolio-gallery__img {
  height: 100%;
}
.portfolio-gallery__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-gallery__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition-duration: 0.6s;
}
.portfolio-gallery__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.portfolio-gallery__content--logo {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  width: 33.35%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-gallery__content--logo img {
  width: 100%;
  height: 100%;
}
.portfolio-gallery__content--content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
}
.portfolio-gallery__content--content h2 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.portfolio-gallery__content--content p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}
.portfolio-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}
