#about-service-block .questions__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 880px;
    width: 100%;
}

#about-service-block .about-service__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#about-service-block .about-service__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 585px;
    max-width: 490px;
    position: sticky;
    width: 100%;
    top: 150px;
    gap: 30px;
}

#about-service-block .about-service__title-holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#about-service-block .about-service__title {}

#about-service-block .about-service__desc {
    color: var(--text-primary-main);
}

#about-service-block .btn__info-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-primary-second);
    border-radius: 10px;
    padding: 20px;
    gap: 20px;
}

#about-service-block .price__title-holder {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#about-service-block .price__title {
    color: var(--text-primary-main);
}

#about-service-block .price {
    color: var(--bg-alt-second);
}

#about-service-block .question__item {
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--bg-primary-main);
    transition: var(--transition);
}

#about-service-block .question__item.hidden {
    display: none;
}

#about-service-block .item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* transition: var(--transition); */
    border: 1px solid #d2d6e1;
    background: var(--bg-primary-main);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 10px 10px 30px;
    gap: 20px;
}

#about-service-block .question__item.active {
    border-color: var(--hover-main);
}

#about-service-block .question__item.active .item__header {
    border: transparent;
    border-bottom: 1px solid var(--bg-primary-third);
    background: var(--bg-primary-main);
    border-radius: 10px 10px 0px 0px;
}

#about-service-block .question__item:is(.active, :hover) .item__status {
    background: var(--hover-main);
    border-color: var(--hover-main);
}

#about-service-block .question__item.active .item__status svg {
    transform: rotate(180deg);
}

#about-service-block .question__item:is(.active, :hover) .item__status svg path {
    stroke: var(--bg-primary-main);
}

#about-service-block .left__header {
    display: flex;
    align-items: center;
    gap: clamp(0.625rem, 0.3125rem + 1.5625vw, 2.1875rem);
}

#about-service-block .see-more-btn {
    margin-top: 30px;
}

#about-service-block .item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary-main);
    border-radius: 5px;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
}

#about-service-block .svg {
    width: 20px;
    height: 20px;
}

#about-service-block .item__status svg {
    transition: var(--transition);
}

#about-service-block .item__status svg path {
    stroke: var(--bg-alt-second);
}

#about-service-block .item__title {}

#about-service-block .item__status {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary-second);
    border: 1px solid var(--bg-primary-third);
    transition: var(--transition);
    border-radius: 5px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

#about-service-block .item__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    display: none;
}

#about-service-block .item__content ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

#about-service-block .item__content ul li {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

#about-service-block .item__content ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border: 1px solid var(--colors-main);
    border-radius: 100%;
    background: var(--hover-main);
}

#about-service-block .item__content p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--bg-alt-second);
}

@media screen and (max-width: 1050px) {
    #about-service-block .about-service__wrapper {
        flex-direction: column;
    }

    #about-service-block .about-service__left {
        position: relative;
        top: unset;
        max-width: unset;
    }

    #about-service-block .questions__wrapper {
        max-width: unset;
    }
}

@media screen and (max-width: 450px) {
    #about-service-block .btn__info-wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    #about-service-block .item__icon {
        display: none;
    }

    #about-service-block .item__status {
        width: 40px;
        height: 40px;
    }

    #about-service-block .item__title {
        font-size: 14px;
    }
}

/*# sourceMappingURL=block.css.map */