.services .accordion-item{
    border: 0;
    border-bottom: 1px solid #333438;
    background: none;
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.services .accordion-item:last-child{
    border-bottom: none;
}
.services .accordion-item.active {
    background: rgba(20, 21, 22, 0.56);
    border-radius: 16px;
    border-bottom: 1px solid transparent;
}
.services .accordion-item.is-above{
     border-bottom: 1px solid transparent;
}
.services button.accordion-button {
    display: flex;
    gap: 50px;
    background: none;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.5%;
    padding: 30px 24px;
}
.services button.accordion-button.collapsed {
    font-size: 20px;
}
.services button.accordion-button:after{ 
    content: "";
    background-image: url(../../images/hire-php/btn.svg);
    width: 24px;
    height: 20px;
    position: absolute;
    right: 24px;
    top: 50%;
    padding: 20px;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.4s ease, background 0.3s ease, border 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(0.5);
}
.services .accordion-button:not(.collapsed)::after{
    content: ""; 
    filter: none;
    transform: translateY(-50%) rotate(-50deg) scale(1.1);   
    border-radius: 50%;
    border: 1px solid rgba(94, 106, 210, 1);
}
.services .accordion-collapse {
    padding-left: 100px;
}
.services .accordion-button:focus, .services .accordion-button:focus-visible{
    box-shadow: none;
    border:none;
}
.services .accordion-body{
    margin-bottom: 0;
     padding-bottom: 0;
}
.content-wrapper {
    width: 90%;
    margin-bottom: 30px;
}
.content-wrapper p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color:var(--color-text-secondary);
    margin-bottom: 0;
}
.content-wrapper ul{
    list-style-type: none;
    padding-left: 0;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.content-wrapper ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-secondary);
    padding-left: 24px;
    position: relative;
    padding-bottom: 0;
}
.content-wrapper ul li a{
  color: var(--color-text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-wrapper ul li::before {
    content: "";
    position: absolute;
    background-image: url(../../images/hire-talent/tick.svg);
    width: 16px;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
}
@media (max-width:1399px) {
    .services button.accordion-button{
        font-size: 20px;
        line-height: 30px;
        padding: 24px;
    }
    .services button.accordion-button.collapsed {
        font-size: 18px;
        line-height: 26px;
    }
    .services .accordion-collapse {
        padding-left: 96px;
    }  
}
@media (max-width: 991px) {   
    .services button.accordion-button {
        font-size: 16px;
        line-height: 24px;
        padding: 16px;
        gap:24px;
    }
    .services button.accordion-button.collapsed {
        font-size: 15px;
        line-height: 24px;
    }
    .services .accordion-collapse {
        padding-left: 60px;
    }   
    .services button.accordion-button:after {   
        width: 10px;
        height: 8px;
        background-position: 5px 8px;
        background-size: 60%;
        padding: 14px;
    }    
    .services .accordion-button:not(.collapsed)::after {   
        transform: translateY(-50%) rotate(-27deg) scale(1.1);
    }
    .services__desc br{
        display: none;
    }
     .content-wrapper{
        margin-bottom: 16px;
    }
    .content-wrapper p {
        font-size: 14px;
        line-height: 24px;       
    }
    .content-wrapper ul li{
        font-size: 14px;
        line-height: 24px;
    }
	.services button.accordion-button{
	padding-right:40px;
	}
}
@media (max-width: 767px) {
    .content-wrapper {
        width: 85%;
    } 
}
@media (max-width: 390px) {
    .services button.accordion-button{
        padding:  16px 4px;
        gap: 16px;
    }
    .services .accordion-collapse {
        padding-left: 40px;
    }
    .services button.accordion-button:after{
        right: 4px;
    }
}