.services-title h2{
    margin-bottom: 17px;
    color: var(--primary--color);
}
.services-title span{
    margin-bottom: 40px;
}
.service-content {
    gap: 40px;
    display: grid;
    margin-top: 10px;
    margin-bottom: 50px;
    grid-template-columns: 47.22% 49%;
}
.service-details span {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary--color);
    font-family: "Plus Jakarta Sans", sans-serif
}
.service-details p {
    margin-bottom: 30px;
}
.service-btn a {
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    display: inline-block;
    color: var(--accent-color);
    padding: 20px 27px;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--accent-color);
}
.service-btn a:hover{
    color: var(--white-color);
    transform: translateY(-5px);
    background: var(--accent-color);
}
.service-btn a i{
    font-size: 14px;
}
.services-box .card-body{
    padding: 0;
}
.service-img figure img{
    width: 100%;
}
.services-box .card-header{
    padding: 0;
    border: 0;
    background: transparent;
}
.services-box .card-header button {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    line-height: 24px;
    padding: 25px 0 27px;
    text-decoration: none;
    position: relative;
    color: var(--primary--color);
    font-family: "Plus Jakarta Sans", sans-serif;
    border-bottom: 1px solid #eee;
}
.services-box .card{
    border: 0;
    border-radius: 0;
}
.services-box .card-header button:not(.collapsed){
    color: var(--accent-color);
    border-bottom: 1px solid transparent;
}
.services-box .card-header button:hover{
    color: var(--accent-color);
}
.services-box .card-header button.collapsed:after {
    top: 50%;
    right: 0;
    content: "\f107";
    position: absolute;
    font-family: "Font Awesome 5 free";
    transform: translateY(-50%);
    color: #ccc;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.services-box #accordion .card:last-child .card-header button{
    border-bottom: none;
}
/* responsive */
@media only screen and (max-width: 1440px) {
    .services-box .card-header button {
        font-size: 22px;
        line-height: 22px;
        padding: 22px 0 24px;
    }
    .service-details span {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 22px;
    }
    .service-details p {
        margin-bottom: 18px;
        font-size: 16px;
    }
    .service-btn a {
        padding: 16px 18px;
    }
    .service-content {
        margin-bottom: 40px;
    }
    .services-title span {
        margin-bottom: 34px;
    }
}
@media only screen and (max-width: 1199px) {
    .services-title span {
        margin-bottom: 28px;
    }
    .services-title h2 {
        margin-bottom: 12px;
    }
    .service-details span {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 18px;
    }
    .service-details p {
        margin-bottom: 14px;
    }
    .service-btn a {
        padding: 14px 18px;
    }
    .service-content {
        margin-bottom: 30px;
    }
    .services-box .card-header button {
        font-size: 20px;
        line-height: 20px;
        padding: 20px 0 22px;
    }
    .services-box .card-header button.collapsed:after {
        width: 35px;
        height: 35px;
    }
}
@media only screen and (max-width: 991px) {
    .service-content {
        gap: 20px;
        grid-template-columns: 47.22% 49%;
        text-align: left;
    }
    .service-details p {
        font-size: 14px;
    }
    .service-btn a {
        font-size: 14px;
        line-height: 14px;
    }
    .services-box .card-header button {
        font-size: 18px;
        line-height: 18px;
    }
    .services-box .card-header button.collapsed:after {
        width: 32px;
        height: 32px;
    }
}
@media only screen and (max-width: 767px) {
    .service-img figure img {
        width: 300px;
    }
    .service-details span {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 8px;
    }
    .service-content {
        grid-template-columns: 100%;
        text-align: center;
    }
    .service-details p {
        font-size: 14px;
    }
    .services-title span {
        margin-bottom: 24px;
    }
}
@media only screen and (max-width: 575px) {
    .services-title span {
        margin-bottom: 14px;
    }
    .service-img figure img {
        width: 300px;
    }
    .service-details span {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 14px;
    }
    .services-box .card-header button {
        font-size: 16px;
        line-height: 16px;
        padding: 18px 0 20px;
    }
    .service-btn a {
        padding: 12px 16px;
    }
    .service-btn a i {
        font-size: 12px;
    }
    .services-box .card-header button.collapsed:after {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}