:root {
    --color-1: #0b2c4d;
    --color-2: #9eb6cf;
    --color-3: #e8f0f9;
    --color-4: #f5f8ff;
    --color-5: #fafafa;
    --color-6: #8696a7;
    --color-7: #396897;
    --color-8: #cb4199;
    --color-9: #e4ecff;
    --color-10: #cb4144;
    --color-11: #4c95de;
    --color-btn-blue: linear-gradient(103.75deg, #396897 13.51%, #0B2C4D 89.9%);
    --color-btn-blue-hover: linear-gradient(103.75deg, #204C79 13.51%, #021425 89.9%);
    --transition-hover: 0.3s all;
}

html.modal-open {
    overflow: hidden;
}

body {
    font-family: 'Figtree', sans-serif;
}

.menu-open {
    overflow: hidden;
}

h1,
.h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.9px;
}

h2,
.h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.8px;
}

h3,
.h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.8px;
}

h4,
.h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.4px;
}

p {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.4px;
    color: rgba(11, 44, 77, 0.7);
}

img {
    max-width: 100%;
    height: 100%;
}

input,
select,
textarea,
button {
    font-family: 'Figtree', sans-serif;
}


.btn {
    position: relative;
    min-width: 260px;
    min-height: 40px;
    display: inline-block;
    align-content: center;
    padding: 8px 24px;
    text-align: center;
    font: 600 16px 'Figtree', sans-serif;
    letter-spacing: -0.3px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 1px 2.9px 0 rgba(0, 16, 49, 0.2),
                0 0 6px 0 rgba(0, 19, 38, 0.15);
    transition: var(--transition-hover);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.btn:disabled,
.btn:disabled:hover {
    color: rgba(11, 44, 77, 0.3);
    border-color: #e6e6e6;
    background: #f6f6f6;
    cursor: default;
}

.btn:not(.btn_tooltip):disabled,
.btn:not(.btn_tooltip):disabled:hover {
    pointer-events: none;
}

input.btn {
    min-height: 35px;
    border-radius: 8px;
}

.btn_small {
    min-width: 110px;
}

input.btn,
.btn_full {
    width: 100%;
    min-width: 100%;
}

.btn_icon,
.btn_arrow {
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
}

.btn_icon {
    grid-column-gap: 8px;
}

.btn_arrow {
    grid-column-gap: 12px;
}

.btn_blue {
    color: #fff;
    border: 0;
    background: var(--color-btn-blue);
}

input.btn_blue:hover {
    background: var(--color-btn-blue-hover);
}

.btn_blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-btn-blue-hover);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-hover);
}

.btn_blue:hover::before {
    opacity: 1;
}

.btn_outline {
    color: var(--color-1);
    border: 1px solid #d0d6db;
    box-shadow: 0 1px 5.8px 0 rgba(0, 16, 49, 0.07);
    background: var(--color-4);
}

.btn_gray {
    color: var(--color-1);
    border: 1px solid #e6e6e6;
    box-shadow: 0 1px 5.8px 0 rgba(0, 16, 49, 0.07);
    background: #fafafa;
}

.btn_white {
    color: var(--color-1);
    border: 1px solid rgba(230, 230, 230, 1);
    box-shadow: 0 1px 4.4px 0 rgba(0, 16, 49, 0.1);
    background: #fff;
}

.btn_white:hover,
.btn_outline:hover,
.btn_gray:hover {
    border-color: #8299af;
    background: var(--color-9);
}

.btn_red {
    color: #fff;
    border: 0;
    background: linear-gradient(103.75deg, #CC4244 13.51%, #AA1D1F 89.9%);
}

.btn-icon-only {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-hover);
}

.btn-icon-only.edit {
    color: rgba(11, 44, 77, 0.5);
}

.btn-icon-only.delete {
    color: var(--color-10);
}

.btn-icon-only.delete:hover {
    color: rgba(177, 38, 40, 1);
}

.btn-icon-only.btn_tooltip {
    color: var(--color-1);
}

.btn_tooltip {
    position: relative;
    overflow: unset;
}

.btn-icon-only.btn_tooltip svg path {
    transition: 0.3s all;
}

.btn-icon-only.btn_tooltip:hover svg path {
    fill: var(--color-1);
}

.btn_tooltip--text {
    position: absolute;
    top: -18px;
    left: 50%;
    min-width: 231px;
    padding: 8px 11px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 1.9px 0 rgba(0, 0, 0, 0.15), 0 0 4.5px 0 rgba(0, 0, 0, 0.05);
    background: var(--color-1);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -100%);
    transition: var(--transition-hover);
}

.btn_tooltip--text::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 19px;
    height: 19px;
    border-radius: 3px;
    background: var(--color-1);
    transform: translate(-50%, 40%) rotate(46deg);
    z-index: -1;
}

.btn_tooltip:hover .btn_tooltip--text {
    opacity: 1;
    visibility: visible;
}

.link {
    text-decoration: none;
    transition: var(--transition-hover);
}

.link_blue {
    color: var(--color-1);
}

.link_underline:hover span {
    text-decoration: underline;
}

.link_back {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-6);
}

.link_back:hover {
    color: var(--color-1);
}

.text-center {
    text-align: center;
}

.text-white,
.text-white p {
    color: #fff !important;
}

.headline__title {
    color: var(--color-1);
}

.headline__desc {
    margin-top: 28px;
    letter-spacing: -0.4px;
    color: #76889b;
}

#wrapper {
    position: relative;
}

#wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-hover);
}

.menu-open #wrapper::before {

    opacity: 1;
    visibility: visible;
    z-index: 3;
}
.container {
    max-width: 1424px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-slider__pagination .swiper-pagination-bullets.swiper-pagination-horizontal,
.products-slider__pagination .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    top: auto;
    bottom: auto;
    width: auto;
    display: flex;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 8px;
    background: linear-gradient(103.75deg, #FFFFFF 13.51%, #EAEAEA 89.9%);
    box-shadow: 0px 1px 8px 0px rgba(164, 164, 164, 0.35);

}

.blog-slider__pagination .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.products-slider__pagination .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0;
    opacity: 1;
    background: #d2d2d2;
}

.blog-slider__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.products-slider__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-1);
}

.blog-slider--wrap .swiper-slide {
    height: initial;
}

.blog-slider--wrap .swiper-slide .post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-slider--wrap .swiper-slide .post-card .read-more {
    margin-top: auto;
}

.swiper .swiper-pagination.swiper-pagination-lock {
    display: none !important;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 0 1.9px 0 rgba(0, 0, 0, 0.15), 0 0 4.5px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}

.product-card__header {
    position: relative;
    margin-bottom: 24px;
    font-size: 0;
    border-radius: 8px;
    box-shadow: 0px 1px 6.6px 0px rgba(0, 0, 0, 0.05), 0px 0px 1.2px 0px rgba(0, 0, 0, 0.1), 0px 0px 20.8px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1;
}

/*.product-card__header::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.29%, rgba(0, 0, 0, 0.4) 87.5%);*/
/*    z-index: -1;*/
/*}*/

.product-card__header img {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    z-index: -2;
}

.product-card__desc {
    margin: 17px 0 2px;
    font-size: 16px;
    line-height: 140%;
    color: rgba(11, 44, 77, 0.7);
}

.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    min-width: 67px;
    min-height: 27px;
    padding-top: 1px;
    align-content: center;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #fff;
    box-shadow: 0px 1px 4.4px 0px rgba(0, 16, 49, 0.1);
    background: var(--color-8);
}

/*.product-card__brand-logo {*/
/*    position: absolute;*/
/*    max-width: 81px;*/
/*    right: 8px;*/
/*    bottom: 8px;*/
/*    z-index: 1;*/
/*}*/

.product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card__tag {
    min-width: 74px;
    min-height: 27px;
    display: inline-block;
    padding: 1px 10px 0;
    align-content: center;
    text-align: center;
    color: var(--color-1);
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

.tag--angebote-categories {
    color: #fff;
    background: var(--color-btn-blue-hover);
}

.product-card__footer {
    margin-top: auto;
}

.product-card__footer::before {
    content: "";
    width: 100%;
    height: 1px;
    margin: 13px 0 13px;
    display: inline-block;
    background: linear-gradient(90deg, #FFFFFF 0%, #E9E9E9 50%, #FFFFFF 100%);
    box-shadow: 0px 1px 5.8px 0px rgba(0, 16, 49, 0.07);
}

.product-card__coupon-label {
    color: #5b6774;
}

.product-card__coupon-code {
    color: var(--color-8);
}

.product-card__footer .btn {
    margin-top: 17px;
}

.product-card__badge,
.product-card__tag,
.product-card__coupon span,
.category-card__count {
    font-weight: 500;
    font-size: 14px;
}

.s-cta {
    padding: 70px 0 70px;
}
.s-cta__wrapper {
    display: grid;
}

.s-cta__content .headline__title {
    margin-bottom: 27px;
}

.s-cta__content {
    position: relative;
    border-radius: 40px;
    z-index: 1;
    background: var(--color-3);
    overflow: hidden;
}

.s-cta__content--line-top {
    position: absolute;
    top: -12px;
    left: -41px;
    max-width: 251px;
    z-index: -1;
}

.s-cta__content--line-bottom {
    position: absolute;
    right: -295px;
    bottom: -38px;
    max-width: 595px;
    z-index: -1;
}

.s-cta__products {
    position: relative;
    border-radius: 40px;
    background: var(--color-4);
    overflow: hidden;
}

.image-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__products-slider {
    max-width: 282px;
}

.cta__products-slider:not(.swiper-initialized) .swiper-slide:not(:nth-child(1)) {
    display: none;
}

.s-banner__media .swiper,
.s-cta__products .swiper {
    overflow: visible;
}

.s-banner__media .swiper-slide,
.s-cta__products .swiper-slide {
    height: initial;
    border-radius: 13px;
    box-shadow: 0px 0px 1.55px 0px rgba(0, 0, 0, 0.15), 0px 0px 3.67px 0px rgba(0, 0, 0, 0.05), 0px 0px 10px 0px rgba(11, 44, 77, 0.15);
    transition: transform .45s cubic-bezier(.35,.01,.2,1), opacity .45s, z-index .45s;
    transform-origin: center bottom;
}

.s-banner__media .swiper-slide .product-card,
.s-cta__products .swiper-slide .product-card {
    height: 100%;
    border-radius: 13px;
    box-shadow: none;
}

.s-cta__media {
    position: relative;
    border-radius: 40px;
    border: 8px solid var(--color-3);
    overflow: hidden;
}

.s-cta__media img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-form {
    margin-top: 39px;
}

.password-wrapper {
    position: relative;
}

.field_box  .password-wrapper input {
    padding-right: 40px;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-password-toggle-button {
    display: none !important;
}

input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.toggle-password {
    position: absolute;
    top: 13px;
    right: 17px;
    padding: 0;
    color: rgba(11, 44, 77, 0.5);
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-hover);
}

.toggle-password:hover {
    color: var(--color-1);
}


.select_box label,
.select_box_tag label,
.field_box label {
    display: block;
    margin-bottom: 17px;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-1);
}

.field_caption {
    margin: 3px 1px 0 0;
    font-size: 14px;
    text-align: right;
    letter-spacing: -0.2px;
}

.field_box input,
.field_box textarea {
    width: 100%;
    min-height: 40px;
    padding: 6px 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.35px;
    color: var(--color-1);
    border: 1px solid #ededed;
    border-radius: 8px;
    background: #f9f9f9;
    transition: var(--transition-hover);
}

.field_box textarea {
    min-height: 108px;
    padding: 14px 15px;
    letter-spacing: -0.2px;
}

.field_box input::placeholder,
.field_box textarea::placeholder {
    color: rgba(11, 44, 77, 0.5);
}

.field_box input:focus-visible,
.field_box textarea:focus-visible {
    outline: none;
    border-color: rgba(130, 153, 175, 1);
}

input.input-error,
input.wpcf7-not-valid {
    border-color: var(--color-10);
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.35px;
    color: var(--color-10);
}

.field_box {
    margin-bottom: 16px;
}

.select_box  + .btn_box {
    margin-top: 24px;
}

.select_box .choices.is-open,
.select_box_tag .choices.is-open {
    z-index: 2;
}

.select_box .choices__inner {
    min-height: 40px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.35px;
    border: 1px solid #ededed;
    border-radius: 8px;
    background: #f9f9f9;
}

.field_box .choices__inner::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 10px;
    width: 7px;
    height: 7px;
    background: url('../images/icon-tag-dropdown.svg') no-repeat center/contain;
}

.select_box .choices.is-open .choices__inner {
    border-radius: 8px;
    border: 1px solid #ededed;
}

.select_box .choices__inner .choices__list--single {
    padding: 0 26px 0 8px;
}

.select_box .choices__placeholder {
    opacity: 1;
}

.select_box .choices__list--single .choices__item.choices__item--selectable {
    color: var(--color-1);
}

.select_box .choices__list--single .choices__item.choices__item--selectable.choices__placeholder {
    color: rgba(11, 44, 77, 0.5);
    opacity: 1;
}

.place-ad-form .choices[data-type*=select-one]::after {
    top: 13px !important;
    right: 18px;
    height: 13px;
    width: 12px;
    margin: 0;
    border: 0;
    background: url("../images/icon-tag-dropdown.svg") no-repeat center/contain;
    transform: none !important;
}


.select_box_tag .choices[data-type*=select-one]::after {
    right: 19px;
    height: 6px;
    width: 10px;
    border: 0;
    background: url("../images/select-arrow.svg") no-repeat center/contain;
}

.select_box .choices[data-type*=select-one].is-open::after {
    margin: 0;
    transform: translateY(-50%) rotate(180deg);
}

.select_box .choices__list--dropdown,
.select_box .choices__list[aria-expanded] {
    width: fit-content;
    min-width: 143px;
    margin: -11px 0 0 16px;
    padding: 16px 12px 4px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 1px 5.8px 0 rgba(0, 16, 49, 0.07);
    background: #ffffff;
}

.select_box .is-open .choices__list--dropdown,
.select_box .is-open .choices__list[aria-expanded] {
    border-color: #e6e6e6;
}


.select_box .choices__list--dropdown .choices__item,
.select_box .choices__list[aria-expanded] .choices__item {
    margin-bottom: 12px;
    padding: 1px 8px;
    font-size: 14px;
    letter-spacing: -0.2px;
    color: var(--color-1);
}

.select_box .choices__list--dropdown .choices__item--selectable.is-highlighted,
.select_box .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    border-radius: 6px;
    background: #f9f9f9;
}

.wpcf7-spinner,
.wpcf7-response-output {
    display: none !important;
}

.cta__products-slider__pagination {
    display: flex;
    justify-content: center;
    margin-top: 27px;
}

.hystmodal__wrap {
    padding: 0 20px;
}

.hystmodal__wrap .hystmodal__window {
    max-width: 587px;
    width: 100%;
    padding: 32px 24px;
    border-radius: 16px;
}

.hystmodal__window .hystmodal__close {
    top: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
    padding: 0;
    background: transparent;
    outline: none;
    color: var(--color-1);
}

.hystmodal__window .hystmodal__close:focus,
.hystmodal__window .hystmodal__close:active {
    outline: none;
}

.modal_title {
    margin-bottom: 40px;
    font-size: 24px;
    color: var(--color-1);
}

.radio-item {
    position: relative;
    cursor: pointer;
}

.radio-item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.radio-item span {
    min-height: 40px;
    align-content: center;
    display: block;
    padding: 0 9px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.4px;
    color: var(--color-1);
    transition: var(--transition-hover);
}

.radio-item span:hover,
.radio-item input:checked + span {
    color: var(--color-11);
    background: #f9f9f9;
}

.choices .choices__inner {
    width: 100%;
    min-height: 40px;
    align-content: center;
    padding: 6px 25px 0 6px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.35px;
    color: var(--color-1);
    border: 1px solid #ededed;
    border-radius: 8px;
    background: #f9f9f9;
    transition: var(--transition-hover);
}

.choices[data-type="select-multiple"] .choices__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 9px;
    width: 10px;
    height: 13px;
    background: url("../images/icon-select-multiple.svg") no-repeat center/contain;
    transform: translateY(-50%);
}

.is-flipped.is-open .choices__inner {
    border-radius: 8px !important;
    outline: none;
    border-color: rgba(130, 153, 175, 1);
}

.select_box_tag choices .choices__inner input {
    width: auto;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
}

.select_box_tag .choices .choices__list--multiple .choices__item {
    min-height: 27px;
    align-content: center;
    padding: 1px 0 0 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-1);
    border-radius: 8px;
    box-shadow: 0px 1px 4.4px 0px rgba(0, 16, 49, 0.1);
    border: 1px solid #ececec;
    background: #fff;
    transition: 0.3s all;
}

.select_box_tag .choices .choices__list--multiple .choices__item.is-highlighted,
.select_box_tag .choices .choices__list--multiple .choices__item:hover {
    border-color: #8299af;
    background: #e4ecff;
}

.select_box_tag .choices[data-type*=select-multiple] .choices__button,
.select_box_tag .choices[data-type*=text] .choices__button {
    margin: 0 7px 0 12px;
    padding: 0;
    font-size: 0;
    border: 0;
}

.select_box_tag .choices .choices__list--multiple .choices__item .choices__button::before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background: url('../images/icon-close-choices.svg') no-repeat center/contain;
}

/*.choices .choices__list--dropdown,*/
/*.choices .choices__list[aria-expanded] {*/
/*    padding: 16px 12px;*/
/*    border-radius: 8px;*/
/*    border: 1px solid rgba(230, 230, 230, 1);*/
/*    box-shadow: 0px 1px 5.8px 0px rgba(0, 16, 49, 0.07);*/
/*    z-index: 3;*/
/*}*/

.select_box_tag .choices .choices__list--dropdown .choices__item,
.select_box_tag .choices .choices__list[aria-expanded] .choices__item {
    min-height: 25px;
    align-content: center;
    padding: 0 7px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.2px;
    color: var(--color-1);
    transition: 0.3s all;
}

/*.choices .choices__list--dropdown .choices__item:not(:nth-last-child(1)),*/
/*.choices .choices__list[aria-expanded] .choices__item:not(:nth-last-child(1)) {*/
/*    margin-bottom: 12px;*/
/*}*/

/*.choices .choices__list--dropdown .choices__item--selectable.is-highlighted,*/
/*.select_box_tag .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {*/
/*    border-radius: 6px;*/
/*    background: #f9f9f9;*/
/*}*/

.password-strength {
    margin-top: 12px;
}

.password-strength--top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.password-strength--top,
.password-strength--caption {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.2px;
    color: rgba(11, 44, 77, 0.5);
}

.password-strength--line {
    height: 4px;
    margin-bottom: 12px;
    border-radius: 4px;
    background: #d9d9d9;
    overflow: hidden;
}

.strength-fill {
    width: 0;
    height: 100%;
    transition: all 0.3s ease;
}

.consent_box {
    margin: 16px 0;
}

.wpcf7-list-item {
    margin:  0;
}

.wpcf7-list-item label {
    position: relative;
}

.wpcf7-list-item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.wpcf7-list-item .wpcf7-list-item-label {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.4px;
    color: var(--color-1);
}

.wpcf7-list-item .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    background: #f9f9f9;
    border: 1px solid #cdd3da;
    border-radius: 2px;
    transition: var(--transition-hover);
}

.wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
    border-color: var(--color-7);
    background: var(--color-7);
}

.wpcf7-list-item .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1px 1px 0;
    opacity: 0;
    visibility: hidden;
    transform: rotate(45deg);
    transition: var(--transition-hover);
}

.wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
    opacity: 1;
    visibility: visible;
}

/* 404 Page Styles */
.error-404.not-found {
    padding: 100px 0;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-1);
    background: var(--color-btn-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 20px;
}

.error-404 .entry-title {
    margin-bottom: 24px;
    color: var(--color-1);
}

.error-404 .entry-content p {
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.d-page {
    padding: 40px 0;
}

.d-page .container {
    max-width: 822px;
}

.content-component h1 {
    margin-bottom: 20px;
}

.content-component h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-component p + h4 {
    margin-top: 30px;
}

.content-component p {
    color: #2a2f33;
    margin-bottom: 0.5rem;
}
.content-component a {
    text-decoration: none;
    color: #2f4f70;
}
.content-component ol li {
    color: #2a2f33;
    margin-bottom: 16px;
}
.content-component ul {
    margin-top: 8px;
    list-style: disc;
}
.content-component ul li {
    color: #2a2f33;
    margin-bottom: 0;
}
.content-component ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 20px;
}
.content-component ol {
    counter-reset: item;
    margin-bottom: 48px;
}

.content-component ol li::marker {
    font-size: 20px;
    font-weight: 600;
}

.content-component ol > li {
    counter-increment: item;
}

.content-component ol ol > li {
    display: block;
}

.content-component ol ol > li:before {
    content: counters(item, ".") ". ";
    margin-left: -20px;
}

@media (min-width: 768px) {
    h1,
    .h1 {
        font-size: 44px;
        line-height: 120%;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: 120%;
    }

    h3,
    .h3 {
        font-size: 32px;
        line-height: 120%;
    }

    .s-cta {
        padding: 67px 0 70px;
    }

    .s-cta__content {
        padding: 95px 60px 69px 97px;
    }

    .s-cta__content .headline__title {
        margin-bottom: 27px;
    }

    .cta-form {
        margin-top: 38px;
    }

    .s-cta__content--line-bottom {
        right: -228px;
    }

    .hystmodal__wrap .hystmodal__window {
        padding: 32px;
    }

    .modal_title {
        font-size: 28px;
    }

    .s-banner__media .banner-slider .swiper-slide {
        border-radius: 40px;
    }

    .t-none {
        display: none;
    }
}

@media (min-width: 992px) {

    .s-cta__wrapper {
        grid-template-columns: 56.6% 1fr;
        gap: 24px;
    }

    .s-cta__content .headline__title {
        margin-bottom: 25px;
        text-align: left;
    }

    .cta-form {
        max-width: 384px;
        margin-top: 23px;
    }

    .s-cta__products {
        align-content: center;
        padding: 40px 20px 23px;
    }

    .s-cta__content--line-top {
        top: 0;
        left: -24px;
    }

    .s-cta__content--line-bottom {
        right: -159px;
        bottom: 0;
    }

    .s-cta__media {
        min-height: 538px;
    }

    .s-cta__media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .s-cta .container {
        padding: 0;
    }

    .s-cta__content {
        min-height: 484px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 29px 15px;
    }

    .s-cta__content .headline__title,
    .s-cta__content .entry-content {
        text-align: center;
    }

    .s-cta__content {
        margin-bottom: 20px;
    }

    .s-cta__products {
        padding: 8px;
    }

    .cta__products-slider {
        margin: 20px auto;
    }

    .s-cta__media img {
        aspect-ratio: 100 / 46;
    }
}

@media (max-width: 767px) {
    .s-cta__content {
        margin-bottom: 16px;
    }

    .s-cta__media img {
        aspect-ratio: 100 / 64;
    }

    .m-none {
        display: none;
    }

    .error-404.not-found {
        padding: 60px 0;
    }

    .error-code {
        font-size: 80px;
    }

    .error-404 .entry-title {
        font-size: 32px;
    }
}