/* USER VARIABLES SECTION */

:root {
    --color: #fff;
    --color-2: #00aeef;
    --color-3: #231f20;
    --color-4: #15af74;
    --color-5: #dedede;
    --color-6: #858585;
    --color-7: #f2e8cc;
    --color-8: #921c40;
    --color-9: #b12535;
    --color-10: #999;
    --color-11: #cecece;
    --regular-text: 16px;
    --lineheight: 1.65;
    --font-family: "Montserrat", sans-serif;
    --second-family: "Poppins", sans-serif;
    --third-family: "Inter", sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0.938rem;
}

.row,
.row > * {
    --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1351px;
    }
}

@media (max-width: 991px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100%;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    z-index: 1;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

/* GENERAL CSS SETTINGS */

.svg-block {
    position: absolute;
    bottom: -9999px;
    left: -9999px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.img-right {
    float: right;
    margin-left: 50px;
}

.img-left {
    float: left;
    margin-right: 50px;
}

@media (max-width: 767px) {
    .img-right,
    .img-left {
        float: none;
        width: 100%;
        display: block;
        margin: 0 0 10px 0;
    }
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: #000;
    font-weight: 400;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: #fff;
}

body.hidden {
    overflow: hidden;
}

body.overlay-menu::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 540px;
    z-index: 99;
    background: #000;
    opacity: 0.7;
    display: block;
    content: "";
}

body.overlay-search::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #fff;
    display: block;
    content: "";
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    body.overlay-search::before {
        background: #000;
        opacity: 0.4;
    }
}

/*common*/
.logo {
    display: block;
    width: 141px;
    margin: 0 auto;
}

@media (min-width: 991px) {
    .logo {
        width: 180px;
        margin: 0 auto 0 0;
    }
}

.logo img {
    object-fit: cover;
    width: 100%;
}

.menu {
    padding: 0;
    margin: 0;
    display: flex;
}

@media (min-width: 991px) {
    .menu {
        align-items: center;
        gap: 0 80px;
        justify-content: center;
    }
}

.menu > li {
    list-style-type: none;
}

.menu > li > a {
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    color: #101010;
    transition: 0.2s ease;
    padding: 0 0 6px 0;
    margin: 0 0 -6px 0;
    position: relative;
}

.menu > li:hover > a {
    color: #159800;
}

.menu > li > a::before {
    content: "";
    display: block;
    width: 100%;
    background: #159800;
    height: 2px;
    border-radius: 10px;
    bottom: 0;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
}

.menu > li:hover > a::before {
    visibility: visible;
    opacity: 1;
}

.btn-search {
    display: flex;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    position: relative;
    width: 25px;
    height: 25px;
}

.btn-search__close {
    opacity: 0;
}

.btn-search svg {
    width: 25px;
    height: 25px;
    fill: #101010;
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.social {
    display: flex;
    align-items: center;
    gap: 0 0;
    padding: 0;
    margin: 0;
    gap: 0 18px;
}

.social li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social li a {
    display: block;
    text-decoration: none;
}

.social li a svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    transition: 0.2s ease all;
}

.social li:hover a svg {
    fill: #159800;
}

.submenu-mobile {
    padding: 0 0 0 67px;
    display: none;
}

.submenu-mobile.show {
    display: block;
}

.submenu-mobile__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    margin: 33px 0 20px 0;
}

.menu-mobile {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.menu-mobile li {
    list-style-type: none;
}

.menu-mobile li a {
    font-family: var(--font-family);
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--color);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    height: 43px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.4s ease;
}

.subnav {
    position: absolute;
    top: 43px;
    width: 1064px;
    margin: 0 auto;
    background: #161a25;
    margin: 0 0 0 -532px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    transform: scale(0);
}

.subnav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.subnav__left {
    padding: 25px 0 110px 0;
    background: #f7f7f9;
}

.subnav__left-menu {
    padding: 0;
    margin: 0;
}

.subnav__left-menu li {
    list-style-type: none;
}

.subnav__left-menu > li > a {
    display: block;
    text-decoration: none;
    padding: 16px 77px 16px 28px;
    transition: 0.4s ease;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #101010;
}

.subnav__left-menu li a:hover {
    color: #159800;
    background: var(--color);
}

.subnav__right {
}

.subnav__right-item {
    display: none;
    gap: 0 104px;
    position: relative;
    padding: 40px 0 0 41px;
}

.subnav__right-item.active {
    display: flex;
}

.subnav__right-item-col {
    position: relative;
}

.subnav__right-item-col:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    right: -41px;
    width: 1px;
    height: 229px;
    background: var(--color);
}

.subnav__right-item-col-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    margin: 0 0 35px 0;
}

.subnav__right-item-col-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.subnav__right-item-col-list li {
    list-style-type: none;
}

.subnav__right-item-col-list li a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    transition: 0.2s ease;
    text-decoration: none;
}

.subnav__right-item-col-list li a:hover,
.subnav__right-item-col-list li.active a {
    text-decoration: underline;
    color: #159800;
}

.btn-home {
    max-width: 178px;
    margin: 37px auto 0 auto;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    height: 43px;
    color: var(--color);
    background: #159800;
    border-color: #159800;
    justify-content: center;
}

.btn-home:hover {
    background: #fff;
    color: #159800;
}

.btn-contact {
    max-width: 178px;
    background: #159800;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--color);
}

.btn-show-more {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    height: 58px;
    background: #101010;
    max-width: 100%;
    width: 100%;
    margin: 42px 0 0 0;
}

@media (min-width: 1024px) {
    .btn-show-more {
        margin: 76px auto 0 auto;
        max-width: 430px;
    }
}

.btn-show-more:hover {
    background: var(--color);
    color: #101010;
    border-color: #101010;
}

.menu-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 32px;
    padding: 0;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .menu-filter {
        margin: 35px 0 0 0;
        gap: 0 40px;
    }
}

.menu-filter li {
    list-style-type: none;
    position: relative;
}

.menu-filter li::before {
    content: "";
    position: absolute;
    height: 14px;
    width: 1px;
    background: var(--color);
    right: -16px;
}

@media (min-width: 1024px) {
    .menu-filter li::before {
        right: -20px;
    }
}

.menu-filter li:last-child::before {
    display: none;
}

.menu-filter li a {
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    transition: 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .menu-filter li a {
        font-size: 15px;
    }
}

.menu-filter li.active a,
.menu-filter li a:hover {
    color: #159800;
}

.c-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

@media (min-width: 1024px) {
    .c-link {
        font-size: 17px;
    }
}

.c-link:hover {
    text-decoration: none;
    color: #159800;
}

.star {
    display: flex;
    align-items: center;
    gap: 0 3px;
}

.star__icon {
    fill: #000;
    width: 16px;
    height: 16px;
}

.star__icon.active {
    fill: #f9b13c;
}

/*end common*/

/*header*/
.header {
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color);
}

@media (min-width: 991px) {
    .header {
        padding: 13px 0 11px 0;
    }
}

.header--search {
    border-bottom: 1px solid #8b8178;
}

.header .row {
    flex-direction: row-reverse;
}

@media (min-width: 991px) {
    .header .row {
        flex-direction: row;
    }
}

.header__menu {
    position: relative;
}

.header__search-btn {
}

@media (min-width: 991px) {
    .header__search-btn {
        margin: 0 0 0 auto;
    }
}

.header__search-btn.active .btn-search__show {
    opacity: 0;
}

.header__search-btn.active .btn-search__close {
    opacity: 1;
}

.header__mobile-btn {
    padding: 0;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: start;
    border: none;
    background: none;
    position: relative;
    width: 27px;
    height: 19px;
}

.header__mobile-btn span {
    width: 22px;
    height: 2px;
    display: block;
    background: #000;
    border-radius: 10px;
    transition: 0.4s ease;
}

.header__mobile-btn span:first-child {
    position: absolute;
    right: 0;
    top: 0;
}

.header__mobile-btn span:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}

.header__mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__mobile-btn.active span:first-child {
    transform: rotate(45deg);
    top: 50%;
}

.header__mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}

.header__mobile {
    position: absolute;
    top: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 43px 0 0 0;
    background: #161a25;
    height: 100vh;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.2s ease;
    transform: translateX(-100%);
    visibility: hidden;
}

.header__mobile.show {
    transform: translateX(0);
    visibility: visible;
}

.header__mobile-menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px 0;
}

.header__mobile-menu > li {
    list-style-type: none;
}

.header__mobile-menu > li > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    padding: 17px 0 17px 34px;
}

.header__mobile-menu > li a.active {
    background: #fff;
}

.header__mobile-menu > li > a > span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    position: relative;
    width: 100%;
    max-width: 241px;
}

.header__mobile-menu > li > a.active > span {
    color: #159800;
}

.header__mobile-menu > li > a svg {
    transition: 0.2s ease;
}

.header__mobile-menu > li > a.active svg {
    transform: scale(-1);
}

.header__mobile-menu > li > a > span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 63px;
    border-radius: 10px;
    background: #159800;
    visibility: visible;
    bottom: -7px;
    opacity: 1;
    transition: 0.2s ease;
}

.header__mobile-menu > li > a.active > span::before {
    visibility: hidden;
    opacity: 0;
}

.header__search-form {
    position: absolute;
    top: -200%;
    margin: 28px auto 0 auto;
    width: 100%;
    opacity: 0;
    transition: 0.4s ease;
    visibility: hidden;
}

@media (min-width: 1024px) {
    .header__search-form {
        margin: 42px auto 0 auto;
    }
}

.header__search-form.show {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.header--step-form {
    border-bottom: 1px solid #d2d2d2;
}

.header--step-form .header__menu {
    display: none;
}

.header--step-form .header__search-btn {
    display: none;
}

/*end header*/

/*footer*/
.footer {
    background: #161a25;
    padding: 20px 0 31px 0;
}

@media (min-width: 991px) {
    .footer {
        padding: 58px 0 30px 0;
    }
}

.footer__top-social {
    margin: 22px 0 45px 0;
}

@media (min-width: 991px) {
    .footer__top-social {
        margin: 25px 0 0 0;
    }
}

.footer__top-col {
    margin: 0 0 45px 0;
}

.footer__top-title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    /*gap: 0 186px;*/
}

@media (min-width: 991px) {
    .footer__top-title {
        gap: 0;
        padding: 15px 0 0 0;
        pointer-events: none;
    }
}

.footer__top-title span {
    max-width: 184px;
    width: 100%;
}

.footer__top-title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 63px;
    bottom: -10px;
    background: #159800;
}

.footer__top-title-icon {
    stroke: #159800;
    fill: none;
    width: 17px;
    height: 10px;
    transition: 0.2s ease;
}

@media (min-width: 991px) {
    .footer__top-title-icon {
        display: none;
    }
}

.footer__top-title.active .footer__top-title-icon {
    transform: scale(-1);
}

.footer__top-menu {
    padding: 0 0 0 19px;
    margin: 42px 0 0 0;
    flex-direction: column;
    gap: 25px 0;
    display: none;
}

@media (min-width: 991px) {
    .footer__top-menu {
        display: flex;
        padding: 0;
    }
}

.footer__top-menu.show {
    display: flex;
}

.footer__top-menu li {
    list-style-type: none;
}

.footer__top-menu li a {
    text-decoration: none;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    transition: 0.2s ease;
}

.footer__top-menu li:hover a {
    color: #159800;
}

.footer__top-desc {
    margin: 26px 0 0 0;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    color: var(--color);
}

.footer__bottom {
    margin: 46px 0 0 0;
    padding: 41px 0 0 0;
    border-top: 1px solid rgba(250, 250, 250, 0.4);
}

@media (min-width: 991px) {
    .footer__bottom { 
        padding: 30px 0 0;
        margin: 30px 0 0;
    }
}

.footer__bottom-link {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: var(--color);
    display: block;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer__bottom-link:hover {
    color: #159800;
}

.footer__bottom-adrv {
    margin: 22px 0 0 0;
}

@media (min-width: 991px) {
    .footer__bottom-adrv {
        margin: 0;
    }
}

.footer__bottom-copy {
    text-align: center;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: var(--color);
    margin: 46px 0 0 0;
}

@media (min-width: 991px) {
    .footer__bottom-copy {
        margin: 0;
        text-align: right;
    }
}
/*end footer*/

/*financial-path*/
.financial-path {
    position: relative;
}

.financial-path__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
}

.financial-path__bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.financial-path__wrappaer {
    position: relative;
    z-index: 2;
    padding: 39px 0 66px 0;
}

@media (min-width: 1024px) {
    .financial-path__wrappaer {
        padding: 27px 0 34px 0;
    }
}

.financial-path__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 35px;
    line-height: 46px;
    text-align: center;
    color: var(--color);
    margin: 0 0 22px 0;
}

@media (min-width: 1024px) {
    .financial-path__title {
        margin: 0 0 14px 0;
        font-size: 50px;
        line-height: 1;
    }
}

.financial-path__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--color);
    margin: 0 0 79px 0;
}

@media (min-width: 1024px) {
    .financial-path__desc {
        margin: 0 0 47px 0;
        font-size: 20px;
    }
}

.financial-path__row {
    gap: 25px 0;
    justify-content: center;
}
/*end financial-path*/

/*financial-item*/
.financial-item {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    background: var(--color);
    text-decoration: none;
    transition: 0.2s ease;
    max-width: 400px;
    margin: 0 auto;
}

.financial-item__img {
    overflow: hidden;
    border-radius: 0 0 5px 5px;
}

.financial-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.financial-item__bottom {
    padding: 11px 0;
}

@media (min-width: 1024px) {
    .financial-item__bottom {
        padding: 9px 0 12px 0;
    }
}

.financial-item__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #161a25;
    margin: 0;
    text-align: center;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .financial-item__title {
        font-size: 19px;
    }
}

.financial-item:hover {
    background: #159800;
}

.financial-item:hover .financial-item__title {
    color: var(--color);
}

/*end financial-item*/

/*block-head*/
.block-head {
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .block-head {
        padding: 0 0 26px 0;
        margin: 0 0 38px 0;
        border-bottom: 1px solid #e0e0e0;
    }
}

.block-head--flex {
    display: flex;
    flex-direction: column;
    gap: 17px 0;
}

@media (min-width: 1024px) {
    .block-head--flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

.block-head__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 33px;
    color: #101010;
    line-height: 1;
    margin: 0;
}

@media (min-width: 1024px) {
    .block-head__title {
        font-size: 40px;
    }
}

.block-head__content {
    padding: 28px 0 0 0;
    max-width: 805px;
}

.block-head__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-grey-51);
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .block-head__content p {
        font-size: 18px;
        line-height: 27px;
    }
}

.block-head__content p:last-child {
    margin: 0;
}

.block-head__link {
    background: #161a25;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: var(--color);
    justify-content: center;
    gap: 0 14px;
    max-width: 193px;
    width: 100%;
    border-color: #161a25;
}

@media (min-width: 1024px) {
    .block-head__link {
        height: 46px;
        max-width: 200px;
    }
}

.block-head__link:hover {
    background: var(--color);
    color: #161a25;
}

.block-head__link-svg {
    fill: var(--color);
    width: 11px;
    height: 11px;
    transition: 0.5s ease;
}

.block-head__link:hover .block-head__link-svg {
    fill: #161a25;
}
/*end block-head*/

/*find-answer*/
.find-answer {
    padding: 69px 0 81px 0;
}

@media (min-width: 1024px) {
    .find-answer {
        padding: 80px 0;
    }
}

.find-answer__img {
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.find-answer__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.find-answer__list-link {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

@media (min-width: 1024px) {
    .find-answer__list-link {
        gap: 16px 0;
    }
}
/*end find-answer*/

/*link-item*/
.link-item {
    display: flex;
    align-items: center;
    gap: 0 26px;
    border-radius: 5px;
    background: #f7f7f9;
    height: 75px;
    padding: 0 20px 0 26px;
    text-decoration: none;
    transition: 0.5s ease;
}

@media (min-width: 1024px) {
    .link-item {
        padding: 0 79px 0 29px;
    }
}

.link-item__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #101010;
}

@media (min-width: 1024px) {
    .link-item__text {
        font-size: 20px;
    }
}

.link-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    margin: 0 0 0 auto;
    transition: 0.5s ease;
}

.link-item__arrow-svg {
    width: 10px;
    height: 10px;
    fill: #159800;
    transition: 0.6s ease;
}

.link-item:hover {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.link-item:hover .link-item__arrow {
    background: #159800;
    border-color: #159800;
}

.link-item:hover .link-item__arrow-svg {
    fill: #fff;
}
/*end link-item*/

/*news-item*/
.news-item {
    display: block;
    text-decoration: none;
    background: #f7f7f9;
    border-radius: 10px;
    transition: 0.4s ease;
}

.news-item:hover {
    box-shadow: -2px 7px 24px 5px rgba(0, 0, 0, 0.12);
}

.news-item__img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

@media (min-width: 1024px) {
    .news-item__img {
        border-radius: 10px 0 0 10px;
        height: 100%;
    }
}

.news-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-item__info {
    padding: 11px 17px 23px 12px;
}

@media (min-width: 1024px) {
    .news-item__info {
        padding: 13px 83px 12px 0;
    }
}

.news-item__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 19px 0;
    color: #101010;
}

@media (min-width: 1024px) {
    .news-item__title {
        margin: 0 0 22px 0;
    }
}

.news-item__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #101010;
    margin: 0 0 28px 0;
}

@media (min-width: 1024px) {
    .news-item__desc {
        line-height: 24px;
        margin: 0 0 48px 0;
    }
}

.news-item__clock {
    display: flex;
    align-items: center;
    gap: 0 9px;
}

.news-item__clock-icon {
    fill: #8b8178;
    width: 16px;
    height: 16px;
}

.news-item__clock-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #8b8178;
}

.news-item__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    height: 25px;
    width: 100%;
    max-width: 109px;
    background: var(--color);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    color: #159800;
    border-radius: 5px;
    margin: 0 0 14px 0;
}

@media (min-width: 1024px) {
    .news-item__tag {
        max-width: 131px;
        height: 29px;
        font-size: 13px;
        margin: 0 0 21px 0;
    }
}

.news-item__info-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

@media (min-width: 1024px) {
    .news-item__info-bottom {
        flex-direction: row;
    }
}

.news-item__date {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #8b8178;
}

/*end news-item*/

/*news-home*/
.news-home {
    padding: 0 0 37px 0;
}

@media (min-width: 1024px) {
    .news-home {
        padding: 0 0 99px 0;
    }
}

.news-home--block-head {
    margin: 0 0 46px 0;
}

@media (min-width: 1024px) {
    .news-home--block-head {
        margin: 0 0 37px 0;
    }
}

.news-home__row {
    gap: 23px 0;
}

.news__home-list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

@media (min-width: 1024px) {
    .news__home-list {
        gap: 9px 0;
    }
}

.news-item-big {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f9;
    text-decoration: none;
    transition: 0.2s ease;
}

@media (min-width: 1200px) {
    .news-item-big {
        flex-direction: row;
        padding: 23px 16px 23px 25px;
        gap: 0 24px;
    }
}

.news-item-big:hover {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.news-item-big__img {
    position: relative;
    height: 294px;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}

@media (min-width: 1200px) {
    .news-item-big__img {
        width: 100%;
        max-width: 454px;
        height: 332px;
        border-radius: 10px;
    }
}

.news-item-big__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-item-big__clock {
    position: absolute;
    bottom: 13px;
    left: 15px;
    gap: 0 10px;
}

@media (min-width: 1200px) {
    .news-item-big__clock {
        bottom: 10px;
        left: 8px;
    }
}

.news-item-big__clock-icon {
    fill: #fff;
    width: 17px;
    height: 17px;
}

.news-item-big__clock-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--color);
}

.news-item-big__info {
    padding: 16px 16px 44px 16px;
}

@media (min-width: 1200px) {
    .news-item-big__info {
        padding: 0;
        width: 100%;
        max-width: calc(100% - (454px - 24px));
    }
}

.news-item-big__info-tag {
    font-size: 15px;
    max-width: 124px;
    height: 31px;
    margin: 0 0 19px 0;
}

@media (min-width: 1024px) {
    .news-item-big__info-tag {
        max-width: 141px;
        height: 32px;
        font-size: 16px;
        margin: 0 0 26px 0;
    }
}

.news-item-big__info-title {
    font-size: 19px;
    line-height: 28px;
    margin: 0 0 17px 0;
}

@media (min-width: 1024px) {
    .news-item-big__info-title {
        font-size: 23px;
        line-height: 34px;
        margin: 0 0 16px 0;
    }
}

.news-item-big__info-desc {
    margin: 0;
    font-size: 17px;
    line-height: 24px;
    color: #828282;
}

@media (min-width: 1024px) {
    .news-item-big__info-desc {
        font-size: 18px;
        line-height: 28px;
    }
}

.news-item-small {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    border-radius: 5px;
    background: #f7f7f9;
    padding: 18px 17px 13px 16px;
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    .news-item-small {
        gap: 17px 0;
        padding: 18px 11px 13px 19px;
    }
}

.news-item-small:hover {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.news-item-small__top {
    display: flex;
    justify-content: space-between;
}

.news-item-small__title {
    width: 100%;
    max-width: calc(100% - 80px);
    font-size: 18px;
    line-height: 24px;
    color: #101010;
}

@media (min-width: 1024px) {
    .news-item-small__title {
        font-size: 20px;
        max-width: calc(100% - 36px);
    }
}

.news-item-small__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: 0.4s ease;
    background: transparent;
}

.news-item-small__icon-svg {
    width: 12px;
    height: 12px;
    fill: #159800;
    transition: 0.4s ease;
}

.news-item-small__clock-icon {
    fill: #bdbdbd;
}

.news-item-small__clock-text {
    font-size: 16px;
    color: #bdbdbd;
}

.news-item-small:hover .news-item-small__icon {
    border-color: #159800;
    background: #159800;
}

.news-item-small:hover .news-item-small__icon-svg {
    fill: #fff;
}
/*end news-home*/

/*block-title*/
.block-title {
    padding: 40px 0 45px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .block-title {
        padding: 50px 0;
    }
}

.block-title--filter {
    padding: 26px 0 32px 0;
}

@media (min-width: 1024px) {
    .block-title--filter {
        padding: 41px 0 25px 0;
    }
}

.block-title--search {
    padding: 25px 0 20px 0;
}

@media (min-width: 1024px) {
    .block-title--search {
        padding: 41px 0 26px 0;
    }
}

.block-title__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
}

.block-title__bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.block-title__h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin: 0;
    color: var(--color);
}

@media (min-width: 1024px) {
    .block-title__h1 {
        font-size: 50px;
        line-height: 60px;
    }
}
/*end block-title*/

/*error-page*/
.error-page {
    padding: 50px 0;
}

@media (min-width: 1024px) {
    .error-page {
        padding: 73px 0 99px 0;
    }
}

.error-page__content h2 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 150px;
    line-height: 1;
    color: #101010;
    margin: 0;
    text-align: center;
}

.error-page__content p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    color: #101010;
    margin: 0;
    text-align: center;
}
/*end error-page*/

/*content-page*/
.content-page {
    padding: 35px 0 45px 0;
}

@media (min-width: 1024px) {
    .content-page {
        padding: 66px 0 99px 0;
    }
}

.content-page h2 {
    margin: 0 0 47px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #101010;
}

.content-page p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    color: #161a25;
    margin: 0 0 48px 0;
}

.content-page p:last-child {
    margin: 0;
}

.content-page ul {
    margin: 0 0 66px 0;
    padding: 0;
}

.content-page ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    color: #161a25;
    list-style-type: none;
    padding: 0 0 0 30px;
    position: relative;
    margin: 0 0 35px 0;
}

.content-page ul li:last-child {
    margin: 0;
}

.content-page ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #159800;
    position: absolute;
    top: 14px;
    left: 0;
}

.content-page ul li strong {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #161a25;
}

.content-page ol {
    padding: 0;
    margin: 0 0 38px 0;
}

.content-page ol li {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    color: #161a25;
}

.content-page ol li span {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/*end content-page*/

/*contact-page*/
.contact-page {
    padding: 44px 0 88px 0;
}

.contact-page__top {
    margin: 0 0 51px 0;
}

.contact-page__top h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 33px;
    line-height: 1;
    color: #101010;
    margin: 0 0 26px 0;
}

.contact-page__top p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #101010;
    margin: 0 0 20px 0;
}

.contact-page__top p:last-child {
    margin: 0;
}

.contact-page__callback-info {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #101010;
    margin: 39px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-page__callback-info {
        font-size: 13px;
        margin: 21px 0 0 0;
        line-height: 24px;
    }
}

.contact-page__info {
    border-radius: 10px;
    background: #f7f7f9;
    padding: 51px 0 58px 0;
    margin: 51px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-page__info {
        margin: 0 0 0 auto;
        max-width: 420px;
    }
}

.contact-page__info-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #101010;
    text-align: center;
    margin: 0 0 29px 0;
}

.contact-page__info-social {
    flex-direction: column;
    align-items: baseline;
    gap: 30px 0;
    padding: 0 77px;
}

.contact-page__info-social li a {
    display: flex;
    align-items: center;
    gap: 0 30px;
    text-decoration: none;
}

.contact-page__info-social li a svg {
    fill: #101010;
}

.contact-page__info-social li a span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
    transition: 0.4s ease;
}

.contact-page__info-social li a:hover span {
    text-decoration: none;
}

.form-contact {
    display: flex;
    flex-direction: column;
    gap: 34px 0;
}

@media (min-width: 1024px) {
    .form-contact__btn {
        margin: 15px auto 0 0;
        max-width: 178px;
        width: 100%;
    }

    .form-contact__btn:hover {
        background: #fff;
        color: #159800;
        border-color: #159800;
    }
}

/*end contact-page*/

/*form-control*/
.c-form-control {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    position: relative;
    width: 100%; 
}

.c-form-control__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
}

@media (min-width: 1024px) {
    .c-form-control__label {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    .c-form-control__label {
        font-size: 17px;
    }
}

.c-form-control__input {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #8b8178;
    border-radius: 5px;
    height: 50px;
    padding: 0 15px;
}

.c-form-control__input--nobg {
    background: none;
}

.c-form-control__input-date {
    border-color: #159800;
    background: #f0f0f0; 
    font-size: 16px;  
    display: block !important; 
    width: 100%; 
    max-width: 100%; 
    min-width: 0;
    min-height: 50px;
}

.c-form-control__dollor::before {
    content: "$";
    position: absolute;
    left: 26px;
    top: 37px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
}

@media (min-width: 1024px) {
    .c-form-control__dollor::before {
        top: 36px;
    }
}

.c-form-control__dollor .c-form-control__input {
    padding-left: 38px;
}

.c-form-control__reset {
    position: absolute;
    padding: 0;
    margin: 0;
    top: 35px;
    right: 26px;
    border: none;
    background: none;
}

.c-form-control__reset svg {
    fill: #7e7e7e;
    width: 14px;
    height: 14px;
}

/*end form-control*/

/* c-range */
.c-range__slide {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px; /* высота как у трека */
    border-radius: 2px;

    /* серая база + зелёный прогресс поверх */
    background: #ddd;
    background-image: linear-gradient(#0bb236, #0bb236);
    background-repeat: no-repeat;
    background-size: 0% 100%; /* JS меняет ширину */
}

/* трек прозрачный, чтобы был виден фон input */
.c-range__slide::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 2px;
    background: transparent;
}
.c-range__slide::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: transparent;
}

/* кружок по центру дорожки */
.c-range__slide::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0bb236;
    border: 2px solid #0bb236;
    margin-top: -6px; /* (4px / 2) - (16px / 2) */
    cursor: pointer;
}
.c-range__slide::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0bb236;
    border: 2px solid #0bb236;
    cursor: pointer;
}

.c-range__labels {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #000;
    margin: 15px 0 0 0;
}
/*end c-range*/

/*c-form-checkbox*/
.c-form-checkbox {
    cursor: pointer;
}

.c-form-checkbox__label {
    display: block;
    position: relative;
    gap: 0 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    padding: 0 0 0 27px;
    color: #101010;
}

.c-form-checkbox__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.c-form-checkbox__label::after {
    position: absolute;
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #159800;
    top: 9px;
    left: 4px;
    opacity: 0;
    visibility: hidden;
}

.c-form-checkbox__input:checked + .c-form-checkbox__label::after {
    opacity: 1;
    visibility: visible;
}

/*end c-form-checkbox*/

/*blog-page*/
.blog-page {
    padding: 21px 0 51px 0;
}

@media (min-width: 1024px) {
    .blog-page {
        padding: 80px 0 99px 0;
    }
}

.blog-page__list {
    display: flex;
    flex-direction: column;
    gap: 37px 0;
}

@media (min-width: 1024px) {
    .blog-page__list {
        gap: 40px 0;
    }
}
/*end blog-page*/

/*search*/
.search-result {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--color);
    text-align: center;
    margin: 15px 0 0 0;
}

@media (min-width: 1024px) {
    .search-result {
        margin: 24px 0 0 0;
    }
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form__input {
    border-radius: 10px;
    background: #f7f7f9;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #101010;
    border: none;
    height: 51px;
    display: flex;
    align-items: center;
    padding: 0 60px 0 28px;
    width: 100%;
}

@media (min-width: 1024px) {
    .search-form__input {
        border: 1px solid #8b8178;
        background: #fff;
        height: 55px;
        padding: 0 110px 0 59px;
    }
}

.search-form__btn {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .search-form__btn {
        right: 63px;
    }
}

.search-form__btn svg {
    width: 24px;
    height: 24px;
}

.search-control__result {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    margin: 20px 0 0 0;
    color: #000;
}

.search-item-result {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .search-item-result {
        gap: 32px 0;
        max-width: 1006px;
    }
}

.search-item-result__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #101010;
    margin: 0;
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    .search-item-result__title {
        text-decoration: none;
    }
}

.search-item-result__desc {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #101010;
}

@media (min-width: 1024px) {
    .search-item-result__desc {
        line-height: 24px;
    }
}

.search-item-result__desc b {
    color: #159800;
    font-weight: 500;
}

.search-item-result:hover .search-item-result__title {
    text-decoration: underline;
    color: #4d556d;
}

/*end search*/

/*search-page*/
.search-page {
    padding: 28px 0 51px 0;
}

@media (min-width: 1024px) {
    .search-page {
        padding: 35px 0 99px 0;
    }
}

.search-page__result {
    display: flex;
    flex-direction: column;
    gap: 50px 0;
    margin: 43px 0 0 0;
}

@media (min-width: 1024px) {
    .search-page__result {
        gap: 90px 0;
        margin: 85px 0 0 0;
    }
}

.search-page__show-more {
    max-width: 262px;
    margin: 67px auto 0 auto;
    height: 52px;
    font-size: 16px;
    background: #161a25;
}

@media (min-width: 1024px) {
    .search-page__show-more {
        max-width: 430px;
        font-size: 20px;
        height: 58px;
    }
}

/*end search-page*/

/*popup*/
.modal-dialog--default {
    max-width: 472px;
}

.modal-dialog--loans {
    max-width: 1120px;
}

.modal-content {
    border: none;
}

.modal-body {
    padding: 0;
}

.popup {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}

.popup__btn-close {
    position: absolute;
    top: 23px;
    right: 16px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .popup__btn-close {
        top: 20px;
        right: 25px;
    }
}

.popup__btn-close svg {
    width: 20px;
    height: 22px;
    fill: #101010;
}

.popup__content-success {
    padding: 39px 25px;
}

.popup__content-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0;
}

.popup__content-success-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 11px 0;
    color: #101010;
    text-align: center;
}

@media (min-width: 1024px) {
    .popup__content-success-title {
        font-size: 30px;
    }
}

.popup__content-success-desc {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #101010;
}

@media (min-width: 1024px) {
    .popup__content-success-desc {
        font-size: 18px;
        line-height: 24px;
    }
}

.popup__content-loans {
    padding: 64px 15px 61px 15px;
}

@media (min-width: 1024px) {
    .popup__content-loans {
        padding: 39px 77px 70px 71px;
    }
}

.popup__content-loans h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    margin: 0 0 9px 0;
    color: #000;
}

@media (min-width: 1024px) {
    .popup__content-loans h3 {
        font-size: 20px;
        margin: 0 0 5px 0;
    }
}

.popup__content-loans p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    margin: 0 0 35px 0;
}

@media (min-width: 1024px) {
    .popup__content-loans p {
        font-size: 17px;
        line-height: 34px;
    }
}

.popup__content-loans p:last-child {
    margin: 0;
}
/*end popup*/

/*loans-offers-nav*/
.loans-offers-nav {
    padding: 9px 0 29px 0;
    background: #f5f6f6;
}

@media (min-width: 1024px) {
    .loans-offers-nav {
        padding: 47px 0 48px 0;
    }
}

.loans-offers-nav__header-row {
    gap: 20px 0;
}

.loans-offers-nav__header-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .loans-offers-nav__header-link {
        justify-content: end;
        gap: 0 45px;
    }
}

.loans-offers-nav__header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 18px;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    background: var(--color);
    width: 100%;
    height: 55px;
    border: none;
    transition: 0.4s ease;
}

.loans-offers-nav__header-btn-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    transition: 0.4s ease;
}

.loans-offers-nav__header-btn-icon {
    fill: none;
    stroke: #159800;
    stroke-width: 1.5px;
    width: 12px;
    height: 7px;
    transition: 0.4s ease;
}

.loans-offers-nav__header-btn:hover,
.loans-offers-nav__header-btn.active {
    background: #159800;
}

.loans-offers-nav__header-btn:hover .loans-offers-nav__header-btn-text,
.loans-offers-nav__header-btn.active .loans-offers-nav__header-btn-text {
    color: var(--color);
}

.loans-offers-nav__header-btn:hover .loans-offers-nav__header-btn-icon {
    stroke: var(--color);
}

.loans-offers-nav__header-btn.active .loans-offers-nav__header-btn-icon {
    stroke: var(--color);
    transform: scale(-1);
}

.loans-offers-nav__links {
    padding: 25px 0 0 0;
    display: none;
}

.loans-offers-nav__links.show {
    display: block;
}

@media (min-width: 1024px) {
    .loans-offers-nav__links {
        padding: 54px 0 0 0;
    }
}

.menu-inner-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .menu-inner-pages {
        gap: 33px 0;
    }
}

.menu-inner-pages li {
    list-style-type: none;
    flex: 1 1 100%;
}

@media (min-width: 1024px) {
    .menu-inner-pages li {
        flex: 1 1 33.333%;
    }
}

.menu-inner-pages li a {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #101010;
    padding: 0 0 0 20px;
    position: relative;
}

.menu-inner-pages li a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #159800;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*end loans-offers-nav*/

/*loans-filter*/
.loans-filter {
    padding: 42px 0 32px 0;
}

.loans-filter__btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 19px;
    background: #161a25;
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    height: 55px;
    border: none;
}

@media (min-width: 1024px) {
    .loans-filter__btn-mobile {
        display: none;
    }
}

.loans-filter__btn-mobile-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: var(--color);
}

.loans-filter__btn-mobile-icon {
    fill: var(--color);
    width: 20px;
    height: 17px;
}

.loans-filter__container {
    display: none;
}

.loans-filter__container.show {
    flex-direction: column;
    display: flex;
    gap: 31px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #161a25;
    height: 100%;
    padding: 30px 15px;
    width: 100%;
}

@media (min-width: 1024px) {
    .loans-filter__container {
        display: flex;
        gap: 0 12px;
        align-items: center;
    }
}

.loans-filter__col {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .loans-filter__col {
        max-width: 549px;
    }
}

.loans-filter__col--small {
    max-width: 100%;
}

@media (min-width: 1024px) {
    .loans-filter__col--small {
        max-width: 228px;
    }
}

.loans-filter__close {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.loans-filter__close-icon {
    width: 20px;
    height: 20px;
    fill: var(--color);
}

/*end loans-filter*/

/*offers-page*/
.offers-page {
    padding: 0 0 80px 0;
}

.offers-page--nofilter {
    padding-top: 50px;
}

@media (min-width: 1024px) {
    .offers-page--nofilter {
        padding-top: 78px;
    }
}

.offers-page__no-results {
    padding: 15px 0 86px 0;
    max-width: 763px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .offers-page__no-results {
        padding: 57px 0 109px 0;
    }
}

.offers-page__no-results-icon {
    text-align: center;
    margin: 0 0 7px 0;
}

.offers-page__no-results h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    text-align: center;
    color: #000;
    margin: 0 0 10px 0;
}

@media (min-width: 1024px) {
    .offers-page__no-results h2 {
        font-size: 30px;
        line-height: 34px;
    }
}

.offers-page__no-results p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
}

.offers-page__list {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

@media (min-width: 1024px) {
    .offers-page__list {
        gap: 25px 0;
    }
}

.offers-inner-block__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    color: #101010;
    margin: 0 0 54px 0;
}

@media (min-width: 1024px) {
    .offers-inner-block__title {
        margin: 0 0 69px 0;
        font-size: 40px;
    }
}

/*end offers-page*/

/*block-text*/
.block-text {
    padding: 36px 0 42px 0;
}

@media (min-width: 1024px) {
    .block-text {
        padding: 50px 0 75px 0;
    }
}

.block-text__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .block-text__content p {
        font-size: 18px;
        line-height: 32px;
    }
}

.block-text__content p:last-child {
    margin: 0;
}

.block-text__content a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #161a25;
}

.block-text__content a:hover {
    text-decoration: none;
}

.block-text--bottom {
    padding: 69px 0 100px 0;
}

@media (min-width: 1024px) {
    .block-text--bottom {
        padding: 102px 0 80px 0;
    }
}

/*end block-text*/

/*aside-navigate*/
.aside-navigate {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    margin: 0 auto;
    z-index: 99;
    background: #f7f7f9;
}

@media (min-width: 1024px) {
    .aside-navigate {
        position: sticky;
        top: 70px;
        background: none;
    }
}

.aside-navigate__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 27px;
    height: 62px;
    cursor: pointer;
    border: none;
    width: 100%;
}

@media (min-width: 1024px) {
    .aside-navigate__btn {
        display: none;
    }
}

.aside-navigate__btn-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #101010;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
}

.aside-navigate__btn-text::after {
    content: "";
    display: block;
    width: 82px;
    height: 1px;
    background: #159800;
}

.aside-navigate__btn-icon {
    width: 30px;
    height: 30px;
}

.aside-navigate__wrap {
    display: none;
    padding: 24px 0 51px 14px;
    position: relative;
}

@media (min-width: 1024px) {
    .aside-navigate__wrap {
        display: block;
        padding: 0;
        margin: 0;
    }
}

.aside-navigate__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    position: relative;
    color: #101010;
    margin: 0 0 40px 0;
}

.aside-navigate__title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 95%;
    height: 1px;
    background: #159800;
}

.aside-navigate__btn.active {
    display: none;
}

.aside-navigate__wrap.show {
    display: block;
}

.aside-navigate__close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: none;
    z-index: 9;
}

@media (min-width: 1024px) {
    .aside-navigate__close {
        display: none;
    }
}

.aside-navigate__close svg {
    width: 20px;
    height: 20px;
}

.aside-navigate__menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px 0;
}

@media (min-width: 1024px) {
    .aside-navigate__menu {
        gap: 10px 0;
    }
}

.aside-navigate__menu li {
    list-style-type: none;
}

.aside-navigate__menu li a {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #101010;
    line-height: 1;
    text-decoration: none;
    transition: 0.4s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .aside-navigate__menu li a {
        padding: 10px 0 10px 0;
    }
    .aside-navigate__menu li a:hover {
        background: #f7f7f9;
    }
}

.aside-navigate__menu li a.active {
    padding-left: 23px;
    font-weight: 500;
}

.aside-navigate__menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    width: 5px;
    height: 42px;
    background: #159800;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aside-navigate__menu li a.active::before,
.aside-navigate__menu li a:hover::before {
    opacity: 1;
}

.aside-navigate__menu li a:hover {
    padding-left: 23px;
    font-weight: 500;
}

/*end aside-navigate*/

/*offers-item*/
.offers-item {
    background: #f7f7f9;
    border-radius: 15px;
    padding: 13px 12px 26px 12px;
}

@media (min-width: 1024px) {
    .offers-item {
        padding: 42px 43px 35px 52px;
    }
    .offers-item__wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 50px 0;
    }
}

.offers-item__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 14px 0;
    border-bottom: 2px solid #fff;
    margin: 0 0 15px 0;
}

@media (min-width: 1024px) {
    .offers-item__logo {
        border: none;
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 9px 0;
        justify-content: center;
    }
    .offers-item__logo .offers-item__cta-popup {
        display: none;
    }
}

.offers-item__logo-img {
    width: 125px;
}

@media (min-width: 1200px) {
    .offers-item__logo-img {
        width: 176px;
    }
}

.offers-item__logo-img img {
    object-fit: contain;
    width: 100%;
}

.offers-item__cta {
    display: none;
}

@media (min-width: 1024px) {
    .offers-item__cta {
        display: block;
        width: 100%;
        max-width: 178px;
    }
}

.offers-item__cta-popup {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
    border: none;
    background: none;
}

@media (min-width: 1024px) {
    .offers-item__cta-popup {
        margin: 0 auto;
        padding: 0;
        text-align: center;
        display: block;
    }
}

.offers-item__info {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    margin: 0 0 34px 0;
}

@media (min-width: 1024px) {
    .offers-item__info {
        margin: 0;
        flex-direction: row;
        gap: 0 50px;
    }
}

@media (min-width: 1200px) {
    .offers-item__info {
        gap: 0 100px;
    }
}

.offers-item__info-item {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .offers-item__info-item {
        flex-direction: column;
        position: relative;
    }

    .offers-item__info-item::before {
        content: "";
        display: block;
        width: 1px;
        height: 85px;
        position: absolute;
        right: -25px;
        top: 0;
        background-color: #e0e0e0;
    }

    .offers-item__info-item:last-child::before {
        display: none;
    }
}

@media (min-width: 1200px) {
    .offers-item__info-item::before {
        right: -50px;
    }
}

.offers-item__info-item-name {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #101010;
    width: 30%;
    position: relative;
    display: flex;
    gap: 0 3px;
}

@media (min-width: 1024px) {
    .offers-item__info-item-name {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

.offers-item__info-item-name-tooltip {
    padding: 0;
    margin: -5px 0 0 0;
    cursor: pointer;
    position: relative;
}

.offers-item__info-item-name-tooltip svg {
    width: 12px;
    height: 12px;
    fill: #159800;
}

.offers-item__info-item-name-tooltip::before {
    content: attr(tooltip-title);
    position: absolute;
    left: 57px;
    bottom: 120%; /* выше иконки */
    transform: translateX(-50%);
    padding: 17px 40px 16px 17px;
    background: var(--color);
    border-radius: 4px;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease;
    z-index: 10;
    white-space: normal;
    min-width: 285px;
    border-left: 4px solid #000;
}

.offers-item__info-item-name-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(120% - 8px);
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease;
    z-index: 9;
}

.offers-item__info-item-name-tooltip:hover::before,
.offers-item__info-item-name-tooltip:hover::after,
.offers-item__info-item-name-tooltip:focus::before,
.offers-item__info-item-name-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

.offers-item__info-item-params {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #101010;
    width: 45%;
    text-align: center;
}

@media (min-width: 1024px) {
    .offers-item__info-item-params {
        width: 100%;
        margin: 0 0 7px 0;
        text-align: left;
    }
}

.offers-item__info-item-req {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #101010;
    width: 25%;
    text-align: right;
}

@media (min-width: 1024px) {
    .offers-item__info-item-req {
        width: 100%;
        text-align: left;
    }
}

.offers-item__cta-link-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    background: #159800;
    height: 45px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    width: 100%;
    color: var(--color);
}

@media (min-width: 1024px) {
    .offers-item__cta-link-offer {
        max-width: 100%;
    }
}

.offers-item__cta-link-offer:hover {
    color: #159800;
    background: #fff;
    border-color: #159800;
}

.offers-item__cta-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #8b8178;
}

@media (min-width: 1024px) {
    .offers-item__cta-subtitle {
        margin: 6px 0 20px 0;
        text-align: center;
    }
}

.offers-item__cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 9px 0;
    align-items: center;
}

@media (min-width: 1024px) {
    .offers-item__cta-mobile {
        display: none;
    }
}

.offers-item__spoilers {
    display: flex;
    flex-direction: column;
    gap: 23px 0;
    margin: 0 0 29px 0;
}

.offers-item__spoiler-item-head {
    border-bottom: 2px solid #e0e0e0;
    padding: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 0 14px;
    cursor: pointer;
}

.offers-item__spoiler-item:last-child .offers-item__spoiler-item-head {
    border: none;
    padding: 0;
}

@media (min-width: 1024px) {
    .offers-item__spoiler-item:last-child .offers-item__spoiler-item-head {
        border-bottom: 2px solid #e0e0e0;
        padding: 0 0 15px 0;
    }
}

.offers-item__spoiler-item-head-text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #101010;
    line-height: 1;
    width: 100%;
    max-width: 120px;
}

.offers-item__spoiler-item-head-icon {
    fill: none;
    stroke-width: 1.5px;
    stroke: #159800;
    width: 15px;
    height: 9px;
    transition: 0.4s ease;
}

.offers-item__spoiler-item-body-props-cons {
    display: flex;
    padding: 19px 0 0 0;
    flex-wrap: wrap;
    gap: 35px 0;
}

@media (min-width: 1024px) {
    .offers-item__spoiler-item-body-props-cons {
        padding: 39px 0 64px 0;
    }
    .offers-item__spoiler-item-body-props,
    .offers-item__spoiler-item-body-cons {
        width: 50%;
    }
}

.offers-item__spoiler-item-body {
    display: none;
}

.offers-item__spoiler-item-body.show {
    display: block;
}

.offers-item__spoiler-item-head.active .offers-item__spoiler-item-head-icon {
    transform: scale(-1);
}

.offers-item__spoiler-item-head.active .offers-item__spoiler-item-head-text {
    color: #159800;
}

.offers-item__spoiler-item-body-cons h4,
.offers-item__spoiler-item-body-props h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #101010;
    margin: 0 0 14px 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .offers-item__spoiler-item-body-cons h4,
    .offers-item__spoiler-item-body-props h4 {
        margin: 0 0 34px 0;
        font-size: 18px;
    }
}

.offers-item__spoiler-item-body-cons ul,
.offers-item__spoiler-item-body-props ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.offers-item__spoiler-item-body-cons ul li,
.offers-item__spoiler-item-body-props ul li {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #101010;
    padding: 0 0 0 26px;
    position: relative;
}

.offers-item__spoiler-item-body-props ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url("../images/props.svg");
}

.offers-item__spoiler-item-body-cons ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url("../images/cons.svg");
}

.offers-item__spoiler-item-body-our {
    display: flex;
    flex-direction: column;
    gap: 45px 0;
}

@media (min-width: 1024px) {
    .offers-item__spoiler-item-body-our {
        flex-direction: row;
        gap: 0 31px;
        padding: 35px 0 0 0;
    }
}

.offers-item__spoiler-item-body-our-left {
    padding: 32px 0 0 0;
}

@media (min-width: 1024px) {
    .offers-item__spoiler-item-body-our-left {
        padding: 34px 35px 51px 38px;
        background: var(--color);
        border-radius: 10px;
        max-width: 723px;
    }
}

.offers-item__spoiler-item-body-our-left h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    margin: 0 0 20px 0;
}

.offers-item__spoiler-item-body-our-left p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 45px 0;
}

.offers-item__spoiler-item-body-our-left p:last-child {
    margin: 0;
}

.offers-item__spoiler-item-body-our-left ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.offers-item__spoiler-item-body-our-left ul li {
    list-style-type: none;
    position: relative;
    padding: 0 0 0 23px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #161a25;
}

.offers-item__spoiler-item-body-our-left ul li::before {
    content: "";
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 7px;
    left: 0;
    width: 9px;
    height: 9px;
    background: #159800;
}

.offers-item__spoiler-item-body-our-right h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    margin: 0 0 20px 0;
}

.offers-item__spoiler-item-body-our-right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 45px 0;
}

.offers-item__spoiler-item-body-our-right p:last-child {
    margin-bottom: 0;
}

.offers-item__spoiler-item-body-our-right ul {
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px
}

.offers-item__spoiler-item-body-our-right ul li {
    list-style-type: none;
    position: relative;
    padding: 0 0 0 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #161a25;
    flex: 1 1 calc(50% - 15px);
}

.offers-item__spoiler-item-body-our-right ul li::before {
    content: "";
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 7px;
    left: 0;
    width: 9px;
    height: 9px;
    background: #159800;
}

@media (min-width: 1024px) {
    .offers-item--small {
        padding: 20px 23px 20px 23px;
    }
    .offers-item--small .offers-item__wrap {
        margin: 0;
    }
    .offers-item--small .offers-item__logo-img {
        width: 120px;
    }
    .offers-item--small .offers-item__info {
        gap: 0 40px;
    }
    .offers-item--small .offers-item__info-item::before {
        right: -20px;
    }
    .offers-item--small .offers-item__cta-subtitle {
        margin-bottom: 0;
    }
    .offers-item--small .offers-item__cta {
        max-width: 120px;
    }
    .offers-item--small .offers-item__info-item-params {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    @media (min-width: 1024px) {
        .offers-item--small {
            padding: 41px 43px 41px 38px;
        }
        .offers-item--small .offers-item__wrap {
            margin: 0;
        }
        .offers-item--small .offers-item__logo-img {
            width: 142px;
        }
        .offers-item--small .offers-item__info {
            gap: 0 50px;
        }
        .offers-item--small .offers-item__info-item::before {
            right: -25px;
        }
        .offers-item--small .offers-item__cta-subtitle {
            margin-bottom: 0;
        }
        .offers-item--small .offers-item__cta {
            max-width: 178px;
        }
        .offers-item--small .offers-item__info-item-params {
            font-size: 22px;
        }
    }
}

/*end offers-item*/

/*filter-control*/
.filter-control {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.filter-control__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: var(--color);
}

@media (min-width: 1024px) {
    .filter-control__label {
        color: #101010;
    }
    .filter-control__label--right {
        text-align: right;
    }
}

.filter-control__input {
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 23px;
    color: var(--color);
    background: transparent;
    height: 50px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .filter-control__input {
        color: #101010;
        background: #fff;
        border-color: #8b8178;
    }
    .filter-control__input::placeholder {
        color: #8b8178;
    }
}

.loans-filter__title-mobile {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: var(--color);
}

.loans-filter__btn-success-mobile {
    display: flex;
    width: 100%;
    background: #159800;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    height: 55px;
    padding: 0;
}

@media (min-width: 1024px) {
    .loans-filter__btn-success-mobile {
        display: none;
    }
}

.loans-filter__container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .loans-filter__container-header {
        display: none;
    }
}

select.filter-control__select {
    display: none;
}

.nice-select.custom-select {
    border: none;
    border-radius: 5px;
    background: transparent;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    border: 1px solid #fff;
}

@media (min-width: 1024px) {
    .nice-select.custom-select {
        background: #ecf0f1;
        border: none;
    }
}

.nice-select.custom-select .current {
    padding: 0 0 0 25px;
    margin: 0;
    display: block;
    width: 100%;
    line-height: 1;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--color);
}

.select-step-form.nice-select.custom-select .current {
    color: #101010;
}

@media (min-width: 1024px) {
    .nice-select.custom-select .current {
        color: #101010;
    }
}

.custom-select.nice-select::after {
    right: 25px;
    border-bottom: 2px solid #159800;
    border-right: 2px solid #159800;
    width: 9px;
    height: 9px;
    margin-top: -6px;
}

.nice-select.custom-select .nice-select-dropdown {
    background: #ecf0f1;
    border: none;
    box-shadow: none;
    width: 100%;
}

.nice-select.custom-select .list {
    padding: 0;
    margin: 0;
}
/*end filter-control*/

/*loan-calculator*/
.loan-calculator {
    padding: 0 0 100px 0;
}

.loan-calculator__bg-mobile {
    background: #f5f6f6;
}

@media (min-width: 1024px) {
    .loan-calculator__bg-mobile {
        background: none;
    }
}

@media (min-width: 1024px) {
    .loan-calculator__wrapper {
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border-radius: 10px;
        background: var(--color);
    }
}

.loan-calculator__info {
    background: #f5f6f6;
    padding: 24px 0 44px 0;
}

@media (min-width: 1024px) {
    .loan-calculator__info {
        padding: 44px 45px 61px 44px;
    }
}

.loan-calculator__info-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    color: #101010;
    margin: 0 0 22px 0;
}

.loan-calculator__info-form-row {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .loan-calculator__info-form-row {
        gap: 26px 40px;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .loan-calculator__info-form-row .c-form-control {
        width: calc(50% - 20px);
    }
}

.loan-calculator__info-btn {
    background: #159800;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--color);
    width: 100%;
    height: 55px;
    margin: 28px 0 0 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .loan-calculator__info-btn {
        margin: 42px 0 0 0;
    }
}

.loan-calculator__info-btn:hover {
    background: #fff;
    color: #159800;
    border-color: #159800;
}

.loan-calculator__results {
    margin: 28px 0 0 0;
}

@media (min-width: 1024px) {
    .loan-calculator__results {
        padding: 44px 51px 61px 11px;
        margin: 0;
    }
}

.loan-calculator__results-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    margin: 0 0 8px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .loan-calculator__results-title {
        font-size: 25px;
        margin: 0 0 24px 0;
    }
}

.loan-calculator__results-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    text-align: center;
    margin: 6px 0 0 0;
}

.loan-calculator__results-total {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: #101010;
    text-align: center;
}

.loan-calculator__results-total strong {
    font-weight: 600;
}

.loan-calculator__results-list {
    padding: 0;
    margin: 33px 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.loan-calculator__results-list li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 22px 0;
    border-bottom: 1px solid #bdbdbd;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #101010;
}

.loan-calculator__results-list li:last-child {
    padding: 0;
    border: none;
}

.loan-calculator__results-link {
    display: flex;
    text-decoration: none;
    border: 1px solid #159800;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background: var(--color);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    height: 55px;
    color: #159800;
    transition: 0.4s ease;
}

.loan-calculator__results-link:hover {
    background: #159800;
    color: var(--color);
}
/*end loan-calculator*/

/*article-main*/
.article-main {
    padding: 0 0 129px 0;
}

@media (min-width: 1024px) {
    .article-main {
        padding: 0 0 108px 0;
    }
}

.article-main__cms-content {
}

.article-main__cms-content h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 49px 0;
}

.article-main__cms-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .article-main__cms-content p {
        font-size: 17px;
    }
}

.article-main__cms-content p:last-child {
    margin: 0;
}

.article-main__cms-content a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.article-main__cms-content h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    color: #101010;
    margin: 0 0 44px 0;
}

.article-main__cms-content ul {
    padding: 0;
    margin: 0 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.article-main__cms-content ul li {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #161a25;
    padding: 0 0 0 30px;
    position: relative;
}

.article-main__cms-content ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #159800;
}

.article-main__cms-content ul li strong {
    font-weight: 600;
}
/*end article-main*/

/*loan-article-page*/
.loan-article-page {
    padding: 40px 0 0 0;
}

@media (min-width: 1024px) {
    .loan-article-page {
        padding: 44px 0 0 0;
    }
}

.loan-article__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 9px 0;
}

@media (min-width: 1024px) {
    .loan-article__head {
        gap: 0 36px;
        justify-content: flex-start;
        margin: 0 0 14px 0;
    }
}

.loan-article__head-date {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #101010;
    position: relative;
}

.loan-article__head-read {
    display: flex;
    gap: 0 7px;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    color: #101010;
}

.loan-article__head-read svg {
    fill: #159800;
    width: 16px;
    height: 16px;
}

.loan-article__head-author {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #101010;
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .loan-article__head-author {
        display: block;
    }
    .loan-article__head-date::before,
    .loan-article__head-author::before {
        content: "";
        position: absolute;
        right: -18px;
        top: 2px;
        width: 1px;
        height: 12px;
        background: #000;
    }
}

.loan-article__head-author-mobile {
    display: block;
}

@media (min-width: 1024px) {
    .loan-article__head-author-mobile {
        display: none;
    }
}

.loan-article__head-author strong {
    font-weight: 600;
}

.loan-article__img {
    width: 100%;
    max-width: 924px;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 0 13px 0;
}

@media (min-width: 1024px) {
    .loan-article__img {
        margin: 0 0 18px 0;
    }
}

.loan-article__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.loan-article__share {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.loan-article__share-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #101010;
}

.loan-article__share-list {
    display: flex;
    align-items: center;
    gap: 0 13px;
    padding: 0;
    margin: 0;
}

.loan-article__share-list li {
    list-style-type: none;
}

.loan-article__block {
    margin: 0 0 53px 0;
}

@media (min-width: 1024px) {
    .loan-article__block {
        margin: 0 0 68px 0;
    }
}
/*end loan-article-page*/

/*news-in-article*/
.news-in-article {
    padding: 100px 0 143px 0;
}

@media (min-width: 1024px) {
    .news-in-article {
        padding: 140px 0 99px 0;
    }
}
.news-in-article--title {
    padding: 0;
    border: none;
}

.news-in-article--title .block-head__link {
    display: none;
}

@media (min-width: 1024px) {
    .news-in-article--title .block-head__link {
        display: flex;
    }
}

.news-item-slider {
    display: block;
    text-decoration: none;
    background: #f7f7f9;
    border-radius: 10px;
    transition: 0.4s ease;
}

.news-item-slider:hover {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.news-item-slider__img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-item-slider__img img {
    object-fit: contain;
    width: 100%;
}

.news-item-slider__info {
    padding: 11px 17px 23px 12px;
}

.news-swiper__button-prev,
.news-swiper__button-next {
    display: none;
}

@media (min-width: 1024px) {
    .news-item-slider__info {
        padding: 16px 16px 26px 13px;
    }

    .news-item-slider__tag {
        padding: 0;
        margin: 0;
        background: none;
        color: #8b8178;
        max-width: none;
        height: auto;
        margin: 0 0 20px 0;
        text-align: left;
        display: block;
    }
    .news-item-slider__desc {
        display: none;
    }

    .news-item-slider__title {
        margin: 0 0 45px 0;
    }

    .news-swiper__button-next {
        right: -35px !important;
        color: #8b8178 !important;
        display: flex;
    }

    .news-swiper__button-prev {
        left: -35px !important;
        color: #8b8178 !important;
        display: flex;
    }

    .news-swiper__button-prev::after,
    .news-swiper__button-next::after {
        font-size: 30px !important;
    }
}

.news-in-article__wrapper {
    position: relative;
    padding: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .news-in-article__wrapper {
        padding: 0 0 42px 0;
    }
}

.news-swiper__pagination {
    padding: 0;
    margin: 0;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 14px;
}

.news-swiper__pagination .swiper-pagination-bullet {
    padding: 0 !important;
    margin: 0 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 100%;
    background: #ecf0f1;
    opacity: 1;
}

.news-swiper__pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #159800;
}
/*end news-in-article*/

/*faq*/
.faq {
}

.faq__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 32px;
    color: #101010;
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .faq__title {
        font-size: 30px;
        margin: 0 0 63px 0;
    }
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.faq-item__head {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f9;
    padding: 0 34px 0 21px;
    height: 55px;
    cursor: pointer;
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    .faq-item__head {
        padding: 0 85px 0 40px;
    }
}

.faq-item__head-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #101010;
    transition: 0.4s ease;
}

@media (min-width: 1024px) {
    .faq-item__head-text {
        font-size: 18px;
        font-weight: 600;
    }
}

.faq-item__head-icon {
    fill: none;
    width: 17px;
    height: 11px;
    stroke: #159800;
    transition: 0.4s ease;
}

.faq-item__head.active .faq-item__head-icon {
    transform: scale(-1);
}

.faq-item__body {
    padding: 10px 10px 0 10px;
    display: none;
}

.faq-item__body.show {
    display: block;
}

.faq-item__body p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #161a25;
    margin: 0 0 10px 0;
}

.faq-item__body p:last-child {
    margin: 0;
}
/*end faq*/

/*text-block*/
.text-block {
    margin: 0 0 80px 0;
}

.text-block h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 32px;
    margin: 0 0 40px 0;
    color: #101010;
}

@media (min-width: 1024px) {
    .text-block h3 {
        margin: 0 0 48px 0;
        font-size: 30px;
    }
}

.text-block p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    color: #161a25;
    margin: 0 0 50px 0;
}

.text-block p:last-child {
    margin: 0;
}

.text-block ul {
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

@media (min-width: 1024px) {
    .text-block ul {
        gap: 40px 0;
    }
}

.text-block ul:last-child {
    margin: 0;
}

.text-block ul li {
    list-style-type: none;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    color: #161a25;
    padding: 0 0 0 30px;
}

.text-block ul li strong {
    font-weight: 600;
}

.text-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #159800;
    border-radius: 100%;
}

.text-block ul li a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}
/*end text-block*/

/*props-cons*/
.props-cons {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .props-cons {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }
    .props-cons::before {
        content: "";
        display: block;
        position: absolute;
        top: 37px;
        width: 100%;
        height: 1px;
        background: #bdbdbd;
    }
}

.props-cons__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #101010;
    margin: 0 0 36px 0;
}

.props-cons__list {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

@media (min-width: 1024px) {
    .props-block,
    .cons-block {
        width: 100%;
        max-width: 430px;
    }
}

.props-cons__item {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #101010;
    position: relative;
    padding: 0 0 0 25px;
}

.props-cons__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

.props-block__list .props-cons__item::before {
    background-image: url("../images/props.svg");
}

.cons-block__list .props-cons__item::before {
    background-image: url("../images/cons.svg");
}
/*end props-cons*/

/*loans-block-article*/
.loans-block-article {
    margin: 0 0 80px 0;
}

.loans-block-article__list {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.loans-block-article__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 34px;
    color: #101010;
    margin: 0 0 49px 0;
}

@media (min-width: 1024px) {
    .loans-block-article__title {
        font-size: 40px;
        line-height: 1;
        margin: 0 0 40px 0;
    }
}

.loans-block-article__form {
    margin: 0 0 66px 0;
}

@media (min-width: 1024px) {
    .loans-block-article__form {
        margin: 0 0 43px 0;
    }
}

.loans-block-article__form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
}

.loans-block-article__form-item {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .loans-block-article__form-item {
        max-width: calc(100% / 3 - (12px * 3 / 2));
    }
}
/*end loans-block-article*/

/*presonal-loans-content*/
.presonal-loans-content {
    padding: 0 0 112px 0;
}

@media (min-width: 1024px) {
    .presonal-loans-content {
        padding: 0 0 99px 0;
    }
}

.how-to-compare {
    margin: 0 0 100px 0;
}

@media (min-width: 1024px) {
    .how-to-compare {
        margin: 0 0 80px 0;
    }
}

.how-to-compare h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 34px;
    color: #101010;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .how-to-compare h2 {
        font-size: 40px;
        line-height: 1;
        margin: 0 0 50px 0;
    }
}

.how-to-compare p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .how-to-compare p {
        font-size: 17px;
        line-height: 34px;
        margin: 0 0 60px 0;
    }
}

.how-to-compare a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.how-to-compare p:last-child {
    margin: 0;
}

.how-to-compare ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 50px 0;
}

@media (min-width: 1024px) {
    .how-to-compare ul {
        padding: 0 0 0 84px;
    }
}

.how-to-compare ul li {
    list-style-type: none;
    padding: 0 0 0 30px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    position: relative;
}

.how-to-compare ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    background: #159800;
}

@media (min-width: 1024px) {
    .how-we-choose {
        border-radius: 10px;
        overflow: hidden;
        padding: 42px 51px 74px 58px;
        border: 1px solid #e0e0e0;
    }
}

.how-we-choose h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 48px 0;
}

@media (min-width: 1024px) {
    .how-we-choose h3 {
        text-align: center;
        margin: 0 0 37px 0;
        font-size: 32px;
    }
}

.how-we-choose p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .how-we-choose p {
        font-size: 17px;
        line-height: 34px;
        margin: 0 0 55px 0;
    }
}

.how-we-choose p:last-child {
    margin: 0;
}

.how-we-choose a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.how-we-choose ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 50px 0;
}

@media (min-width: 1024px) {
    .how-we-choose ul {
        gap: 65px 0;
    }
}

.how-we-choose ul li {
    list-style-type: none;
    position: relative;
    padding: 0 0 0 32px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
}

@media (min-width: 1024px) {
    .how-we-choose ul li {
        font-size: 17px;
        line-height: 34px;
    }
}

.how-we-choose ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 19px;
    height: 17px;
    background-image: url("../images/props.svg");
}

.how-we-choose ul li span {
    display: block;
    margin: 0 0 19px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #101010;
}

@media (min-width: 1024px) {
    .how-we-choose ul li span {
        font-size: 18px;
        line-height: 1;
        margin: 0 0 24px 0;
    }
}

.loans-statistic {
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px 0;
    margin: 0 0 90px 0;
}

@media (min-width: 1024px) {
    .loans-statistic {
        padding: 45px 0 0 0;
        flex-direction: row;
        gap: 0 30px;
        margin: 0 0 80px 0;
    }
}

.loans-statistic__item {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background: #f7f7f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 20px 26px 22px;
    gap: 0 38px;
}

@media (min-width: 1024px) {
    .loans-statistic__item {
        padding: 45px 12px 37px 32px;
        gap: 0 28px;
    }
}

.loans-statistic__item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 1024px) {
    .loans-statistic__item-info {
        flex-direction: column;
        align-items: baseline;
        gap: 17px 0;
    }
}

.loans-statistic__item-number {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    color: #101010;
}

.loans-statistic__item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #161a25;
}

.what-about-personal {
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .what-about-personal {
        margin: 0 0 80px 0;
    }
}

.what-about-personal h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 46px 0;
}

@media (min-width: 1024px) {
    .what-about-personal h2 {
        margin: 0 0 51px 0;
        font-size: 40px;
    }
}

.what-about-personal h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #101010;
    margin: 0 0 26px 0;
}

.what-about-personal p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .what-about-personal p {
        font-size: 17px;
        line-height: 34px;
    }
}

.what-about-personal p:last-child {
    margin: 0;
}

.interet-rates {
    margin: 0 0 52px 0;
}

@media (min-width: 1024px) {
    .interet-rates {
        margin: 0 0 80px 0;
    }
}

.interet-rates h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 26px 0;
    color: #101010;
}

.interet-rates p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .interet-rates p {
        font-size: 17px;
        line-height: 34px;
        margin: 0 0 50px 0;
    }
}

.interet-rates p:last-child {
    margin: 0;
}

.c-tabs__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0 0 49px 0;
}

@media (min-width: 1024px) {
    .c-tabs__head {
        margin: 0 0 34px 0;
    }
}

.c-tabs__head-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #101010;
    background: #ecf0f1;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    height: 49px;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .c-tabs__head-item {
        width: calc(50% - 11px);
    }
}

.c-tabs__head-item.active {
    background: #161a25;
    color: var(--color);
}

.c-tabs__content-item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 45px 0;
}

@media (min-width: 1024px) {
    .c-tabs__content-item p {
    }
}

.c-tabs__content-item {
    display: none;
}

.c-tabs__content-item.active {
    display: block;
}

.c-tabs__content-item table {
    border-collapse: collapse;
    width: 100%;
}

.c-tabs__content-item table tr:first-child {
    border-bottom: 1px solid #159800;
}

.c-tabs__content-item table tr:first-child th {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 0 0 13px 0;
    text-align: center;
    vertical-align: top;
}

@media (min-width: 1024px) {
    .c-tabs__content-item table tr:first-child th {
        padding: 0 0 9px 0;
        font-size: 16px;
        text-align: left;
    }
}

.c-tabs__content-item table tr:first-child th:last-child {
    max-width: 139px;
}

@media (min-width: 1024px) {
    .c-tabs__content-item table tr:first-child th:last-child {
        text-align: right;
    }
}

.c-tabs__content-item table tr td {
    padding: 20px 0 0 0;
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .c-tabs__content-item table tr td {
        padding: 28px 0 0 0;
        font-size: 16px;
        text-align: left;
    }

    .c-tabs__content-item table tr td:last-child {
        text-align: right;
    }
}

.c-tabs__content-item-rates-desc {
    margin: 0 0 0 0;
}

.c-tabs__content-item-rates-desc p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #161a25;
    margin: 0;
}

.c-tabs__content-item-rates-row {
    display: flex;
    flex-direction: column;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .c-tabs__content-item-rates-row {
        flex-direction: row;
        gap: 0 70px;
        margin: 50px 0 0 0;
    }
}

.c-tabs__content-item-rates-grafic {
    height: 150px;
    width: 100%;
}

@media (min-width: 1024px) {
    .c-tabs__content-item-rates-grafic {
        max-width: calc(100% - 300px - 70px);
    }
}

.c-tabs__content-item-rates-text {
    width: 100%;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .c-tabs__content-item-rates-text {
        max-width: 300px;
        margin: 0;
    }
}

.c-tabs__content-item-rates-text-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 0 0 38px;
    margin: 29px 0 0 0;
}

.c-tabs__content-item-rates-text-data::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #4cd58c;
}

.c-tabs__content-item-rates-text-data span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #101010;
}

.c-tabs__content-item-rates-text-data strong {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: #101010;
}

.c-tabs__content-item-rates-text-title {
    position: relative;
    display: flex;
    gap: 0 11px;
}

.c-tabs__content-item-rates-text-title span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: #101010;
    width: 100%;
    max-width: 199px;
}

.c-tooltip {
}

.c-tooltip {
    padding: 0;
    margin: -5px 0 0 0;
    cursor: pointer;
    position: relative;
}

.c-tooltip svg {
    width: 12px;
    height: 12px;
    fill: #159800;
}

.c-tooltip::before {
    content: attr(tooltip-title);
    position: absolute;
    left: -100%;
    bottom: 120%; /* выше иконки */
    transform: translateX(-50%);
    padding: 17px 40px 16px 17px;
    background: var(--color);
    border-radius: 4px;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease;
    z-index: 10;
    white-space: normal;
    min-width: 285px;
    border-left: 4px solid #000;
}

.c-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(120% - 8px);
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease;
    z-index: 9;
}

.c-tooltip:hover::before,
.c-tooltip:hover::after,
.c-tooltip:focus::before,
.c-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

.loan-uses {
}

.loan-uses h3 {
    margin: 0 0 39px 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 32px;
    color: #101010;
}
.loan-uses p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 44px 0;
}

@media (min-width: 1024px) {
    .loan-uses p {
        margin: 0 0 50px 0;
        font-size: 17px;
        line-height: 34px;
    }
}

.loan-uses a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.loan-uses__spoiler-list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.loan-uses__spoiler-item-head {
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    gap: 0 23px;
    padding: 0 23px 0 15px;
    height: 78px;
    border-radius: 5px;
    background: #f7f7f9;
    cursor: pointer;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .loan-uses__spoiler-item-head {
        gap: 0 40px;
        padding: 0 85px 0 61px;
        height: 90px;
    }
}

.loan-uses__spoiler-item-head-icon {
    height: 40px;
    width: 100%;
    max-width: 40px;
}

@media (min-width: 1024px) {
    .loan-uses__spoiler-item-head-icon {
        max-width: 53px;
        height: 53px;
    }
}

.loan-uses__spoiler-item-head-icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.loan-uses__spoiler-item-head-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #101010;
}

.loan-uses__spoiler-item-head-svg {
    width: 17px;
    height: 11px;
    stroke: #159800;
    fill: none;
    margin: 0 0 0 auto;
    transition: 0.4s ease;
}

.loan-uses__spoiler-item-body {
    display: none;
    padding: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .loan-uses__spoiler-item-body {
        padding: 30px 0 30px 84px;
    }
}

.loan-uses__spoiler-item-body.show {
    display: block;
}

.loan-uses__spoiler-item-body ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 50px 0;
    flex-direction: column;
}

.loan-uses__spoiler-item-body ul li {
    list-style-type: none;
    position: relative;
    padding: 0 0 0 30px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
}

.loan-uses__spoiler-item-body ul li strong {
    font-weight: 500;
}

.loan-uses__spoiler-item-body ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    background: #159800;
}

.loan-uses__spoiler-item-head.active {
    border-color: #159800;
    background: #fff;
}

.loan-uses__spoiler-item-head.active .loan-uses__spoiler-item-head-text {
    color: #159800;
}

.loan-uses__spoiler-item-head.active .loan-uses__spoiler-item-head-svg {
    transform: scale(-1);
}

.loans-props-cons {
    margin: 0 0 100px 0;
}

@media (min-width: 1024px) {
    .loans-props-cons {
        margin: 0 0 80px 0;
    }
}

.loans-props-cons h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 48px 0;
}

@media (min-width: 1024px) {
    .loans-props-cons h3 {
        font-size: 30px;
    }
}

.loans-props-cons p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
}

.loans-props-cons a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.loans-props-cons__row {
    display: flex;
    flex-direction: column;
    gap: 51px 0;
}

@media (min-width: 1024px) {
    .loans-props-cons__row {
        flex-direction: row;
        gap: 0 200px;
    }
}

.loans-props-cons__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #101010;
    margin: 0 0 34px 0;
}

.loans-props-cons__list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px 0;
}

.loans-props-cons__list li {
    list-style-type: none;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #101010;
    padding: 0 0 0 25px;
}

.loans-props-cons__list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 19px;
    height: 17px;
}

.loans-props-cons__list-yes li::before {
    background-image: url("../images/props.svg");
}

.loans-props-cons__list-no li::before {
    background-image: url("../images/cons.svg");
}

.text-calculator-block h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 39px 0;
}

@media (min-width: 1024px) {
    .text-calculator-block h3 {
        font-size: 40px;
        margin: 0 0 51px 0;
    }
}

.text-calculator-block p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .text-calculator-block p {
        font-size: 17px;
        line-height: 34px;
    }
}

.loan-inner-calculator {
    background: #f7f7f9;
    border-radius: 5px;
    padding: 24px 15px 25px 15px;
}

@media (min-width: 1024px) {
    .loan-inner-calculator {
        padding: 48px 68px 54px 66px;
    }
}

.loan-inner-calculator__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    color: #101010;
    margin: 0 0 30px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__title {
        font-size: 30px;
        margin: 0 0 34px 0;
        text-align: left;
    }
}

.loan-inner-calculator__form {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__form {
        max-width: 314px;
        width: 100%;
        gap: 30px 0;
    }
}

.loan-inner-calculator__form-btn {
    height: 50px;
    max-width: 100%;
    width: 100%;
    background: #159800;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    border-color: #159800;
    margin: 10px 0 0 0;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__form-btn {
        max-width: 197px;
        margin: 16px auto 0 0;
    }
}

.loan-inner-calculator__form-btn:hover {
    color: #159800;
    background: #fff;
    border-color: #159800;
}

.loan-inner-calculator__total {
    border-radius: 10px;
    background: var(--color);
    padding: 17px 20px 30px 20px;
    margin: 32px 0 0 0;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__total {
        margin: 0;
        padding: 29px 64px 38px 64px;
    }
}

.loan-inner-calculator__total-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    margin: 0 0 16px 0;
    color: #101010;
    text-align: center;
}

.loan-inner-calculator__total-price {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    color: #101010;
    text-align: center;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__total-price {
        font-size: 16px;
    }
}

.loan-inner-calculator__total-list {
    margin: 27px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px 0;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__total-list {
        margin: 37px 0 0 0;
        gap: 23px 0;
    }
}

.loan-inner-calculator__total-item {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
}

.loan-inner-calculator__total-item span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #101010;
}

.loan-inner-calculator__total-item strong {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #101010;
}

@media (min-width: 1024px) {
    .loan-inner-calculator__row {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }
}

.loan-inner-calculator__form-checkbox-row {
    display: flex;
    gap: 0 45px;
    margin: 13px 0 0 0;
}

.loan-inner-calculator__form .c-form-control__input {
    border-color: #e0e0e0;
}

/*info-block*/
.info-block {
    padding: 80px 0 0 0;
    margin: 0 0 80px 0;
}

@media (min-width: 1024px) {
    .info-block {
        margin: 0 0 115px 0;
    }
}

.info-block h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 34px;
    color: #101010;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .info-block h2 {
        font-size: 40px;
        line-height: 1;
        margin: 0 0 50px 0;
    }
}

.info-block h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 29px;
    line-height: 1;
    color: #101010;
    margin: 0 0 57px 0;
}

@media (min-width: 1024px) {
    .info-block h3 {
        font-size: 30px;
        line-height: 1;
        margin: 0 0 48px 0;
    }
}

.info-block a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #159800;
}

.info-block__expert {
    border-radius: 10px;
    margin: 52px 0 0 0;
    border: 1px solid #159800;
    padding: 36px 27px 42px 22px;
}

@media (min-width: 1024px) {
    .info-block__expert {
        padding: 37px 59px 39px 60px;
        margin: 50px 0 0 0;
    }
}

.info-block__expert__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #159800;
    margin: 0 0 45px 0;
    text-align: center;
}

.info-block__expert-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #161a25;
}

@media (min-width: 1024px) {
    .info-block__expert-desc {
        font-size: 17px;
        line-height: 34px;
    }
}

.info-block__expert-author {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #161a25;
    margin: 50px 0 0 0;
    display: flex;
    gap: 0 12px;
}

@media (min-width: 1024px) {
    .info-block__expert-author {
        margin: 45px 0 0 0;
        gap: 0 7px;
        font-size: 17px;
    }
}

.info-block__expert-author span {
    color: #159800;
}

/*end presonal-loans-content*/

/*step-form*/
.step-form {
    padding: 75px 0 184px 0;
}

.step-item {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s ease;
}

.step-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-item__h2 {
    margin: 0 0 52px 0;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 36px;
    color: #101010;
}

.step-item__actions {
    display: flex;
    flex-direction: column;
    gap: 0 0;
    max-width: 399px;
    margin: 24px auto 0 auto;
}

.step-item__btn {
    width: 100%;
    max-width: 399px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #159800;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}
.step-item__next-bg {
    height: 55px;
    padding: 0;
    background: #159800;
    color: var(--color);
    border: 1px solid #159800;
    border-radius: 5px;
}

.step-item__succes {
    max-width: 360px;
    margin: 0 auto;
}

.step-item__succes h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    text-align: center;
    color: #101010;
    margin: 0 0 23px 0;
}

.step-item__succes p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    text-align: center;
    color: #101010;
}

.step-item__wrapper {
    width: 100%;
    max-width: 399px;
    margin: 0 auto;
    gap: 18px 0;
    display: flex;
    flex-direction: column;
}

.step-item__checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    max-width: 399px;
    margin: 0 auto;
}

.step-item__checkbox-control {
    border: 1px solid #8b8178;
    border-radius: 5px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #101010;
    padding: 0 26px 0 52px;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 50px;
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
}

.step-item__checkbox-control-score {
    height: 68px;
}

.step-item__checkbox-control i {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #161a25;
    font-style: normal;
    margin: 4px 0 0 0;
}

.step-item__checkbox-control::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 26px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    transition: 0.4 ease;
    border: 1px solid #000;
}

.step-item__checkbox-control::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 29px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #159800;
    opacity: 0;
    transition: 0.4s ease;
}

.step-item__checkbox-control-score::before {
    top: 17px;
    transform: none;
}

.step-item__checkbox-control-score::after {
    top: 20px;
    transform: none;
}

.step-item__checkbox-input:checked + .step-item__checkbox-control::before {
    border-color: #159800;
}

.step-item__checkbox-input:checked + .step-item__checkbox-control::after {
    opacity: 1;
}

.step-item__checkbox-input:checked + .step-item__checkbox-control {
    border-color: #159800;
    background: #f0f0f0;
}

.step-item__small-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #101010;
    margin: 32px auto 0 auto;
    max-width: 692px;
}

.step-item__paymeny-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #101010;
    margin: 16px auto 0 auto;
    max-width: 399px;
}

.step-item__range {
    margin: 15px auto 0 auto;
    max-width: 399px;
}

select.select-step-form {
    display: none;
}

.nice-select.select-step-form {
    background: #fff;
    border: 1px solid #8b8178;
}

/*end step-form*/

/*circle*/
.circle {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(#26a518 0deg, #d6d0d0 0deg);
    position: relative;
    margin: 0 auto 18px auto;
}

.circle__inner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.percent-text {
    font-size: 36px;
    font-weight: bold;
    color: #222;
}

.circle.is-animating {
    animation-name: fill-circle;
    animation-duration: 1.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
/*end circle*/
