/* .cs-portfolio__list {
    margin: -15px;
    transition: 1s height;
} */

.cs-portfolio__list.full-width {
    left: -webkit-calc(50%);
    left: calc(50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0
}

.cs-portfolio__list.full-width-space {
    left: -webkit-calc(50%);
    left: calc(50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0
}
/* 
.cs-portfolio__list.no-space {
    margin: 0
} */

.cs-portfolio__image {
    background-color: var(--dark-color);
    width: calc(100% + 1px)
}

@media only screen and (max-width: 767px) {
    .cs-portfolio__image {
        max-height: 65vh;
        max-height: 65vmax;
        overflow-y: hidden
    }
}

.cs-portfolio__image img {
    /* width: 90%; */
    width: 100%;
    height: auto
}

.cs-portfolio__load {
    margin-top: 80px;
    text-align: center
}

.cs-portfolio__item-link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    visibility: hidden
}

.cs-portfolio__item-wrap:hover .cs-portfolio__item-link {
    visibility: visible
}

.cs-portfolio__width.no-space {
    padding-left: 0;
    padding-right: 0
}

.cs-portfolio__item.no-space {
    padding-left: 0;
    padding-right: 0
}

.cs-portfolio__item.space-normal {
    padding-top: 15px;
    padding-bottom: 15px
}

@media (min-width: 768px) {
    .cs-portfolio__item.cs-5-col,
    .cs-portfolio__width.cs-5-col {
        width: 33.33%
    }
    .cs-portfolio__item.cs-5-col-2,
    .cs-portfolio__width.cs-5-col-2 {
        width: 66.66%
    }
}

@media (min-width: 991px) {
    .cs-portfolio__item.cs-5-col,
    .cs-portfolio__width.cs-5-col {
        width: 25%
    }
    .cs-portfolio__item.cs-5-col-2,
    .cs-portfolio__width.cs-5-col-2 {
        width: 50%
    }
    .cs-portfolio__item.cs-5-col-3,
    .cs-portfolio__width.cs-5-col-3 {
        width: 75%
    }
}

@media (min-width: 1200px) {
    .cs-portfolio__item.cs-5-col,
    .cs-portfolio__width.cs-5-col {
        width: 20%
    }
    .cs-portfolio__item.cs-5-col-2,
    .cs-portfolio__width.cs-5-col-2 {
        width: 40%
    }
    .cs-portfolio__item.cs-5-col-3,
    .cs-portfolio__width.cs-5-col-3 {
        width: 60%
    }
    .cs-portfolio__item.cs-5-col-4,
    .cs-portfolio__width.cs-5-col-4 {
        width: 80%
    }
}

.cs-portfolio__overlay {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 332;
    transition: all .3s ease
}

.cs-portfolio__overlay.active {
    opacity: 1;
    pointer-events: visible
}

.cs-portfolio__close {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
    position: fixed;
    z-index: 9999;
    display: none;
    font-size: 20px
}

.cs-portfolio .mob-filter {
    display: none
}

.cs-portfolio-full__bar {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    background-color: var(--light-color);
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    top: 50%;
    z-index: 9998;
    box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.3);
    transition: all .3s ease;
    max-width: 1200px;
    width: 100%
}

.cs-portfolio-full__bar.active {
    opacity: 1;
    pointer-events: visible
}

.cs-portfolio-full__bar .btn-wrap {
    position: absolute;
    bottom: -26px;
    right: 50px
}

.cs-portfolio-full__bar .btn-wrap i {
    margin-right: 15px
}

.cs-portfolio-full__bar .btn-wrap .a-btn:first-of-type {
    margin-right: 12px
}

.cs-portfolio-full__filter {
    display: flex
}

.cs-portfolio-full__filter-wrap {
    max-height: 80vh;
    overflow: auto;
    padding: 60px 70px;
    flex: 1;
    background-image: linear-gradient(154deg, rgba(var(--light-color), 0.5), rgba(0, 0, 0, 0.1))
}

.cs-portfolio-full__filter-tabs {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: bold
}

.cs-portfolio-full__filter-item {
    margin-bottom: 13px;
    font-size: 14px;
    color: var(--grey-color);
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    transform: translateY(-50%)
}

.cs-portfolio-full__filter-item:hover {
    cursor: pointer
}

.cs-portfolio-full__filter-item::before {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    background-color: var(--dark-color);
    top: 50%;
    transform: translateY(-50%);
    left: 0
}

.cs-portfolio-full__filter-item.active {
    color: #000;
    padding-left: 10px
}

.cs-portfolio-full__filter-item.active::before {
    width: 15px
}

.cs-portfolio__bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 110px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 80px
}

.cs-portfolio__title {
    padding: 0 15px;
    margin: 0;
    font-size: 40px;
    width: auto
}

.cs-portfolio__filter {
    padding: 0 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative
}

.cs-portfolio__filter:last-child:first-child {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 100%
}

.cs-portfolio__filter:last-child:first-child.center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.cs-portfolio__filter-tabs {
    display: flex;
    flex-wrap: wrap
}

.cs-portfolio__filter-tabs-item {
    margin: 0 19px;
    cursor: pointer;
    font-size: 12px;
    color: var(--dark-color);
    opacity: .47;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.8px
}

.cs-portfolio__filter-tabs-item.active {
    opacity: 1
}

.cs-portfolio__filter-tabs-current {
    font-size: 12px;
    color: var(--dark-color);
    font-weight: bold;
    margin: 0 17px 10px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1.8px
}

.cs-portfolio__filter-content-inner {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -48px;
    opacity: 0;
    visibility: hidden
}

.cs-portfolio__filter-content-inner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease
}

.cs-portfolio__filter-content-inner.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease
}

.cs-portfolio__filter-content-inner div {
    margin: 0 10px
}

.cs-portfolio__filter.style-1 .cs-portfolio__filter-item {
    display: inline-block;
    color: var(--grey-color);
    font-size: 13px;
    font-weight: 500;
    transition: 0.35s;
    cursor: pointer;
    position: relative;
    white-space: nowrap
}

.cs-portfolio__filter.style-1 .cs-portfolio__filter-item.hide {
    opacity: 0.3;
    pointer-events: none;
    touch-action: none
}

.cs-portfolio__filter.style-1 .cs-portfolio__filter-item::before {
    content: "";
    width: 0;
    left: 50%;
    height: 1px;
    background-color: var(--grey-color);
    position: absolute;
    bottom: 0;
    transition: all .3s ease
}

.cs-portfolio__filter.style-1 .cs-portfolio__filter-item.active {
    color: var(--dark-color)
}

.cs-portfolio__filter.style-1 .cs-portfolio__filter-item.active::before {
    width: 100%;
    left: 0
}

.cs-portfolio__filter.style-2 .cs-portfolio__filter-item {
    display: inline-block;
    color: var(--grey-color);
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    cursor: pointer;
    position: relative
}

.cs-portfolio__filter.style-2 .cs-portfolio__filter-item:after {
    height: 1px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--grey-color);
    -ms-transform-origin: right center;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -ms-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -o-transition: -o-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.cs-portfolio__filter.style-2 .cs-portfolio__filter-item.active {
    color: var(--dark-color)
}

.cs-portfolio__filter.style-2 .cs-portfolio__filter-item.active:after {
    -ms-transform-origin: left center;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.cs-portfolio__filter.style-2 .cs-portfolio__filter-item:hover:after {
    -ms-transform-origin: left center;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.cs-portfolio__filter.filter-light .cs-portfolio__filter-tabs-item {
    color: var(--light-color);
    opacity: 0.32
}

.cs-portfolio__filter.filter-light .cs-portfolio__filter-tabs-item.active {
    opacity: 1;
    color: var(--light-color)
}

.cs-portfolio__filter.filter-light .cs-portfolio__filter-tabs-current {
    color: var(--light-color)
}

.cs-portfolio__filter.filter-light.style-1 .cs-portfolio__filter-item {
    color: var(--light-color);
    opacity: 0.32
}

.cs-portfolio__filter.filter-light.style-1 .cs-portfolio__filter-item.active {
    color: var(--light-color);
    opacity: 1
}

.cs-portfolio .swiper-slide {
    width: auto;
    padding: 0 20px
}

.cs-portfolio .swiper-button-next,
.cs-portfolio .swiper-button-prev {
    font-family: "Ionicons";
    border: solid 2px var(--grey-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    position: static;
    cursor: pointer;
    transition: 0.35s;
    margin: 0;
    margin-left: 10px;
    left: auto;
    background-image: none;
    flex: 0 0 40px
}

.cs-portfolio .swiper-button-next:hover,
.cs-portfolio .swiper-button-prev:hover {
    background-color: var(--grey-color)
}

.cs-portfolio .swiper-button-prev {
    right: 65px
}

.cs-portfolio .swiper-button-prev:before {
    content: "\f3cf"
}

.cs-portfolio .swiper-button-next {
    right: 15px
}

.cs-portfolio .swiper-button-next:before {
    content: "\f3d1"
}

.cs-portfolio .swiper-container {
    max-width: 100%;
    margin-right: 20px;
    margin-left: -20px
}

.cs-portfolio .swiper-container:last-child {
    margin-right: -20px
}

.cs-portfolio__pagination {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 1
}

.cs-portfolio__pagination a {
    font-weight: 600;
    color: #b5b5b5;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle
}

.cs-portfolio__pagination a.active,
.cs-portfolio__pagination a:hover {
    color: var(--dark-color)
}

.cs-portfolio__pagination-page {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px
}

.cs-portfolio__pagination-next,
.cs-portfolio__pagination-prev {
    font-size: 12px
}

.cs-portfolio__pagination-next {
    margin-left: 20px
}

.cs-portfolio__pagination-next:before {
    content: "\f3d1";
    font-family: "Ionicons"
}

.cs-portfolio__pagination-prev {
    margin-right: 20px
}

.cs-portfolio__pagination-prev:before {
    content: "\f3cf";
    font-family: "Ionicons"
}

.cs-portfolio__item.style-1 .cs-portfolio__item-wrap {
    position: relative;
    overflow: hidden
}

.cs-portfolio__item.style-1 .cs-portfolio__image {
    transition: 0.35s
}

.cs-portfolio__item.style-1 .cs-portfolio__category {
    display: none
}

.cs-portfolio__item.style-1 .cs-portfolio__content {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    z-index: 2;
    background-color: var(--light-color);
    padding: 7% 12%;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.cs-portfolio__item.style-1 .cs-portfolio__item-title {
    font-size: 28px
}

.cs-portfolio__item.style-1 .cs-portfolio__link {
    color: var(--grey-color);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 600
}

.cs-portfolio__item.style-1 .cs-portfolio__link:before {
    width: 0;
    height: 1px;
    background-color: var(--grey-color);
    display: inline-block;
    content: '';
    top: -4px;
    left: 0;
    transition: 0.35s;
    position: relative
}

.cs-portfolio__item.style-1 .cs-portfolio__link:hover {
    color: #a0d1bf
}

.cs-portfolio__item.style-1 .cs-portfolio__link:hover:before {
    width: 40px;
    background-color: #a0d1bf
}

.cs-portfolio__item.style-1 .cs-portfolio__item-wrap:hover .cs-portfolio__content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.cs-portfolio__item.style-1 .cs-portfolio__item-wrap:hover .cs-portfolio__image {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
}

.cs-portfolio__item.style-2 .cs-portfolio__item-wrap {
    position: relative;
    margin-right: 0px;
    margin-left: 0px;
}

.cs-portfolio__item.style-2 .cs-portfolio__content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    padding: 45px;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none
}

.cs-portfolio__item.style-2 .cs-portfolio__content:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(var(--light-color-a), 0.9);
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    z-index: -1
}

.cs-portfolio__item.style-2 .cs-portfolio__category {
    display: none
}

.cs-portfolio__item.style-2 .cs-portfolio__item-title {
    font-size: 1.68vw;
    line-height: 1.2;
    pointer-events: auto;
    margin-bottom: 10px;
    text-transform: capitalize
}

.cs-portfolio__item.style-2 .cs-portfolio__link {
    color: var(--grey-color);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 600;
    pointer-events: auto;
    text-transform: capitalize
}

.cs-portfolio__item.style-2 .cs-portfolio__link:before {
    width: 0;
    height: 1px;
    background-color: var(--grey-color);
    display: inline-block;
    content: '';
    top: -4px;
    left: 0;
    transition: 0.35s;
    position: relative
}

.cs-portfolio__item.style-2 .cs-portfolio__link:hover {
    color: #a0d1bf
}

.cs-portfolio__item.style-2 .cs-portfolio__link:hover:before {
    width: 40px;
    background-color: #a0d1bf
}

.cs-portfolio__item.style-2 .cs-portfolio__item-wrap:hover .cs-portfolio__content {
    opacity: 1
}

.cs-portfolio__item.style-2 .cs-portfolio__item-wrap:hover .cs-portfolio__content:before {
    left: 30px;
    top: 30px;
    bottom: 30px;
    right: 30px
}

.cs-portfolio__item.style-3 .cs-portfolio__item-wrap {
    position: relative
}

.cs-portfolio__item.style-3 .cs-portfolio__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    position: relative
}

.cs-portfolio__item.style-3 .cs-portfolio__item-title {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 0;
    padding-right: 15px
}

.cs-portfolio__item.style-3 .cs-portfolio__image {
    background-position: 0 0;
    -webkit-transition: 3s background-position, .3s box-shadow;
    -o-transition: 3s background-position, .3s box-shadow;
    transition: 3s background-position, .3s box-shadow
}

.cs-portfolio__item.style-3 .cs-portfolio__category,
.cs-portfolio__item.style-3 .cs-portfolio__link {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    -webkit-transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out
}

.cs-portfolio__item.style-3 .cs-portfolio__category:before,
.cs-portfolio__item.style-3 .cs-portfolio__link:before {
    height: 1px;
    display: inline-block;
    content: '';
    top: -4px;
    left: -5px;
    position: relative;
    width: 40px;
    background-color: currentColor
}

.cs-portfolio__item.style-3 .cs-portfolio__category {
    color: #b5b5b5;
    position: relative;
    text-align: right
}

.cs-portfolio__item.style-3 .cs-portfolio__link {
    color: #a0d1bf;
    text-decoration: none;
    text-align: right;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden
}

.cs-portfolio__item.style-3 .cs-portfolio__link:before {
    left: -2px
}

.cs-portfolio__item.style-3 .cs-portfolio__item-wrap:hover .cs-portfolio__category {
    opacity: 0;
    visibility: hidden
}

.cs-portfolio__item.style-3 .cs-portfolio__item-wrap:hover .cs-portfolio__link {
    opacity: 1;
    visibility: visible
}

.cs-portfolio__item.style-3 .cs-portfolio__item-wrap:hover .cs-portfolio__image {
    background-position: 100% 100%;
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.11)
}

.cs-portfolio__item.style-3.grid .cs-portfolio__content {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--light-color);
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px
}

.cs-portfolio__item.style-3.grid.no-space .cs-portfolio__content {
    padding-left: 15px;
    padding-right: 15px
}

.cs-portfolio__item.style-4 .cs-portfolio__item-wrap {
    position: relative;
    overflow: hidden
}

.cs-portfolio__item.style-4 .cs-portfolio__image {
    transition: 0.35s
}

.cs-portfolio__item.style-4 .cs-portfolio__category {
    color: var(--grey-color);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1
}

.cs-portfolio__item.style-4 .cs-portfolio__content {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    pointer-events: none;
    z-index: 2;
    background-color: var(--light-color);
    padding: 7% 11%;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    transition: 0.35s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.cs-portfolio__item.style-4 .cs-portfolio__item-title {
    font-size: 26px;
    line-height: 1
}

.cs-portfolio__item.style-4 .cs-portfolio__link {
    display: none
}

.cs-portfolio__item.style-4 .cs-portfolio__item-wrap:hover .cs-portfolio__content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.cs-portfolio__item.style-4 .cs-portfolio__item-wrap:hover .cs-portfolio__image {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
}

.cs-portfolio__item.style-5 {
    overflow: visible
}

.cs-portfolio__item.style-5.justified {
    width: auto
}

.cs-portfolio__item.style-5 .cs-portfolio__item-wrap {
    overflow: hidden;
    transition: all .3s ease;
    position: relative
}

.cs-portfolio__item.style-5 .cs-portfolio__justified-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.cs-portfolio__item.style-5 .cs-portfolio__justified-wrap img {
    max-width: 102%
}

.cs-portfolio__item.style-5 .cs-portfolio__link {
    display: none
}

.cs-portfolio__item.style-5 .cs-portfolio__content {
    position: absolute;
    bottom: 15px;
    right: -26%;
    background-color: #000000;
    padding: 18px 40px;
    z-index: 1;
    transform: translateX(-175%);
    transition: all .3s ease;
    opacity: 0;
    pointer-events: none
}

.cs-portfolio__item.style-5 .cs-portfolio__item-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 5px
}

.cs-portfolio__item.style-5 .cs-portfolio__category {
    font-size: 12px;
    font-weight: bold;
    opacity: .5;
    letter-spacing: 1.8px;
    color: var(--light-color);
    text-transform: uppercase
}

.cs-portfolio__item.style-5:hover {
    transform: scale(1.13);
    z-index: 1;
    transition: all .3s ease
}

.cs-portfolio__item.style-5:hover.justified .cs-portfolio__content {
    right: auto
}

.cs-portfolio__item.style-5:hover .cs-portfolio__item-wrap {
    box-shadow: 0px 0px 35px 20px rgba(0, 0, 0, 0.5)
}

.static-menu-animation .cs-portfolio__item.style-2 .cs-portfolio__item-title {
    font-size: 26px
}

.popup-span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    background-color: #000000;
    padding: 18px 40px;
    font-size: 26px;
    font-weight: bold;
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 5px;
    max-width: 250px;
    word-break: break-word
}

.popup-span .cs-portfolio__item-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 5px
}

.popup-span .cs-portfolio__category {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.8px;
    color: var(--grey-color);
    text-transform: uppercase
}

@media (max-width: 1280px) {
    .cs-portfolio__item.style-4 .cs-portfolio__item-title {
        font-size: 20px
    }
}

@media (max-width: 1200px) {
    .cs-portfolio__bar {
        padding: 0 50px
    }
    .cs-portfolio-full__filter-wrap {
        width: 50%;
        flex: auto
    }
    .cs-portfolio-full__bar {
        width: 80%
    }
    .cs-portfolio-full__filter {
        flex-wrap: wrap;
        max-height: 80vh;
        overflow: auto
    }
    .cs-portfolio-full__filter-tabs {
        font-size: 30px
    }
}

@media (max-width: 991px) {
    .cs-portfolio-full__filter {
        margin-bottom: 60px
    }
    .cs-portfolio-full__filter-wrap {
        padding: 60px 70px 0px
    }
}

@media (max-width: 991px) {
    .cs-portfolio__bar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 70px
    }
    .cs-portfolio__filter-content-inner {
        bottom: -35px
    }
    .cs-portfolio__title {
        font-size: 32px;
        width: 100%;
        margin-bottom: 25px;
        text-align: center
    }
    .cs-portfolio__filter {
        width: 100%;
        max-width: 100%
    }
    .cs-portfolio__list {
        margin-bottom: -15px
    }
    .cs-portfolio__load {
        margin-top: 50px
    }
    .cs-portfolio__item.style-1 .cs-portfolio__item-title {
        font-size: 21px
    }
    .cs-portfolio__item.style-1 .cs-portfolio__link:hover {
        text-indent: 30px
    }
    .cs-portfolio__item.style-1 .cs-portfolio__link:hover:before {
        width: 25px
    }
    .cs-portfolio__item.style-2 .cs-portfolio__item-title {
        font-size: 2.8vw
    }
    .cs-portfolio__item.style-4 .cs-portfolio__item-title {
        font-size: 20px
    }
    .cs-portfolio__item.style-5:hover .cs-portfolio__item-wrap {
        box-shadow: 0px 0px 50px 0px var(--grey-color);
        overflow: visible
    }
    .cs-portfolio__item.style-5:hover .cs-portfolio__content {
        opacity: 1;
        z-index: 2;
        transform: translateX(0) scale(0.87);
        right: 0
    }
}

@media (max-width: 767px) {
    .cs-portfolio__item.space-normal {
        padding-top: 8px;
        padding-bottom: 8px
    }
    .cs-portfolio__item.style-4 .cs-portfolio__content {
        padding: 25px 10% 10px
    }
    .cs-portfolio__load {
        margin-top: 35px
    }
    .cs-portfolio__bar {
        padding: 0 15px;
        margin-bottom: 50px
    }
    .cs-portfolio__filter-tabs {
        justify-content: center
    }
    .cs-portfolio__filter-tabs-item {
        margin-bottom: 10px
    }
    .cs-portfolio__filter-content-inner {
        bottom: -20px
    }
    .cs-portfolio__item.style-2 .cs-portfolio__item-title {
        font-size: 4.5vw
    }
    .static-menu-animation .cs-portfolio__item.style-2 .cs-portfolio__item-title {
        font-size: 4.5vw
    }
    body.filter-overlay {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%
    }
    .cs-portfolio__item.style-5:hover .cs-portfolio__content {
        opacity: 0
    }
}

@media (max-width: 600px) {
    .cs-portfolio-full__filter-wrap {
        width: 100%;
        padding: 30px 40px 0px
    }
    .cs-portfolio-full__bar {
        width: 80%
    }
    .cs-portfolio-full__bar .btn-wrap {
        right: 10px
    }
    .cs-portfolio-full__filter-tabs {
        font-size: 30px;
        margin-bottom: 15px
    }
    .cs-portfolio-full__filter {
        height: 75vh;
        overflow-y: scroll;
        margin-bottom: 20px
    }
}

@media (max-width: 400px) {
    .cs-portfolio-full__filter-wrap {
        padding: 15px 15px 0px
    }
    .cs-portfolio-full__bar .btn-wrap {
        text-align: center;
        width: 100%;
        right: 0
    }
    .cs-portfolio-full__bar .btn-wrap .a-btn:first-of-type {
        margin-right: 0
    }
}

@media (max-width: 375px) {
    .cs-portfolio__title {
        font-size: 27px
    }
    .cs-portfolio__title {
        margin-bottom: 25px
    }
    .cs-portfolio .swiper-button-next,
    .cs-portfolio .swiper-button-prev {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        line-height: 22px;
        font-size: 12px
    }
    .cs-portfolio .swiper-button-prev {
        order: -1;
        margin-left: 0;
        margin-right: 10px
    }
    .cs-portfolio .swiper-container {
        margin: 0
    }
}

.cs-portfolio--mosaics {
    padding-left: 70px;
    padding-right: 70px
}

.cs-portfolio--mosaics .cs-portfolio__list {
    margin-bottom: -85px
}

.cs-portfolio--mosaics .cs-portfolio__bar {
    margin-bottom: 129px
}

.cs-portfolio--mosaics .cs-portfolio__image {
    padding-bottom: 470px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item {
    padding: 0 35px 85px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+1) .cs-portfolio__image,
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+3) .cs-portfolio__image {
    padding-bottom: 610px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2),
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4),
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6),
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) {
    padding-bottom: 70px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) .cs-portfolio__item-wrap,
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4) .cs-portfolio__item-wrap,
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6) .cs-portfolio__item-wrap,
.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) .cs-portfolio__item-wrap {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) {
    padding-top: 70px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+5) {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 10%;
    padding-left: 0;
    margin-left: -55px
}

.cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n) {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 10%;
    padding-right: 0;
    margin-right: -55px
}

@media (max-width: 1200px) {
    .cs-portfolio--mosaics {
        padding-left: 0;
        padding-right: 0
    }
    .cs-portfolio--mosaics .cs-portfolio__bar {
        margin-bottom: 100px
    }
    .cs-portfolio--mosaics .cs-portfolio__list {
        margin-bottom: -70px
    }
    .cs-portfolio--mosaics .cs-portfolio__image {
        padding-bottom: 400px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item {
        padding: 0 30px 70px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+1) .cs-portfolio__image,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+3) .cs-portfolio__image {
        padding-bottom: 550px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) {
        padding-bottom: 60px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) .cs-portfolio__item-wrap,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4) .cs-portfolio__item-wrap,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6) .cs-portfolio__item-wrap,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) .cs-portfolio__item-wrap {
        max-width: 90%
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) {
        padding-top: 60px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+5) {
        margin-left: 0
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n) {
        margin-right: 0
    }
}

@media (max-width: 991px) {
    .cs-portfolio--mosaics .cs-portfolio__bar {
        margin-bottom: 80px
    }
    .cs-portfolio--mosaics .cs-portfolio__list {
        margin-bottom: -50px
    }
    .cs-portfolio--mosaics .cs-portfolio__image {
        padding-bottom: 320px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item {
        padding: 0 15px 50px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+1) .cs-portfolio__image,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+3) .cs-portfolio__image {
        padding-bottom: 400px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) {
        padding-bottom: 50px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) {
        padding-top: 40px
    }
}

@media (max-width: 767px) {
    .cs-portfolio--mosaics .cs-portfolio__bar {
        margin-bottom: 35px
    }
    .cs-portfolio--mosaics .cs-portfolio__list {
        margin-bottom: -15px
    }
    .cs-portfolio--mosaics .cs-portfolio__image {
        padding-bottom: 100%
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item {
        padding: 0 0 35px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+1) .cs-portfolio__image,
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-child(8n+3) .cs-portfolio__image {
        padding-bottom: 125%
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+4),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+6),
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+7) {
        padding-bottom: 35px
    }
    .cs-portfolio--mosaics .cs-portfolio__item.visibility-item:nth-of-type(8n+2) {
        padding-top: 0
    }
}

.cs-portfolio__item.visibility-item:nth-child(1) [data-css-animation] {
    -webkit-transition-delay: 450ms;
    -o-transition-delay: 450ms;
    transition-delay: 450ms
}

.cs-portfolio__item.visibility-item:nth-child(2) [data-css-animation] {
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms
}

.cs-portfolio__item.visibility-item:nth-child(3) [data-css-animation] {
    -webkit-transition-delay: 1350ms;
    -o-transition-delay: 1350ms;
    transition-delay: 1350ms
}

.cs-portfolio__item.visibility-item:nth-child(4) [data-css-animation] {
    -webkit-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms
}

.cs-portfolio__item.visibility-item:nth-child(5) [data-css-animation] {
    -webkit-transition-delay: 2250ms;
    -o-transition-delay: 2250ms;
    transition-delay: 2250ms
}

.cs-portfolio__item.visibility-item:nth-child(6) [data-css-animation] {
    -webkit-transition-delay: 2700ms;
    -o-transition-delay: 2700ms;
    transition-delay: 2700ms
}

.cs-portfolio__item.visibility-item:nth-child(7) [data-css-animation] {
    -webkit-transition-delay: 3150ms;
    -o-transition-delay: 3150ms;
    transition-delay: 3150ms
}

.cs-portfolio__item.visibility-item:nth-child(8) [data-css-animation] {
    -webkit-transition-delay: 3600ms;
    -o-transition-delay: 3600ms;
    transition-delay: 3600ms
}

.cs-portfolio__item.visibility-item:nth-child(9) [data-css-animation] {
    -webkit-transition-delay: 4050ms;
    -o-transition-delay: 4050ms;
    transition-delay: 4050ms
}

.cs-portfolio__item.visibility-item:nth-child(10) [data-css-animation] {
    -webkit-transition-delay: 4500ms;
    -o-transition-delay: 4500ms;
    transition-delay: 4500ms
}

.cs-portfolio__item.visibility-item:nth-child(11) [data-css-animation] {
    -webkit-transition-delay: 4950ms;
    -o-transition-delay: 4950ms;
    transition-delay: 4950ms
}

.cs-portfolio__item.visibility-item:nth-child(12) [data-css-animation] {
    -webkit-transition-delay: 5400ms;
    -o-transition-delay: 5400ms;
    transition-delay: 5400ms
}

.cs-portfolio__item.visibility-item:nth-child(13) [data-css-animation] {
    -webkit-transition-delay: 5850ms;
    -o-transition-delay: 5850ms;
    transition-delay: 5850ms
}

.cs-portfolio__item.visibility-item:nth-child(14) [data-css-animation] {
    -webkit-transition-delay: 6300ms;
    -o-transition-delay: 6300ms;
    transition-delay: 6300ms
}

.cs-portfolio__item.visibility-item:nth-child(15) [data-css-animation] {
    -webkit-transition-delay: 6750ms;
    -o-transition-delay: 6750ms;
    transition-delay: 6750ms
}

.cs-portfolio__item.visibility-item:nth-child(16) [data-css-animation] {
    -webkit-transition-delay: 7200ms;
    -o-transition-delay: 7200ms;
    transition-delay: 7200ms
}

.cs-portfolio__item.visibility-item:nth-child(17) [data-css-animation] {
    -webkit-transition-delay: 7650ms;
    -o-transition-delay: 7650ms;
    transition-delay: 7650ms
}

.cs-portfolio__item.visibility-item:nth-child(18) [data-css-animation] {
    -webkit-transition-delay: 8100ms;
    -o-transition-delay: 8100ms;
    transition-delay: 8100ms
}

.cs-portfolio__item.visibility-item:nth-child(19) [data-css-animation] {
    -webkit-transition-delay: 8550ms;
    -o-transition-delay: 8550ms;
    transition-delay: 8550ms
}

.cs-portfolio__item.visibility-item:nth-child(20) [data-css-animation] {
    -webkit-transition-delay: 9000ms;
    -o-transition-delay: 9000ms;
    transition-delay: 9000ms
}

.cs-portfolio__item.visibility-item:nth-child(21) [data-css-animation] {
    -webkit-transition-delay: 9450ms;
    -o-transition-delay: 9450ms;
    transition-delay: 9450ms
}

.cs-portfolio__item.visibility-item:nth-child(22) [data-css-animation] {
    -webkit-transition-delay: 9900ms;
    -o-transition-delay: 9900ms;
    transition-delay: 9900ms
}

.cs-portfolio__item.visibility-item:nth-child(23) [data-css-animation] {
    -webkit-transition-delay: 10350ms;
    -o-transition-delay: 10350ms;
    transition-delay: 10350ms
}

.cs-portfolio__item.visibility-item:nth-child(24) [data-css-animation] {
    -webkit-transition-delay: 10800ms;
    -o-transition-delay: 10800ms;
    transition-delay: 10800ms
}

.cs-portfolio__item.visibility-item:nth-child(25) [data-css-animation] {
    -webkit-transition-delay: 11250ms;
    -o-transition-delay: 11250ms;
    transition-delay: 11250ms
}

.cs-portfolio__item.visibility-item:nth-child(26) [data-css-animation] {
    -webkit-transition-delay: 11700ms;
    -o-transition-delay: 11700ms;
    transition-delay: 11700ms
}

.cs-portfolio__item.visibility-item:nth-child(27) [data-css-animation] {
    -webkit-transition-delay: 12150ms;
    -o-transition-delay: 12150ms;
    transition-delay: 12150ms
}

.cs-portfolio__item.visibility-item:nth-child(28) [data-css-animation] {
    -webkit-transition-delay: 12600ms;
    -o-transition-delay: 12600ms;
    transition-delay: 12600ms
}

.cs-portfolio__item.visibility-item:nth-child(29) [data-css-animation] {
    -webkit-transition-delay: 13050ms;
    -o-transition-delay: 13050ms;
    transition-delay: 13050ms
}

.cs-portfolio__item.visibility-item:nth-child(30) [data-css-animation] {
    -webkit-transition-delay: 13500ms;
    -o-transition-delay: 13500ms;
    transition-delay: 13500ms
}

.cs-portfolio__item.visibility-item:nth-child(31) [data-css-animation] {
    -webkit-transition-delay: 13950ms;
    -o-transition-delay: 13950ms;
    transition-delay: 13950ms
}

.cs-portfolio__item.visibility-item:nth-child(32) [data-css-animation] {
    -webkit-transition-delay: 14400ms;
    -o-transition-delay: 14400ms;
    transition-delay: 14400ms
}

.cs-portfolio__item.visibility-item:nth-child(33) [data-css-animation] {
    -webkit-transition-delay: 14850ms;
    -o-transition-delay: 14850ms;
    transition-delay: 14850ms
}

.cs-portfolio__item.visibility-item:nth-child(34) [data-css-animation] {
    -webkit-transition-delay: 15300ms;
    -o-transition-delay: 15300ms;
    transition-delay: 15300ms
}

.cs-portfolio__item.visibility-item:nth-child(35) [data-css-animation] {
    -webkit-transition-delay: 15750ms;
    -o-transition-delay: 15750ms;
    transition-delay: 15750ms
}

.cs-portfolio__item.visibility-item:nth-child(36) [data-css-animation] {
    -webkit-transition-delay: 16200ms;
    -o-transition-delay: 16200ms;
    transition-delay: 16200ms
}

.cs-portfolio__item.visibility-item:nth-child(37) [data-css-animation] {
    -webkit-transition-delay: 16650ms;
    -o-transition-delay: 16650ms;
    transition-delay: 16650ms
}

.cs-portfolio__item.visibility-item:nth-child(38) [data-css-animation] {
    -webkit-transition-delay: 17100ms;
    -o-transition-delay: 17100ms;
    transition-delay: 17100ms
}

.cs-portfolio__item.visibility-item:nth-child(39) [data-css-animation] {
    -webkit-transition-delay: 17550ms;
    -o-transition-delay: 17550ms;
    transition-delay: 17550ms
}

.cs-portfolio__item.visibility-item:nth-child(40) [data-css-animation] {
    -webkit-transition-delay: 18000ms;
    -o-transition-delay: 18000ms;
    transition-delay: 18000ms
}

.cs-portfolio__item.visibility-item:nth-child(41) [data-css-animation] {
    -webkit-transition-delay: 18450ms;
    -o-transition-delay: 18450ms;
    transition-delay: 18450ms
}

.cs-portfolio__item.visibility-item:nth-child(42) [data-css-animation] {
    -webkit-transition-delay: 18900ms;
    -o-transition-delay: 18900ms;
    transition-delay: 18900ms
}

.cs-portfolio__item.visibility-item:nth-child(43) [data-css-animation] {
    -webkit-transition-delay: 19350ms;
    -o-transition-delay: 19350ms;
    transition-delay: 19350ms
}

.cs-portfolio__item.visibility-item:nth-child(44) [data-css-animation] {
    -webkit-transition-delay: 19800ms;
    -o-transition-delay: 19800ms;
    transition-delay: 19800ms
}

.cs-portfolio__item.visibility-item:nth-child(45) [data-css-animation] {
    -webkit-transition-delay: 20250ms;
    -o-transition-delay: 20250ms;
    transition-delay: 20250ms
}

.cs-portfolio__item.visibility-item:nth-child(46) [data-css-animation] {
    -webkit-transition-delay: 20700ms;
    -o-transition-delay: 20700ms;
    transition-delay: 20700ms
}

.cs-portfolio__item.visibility-item:nth-child(47) [data-css-animation] {
    -webkit-transition-delay: 21150ms;
    -o-transition-delay: 21150ms;
    transition-delay: 21150ms
}

.cs-portfolio__item.visibility-item:nth-child(48) [data-css-animation] {
    -webkit-transition-delay: 21600ms;
    -o-transition-delay: 21600ms;
    transition-delay: 21600ms
}

.cs-portfolio__item.visibility-item:nth-child(49) [data-css-animation] {
    -webkit-transition-delay: 22050ms;
    -o-transition-delay: 22050ms;
    transition-delay: 22050ms
}

.cs-portfolio__item.visibility-item:nth-child(50) [data-css-animation] {
    -webkit-transition-delay: 22500ms;
    -o-transition-delay: 22500ms;
    transition-delay: 22500ms
}

.cs-portfolio__item.visibility-item:nth-child(51) [data-css-animation] {
    -webkit-transition-delay: 22950ms;
    -o-transition-delay: 22950ms;
    transition-delay: 22950ms
}

.cs-portfolio__item.visibility-item:nth-child(52) [data-css-animation] {
    -webkit-transition-delay: 23400ms;
    -o-transition-delay: 23400ms;
    transition-delay: 23400ms
}

.cs-portfolio__item.visibility-item:nth-child(53) [data-css-animation] {
    -webkit-transition-delay: 23850ms;
    -o-transition-delay: 23850ms;
    transition-delay: 23850ms
}

.cs-portfolio__item.visibility-item:nth-child(54) [data-css-animation] {
    -webkit-transition-delay: 24300ms;
    -o-transition-delay: 24300ms;
    transition-delay: 24300ms
}

.cs-portfolio__item.visibility-item:nth-child(55) [data-css-animation] {
    -webkit-transition-delay: 24750ms;
    -o-transition-delay: 24750ms;
    transition-delay: 24750ms
}

.cs-portfolio__item.visibility-item:nth-child(56) [data-css-animation] {
    -webkit-transition-delay: 25200ms;
    -o-transition-delay: 25200ms;
    transition-delay: 25200ms
}

.cs-portfolio__item.visibility-item:nth-child(57) [data-css-animation] {
    -webkit-transition-delay: 25650ms;
    -o-transition-delay: 25650ms;
    transition-delay: 25650ms
}

.cs-portfolio__item.visibility-item:nth-child(58) [data-css-animation] {
    -webkit-transition-delay: 26100ms;
    -o-transition-delay: 26100ms;
    transition-delay: 26100ms
}

.cs-portfolio__item.visibility-item:nth-child(59) [data-css-animation] {
    -webkit-transition-delay: 26550ms;
    -o-transition-delay: 26550ms;
    transition-delay: 26550ms
}

.cs-portfolio__item.visibility-item:nth-child(60) [data-css-animation] {
    -webkit-transition-delay: 27000ms;
    -o-transition-delay: 27000ms;
    transition-delay: 27000ms
}

.cs-portfolio__item.visibility-item:nth-child(61) [data-css-animation] {
    -webkit-transition-delay: 27450ms;
    -o-transition-delay: 27450ms;
    transition-delay: 27450ms
}

.cs-portfolio__item.visibility-item:nth-child(62) [data-css-animation] {
    -webkit-transition-delay: 27900ms;
    -o-transition-delay: 27900ms;
    transition-delay: 27900ms
}

.cs-portfolio__item.visibility-item:nth-child(63) [data-css-animation] {
    -webkit-transition-delay: 28350ms;
    -o-transition-delay: 28350ms;
    transition-delay: 28350ms
}

.cs-portfolio__item.visibility-item:nth-child(64) [data-css-animation] {
    -webkit-transition-delay: 28800ms;
    -o-transition-delay: 28800ms;
    transition-delay: 28800ms
}

.cs-portfolio__item.visibility-item:nth-child(65) [data-css-animation] {
    -webkit-transition-delay: 29250ms;
    -o-transition-delay: 29250ms;
    transition-delay: 29250ms
}

.cs-portfolio__item.visibility-item:nth-child(66) [data-css-animation] {
    -webkit-transition-delay: 29700ms;
    -o-transition-delay: 29700ms;
    transition-delay: 29700ms
}

.cs-portfolio__item.visibility-item:nth-child(67) [data-css-animation] {
    -webkit-transition-delay: 30150ms;
    -o-transition-delay: 30150ms;
    transition-delay: 30150ms
}

.cs-portfolio__item.visibility-item:nth-child(68) [data-css-animation] {
    -webkit-transition-delay: 30600ms;
    -o-transition-delay: 30600ms;
    transition-delay: 30600ms
}

.cs-portfolio__item.visibility-item:nth-child(69) [data-css-animation] {
    -webkit-transition-delay: 31050ms;
    -o-transition-delay: 31050ms;
    transition-delay: 31050ms
}

.cs-portfolio__item.visibility-item:nth-child(70) [data-css-animation] {
    -webkit-transition-delay: 31500ms;
    -o-transition-delay: 31500ms;
    transition-delay: 31500ms
}

.cs-portfolio__item.visibility-item:nth-child(71) [data-css-animation] {
    -webkit-transition-delay: 31950ms;
    -o-transition-delay: 31950ms;
    transition-delay: 31950ms
}

.cs-portfolio__item.visibility-item:nth-child(72) [data-css-animation] {
    -webkit-transition-delay: 32400ms;
    -o-transition-delay: 32400ms;
    transition-delay: 32400ms
}

.cs-portfolio__item.visibility-item:nth-child(73) [data-css-animation] {
    -webkit-transition-delay: 32850ms;
    -o-transition-delay: 32850ms;
    transition-delay: 32850ms
}

.cs-portfolio__item.visibility-item:nth-child(74) [data-css-animation] {
    -webkit-transition-delay: 33300ms;
    -o-transition-delay: 33300ms;
    transition-delay: 33300ms
}

.cs-portfolio__item.visibility-item:nth-child(75) [data-css-animation] {
    -webkit-transition-delay: 33750ms;
    -o-transition-delay: 33750ms;
    transition-delay: 33750ms
}

.cs-portfolio__item.visibility-item:nth-child(76) [data-css-animation] {
    -webkit-transition-delay: 34200ms;
    -o-transition-delay: 34200ms;
    transition-delay: 34200ms
}

.cs-portfolio__item.visibility-item:nth-child(77) [data-css-animation] {
    -webkit-transition-delay: 34650ms;
    -o-transition-delay: 34650ms;
    transition-delay: 34650ms
}

.cs-portfolio__item.visibility-item:nth-child(78) [data-css-animation] {
    -webkit-transition-delay: 35100ms;
    -o-transition-delay: 35100ms;
    transition-delay: 35100ms
}

.cs-portfolio__item.visibility-item:nth-child(79) [data-css-animation] {
    -webkit-transition-delay: 35550ms;
    -o-transition-delay: 35550ms;
    transition-delay: 35550ms
}

.cs-portfolio__item.visibility-item:nth-child(80) [data-css-animation] {
    -webkit-transition-delay: 36000ms;
    -o-transition-delay: 36000ms;
    transition-delay: 36000ms
}

.cs-portfolio__item.visibility-item:nth-child(81) [data-css-animation] {
    -webkit-transition-delay: 36450ms;
    -o-transition-delay: 36450ms;
    transition-delay: 36450ms
}

.cs-portfolio__item.visibility-item:nth-child(82) [data-css-animation] {
    -webkit-transition-delay: 36900ms;
    -o-transition-delay: 36900ms;
    transition-delay: 36900ms
}

.cs-portfolio__item.visibility-item:nth-child(83) [data-css-animation] {
    -webkit-transition-delay: 37350ms;
    -o-transition-delay: 37350ms;
    transition-delay: 37350ms
}

.cs-portfolio__item.visibility-item:nth-child(84) [data-css-animation] {
    -webkit-transition-delay: 37800ms;
    -o-transition-delay: 37800ms;
    transition-delay: 37800ms
}

.cs-portfolio__item.visibility-item:nth-child(85) [data-css-animation] {
    -webkit-transition-delay: 38250ms;
    -o-transition-delay: 38250ms;
    transition-delay: 38250ms
}

.cs-portfolio__item.visibility-item:nth-child(86) [data-css-animation] {
    -webkit-transition-delay: 38700ms;
    -o-transition-delay: 38700ms;
    transition-delay: 38700ms
}

.cs-portfolio__item.visibility-item:nth-child(87) [data-css-animation] {
    -webkit-transition-delay: 39150ms;
    -o-transition-delay: 39150ms;
    transition-delay: 39150ms
}

.cs-portfolio__item.visibility-item:nth-child(88) [data-css-animation] {
    -webkit-transition-delay: 39600ms;
    -o-transition-delay: 39600ms;
    transition-delay: 39600ms
}

.cs-portfolio__item.visibility-item:nth-child(89) [data-css-animation] {
    -webkit-transition-delay: 40050ms;
    -o-transition-delay: 40050ms;
    transition-delay: 40050ms
}

.cs-portfolio__item.visibility-item:nth-child(90) [data-css-animation] {
    -webkit-transition-delay: 40500ms;
    -o-transition-delay: 40500ms;
    transition-delay: 40500ms
}

.cs-portfolio__item.visibility-item:nth-child(91) [data-css-animation] {
    -webkit-transition-delay: 40950ms;
    -o-transition-delay: 40950ms;
    transition-delay: 40950ms
}

.cs-portfolio__item.visibility-item:nth-child(92) [data-css-animation] {
    -webkit-transition-delay: 41400ms;
    -o-transition-delay: 41400ms;
    transition-delay: 41400ms
}

.cs-portfolio__item.visibility-item:nth-child(93) [data-css-animation] {
    -webkit-transition-delay: 41850ms;
    -o-transition-delay: 41850ms;
    transition-delay: 41850ms
}

.cs-portfolio__item.visibility-item:nth-child(94) [data-css-animation] {
    -webkit-transition-delay: 42300ms;
    -o-transition-delay: 42300ms;
    transition-delay: 42300ms
}

.cs-portfolio__item.visibility-item:nth-child(95) [data-css-animation] {
    -webkit-transition-delay: 42750ms;
    -o-transition-delay: 42750ms;
    transition-delay: 42750ms
}

.cs-portfolio__item.visibility-item:nth-child(96) [data-css-animation] {
    -webkit-transition-delay: 43200ms;
    -o-transition-delay: 43200ms;
    transition-delay: 43200ms
}

.cs-portfolio__item.visibility-item:nth-child(97) [data-css-animation] {
    -webkit-transition-delay: 43650ms;
    -o-transition-delay: 43650ms;
    transition-delay: 43650ms
}

.cs-portfolio__item.visibility-item:nth-child(98) [data-css-animation] {
    -webkit-transition-delay: 44100ms;
    -o-transition-delay: 44100ms;
    transition-delay: 44100ms
}

.cs-portfolio__item.visibility-item:nth-child(99) [data-css-animation] {
    -webkit-transition-delay: 44550ms;
    -o-transition-delay: 44550ms;
    transition-delay: 44550ms
}

.cs-portfolio__item.visibility-item:nth-child(100) [data-css-animation] {
    -webkit-transition-delay: 45000ms;
    -o-transition-delay: 45000ms;
    transition-delay: 45000ms
}

/*# sourceMappingURL=portfolio-list.min.css.map */