.hero {
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    position: relative;
    min-height: 400px;
}

.hero .container {
    position: relative;
}

.hero-bg-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -100px;
    width: 60%;
    height: 400px;
    /* Добавляем относительное позиционирование для псевдоэлемента */
}

.hero-bg-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90.25deg,
            #ffffff 8.34%,
            rgba(255, 255, 255, 0) 69.84%
    ),
    linear-gradient(270.39deg, #ffffff 10.53%, rgba(255, 255, 255, 0) 29.12%);
    z-index: 2;
    pointer-events: none; /* Градиент не будет перехватывать клики */
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Растягивает изображение, сохраняя пропорции */
    object-position: center 35%;
    display: block; /* Убирает пробелы вокруг <img> */
}

.hero-inner {
    padding: 60px 0;
}
.hero-title {
    font-family: sans-serif;
    color: green;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    max-width: 60%;
    margin: 10px 0;
}
.hero-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #0a0c13;
    position: relative;
    z-index: 2;
    max-width: 70%;
    margin-top: 10px;
}
.hero-text p {
    margin: 1rem 0;
}
.hero-text p:first-child {
    margin-top: 0;
}
.hero-text p:last-child {
    margin-bottom: 0;
}
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1170px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-text {
        font-size: 16px;
    }
    .hero-bg {
        right: -28%;
    }
}
@media (max-width: 767.98px) {
    .hero-title {
        max-width: 100%;
        font-size: 24px;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-bg {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .button {
        width: 100%;
        max-width: 360px;
    }
}

.questions {
    display: flex;
    gap: 24px;
}

.questions-aside {
    width: calc(33% - 12px);
}

.questions-aside--title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #008000;
    padding: 16px;
    margin: 0;
}

.questions-aside--aside-dropdowns {
    margin-bottom: 24px;
}

.aside-dropdown--title {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    cursor: pointer;
}

.aside-dropdown--title--icon {
    min-width: 24px;
    height: 24px;
}

.aside-dropdown--title--icon svg {
    width: 100%;
    height: 100%;
}

.aside-dropdown--title--text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0px;
    vertical-align: middle;
    max-width: 340px;
}

.aside-dropdown--list {
    display: flex;
    flex-direction: column;
}

.aside-dropdown--item {
    padding: 8px 16px;
    margin-left: 40px;
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    width: fit-content;
}

.aside-dropdown--item-text.active {
    font-weight: 600;
}

.aside-dropdown--item--icon {
    width: 24px;
    height: 24px;
}

.aside-dropdown--item--icon svg {
    width: 100%;
    height: 100%;
}

.aside-dropdown--parent {
    color: inherit;
    text-decoration: none;
}

.aside-dropdown--title--text.active {
    font-weight: 600;
}

.questions-aside--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 330px;
}

.questions-aside--tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #e6e8ec;
    border-radius: 20px;
    color: #06070a;
    text-decoration: none;
}

.questions-content {
    width: calc(67% - 12px);
}

.questions-content--title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    margin: 0;
    margin-bottom: 24px;
    color: #008000;
}

.questions-content--header {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.questions-content--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.questions-content--tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #e6e8ec;
    border-radius: 20px;
    color: #06070a;
    display: flex;
    align-items: center;
    gap: 8px;
    height: fit-content;
}

.questions-content--tag--icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.questions-content--tag--icon svg {
    width: 100%;
    height: 100%;
}

.questions-content--search {
    position: relative;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    min-width: 228px;
    max-width: 228px;
    height: 40px;
}

.questions-content--search--input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 8px 40px 8px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    border-radius: 10px;
}

.questions-content--search--icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.questions-content--search--icon svg {
    width: 100%;
    height: 100%;
}

.questions-content--list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
}

.questions-content--item {
    padding: 24px;
    background-color: #f4f5f6;
}

.questions-content--item:nth-child(even) {
    background-color: #fff;
}

.questions-content--item--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.questions-content--date {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #777e90;
}

.questions-content--views {
    display: flex;
    gap: 12px;
    align-items: center;
}

.questions-content--views--icon {
    width: 24px;
    height: 24px;
}

.questions-content--views svg {
    width: 100%;
    height: 100%;
}

.questions-content--views--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #777e90;
}

.questions-content--item--title {
    display: flex;
    gap: 8px;
}

.questions-content--item--title-icon {
    min-width: 24px;
    height: 24px;
}

.questions-content--item--title-icon svg {
    width: 100%;
    height: 100%;
}

.questions-content--item--link {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    text-decoration: none;
    color: #008000;
}

.questions-content--navigation {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 16px;
    margin-bottom: 10px;
}

.questions-content--navigation--item {
    font-weight: 400;
    font-size: 18px;
    color: #777e90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 150%;
    border: 1px solid #777e90;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
}

.questions-content--navigation--item.active {
    color: #008000;
    border-color: #008000;
}

.questions-content--navigation--item-text {
    padding: 6px 4px;
    width: auto;
    height: auto;
    text-decoration: none;
}

.reviews-block {
    margin: 70px 0;
}

.reviews-block--title {
    margin: 0;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: #008000;
}

.reviews--slider {
    overflow: hidden;
}

.reviews--slider--wrapper {
    position: relative;
    padding: 0 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.reviews--slider--swiper-button-next,
.reviews--slider--swiper-button-prev {
    position: absolute;
    left: 0;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.reviews--slider--swiper-button-next svg,
.reviews--slider--swiper-button-prev svg {
    width: 100%;
    height: 100%;
}

.reviews--slider--swiper-button-next {
    right: 0;
    left: auto;
}

.reviews--slide {
    padding: 40px;
    display: flex;
    gap: 16px;
    box-shadow: 0px 40px 32px -24px #0f0f0f1a;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}

.reviews--slide--avatar {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
}

.reviews--slide--info {
    display: flex;
    flex-direction: column;
}

.reviews--slide--upper-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #777e90;
}

.reviews--slide--title {
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    color: #008000;
}

.reviews--slide--fullname {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    margin-top: 5px;
}

.reviews--slide--phone {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #777e90;
    margin-top: 10px;
}

.reviews--slide--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 16px;
}

.reviews--slider--swiper-pagination {
    justify-content: center;
    display: flex;
    gap: 8px;
}

.reviews--slider--swiper-pagination .swiper-pagination-bullet {
    background-color: #e6e8ec;
    opacity: 1;
    margin: 0 !important;
}

.reviews--slider--swiper-pagination
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff6600;
}

.question-content {
    width: calc(67% - 12px);
}

.question-content--title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #008000;
    margin: 0;
}

.question-content--is-unactual {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #f40d29;
}

.question-content--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.question-content--date {
    display: flex;
    gap: 5px;
    align-items: center;
}
.question-content--views {
    display: flex;
    gap: 12px;
    align-items: center;
}

.question-content--date--icon,
.question-content--views--icon {
    width: 24px;
    height: 24px;
}

.question-content--date--icon svg,
.question-content--views--icon svg {
    width: 100%;
    height: 100%;
}

.question-content--date--text,
.question-content--views--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #777e90;
}

.question-content--tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.question-content--tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #e6e8ec;
    border-radius: 15px;
}

.question-content--body {
    margin-top: 24px;
}

.question-content--text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.question-content--body--block .question-content--body--title {
    margin-bottom: 7px;
}

.question-content--body--list-wrapper {
    margin-top: 57px;
    padding-left: 6px;
}

.question-content--body--list {
    margin: 0;
    padding-left: 47px;
}

.question-content--img--wrapper {
    width: 100%;
    margin: 0;
    margin-top: 24px;
}

.question-content--img {
    width: 100%;
    border-radius: 5px;
}

.question-content--img--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin-top: 22px;
}

.question-content--body--title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #008000;
}

.question-content--actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.question-content--action {
    width: calc(50% - 12px);
    padding: 24px;
    box-shadow: 0px 8px 16px -8px #0f0f0f33;
    position: relative;
    border-radius: 5px;
    background: #e6e8ec url("../images/daco-opasity-5.png");
}

.question-content--action--title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #008000;
}

.question-content--action--button {
    margin-top: 40px;
    padding: 12px 16px;
    background-color: #008000;
    color: #fff;
    border-radius: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: fit-content;
    border: 1px solid #008000;
    cursor: pointer;
}

.question-content--action--button-transparent {
    background-color: transparent;
    color: #008000;
    border: 1px solid #008000;
}

.question-content--arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
    gap: 8px;
}

.question-content--next,
.question-content--prev {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #008000;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 15px;
    border: 1px solid #008000;
    text-decoration: none;
}

.question-content--next {
	margin-left: auto;
}

.question-content--prev .button-icon--left {
    transform: rotate(180deg);
}

.recommended-articles {
    margin-top: 40px;
}

.recommended-articles--title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #008000;
    margin-bottom: 22px;
}

.recommended-articles--list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.recommended-articles--item {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f4f5f6;
    border-radius: 5px;
}

.recommended-articles--item:nth-child(even) {
    background-color: #fff;
}

.recommended-articles--icon {
    min-width: 24px;
    height: 24px;
}

.recommended-articles--icon svg {
    width: 100%;
    height: 100%;
}

.recommended-articles--item--title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #008000;
    text-decoration: none;
}

.question-content--arrow-unactive {
    border-color: #777e90;
    color: #777e90;
}

.question-content--arrow-unactive svg path {
    stroke: #777e90;
}
.question-search-popup {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    width: 466px;
    max-width: 90vw;
    background-color: #fff;
    box-shadow: 0px 24px 24px -16px #0f0f0f33;
    border-radius: 5px;
    padding: 16px;
    border: 1px solid #e6e8ec;
}

.question-search-popup-two {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    width: 466px;
    max-width: 90vw;
    background-color: #fff;
    box-shadow: 0px 24px 24px -16px #0f0f0f33;
    border-radius: 5px;
    padding: 16px;
    border: 1px solid #e6e8ec;
}

.question-search-popup--tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.question-search-popup--tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 4px 16px;
    background-color: #e6e8ec;
    border-radius: 15px;
    cursor: pointer;
}

.question-search-popup--list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question-search-popup--item {
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.question-search-popup--item--icon {
    width: 24px;
    height: 24px;
}

.question-search-popup--item--title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.custom-popup {
    top: 0;
}

.custom-popup .popup-title {
    margin-bottom: 24px;
}

.custom-popup .form-group--title {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #1f222c;
}

.custom-popup .form-group--input--wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.custom-popup .form-group--input {
    margin: 0 !important;
    padding-left: 48px !important;
}

.custom-popup .form-group--textarea {
    margin: 0 !important;
    padding-left: 48px !important;
    box-sizing: border-box;
}

.custom-popup .form-group--input--icon {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 16px;
    top: 12px;
}

.custom-popup .form-group--input--icon svg {
    width: 100%;
    height: 100%;
}

.custom-popup .button {
    margin-top: 0 !important;
}

.custom-popup .error {
    position: static;
    margin-top: 5px;
}

.popup-slide-in {
    position: fixed;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    box-shadow: 0px 24px 24px -16px #0f0f0f33;
    transition: all 1s ease;
}

.popup-slide-in .form-group input {
    margin: 0 0 2.6rem 0;
    padding: 1.2rem 0.8rem 1.2rem 1.6rem;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    color: #777e90;
    width: 100%;
}

.popup-slide-in .form-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1f222c;
}

@media (max-width: 992px) {
    .reviews--slide {
        flex-direction: column;
    }
    .popup-slide-in {
        display: none;
    }
}

@media (max-width: 768px) {
    .questions-content--search {
        margin-left: auto;
    }
    .hero-bg-wrapper {
        display: none;
    }
    .questions {
        flex-direction: column;
        gap: 14px;
    }
    .questions-aside {
        width: 100%;
    }
    .questions-content {
        width: 100%;
    }
    .questions-aside--tags--wrapper {
        display: none;
    }
    .questions-content--tag {
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
    }
    .questions-content--header {
        flex-direction: column;
    }
    .reviews-block {
        padding: 0;
    }
    .reviews--slider--wrapper {
        padding: 0;
    }
    .reviews--slider--swiper-button-next,
    .reviews--slider--swiper-button-prev {
        display: none;
    }
    .reviews--slide {
        height: auto;
    }
    .hero-title {
        line-height: 120%;
        margin: 9px 0;
    }
    .hero-buttons {
        margin-top: 22px;
        align-items: center;
    }
    .hero-buttons .button {
        padding: 1.2rem;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }
    .questions-aside--title {
        font-weight: 600;
        font-size: 14px;
        line-height: 120%;
        padding: 16px 0;
    }
    .aside-dropdown--title {
        padding: 16px 0;
    }
    .aside-dropdown--title--text {
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
    }
    .aside-dropdown--item {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        margin-left: 7px;
        padding: 8px 16px;
    }
    .questions-content--item {
        padding: 8px 16px;
    }
    .questions-content--date {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
    }
    .questions-content--views--text {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
    }
    .questions-content--item--link {
        font-weight: 600;
        font-size: 14px;
        line-height: 120%;
        max-width: 88%;
    }
    .questions-content--item--header {
        margin-bottom: 9px;
    }
    .questions-content--navigation {
        gap: 8px;
    }

    .reviews-block--title {
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
        padding: 0 16px;
    }
    .reviews--slide {
        padding: 24px 16px;
        margin-bottom: 0;
        padding-bottom: 35px;
    }
    .reviews--slider {
        padding: 0 16px;
    }
    .reviews--slide--upper-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }
    .reviews--slide--title {
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
    }
    .reviews--slide--fullname,
    .reviews--slide--phone {
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
    }
    .reviews--slide--text {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }
    .question-content {
        width: 100%;
    }
    .question-content--actions {
        flex-direction: column;
    }
    .question-content--action {
        width: 100%;
    }
    .question-content--arrows {
        flex-direction: column;
        margin-top: 50px;
    }
    .question-content--next,
    .question-content--prev {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    .question-content--is-unactual {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }
    .question-content--title {
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
    }
    .question-content--date--text,
    .question-content--views--text {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }
    .question-content--header {
        margin-top: 27px;
    }
    .question-content--tag {
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
    }
    .question-content--tags {
        gap: 8px;
    }
    .question-content--text {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }
    .question-content--img {
        height: 400px;
        object-fit: fill;
    }
    .question-content--img--text {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
        margin-top: 3px;
    }
    .question-content--action {
        padding: 24px 16px;
    }
    .question-content--action--button {
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
    }
    .recommended-articles--title {
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
    }
    .recommended-articles--item--title {
        font-weight: 600;
        font-size: 14px;
        line-height: 120%;
    }
}

/*ШАПКА*/

.menu.mobile-none {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 8px;
}

.menu.mobile-none .menu-link--logo {
    order: 1;
}

.menu.mobile-none .menu-items {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 40px;
}

.menu.mobile-none .menu-items .menu-item--title {
    color: #696969;
    padding: 8px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
}

.menu.mobile-none .menu-items .menu-item {
    position: relative;
}

.menu.mobile-none .menu-items .menu-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background-color: transparent;
}

.menu.mobile-none .menu-items .menu-item:hover .menu-item--title {
    color: #008000;
}

.menu.mobile-none .menu-items .menu-item:hover .menu-item--title svg path {
    stroke: #008000;
}

.menu.mobile-none .menu-contact {
    order: 2;
}

.menu {
    gap: 0;
    row-gap: 8px;
}

.menu-item--dropdown {
    top: calc(100% + 10px);
    max-width: 425px;
}

.menu-item--dropdown .menu-item--link {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #008000;
    padding: 16px;
}

@media (max-width: 1090px) {
    .menu.mobile-none .menu-items {
        gap: 20px;
    }
    .menu.mobile-none .menu-items .menu-item--title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .questions-content--search {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 450px) {
    .popup-title {
        font-size: 24px;
    }
}
