/* title section */
.title-page{
    text-align: center;
    padding: 150px 0 0;
}
.title-page h1{
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
    color: #F4F5F7;
    font-weight: 500;
}
.title-page p{
    font-size: 18px;
    color: #8B8F97;
    line-height: 1.44;
    max-width: 700px;
    margin: auto;
}
@media screen and (max-width: 1199px){
    .title-page{
        padding: 120px 0 0;
    }
    .title-page h1{
        font-size: 50px;
    }
}
@media screen and (max-width: 991px){
    .title-page h1{
        font-size: 40px;
    }
    .title-page p{
        font-size: 16px;
    }
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
    .title-page h1{
        font-size: 30px;
    }
}
/* -- title section */

/* section-all-cases */
.section-all-cases .container{
    max-width: 956px;
}
.section-all-cases .nav-cases{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-all-cases .nav-cases li{
    padding: 14px 15px;
    font-size: 12px;
    font-family: "Geist Mono", monospace;
    font-weight: 500;
    color: #8B8F97;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .3s;
    cursor: pointer;
}
.section-all-cases .nav-cases li:hover,
.section-all-cases .nav-cases li.active{
    color: #fff;
    background: #1B1C1E;
    border-color: #8B8F97;
}

.items-all-cases{
    margin: 60px 0 0;
    padding-top: 80px;
    border-top: 1px solid #232325;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.items-all-cases .item{
    width: calc((100% - 20px) / 2);
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
    opacity: 1;
    transform: scale(1);
}
.items-all-cases .item.hide {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
}
.items-all-cases .item.item-full-width{
    width: 100%;
}
.items-all-cases .item:before{
    content: '';
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.items-all-cases .item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: url(../images/line-what-we-offer-item.svg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 1px;
    z-index: 6;
}
.items-all-cases .item .content{
    padding: 20px 30px 30px;
    position: relative;
    z-index: 9;
}
.items-all-cases .item .content .category{
    text-transform: uppercase;
    font-size: 10px;
    font-family: "Geist Mono", monospace;
    color: #535353;
}
.items-all-cases .item .content h2{
    font-size: 18px;
    color: #F4F5F7;
    line-height: 1.44;
    font-weight: 600;
    margin: 18px 0;
}
.items-all-cases .item .content h2 a{
    color: #F4F5F7;
}
.items-all-cases .item .content h2 a:hover{
    opacity: .7;
}
.items-all-cases .item .content p{
    margin-bottom: 20px;
    font-size: 14px;
    color: #8B8F97;
    font-weight: 300;
    line-height: 1.57;
}
.items-all-cases .item .image{
    position: relative;
}
.items-all-cases .item .image:after{
    content: '';
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 22.25%, #111111 100%), linear-gradient(2.48deg, #33D0E6 -74.13%, rgba(51, 208, 230, 0) 29.44%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.items-all-cases .item.item-full-width .content{
    padding: 40px;
    max-width: 488px;
}
.items-all-cases .item.item-full-width .image{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.items-all-cases .item.item-full-width .image:after{
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, rgba(17, 17, 17, 0) 0%, #111 100%);
}
.items-all-cases .item.item-full-width .image img {
    display: block;
    height: 100%;
}

.items-all-cases .item .image img{
    aspect-ratio: 45 / 20;
    object-fit: cover;
}
/* .btn-arrow{
    border: 1px solid #3A3A3E;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}
.btn-arrow:hover{
    border-color: #fff;
}
.btn-arrow span{
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 28px;
}
.btn-arrow span:first-child{
    padding: 0 15px;
}
.btn-arrow span:last-child{
    width: 28px;
    height: 28px;
    border-left: 1px solid #3A3A3E;
    background-image: url(../images/arrow.svg);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}
.btn-arrow:hover span:last-child{
    background-image: url(../images/arrow-light.svg);
    border-left: 1px solid #fff;
} */

@media screen and (max-width: 1199px){
    .items-all-cases{
        margin: 40px 0 0;
        padding-top: 40px;
    }
}
@media screen and (max-width: 991px){

}
@media screen and (max-width: 767px){
    .items-all-cases .item.item-full-width .image:after{
        background: linear-gradient(-90deg, rgba(17, 17, 17, 0.5) 0%, #111 100%);
    }
}
@media screen and (max-width: 599px){
    .items-all-cases .item.item-full-width,
    .items-all-cases .item{
        width: 100%;
    }
    .items-all-cases .item.item-full-width{
        display: flex;
        flex-wrap: wrap;
    }
    .items-all-cases .item.item-full-width .image{
        position: relative;
        height: auto;
    }
    .items-all-cases .item.item-full-width .image:after{
        background: linear-gradient(180deg, rgba(17, 17, 17, 0) 22.25%, #111111 100%), linear-gradient(2.48deg, #33D0E6 -74.13%, rgba(51, 208, 230, 0) 29.44%);
    }
    .items-all-cases .item.item-full-width .image img{
        height: auto;
        max-width: 100%;
    }
    .items-all-cases .item.item-full-width .content{
        order: 2;
        max-width: 100%;
        padding: 20px 30px 30px;
    }
}
@media screen and (max-width: 479px){

}
/* -- section-all-cases */