    /* details page css */
:root {
    --primary-clr: #00CC61;
    --secondary-clr: #00aeef;
    --white-clr: #FFF;
    --dark-clr: #000;
    --fw-light: 400;
    --fw-regular: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --primary-font: "Inter", sans-serif;
    --smooth4: all 0.4s ease-in-out;
    --smooth3: all 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
}

.success-stories-details a {
    text-decoration: none;
    outline: none !important;
    box-shadow: unset;
    transition: var(--smooth4);
}

.success-stories-details a:hover {
    text-decoration: none;
}

.success-stories-details .ssd-wrap {
    display: flex;
    gap: 140px;
}
.ssd-wrap .ssd-info-left{
    width: 572px;
       flex: 0 0 auto;
}
.ssd-wrap .ssd-content-right {
    width: calc(100% - 712px);
    flex: 0 0 auto;
}

.success-stories-details .ssd-info-card {
    position: relative;
    padding: 0 60px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-stories-details .ssd-info-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border-radius: 10px;
    background: var(--primary-clr);
}

.success-stories-details .ssd-info-img {
    overflow: hidden;
    border-radius: 15px;
    display: inline-flex;
    margin: 0 0 35px !important;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 9;
}

.success-stories-details .ssd-info-img img {
    border-radius: 15px;
    aspect-ratio: 1.02;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-stories-details .ssd-info-title {
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 9;
}

.success-stories-details .ssd-info-title h4 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.25;
    color: var(--dark-clr);
    font-family: var(--primary-font);
    margin: 0 0 12px;
}

.success-stories-details .ssd-info-title p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: var(--primary-font);
    color: var(--dark-clr);
    margin: 0;
}

.success-stories-details .ssd-desc p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
    color: var(--dark-clr);
    margin: 0 0 15px;
    font-family: var(--primary-font);
}
a.backBtn {
    padding: 10px 20px;
    display: inline-block;
    background: #F2F2F2;
    color: #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

a.backBtn svg {
    margin-right: 5px;
    transition: all 0.5s linear;
}
a.backBtn:hover svg {
    transform: translate(-5px, 0px);
}
@media (max-width:1199px) {
    .success-stories-details .ssd-info-card{
        padding: 0 40px 40px;
    }
    .success-stories-details .ssd-info-title h4{
        font-size: 30px;
    }
    .success-stories-details .ssd-info-title p{
        font-size: 16px;
    }
    .success-stories-details .ssd-wrap {
        gap: 50px;
    }

    .ssd-wrap .ssd-info-left,
    .ssd-wrap .ssd-content-right {
        width: calc(50% - 25px);
    }

    .success-stories-details .ssd-desc p {
        font-size: 14px;
        margin: 0 0 12px;
    }

    .success-stories-details .ssd-info-title h4 {
        margin: 0 0 10px;
    }
}

@media (max-width:991px) {
    .success-stories-details .ssd-wrap {
        flex-wrap: wrap;
        gap: 35px;
    }

    .ssd-wrap .ssd-info-left,
    .ssd-wrap .ssd-content-right {
        width: 100%;
    }

    .success-stories-details .ssd-info-img {
        margin: 0 0 28px !important;
    }

}

@media (max-width:575px) {
    a.backBtn{
        font-size: 13px;
    }
    .success-stories-details .ssd-wrap {
        gap: 25px;
    }

    .success-stories-details .ssd-info-card {
        padding: 0 20px 20px;
    }

    .success-stories-details .ssd-info-img {
        margin: 0 0 22px !important;
    }

    .success-stories-details .ssd-info-title h4 {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .success-stories-details .ssd-info-title p {
        font-size: 13px;
    }

    .success-stories-details .ssd-desc p {
        font-size: 13px;
    }
}
