.case-studies-heading {
    font-family: 'Nasalization', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #243757;
}

.case-study-sliding {
    overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    user-select: none;
    scrollbar-width: none;
}

.case-study-sliding::-webkit-scrollbar {
    display: none;
}

.cs-card-count-circle {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #239066;
    background-color: #BBDDD0;
}

.cs-card-title {
    font-size: 23px;
    font-weight: 500;
    color: #15294B;
}

.cs-card-details {
    font-size: 16px;
    font-weight: 400;
    color: #243757;
}

.cs-card-img-box {
    overflow: hidden;
    height: 250px;
}

.cs-card-img {
    transition: transform 0.3s;
    object-fit: cover;
}

.cs-card-link-button {
    max-width: 50px;
    right: 15px;
    bottom: 12px;
    transition: transform 0.3s;
}

.cs-card-img-overlay {
    right: -2px;
    bottom: -2px;
    width: 110px;
}

.cs-card-img-box:hover .cs-card-img {
    transform: scale(1.1);
}

.cs-card-img-box:hover .cs-card-link-button {
    transform: rotate(-50deg)
}

.our-advisor-img {
    height: 170px;
}

@media (min-width: 992px) {

    .cs-card-link-button {
        max-width: 35px;
        right: 9px;
        bottom: 7px;
    }

    .cs-card-img-overlay {
        width: 70px;
    }

    .our-advisor-img {
        height: inherit;
    }
}