/* need css starts here*/
.need{
    display: flex;
    padding: 100px 0px;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}
.need .left_content {
    max-height:680px;
    position: relative;
}
.need .left_content img{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), lightgray 50% / cover no-repeat;
    max-width: 500px;
    border-radius: 16px;
    object-fit: contain;
    margin: 0;
    display:none;
}
/* Desktop default */
@media (min-width: 1025px) {
    .need .left_content img.desktop {
        display: block;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .need .left_content img.tab {
        display: block;
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .need {
        display: flex;
        padding: 40px 0px;
    }
    .need .left_content img.mobile {
        display: block;
    }
}

/* If no tab/mobile uploaded, show desktop everywhere */
.need .left_content img.show-all {
    display: block !important;
}
.need .right_content{
    /*height: 600px;*/
    padding: 52px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex: 1 0 0;
    border-radius: 16px;
    border: 1px solid #DDE2F3;
    background: #FFF;
    align-self: stretch;
}
.need .right_content .subtitle{
    margin-left:0;
}
.need .right_content h3{
    color: #15171B;
    font-family: var(--font-family-family, Sora);
    font-size: var(--heading-h3-size, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--heading-h3-line-height, 56px);
    margin-bottom: 50px;
}
.need .right_content p{
    margin-bottom:20px ;
    color: var(--text-secondary, #35393F);
    font-family: var(--font-family-family, Sora);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 160% */
}

.need .right_content p:last-child{
    margin-bottom:0;
}
.about_btn{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.about_btn a{
    color: var(--text-secondary, #35393F);
    text-align: center;
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-lg-size, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-lg-line-height, 32px);
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
    /*display: inline-block;*/
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}
.about_btn a.show {
  opacity: 1;
  transform: translateX(0);
}
.about_btn a:nth-child(1){
    border-radius: 60px;
    background: var(--surface-warning-lightest, #EAE7DA);
    transition-delay: 0.2s;
}
.about_btn a:nth-child(2){
    border-radius: 60px;
    background: var(--surface-warning-light, #FDEAB7);
    transition-delay: 0.4s;
}
.about_btn a:nth-child(3){
    border-radius: 60px;
    background: var(--surface-success-light, #B4EFD1);
    transition-delay: 0.6s;
}
@media(max-width:1024px){
    .need {
        flex-direction: column-reverse;
    }
    .need .left_content {
        margin: auto;
        width: 100%;
    }
    .need .right_content h3 {
        font-size: var(--heading-h3-size, 40px);
        line-height: var(--heading-h3-line-height, 60px);
    }
}
@media(max-width:767px){
    .need .left_content img {
        width: 100%;
    }
    .about_btn a {
        font-size: var(--body-lg-size, 16px);
        line-height: var(--body-lg-line-height, 24px);
    }
    .need .right_content {
        padding: 30px 20px;
    }
    .need .right_content h3 {
        font-size: var(--heading-h3-size, 24px);
        line-height: var(--heading-h3-line-height, 32px);
        margin-bottom: 25px;
    }
    .need .right_content p {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 25px;
    }
}
/* need css ends here*/