body{
    background:#ece6d8;
    color:#222;
    font-family:sans-serif;
}

.case-study-single{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.case-title{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: baseline;
}




/* HERO */
.case-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    margin-bottom:80px;
}

#g-header:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 0.85;
    background-color: transparent !important;
    background-image: -webkit-linear-gradient(-310deg, #172b46, #80d0eb);
    background-image: none !important;
}

.hero-content{
    max-width:500px;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:0px;

}

.hero-right{
    max-width: 500px
}

.hero-content p{
    color:#666;
    line-height:1.7;
    margin:0px
}

.hero-image img{
    max-width:450px;
}


/* MAIN */
.case-main{
    margin-bottom:120px;
}

.case-main h2{
    font-size:50px;
    margin-bottom:30px;
}

.case-tag{
    display:inline-block;
    background:#78d0ef;
    border:1px solid #222;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
    box-shadow: 3px 2px #222;
}

.case-banner{
    border-radius:25px;
    overflow:hidden;
    margin-bottom:50px;
}

.case-banner img{
    width:100%;
    display:block;
}

.case-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.case-content a {
    color:#000  !important;
    text-decoration: none;
}

.intro{
    margin-bottom:40px;
    line-height:1.8;
}

.case-block{
    margin-bottom:40px;
}

.case-block h4{
    font-style:italic;
    margin-bottom:15px;
}

.case-block ul{
    padding-left:18px;
}

.case-block li{
    margin-bottom:10px;
    line-height:1.7;
}


/* RELATED */
.related-case h2{
    margin-bottom:50px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.d-none {
    display: none;
}

#g-header h2{
    line-height: normal  !important;
}

.related-card{
    background:transparent;
}

.related-image{
    background:#fff;
    border:2px solid #333;
    border-radius:25px;
    box-shadow:6px 6px 0 #222;
    height:220px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.related-image img{
    max-width:180px;
}

.related-card h3{
    font-size:20px;
    margin-bottom:0px;
    line-height: normal;
}

.related-card p{
    color:#666;
    line-height:1.8;
}


.see-more{
    text-align:center;
    margin-top:60px;
}

.see-more a{
    display:inline-block;
    background:#b8d430;
    color:#222;
    text-decoration:none;
    padding:16px 35px;
    border-radius:10px;
    font-weight:600;
    border:2px solid #222;
    box-shadow:4px 4px 0 #222;
}

.case-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin:80px 0;
}

.case-prev a,
.case-next a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border:1px solid #8d8a80;
    border-radius:40px;
    text-decoration:none;
    color:#5d5b56  !important;
    font-size:15px;
    transition:.3s;
}

.case-prev a:hover,
.case-next a:hover{
    background:#fff;
}

.case-pages{
    display:flex;
    gap:15px;
}

.case-pages a{
    text-decoration:none;
    color:#777  !important;
    font-size:15px;
    transition:.3s;
}

.case-pages a.active{
    color:#111;
    font-weight:700;
}

.case-pages a:hover{
    color:#111;
}

.case-content {
    display: block !important;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}


/* RESPONSIVE */
@media(max-width:991px){

    .case-hero{
        flex-direction:column;
    }

    .case-content{
        grid-template-columns:1fr;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

    .case-main h2{
        font-size:40px;
    }
}