

/* Start:/local/templates/DT/assets/css/lizing.css?17862646896012*/
.page-title {
    margin-bottom: 24px;
}
.lizing_steps {
    margin: 36px 0 80px;
}
h2.lizing-steps__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    opacity: .8;
}
.lizing-steps__block {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    column-gap: 32px;
}
.lizing-steps__item {
    display: grid;
    flex: 1 0 0;
    grid-template-columns: 32px auto;
    grid-template-rows: 32px auto auto;
    gap: 24px;
    padding: 24px;
    background-color: var(--color-lightgray);
    border-radius: 8px;
    min-height: 208px;
}
.lizing-steps__item .lizing-steps__item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    border-radius: 4px;
}
.lizing-steps__item .lizing-steps__item-number p {
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.lizing-steps__item .lizing-steps__item-title {
    display: flex;
    align-items: center;
}
.lizing-steps__item .lizing-steps__item-title p {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
}
.lizing-steps__item .lizing-steps__item-text {
    grid-column: span 2;
}
.lizing_programms {
    margin-bottom: 96px;
}
.lizing_programms h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}
.lizing-programm__item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    column-gap: 32px;
    padding: 24px;
    margin-bottom: 48px;
    background-color: var(--color-lightgray);
    border-radius: 8px;
}
.lizing-programm__item img {
    flex: 1 0 auto;
    width: 180px;
    height: 80px;
    object-fit: none;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px #09367910;
}
.lizing-programm__item ul {
    margin-top: 16px;
    padding-left: 20px;
}
.lizing-programm__item ul li {
    list-style-type: disc;
}
.lizing-programm__item .btn p {
    text-transform: math-auto;
}
.lizing_form {
    padding-top: 96px;
}
.lizing-form__wrapper {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px;
    margin-bottom: 80px;
    border-radius: 8px;
    background: linear-gradient(120deg, #0060AA 10%, #093679 90%);
}
.lizing-form__wrapper:after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 35%;
    width: 200px;
    height: 130px;
    background-image: url("/images/lizing-form-img.png");
    background-size: contain;
}
.lizing-form__left,
.lizing-form__right {
    width: 48%;
}
.lizing-form__left .lizing-form__title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}
.lizing-form__left .lizing-form__text {
    font-size: 16px;
    font-weight: 500;
    color: white;
}
.lizing-form__right form {
    display: grid;
    grid-template-rows: repeat(4, 40px);
    grid-template-columns: 70% 30%;
    row-gap: 16px;
}
.lizing-form__right form p.result {
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 42px;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
    opacity: 1;
    border-radius: 4px;
}
.lizing-form__right form p.result.success {
    background-color: green;
}
.lizing-form__right form p.result.error {
    background-color: red;
}
.lizing-form__right form input[type="text"] {
    grid-column: span 2;
}
.lizing-form__right form p {
    font-size: 12px;
    color: white;
    opacity: .8;
}
.lizing-form__right form .btn {
    height: 40px;
    justify-self: end;
    color: white;
    font-weight: 600;
    line-height: 18px;
}

@media(max-width: 1199px) {
    .lizing-steps__item {
        gap: 16px;
        min-height: 212px;
    }
    .lizing-steps__item .lizing-steps__item-title p {
        font-size: 16px;
    }
    .lizing-form__wrapper:after {
        left: 33%;
    }
    .lizing-form__left .lizing-form__title {
        line-height: 28px;
    }
    .lizing-form__left .lizing-form__text {
        font-size: 14px;
    }
    .lizing-form__right form p {
        font-size: 10px;
        line-height: 14px;
    }
}
@media(max-width: 991px) {
    .lizing-steps__block {
        flex-direction: column;
        column-gap: 0;
        row-gap: 20px;
    }
    .lizing-steps__item {
        min-height: auto;
        width: 100%;
    }
    .lizing-programm__item {
        flex-direction: column;
        column-gap: 0;
        row-gap: 24px;
    }
    .lizing-programm__item img {
        width: 160px;
        height: 70px;
    }
    .lizing-form__wrapper {
        flex-direction: column;
        row-gap: 32px;
        padding: 28px;
    }
    .lizing-form__wrapper:after {
        left: auto;
        right: 5%;
        bottom: 50%;
    }
    .lizing-form__left,
    .lizing-form__right {
        width: 100%;
    }
    .lizing-form__right form {
        position: relative;
        z-index: 1;
    }
    .lizing-form__right form p.result {
        bottom: 0;
    }
}
@media(max-width: 767px) {
    h2.lizing-steps__title {
        font-size: 24px;
    }
    .lizing-form__wrapper:after {
        bottom: 45%;
        width: 160px;
        height: 100px;
    }
}
@media(max-width: 450px) {
    h2.lizing-steps__title {
        font-size: 18px;
    }
    .lizing-form__right form {
        grid-template-rows: repeat(5, 40px);
        grid-template-columns: 100%;
    }
    .lizing-form__right form input[type="text"] {
        grid-column: auto;
    }
    .lizing-form__left .lizing-form__text {
        width: 230px;
    }
    .lizing-form__right form p.result {
        width: 100%;
        bottom: 56px;
    }
}
@media(max-width: 400px) {
    .lizing-form__wrapper:after {
        bottom: 42%;
    }
}
/* End */
/* /local/templates/DT/assets/css/lizing.css?17862646896012 */
