.header {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    z-index: 999;
}

.header__wrap {
    z-index: 4;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 5px 9px #818c9908;
    border-radius: 0 0 32px 32px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 22px;
    gap: 22px;
    z-index: 4;
    min-height: 60px
}

.header__button {
    display: flex;
    position: relative;
    z-index: 3
}

.menu-open .header__button {
    display: none
}

.header__logo {
    margin-right: auto;
    position: relative;
    z-index: 3
}

.header__burger {
    position: relative;
    z-index: 3
}

.header__nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding-top: 60px;
    visibility: hidden;
    pointer-events: none
}

.menu-open .header__nav {
    visibility: visible;
    pointer-events: initial
}

.header__nav_wrapper {
    position: relative;
    height: 100%;
    display: flex;
    scroll-behavior: smooth;
    snap-type: y mandatory
}


@media screen and (min-width: 991px) {
    img.coins-img {
        display: block !important;
    }

    .header__inner {
        padding: 16px 0;
        margin: 0 auto;
        max-width: 1344px;
    }

    .header__logo {
        margin-right: auto
    }

    .header__nav {
        display: block;
        position: relative;
        padding: 0;
        top: auto;
        left: auto;
        width: auto;
        height: auto
    }
}

.nav {
    flex: 100%;
    display: flex;
    flex-direction: column;
}

.nav__inner {
    padding: 0 22px
}

.nav__list {
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    padding: 22px 0 14px
}

.nav__item {
    opacity: 0;
    transition: all .1s ease
}

.menu-open .nav__item {
    opacity: 1;
    transition-delay: .2s;
    transition-duration: .3s
}

.nav__item a {
    padding: 16px 36px;
    font-size: 16px;
    line-height: 16px;
    width: max-content;
    text-decoration: none;
    font-weight: 600;
    display: block
}

.nav__item a:hover {
    color: #038aee
}

.nav__item--expandable {
    position: relative;
    z-index: 100;
}

.nav__item-toggle {
    padding: 16px 36px;
    font-size: 16px;
    line-height: 16px;
    width: max-content;
    font-weight: 600;
    display: block;
    cursor: pointer;
    position: relative;
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    overflow: hidden;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999999;
    min-width: 200px;
}

.nav__submenu .nav__subitem a {
    width: 100%;
}

.nav__item--expandable.expanded .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__subitem {
}

.nav__subitem:last-child {
    border-bottom: none;
}

.nav__subitem a {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav__subitem a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav__subitem a:hover {
    color: #038aee;
    background-color: #e9ecef;
}

.nav__list,
.nav__top,
.nav__bottom {
    position: relative;
    z-index: 4
}

.nav__top,
.nav__bottom {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all .1s ease-in
}

.menu-open .nav__top {
    opacity: 1;
    transition-delay: .1s;
    transition-duration: .3s
}

.menu-open .nav__bottom {
    opacity: 1;
    transition-delay: .3s;
    transition-duration: .3s
}

.nav__top {
    padding: 22px 12px 0
}

.nav__top * {
    flex: 100%
}

.nav__bottom {
    border-top: 1px solid #D6E3ED;
    padding: 14px 0 34px;
    gap: 24px
}

.nav__contacts {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.nav__contacts_section {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.nav__contacts_section a {
    font-weight: 600;
    line-height: 24px;
    text-decoration: none
}

.nav__contacts_section span {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: #6f7985
}

@media screen and (min-width: 991px) {
    .nav__list {
        flex-direction: row;
        visibility: visible;
        pointer-events: initial;
        padding: 0
    }

    .calculator__field{
        width: 22vw !important;
        border-radius: 0 !important;
        max-width: 290px !important;
    }

    .calculator__form {
        display: flex;
        gap: 20px;
    }

    .nav__item {
        opacity: 1
    }

    .nav__item a {
        padding: 16px;
    }

    .nav__top,
    .nav__bottom {
        display: none
    }
}

.loginBtn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #E5E9ED;
    position: relative
}

.loginBtn__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center
}

.loginBtn path {
    transition: fill .3s ease
}

.loginBtn:hover path {
    fill: #038aee
}

.loginBtn__text {
    transition: color .3s ease;
    display: none
}

@media screen and (min-width: 991px) {
    .loginBtn {
        border-radius: 0;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #038aee;
        border-radius: 50px;
        background: #F0F8FF;
        font-weight: 700;
        font-size: 16px;
        width: 48px;
        height: 48px;
    }

    .loginBtn path {
        fill: #038aee
    }

    .loginBtn__icon {
        position: initial;
        transform: none;
        top: auto;
        left: auto
    }

    .loginBtn__text {
        display: block
    }

    .loginBtn:hover {
        color: #1f262e
    }

    .loginBtn:hover path {
        fill: #1f262e
    }
}

.header-nav-overlay {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #038aee33;
    visibility: hidden;
    opacity: 0;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    transition: all .3s ease
}

@media screen and (min-width: 991px) {
    .header-nav-overlay {
        display: none;
    }
}

.header-nav-backpanel {
    background-color: #fff;
    border-radius: 0 0 32px 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130%;
    transform: translateY(-100%);
    transition: all .3s ease
}

@media screen and (min-width: 991px) {
    .header-nav-backpanel {
        display: none
    }
}

.menu-open .header-nav-backpanel {
    transform: translateY(0)
}

body.lock {
    overflow: hidden
}

body.lock .header-nav-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: initial
}

.hero__inner {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    padding: 35px 17px 0px;
    max-width: 1344px;
    align-items: flex-start;
}

.hero__content {
    margin-top: 55px;
    /* display: none; */
}

@media screen and (min-width: 991px) {
    .hero__content {
        display: unset;
    }
}

.hero__calculator {
    align-self: stretch;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero__calculator__slides {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}


.hero__calculator__slide {
    background-color: #EDEDED;
    box-shadow: 0 4px 20px 0 #00000040;
    border-radius: 11px 11px 0 0;

    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    color: #000000;

    padding: 2px 8px 2px 8px;

    cursor: pointer;
}


@media screen and (min-width: 991px) {
    .hero__calculator__slides {
        gap: 56px;
    }

    .hero__calculator__slide {
        font-size: 14px;
        padding: 5px 11px 5px 11px;
        height: 56px;
    }
}

.hero__calculator__slide.active {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px 0 #00000040;
}

.hero__tags {
    margin-bottom: 12px
}

.hero__title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin: 0 0 20px;
    text-wrap: balance
}

.hero__text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
    font-weight: 500;
    color: #6f7985
}

@media screen and (min-width: 991px) {
    .hero {
        margin-bottom: 0;
        border-radius: 0 0 80px 80px !important;
    }

    .hero__inner {
        flex-direction: column;
        padding: 110px 17px 32px;
    }

    .hero__content {
        padding-right: 60px;
        position: relative;
        max-width: 810px;
        margin: 0;
        z-index: 20;
    }

    .hero__calculator {
        width: 45%;
        flex: 1 0 45%;
        align-self: stretch
    }

    .hero__tags {
        margin-bottom: 24px
    }

    .hero__title {
        font-size: 42px;
        line-height: 74px;
        margin-bottom: 13px;
    }

    .hero__text {
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 73px;
    }
}

.calculator {
    width: 100%;
    background-color: #fff;
    padding: 28px 22px;
    border-radius: 32px;
    box-shadow: 0 4px 20px #02113b1a
}

.calculator__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
    margin: 0 0 8px;
}

.calculator__title b {
    color: #038aee
}

.calculator__text {
    margin: 0 0 35px;
    color: #6f7985
}

.calculator__text__info {
    color: #FF2C30;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
}

.calculator__slider {
    /* margin-bottom: 27px; */
    display: flex;
    flex-direction: column;
    gap: 12px
}

.calculator__slider-top,
.calculator__slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.calculator__slider-top {
    line-height: 16px
}

.calculator__slider-top b {
    font-weight: 800;
    font-size: 24px
}

.calculator__slider-bottom {
    color: #6f7985;
    font-size: 12px
}

.calculator__stat {
    margin-bottom: 39px;
    display: flex;
    gap: 68px
}

.calculator__stat-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 16px
}

.calculator__stat-section span {
    color: #6f7985
}

.calculator__stat-section b {
    font-size: 16px
}

.calculator__footer .button {
    width: 100%
}

@media screen and (min-width: 991px) {
    .calculator {
        padding: 40px 50px;
        border-radius: 48px;
        box-shadow: 0 4px 20px #02113b0d, 0 100px 180px #038aee1a
    }

    .calculator__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 14px
    }

    .calculator__text {
        margin-bottom: 32px;
        line-height: 24px
    }

    .calculator__slider {
        /* margin-bottom: 36px; */
    }

    .calculator__slider-top b {
        font-size: 28px
    }

    .calculator__stat {
        margin-bottom: 42px
    }

    .calculator__stat-section b {
        font-size: 18px
    }
}

.steps {
    display: flex;
    gap: 12px
}

@media screen and (min-width: 991px) {
    .steps {
        gap: 24px
    }
}

.step-card {
    padding: 16px 27px;
    border-radius: 32px;
    width: 235px;
    height: 237px;
    position: relative
}

.step-card__tags {
    margin-bottom: 12px
}

.step-card__title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-wrap: balance
}

.step-card__text {
    font-size: 12px;
    line-height: 18px;
    color: #6f7985;
    text-wrap: balance
}

.step-card__pic {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-45%);
    max-width: 150px;
    max-height: 80px
}

.step-card:nth-child(1) {
    background-image: linear-gradient(180deg, #f0f8ff, #c4e4ff)
}

.step-card:nth-child(3) {
    background-image: linear-gradient(90deg, #f0f8ff, #c4e4ff)
}

.step-card:nth-child(2n) {
    background-color: #fafafa
}

@media screen and (min-width: 991px) {
    .step-card {
        padding: 33px 33px 140px;
        border-radius: 32px;
        width: auto;
        height: auto;
        flex: 1 1 25%
    }

    .step-card__tags {
        margin-bottom: 16px
    }

    .step-card__pic {
        max-width: 190px;
        max-height: 106px
    }

    .step-card__title {
        font-size: 20px;
        line-height: 18px
    }

    .step-card__text {
        font-size: 16px;
        line-height: 22px
    }
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media screen and (min-width: 991px) {
    .advantages {
        gap: 24px;
        flex-direction: row;
        flex-wrap: wrap
    }
}

.advantages-card {
    border-radius: 32px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px #02113b0d;
    position: relative;
    min-height: 120px
}

.advantages-card__title {
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 18px;
    font-weight: 700;
    padding-left: 90px
}

.advantages-card__text {
    color: #6f7985;
    line-height: 18px;
    margin: 0;
    padding-left: 90px;
    text-wrap: balance
}

.advantages-card__icon {
    position: absolute;
    width: 72px;
    bottom: 24px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.advantages-card:nth-child(odd) .advantages-card__icon {
    left: auto;
    right: 20px
}

.advantages-card:nth-child(odd) .advantages-card__text {
    padding-right: 90px;
    padding-left: 0
}

.advantages-card:nth-child(odd) .advantages-card__title {
    padding: 0
}

@media screen and (min-width: 991px) {
    .advantages-card {
        padding: 32px 44px;
        border-radius: 32px;
        width: auto;
        height: auto;
        flex: 0 0 calc(50% - 12px);
        min-height: 169px
    }

    .advantages-card__tags {
        margin-bottom: 16px
    }

    .advantages-card__title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 14px;
        padding-left: 180px
    }

    .advantages-card__text {
        font-size: 16px;
        line-height: 22px;
        padding-left: 180px
    }

    .advantages-card__icon {
        width: 115px;
        height: 115px;
        bottom: 32px;
        left: 45px
    }

    .advantages-card:nth-child(odd) .advantages-card__icon {
        left: auto;
        right: 45px
    }

    .advantages-card:nth-child(odd) .advantages-card__text {
        padding-right: 180px;
        padding-left: 0
    }

    .advantages-card:nth-child(odd) .advantages-card__title {
        padding: 0
    }
}

.offer {
    border-radius: 32px;
    background: #F0F8FF;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.offer__tag {
    margin-bottom: 16px
}

.offer__title {
    margin: 16px 0 11px;
    font-size: 28px;
    line-height: 29px;
    font-weight: 700;
    text-wrap: balance
}

.offer__text {
    margin: 0 0 32px;
    font-size: 12px;
    line-height: 18px;
    color: #6f7985
}

.offer__pic {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 140px
}

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

    .offer__tag {
        /* margin-bottom: 32px; */
    }

    .offer__title {
        margin-bottom: 40px;
        font-size: 50px;
        line-height: 1
    }

    .offer__text {
        font-size: 16px
    }

    .offer__pic {
        max-width: 40%
    }
}

.requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.requirements-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 18px;
    border-radius: 32px;
    flex: 1 0 calc(50% - 10px)
}

.requirements-card__icon {
    max-width: 74px;
    max-height: 74px;
    margin-bottom: 17px
}

.requirements-card__icon img {
    max-height: 100%
}

.requirements-card__title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin: 0
}

.requirements-card:nth-child(1),
.requirements-card:nth-child(4) {
    background-color: #fafafa
}

.requirements-card:nth-child(2),
.requirements-card:nth-child(3) {
    background-image: linear-gradient(180deg, #f0f8ff, #c4e4ff)
}

@media screen and (min-width: 991px) {
    .requirements {
        flex-wrap: nowrap;
        gap: 24px;
        flex-direction: row
    }

    .requirements-card {
        padding: 30px 45px;
        flex: 1 0 calc(25% - 24px)
    }

    .requirements-card__icon {
        margin-bottom: 20px;
        max-width: 148px;
        max-height: 134px
    }

    .requirements-card__title {
        font-size: 20px;
        line-height: 24px
    }

    .requirements-card:nth-child(odd) {
        background-color: #fafafa;
        background-image: none
    }

    .requirements-card:nth-child(2) {
        background-color: #fff;
        background-image: linear-gradient(180deg, #f0f8ff, #c4e4ff)
    }

    .requirements-card:nth-child(4) {
        background-color: #fff;
        background-image: linear-gradient(90deg, #f0f8ff, #c4e4ff)
    }
}

@media screen and (min-width: 991px) {
    .feedbacks.splide__list {
        max-width: 1344px;
        margin: 0 auto !important
    }
}

.feedback-card {
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    border-radius: 32px;
    box-shadow: 0 4px 20px #02113b0d
}

.feedback-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.feedback-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background-color: #f0f0f0
}

.feedback-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.feedback-card__user {
    display: flex;
    align-items: center
}

.feedback-card__userInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 16px
}

.feedback-card__name {
    font-size: 14px;
    font-weight: 700;
    margin: 0
}

.feedback-card__city {
    font-size: 12px;
    margin: 0
}

.feedback-card__title {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 6px;
    font-weight: 700
}

.feedback-card__text {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 18px;
    color: #1e262e
}

.feedback-card__date {
    font-size: 12px;
    line-height: 16px;
    color: #6f7985;
    margin: 0
}

@media screen and (min-width: 991px) {
    .feedback-card {
        padding: 32px
    }

    .feedback-card__header {
        gap: 16px;
        flex-direction: row;
        margin-bottom: 16px;
        justify-content: space-between;
        align-items: center
    }

    .feedback-card__avatar {
        width: 72px;
        height: 72px;
        margin-right: 16px
    }

    .feedback-card__userInfo {
        gap: 16px;
        line-height: 16px
    }

    .feedback-card__name {
        font-size: 18px
    }

    .feedback-card__city {
        font-size: 14px;
        color: #6f7985
    }

    .feedback-card__title {
        font-size: 24px;
        line-height: 32px;
        margin: 0 0 12px
    }

    .feedback-card__text {
        margin: 0 0 24px;
        font-size: 14px;
        line-height: 24px
    }
}

.rules {
    background-color: #f0f8ff;
    border-radius: 32px;
    padding: 25px 16px;
    font-size: 12px;
    line-height: 18px;
    color: #6f7985
}

.rules b {
    color: #1e262e
}

.rules__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s linear
}

.rules__content.expanded {
    max-height: 500px
}

.rules__btn {
    margin-top: 16px
}

@media screen and (min-width: 991px) {
    .rules {
        padding: 42px 32px;
        font-size: 14px;
        line-height: 22px
    }

    .rules__btn {
        margin-top: 32px
    }
}

.faq-card {
    cursor: pointer;
    padding: 21px;
    box-shadow: 0 0 20px #02113b1c;
    position: relative
}

.faq-card:hover {
    background-color: #e3f2ff;
    transition: all .3s ease
}

.faq-card:not(:last-child) {
    margin-bottom: 8px
}

.faq-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600
}

.faq-card__text {
    color: #6f7985;
    font-size: 12px;
    margin: 0;
    line-height: 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s linear
}

.opened .faq-card__text {
    max-height: 500px;
    margin-top: 15px;
}

.faq-card__btn {
    position: absolute;
    right: 20px;
    top: 12px;
    width: 40px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

.faq-card__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #038aee;
    border-right: 2px solid #038aee;
    transform: translate(-50%, -50%) rotate(135deg);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.opened .faq-card__btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 991px) {
    .faq-card {
        padding: 25px;
    }

    .faq-card__title {
        font-size: 24px;
        line-height: 30px
    }

    .faq-card__text {
        font-size: 14px
    }

    .faq-card__text a {
        color: #ffa600;
        text-decoration: none;
    }

    .faq-card__btn {
        top: 20px;
        right: 22px;
    }

    .faq-card__btn:before {
        height: 20px
    }

    .faq-card__btn:after {
        width: 12px;
    }
}

.apps {
    border-radius: 32px;
    padding: 37px 22px 230px;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(90deg, #f0f8ff 31%, #c4e4ff)
}

.apps__title {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 12px;
    font-weight: 800
}

.apps__text {
    font-size: 14px;
    line-height: 22px;
    color: #6f7985;
    margin: 0 0 35px;
    text-wrap: balance
}

.apps__list {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.apps__pic {
    position: absolute;
    right: -10px;
    bottom: 0;
    max-width: 360px
}

@media screen and (min-width: 480px) {
    .apps__list {
        justify-content: flex-start;
        gap: 20px
    }
}

@media screen and (min-width: 991px) {
    .apps {
        padding: 39px 45% 39px 74px
    }

    .apps__title {
        font-size: 44px;
        line-height: 54px;
        margin-bottom: 8px
    }

    .apps__text {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 48px
    }

    .apps__pic {
        max-width: 30%;
        right: 85px
    }
}

.apps-list__item {
    background-color: #1e262e;
    border-radius: 12px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-size: 10px;
    line-height: 24px;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none
}

.apps-list__item:hover {
    background-color: #038aee;
    color: #fff
}

.apps-list__pic {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px
}

.apps-list__pic img {
    max-height: 100%
}

@media screen and (min-width: 991px) {
    .apps-list__item {
        width: 82px;
        height: 82px
    }
}

.footer {
    background: #fff;
    padding: 0 0 40px
}

.footer__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px
}

.footer__menu {
    padding-bottom: 16px;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 32px
}

.footer__menu ul {
    display: flex;
    font-size: 16px;
    line-height: 20px;
    flex-wrap: wrap
}

.footer__menu li {
    margin-right: 37px;
    margin-bottom: 16px
}

.footer__menu a {
    text-decoration: none;
    font-weight: 500
}

.footer__menu a:hover {
    color: #038aee;
    transition: all .3s ease
}

.footer__contacts {
    display: flex;
    margin-bottom: 54px;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap
}

.footer__contacts-section {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto
}

.footer__contacts-section a {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    text-decoration: none
}

.footer__contacts-section span {
    font-size: 14px;
    line-height: 24px;
    color: #6f7985;
    display: inline-block;
    margin-bottom: 8px
}

.footer__disclaimers {
    font-size: 10px;
    line-height: 18px;
    color: #6f7985
}

.footer__logo {
    margin-bottom: 40px
}

@media screen and (min-width: 991px) {
    .footer {
        padding: 0 0 80px
    }

    .footer .logo {
        max-width: 190px
    }

    .footer__top {
        margin-bottom: 84px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }

    .footer__logo {
        margin-bottom: 0
    }

    .footer__menu ul {
        display: flex
    }

    .footer__contacts {
        gap: 74px;
        justify-content: flex-start
    }

    .footer__contacts-section {
        flex: 0 0 auto
    }
}

/* New Footer Styles */
.new-footer {
    background-color: #f0f8ff;
    padding: 40px 0 20px;
    border-radius: 32px 32px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 32px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50px;
    background-color: #fff;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #038aee;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}

.footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #038aee;
}

.footer-contact {
    display: flex;
    gap: 60px;
    margin-bottom: 54px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

.contact-link {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #038aee;
}

.footer-legal {
    margin-bottom: 54px;
}

.footer-legal p {
    font-size: 12px;
    line-height: 18px;
    color: #6c757d;
    margin: 0;
    text-align: justify;
}

.footer-bottom {
    display: flex;
    align-items: center;
    padding: 0 0 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 14px;
    color: #6c757d;
}

.privacy-link {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #038aee;
}

@media screen and (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .footer-nav {
        gap: 20px;
        margin-bottom: 0;
        padding: 0;
    }
    
    .footer-nav a {
        font-size: 16px;
        padding: 5px 3px;
    }
    
    .footer-contact {
        gap: 20px;
        margin-bottom: 24px;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #1f262e;
    overflow-x: hidden;
}

@media screen and (min-width: 991px) {
    body {
        font-size: 16px;
        line-height: 20px
    }
}

*,
*:before,
*:after {
    box-sizing: border-box
}

.root {
    position: relative;
    overflow-x: hidden;
    opacity: .99;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.logo {
    max-width: 96px
}

@media screen and (min-width: 991px) {
    .logo {
        max-width: 135px
    }
}

.tail {
    flex: 1 0 auto;
    position: relative;
    padding: 80px 17px 0;
    background-color: #fff;
    padding: 44px 21px 0;
}

@media screen and (min-width: 991px) {
    .tail {
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.logo {
    display: flex
}

img {
    max-width: 100%
}

.container {
    max-width: none;
    margin: 0 auto;
}

@media screen and (min-width: 991px) {
    .container {}
}

a {
    color: inherit;
    transition: color .3s ease
}

a:hover {
    color: #038aee
}

.tags {
    display: flex;
    gap: 11px;
    flex-wrap: wrap
}

@media screen and (min-width: 991px) {
    .tags {
        gap: 12px
    }
}

.tag {
    font-weight: 700;
    font-size: 10px;
    /* line-height: 16px; */
    padding: 4px 12px;
    border-radius: 24px
}

.tag--primary {
    background-color: #038aee;
    color: #fff
}

.tag--secondary {
    background-color: #e3f2ff !important;
    color: #038aee;
    padding: 8px 20px !important;
}

.tag--ghost {
    background-color: #fff;
    color: #038aee
}

@media screen and (min-width: 991px) {
    .tag {
        padding: 8px 24px;
        border-radius: 24px;
        font-size: 14px;
        line-height: 16px;
    }

    .tag--small {
        font-size: 12px;
        line-height: 16px;
        padding: 4px 12px
    }
}

.payment-methods {
    display: flex;
    gap: 37px;
    align-items: center
}

.button {
    font-family: inherit;
    line-height: 1;
    background-color: #f5f7fa00;
    border: 2px solid #0c8cee;
    display: flex;
    gap: 11px;
    color: #0c8cee;
    font-weight: 700;
    border-radius: 100px;
    font-size: 14px;
    padding: 13px 33px;
    transition: all .3s ease;
    align-items: center;
}

.button:hover {
    background-color: #038aee;
    color: #fff;
}

.button--big {
    font-size: 18px;
    padding: 28px 35px
}

.button--small {
    font-size: 10px;
    line-height: 16px;
    padding: 4px 12px
}

.button--light {
    background-color: #e3f2ff;
    color: #038aee
}

.button--secondary {
    background-color: #fafafa;
    color: #1f262e
}

@media screen and (min-width: 991px) {
    .button {
        font-size: 16px;
        padding: 17px 34px;
    }

    .button--big {
        font-size: 22px;
        padding: 34px 45px
    }

    .button--small {
        font-size: 14px;
        line-height: 16px;
        padding: 12px 35px
    }
}

.range {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    height: 7px;
    align-items: center;
    justify-content: center
}

.range input[type=range] {
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
    margin: 0;
    background-color: #DFEFFF;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    /* border-radius: 15px; */
}

.range input[type=range]::-webkit-slider-runnable-track {
    height: 7px;
    border-radius: 15px
}

.range input[type=range]::-webkit-slider-container {
    height: 7px;
    border-radius: 15px
}

.range input[type=range]::-moz-range-track {
    height: 7px;
    border-radius: 15px
}

.range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: -15px;
    background-color: #ffffff;
    border: 6px solid #038aee;
    box-shadow: 0 0 16px #00000029;
    border-radius: 50%;
    width: 36px;
    height: 36px
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: flex
}

.splide--mobile-overflowed.is-initialized.is-active .splide__track {
    margin: 0 -10px
}

@media screen and (min-width: 991px) {
    .splide--mobile-overflowed.is-initialized.is-active .splide__track {
        margin: 0
    }
}

.splide.is-initialized.is-active .splide__track {
    padding-top: 30px;
    margin-top: -30px;
    padding-bottom: 30px
}

.splide__pagination {
    position: relative;
    bottom: auto;
    left: auto
}

.splide__pagination__page {
    border-radius: 8px;
    opacity: 1;
    transition: width .3s ease
}

.splide__pagination__page:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    background-color: #038aee;
    border-radius: 8px;
    animation-play-state: paused;
    animation-duration: var(--duration, 5s);
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

.splide__pagination__page,
.splide__pagination__page.is-active {
    background-color: #ededed
}

.splide__pagination__page.is-active {
    transform: scale(1);
    width: 30px
}

.splide__pagination__page.is-active:after {
    display: block;
    animation-name: widthSlider;
    animation-play-state: running
}

@keyframes widthSlider {
    0% {
        width: 0%
    }

    to {
        width: 100%
    }
}

.section {
    margin-bottom: 50px
}

.section__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 30px
}

@media screen and (min-width: 991px) {
    .section {
        margin-bottom: 75px;
    }

    .section__title {
        font-size: 34px;
        line-height: 74px;
        margin-bottom: 46px
    }
}

.socials {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.socials a {
    height: 53px;
    width: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fafafa
}

.socials a:hover {
    background-color: #e3f2ff;
    transition: all .3s ease
}

.socials--smaller {
    gap: 0
}

.socials--smaller a {
    height: 48px;
    width: 48px
}

.socials:not(.socials--colorful) a {
    filter: hue-rotate(0deg)
}

.socials--colorful a {
    background-color: #e3f2ff
}

@media screen and (min-width: 991px) {
    .socials {
        justify-content: flex-end
    }

    .socials a {
        height: 56px;
        width: 56px
    }
}

.text-success {
    color: #2cb82c
}

.stars {
    display: flex;
    gap: 2px
}

.stars img {
    width: 20px;
    height: 20px;
    opacity: .3
}

.stars[data-stars="1"] img:nth-child(1) {
    opacity: 1
}

.stars[data-stars="2"] img:nth-child(1),
.stars[data-stars="2"] img:nth-child(2) {
    opacity: 1
}

.stars[data-stars="3"] img:nth-child(1),
.stars[data-stars="3"] img:nth-child(2),
.stars[data-stars="3"] img:nth-child(3) {
    opacity: 1
}

.stars[data-stars="4"] img:nth-child(1),
.stars[data-stars="4"] img:nth-child(2),
.stars[data-stars="4"] img:nth-child(3),
.stars[data-stars="4"] img:nth-child(4) {
    opacity: 1
}

.stars[data-stars="5"] img {
    opacity: 1
}

.burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px
}

.burger__icon_close {
    display: none
}

@media screen and (min-width: 991px) {
    .burger {
        display: none
    }
}

.burger.opened .burger__icon_open {
    display: none
}

.burger.opened .burger__icon_close {
    display: block
}

.partners {
    display: grid;
    /* ÃƒÂÃ¢â‚¬ËœÃƒâ€˜Ã†â€™ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â·ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ 3 ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ */
    grid-template-columns: auto;
    grid-gap: 26px;
}

@media screen and (min-width: 991px) {
    .partners {
        /* ÃƒÂÃ¢â‚¬ËœÃƒâ€˜Ã†â€™ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â·ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ 3 ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ */
        grid-template-columns: auto auto auto;
        /* ÃƒÂÃ¢â‚¬ËœÃƒâ€˜Ã†â€™ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â·ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ 3 Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â´ÃƒÂÃ‚Â° */
        grid-template-rows: auto auto auto;
    }
}

.partners .partner-item {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 20px 0px #EDEFF3;
    width: 306px;
    height: 430px;
    padding: 24px 32px 24px 32px;
    border-radius: 32px;
    margin: auto;
}

.partner-item .item-header {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.item-header .item-header__image {
    width: 78px;
}

.item-header .item-header__name {
    color: #02113B;
    display: flex;
    flex-direction: column;
}

.item-header__name b {
    font-size: 20px;
    line-height: 18px;
}

.item-header__name span {
    margin-top: 6px;
    font-size: 12px;
    color: #818C99;
    line-height: 18px;
}

.item-header .item-header__about {
    padding: 26px 0 26px 0;
}

.item-body {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

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

.item-body .content .ireccommend {
    background-color: #F0F8FF;
    color: #0A91ED;
    border-radius: 120px;
    padding-top: 8px;
    padding-right: 24px;
    padding-bottom: 8px;
    padding-left: 24px;
}

.item-body .content .docs {
    background-color: #F0F8FF;
    color: #0A91ED;
    border-radius: 120px;
    padding-top: 6px;
    padding-right: 22px;
    padding-bottom: 6px;
    padding-left: 22px;
}

.item-body .content .docs-link {
    text-decoration: none;
}

.item-body .content .partner-rating {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.item-body .content .group {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 6px;
}

.item-body .content .group span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #818C99;
}

.item-body .content .group b {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #02113B;
}

.item-body .content .group b.green {
    color: #2CB82C; /* #BEC62D */
}

.item-body .content .group b.yellow {
    color: #BEC62D;
}

.item-body .content .group b.red {
    color: #DD2124;
}

.item-bottom {
    width: 100%;
    text-decoration: none;
}

.item-bottom .submit-offer {
    width: 100%;
    margin-top: 24px;
    background-color: #0A91ED;
    border-radius: 232px;
    padding-top: 14px;
    padding-right: 48px;
    padding-bottom: 14px;
    padding-left: 48px;
    text-align: center;
    color: #F5F7FA;
    cursor: pointer;
}

/*ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Âº Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° ÃƒÂÃ‚Â³ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹*/

.article-wrapper {
    display: grid;
    grid-template: 1fr / repeat(1, 1fr);
    gap: 15px;
    justify-items: center;
}

@media screen and (min-width: 991px) {
    .article-wrapper {
        grid-template: 1fr / repeat(3, 1fr);
    }
}

.article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-flow: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-card .content {
    padding: 15px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    flex: 1;
}

.article-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.article-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.article-btn {
    display: flex;
    justify-content: space-between;
}

.article-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.article-card a:hover {
    background-color: #0056b3;
}

.article-card .likes {
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.article-card .likes svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: #007bff;
    /* ÃƒÂÃ‚Â¦ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ */
}

#page_urls {
    width: 50%;
}

#page_urls li {
    float: left;
    margin: 0 20px 15px 0;
}

#page_urls li a {
    text-decoration: none;
}

#footer-copyright {
    text-align: right;
    width: 50%;
}

#footer-copyright p {
    margin-top: 0;
}

#footer-urls-container {
    display: flex;
}

/**** ÃƒÂÃ…Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â² ****/
.auth__buttons {
    display: flex;
    gap: 10px;
    flex-flow: column;
}

.auth__buttons a {
    text-decoration: none;
    display: flex;
    width: 100%;
    height: 68px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    position: relative;
    border-radius: 23423px;
    font-weight: bold;
}

.auth__buttons a.tid_button {
    background-color: #ffdd2d;
}

.auth__buttons a.tid_button:hover {
    color: grey;
}

.auth__buttons a.esia_button {
    background-color: #ecf6ff;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ccc;
}

.divider span {
    padding: 0 10px;
}

/* Calculator Styles */
.calculator--modern {
    margin-top: 20px;
    position: relative;
    z-index: 20;
}

.calculator__form {
    display: flex;
    gap: 20px;
}

.calculator__field {
    padding-top: 13px;
    display: flex;
    max-width: none;
    width: 100%;
    border-radius: 33px 33px 0 0;
    background: #fff;
    flex-direction: column;
}

.calculator__label {
    font-weight: 600;
    font-size: 14px;
    padding: 0 23px;
    color: #818C99;
    margin-bottom: 4px;
}

.calculator__input-wrapper {
    position: relative;
    height: 100%;
}

.calculator__input {
    width: 100%;
    padding: 0 23px;
    padding-bottom: 15px;
    min-height: 35px;
    border: 0;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #1E262E;
    transition: all 0.3s ease;
}

.calculator__input:focus {
    outline: none;
}

.calculator__input--phone {
    background: #FFFFFF;
}

.calculator__slider {
    height: 7px;
    background: #E5E7EB;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.calculator__slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #0A91ED;
    transition: width 0.3s ease;
}

.calculator__slider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border: 7px solid #0A91ED;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.calculator__slider:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calculator__submit {
    background: #0A91ED;
    color: white;
    border: none;
    height: 72px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.calculator__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.calculator__submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator--modern {
        margin-top: 16px;
    }

    .calculator__form {
        gap: 24px;
        flex-direction: column;
    }

    .calculator__input {
        /* padding: 10px 14px; */
        font-size: 18px;
    }

    .calculator__submit {
        padding: 14px 28px;
        font-size: 14px;
    }
}

.calculator__field.frist {
    border-top-left-radius: 33px !important;
}

.calculator__field.last {
    border-top-right-radius: 33px !important;
}

p.last-p {
    font-size: 11px;
    color: #818C99;
    padding: 26px 0 0;
}

h4.calc-head {
    margin-bottom: 36px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 20;
}

img.coins-img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
}

.tail-inner {
    margin: 0 auto;
    max-width: 1344px;
}

.tag {
    background: #F0F8FF;
    padding: 20px 20px;
    font-weight: 500;
    width: fit-content;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}

.loan-cards-grid  {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    margin-bottom: 52px;
}

.loan-card {
    background: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.loan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.loan-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.loan-card__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 60px;
    position: relative;
    height: 60px;
    background: #99CC33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
}

.logo-circle::after {
    content: '';
    position:absolute;
    right: -5px;
    bottom: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    border: 7px solid #fff;
    background: #2CB82C;
}

.logo-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.logo-info p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #6b7280;
}

.info-icon {
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
}

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

.rec-badge {
    background: #F0F8FF;
    color: #0A91ED;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.rating {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.loan-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-row.values {
    margin-bottom: 16px;
}

.label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.value.free {
    color: #000;
}

.value.high {
    color: #2CB82C;
}

.get-money-btn {
    width: 100%;
    background: #0A91ED;
    color: white;
    border: none;
    padding: 16px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-money-btn:hover {
    transform: translateY(-1px);
    background: #187dc1;
}

.show-all-offers {
    text-align: center;
}

.show-all-btn {
    background: transparent;
    border: 2px solid #DFEFFF;
    width: 100%;
    padding: 14px;
    font-size: 14px;
    color: #818C99;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-all-btn:hover {
    background: #3b82f6;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .loan-cards-grid  {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .loan-cards-grid  {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .loan-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .loan-cards-grid  {
        grid-template-columns: 1fr;
    }
}

.raiting {
    display: flex;
    gap: 8px;
    align-items: center;
}

section.sort {
    margin-bottom: 65px;
}

span.star {
    color: #FFB82E;
}

.collect-last {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 28px;
    justify-content: flex-end;
}

.location {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    gap: 8px;
    align-items: center;
}

button.sort-btn {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
}

button.sort-btn p {
    font-weight: 600;
}
/* Range slider styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 7px;
    /* border-radius: 3px; */
    background: linear-gradient(to right, #038aee 0%, #038aee 50%, #DFEFFF 50%, #DFEFFF 100%);
    background-size: 50% 100%;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #038aee;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #038aee;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
}

/* Modern Card Styles */
.section__content .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    margin: 0 auto;
}

.section__content .card {
    background: #ffffff;
    border-radius: 32px;
    position: relative;
    padding: 24px;
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.section__content .card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.section__content .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 16px;
    z-index: 0;
}

.section__content .title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.section__content .subtitle {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.section__content .logo {
    position: relative;
    width: 45px;
    height: 45px;
    background: #9acd36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.section__content .badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__content .badge::after {
    content: 'âœ“';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.section__content .separator {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 16px 0;
}

.section__content .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section__content .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section__content .info-item.right {
    text-align: right;
}

.section__content .amount {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.section__content .info-item span:not(.amount):not(.label) {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.section__content .label {
    font-size: 12px;
    color: #666666;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .section__content .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .section__content .container {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* Compare Table Styles */
.section__content .compare-table {
    background: #fff;
    border-radius: 20px;
    padding: 9px 29px;
    border: 1px solid #E6EEF8;
}
.section__content .compare-table__header,
.section__content .compare-table__row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 0.8fr;
    align-items: center;
    padding: 19px 20px;
    column-gap: 16px;
}
.section__content .compare-table__header {
    color: #6f7985;
    font-size: 14px;
    font-weight: 600;
}
.section__content .compare-table__row {
    border-top: 1px solid #E8F0F9;
}
.section__content .compare-table__row:hover {
    background: #F7FBFF;
}
.section__content .company {
    display: flex;
    align-items: center;
    gap: 12px;
}
.section__content .logo-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F0F8FF;
    color: #0A91ED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}
.section__content .company .name {
    font-weight: 700;
    color: #02113B;
}
.section__content .amount b {
    font-weight: 700;
    color: #02113B;
}
.section__content .rate.green {
    color: #2CB82C;
    font-weight: 700;
}
.section__content .term,
.section__content .credit {
    color: #1e262e;
}
.section__content .rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.section__content .rating .star {
    color: #FFB82E;
    font-size: 18px;
}
.quick-sec {
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0px 5px 16px rgb(0 0 0 / 12%);
}

@media screen and (max-width: 900px) {
    /* Keep table layout on mobile; enable horizontal scroll if needed */
    .section__content .compare-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 6px 0;
    }

    .quick-sec {
       padding: 32px;
    }

    .section__content .compare-table__header,
    .section__content .compare-table__row {
        min-width: 760px;
        padding: 12px 16px;
    }
    .section__content .compare-table__header {
        display: grid;
    }
    .section__content .compare-table__row {
        grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 0.8fr;
        row-gap: 0;
        align-items: center;
    }
    .section__content .amount,
    .section__content .rate,
    .section__content .term,
    .section__content .credit,
    .section__content .rating {
        display: block;
        color: inherit;
    }
    .section__content .amount:before,
    .section__content .rate:before,
    .section__content .term:before,
    .section__content .credit:before,
    .section__content .rating:before {
        content: none !important;
    }
}

.offer-con {
    padding: 35px 0 35px 4vw;
}

.section__content.quick-cont p {
    color: #818C99;
}

.section__content.quick-cont {
    margin-bottom: 30px;
}

/* News section */
.news-tags {
    margin-bottom: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
}

.news-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.news-card__image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card__body {
    padding: 18px;
}

.news-card__title {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    color: #1a1a1a;
}

.news-card__date {
    font-size: 12px;
    color: #97A0AC;
}

.news-tags .tag {color: black;}

@media screen and (max-width: 1200px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 900px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
}
/* Expert opinion */
.expert-card {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 39px;
    background: #F0F8FF;
    border-radius: 24px;
}

.expert-card__avatar {
    width: 150px;
    height: 186px;
    border-radius: 32px;
    overflow: hidden;
    flex: 0 0 auto;
}

.expert-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-card__body {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.expert-card__name {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #1E262E;
}

.expert-card__desc {
    margin: 0;
    color: #97A0AC;
    line-height: 1.5;
}

.expert-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E262E;
    text-decoration: none;
    font-weight: 500;
}

.expert-card__link:hover {
    color: #038aee;
}

@media screen and (max-width: 767px) {
    .expert-card {
        flex-direction: row;
        padding: 20px;
        gap: 18px;
    }
    .expert-card__avatar {width: 92px;height: 241px;border-radius: 55px;}
    .expert-card__name {font-size: 16px;}
}

.container--last {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cont--image {
    position: relative;
    max-width: 344px;
    width: 344px;
    height: -webkit-fill-available;
    background: #DFEFFF;
    flex: none;
    overflow: hidden;
    border-radius: 32px;
}

.cont--image .last__img {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 154%;
    filter: brightness(1.2);
    object-fit: cover;
}

.container--last.last {
    padding: 17px;
}

section.last {
    padding: 60px;
    background: #F0F8FF;
    border-radius: 32px;
}

@media screen and (max-width: 991px) {
    .container--last{
        flex-direction: column-reverse;
    }

    .cont--image{
        width: 100%;
        max-width: none;
        height: 315px;
    }

    .cont--image .last__img {
    height: 210%;
    }

    .collect-last {
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .location{
        display: none;
    }
    
}

.quick-cont ul {
    list-style: disc;
    padding-left: 16px;
    color: #838e9a;
}
/************************************/
