@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

.modal-submit:disabled {
    /* Стили заблокированной кнопки */
    opacity: 0.5;             /* делает кнопку полупрозрачной */
    cursor: not-allowed;      /* меняет курсор на "запрещён" */
    background-color: white; /* можно оставить тот же цвет или сделать серым */
    /* Например, альтернатива: background-color: #ccc; */
}
.cta-subtitle {
    color: black;
    font-weight: 600;
    margin-bottom: 0;
}
.kapital-card {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    width: 100%;
    position: relative; /* ← важно! */
    z-index: 2; /* ← важно! чтобы был поверх фоновых изображений */
}

.kapital-image {
    width: 50%;
}

.kapital-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.kapital-content {
    width: 50%;
    padding-left: 40px;
}

.kapital-title {
    font-family: Inter, serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 52.8px;
    color: #1A3D9A;
    text-transform: uppercase;
    margin: 0 0 32px 0;
}

.kapital-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.kapital-list li {
    position: relative;
    padding-left: 30px;
    font-size: 19px;
    line-height: 29px;
    color: #333333;
    font-weight: 400;
    margin-bottom: 5px;
}

.kapital-list li:last-child {
    margin-bottom: 0;
}

.kapital-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
}

.kapital-btn {
    font-weight: 600;
    background: transparent;
    border: 1px solid #80BC42;
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    padding: 14px 32px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 309px;
    line-height: 23px;
}

.kapital-btn:hover {
    background: #80BC42; /* ← синий, как в Figma! */
    color: white;
    border-color: #80BC42;
}

/* Mobile */

.blue_des {
    color: #082D96;
}
.kapital-terms-full-title h2 {
    font-weight: 600;
    font-size: 35px;
    margin: 35px 0;
}
.kapital-terms-full-list {
    margin-left: 2%;
}
.kapital-terms-full-list ul{
    line-height: 18.5px;
    list-style: unset;
}
.get_credit-main article {
    width: 30%;
    padding: 0 !important;
}
.get_credit-image img {
    width: unset;
}
.get_credit-image {
    margin: 0 auto;
}
.get_credit-title h1 {
    font-weight: 600;
    margin: 35px 0;
}
.get_credit-main h2 {
    font-weight: 600;
}
.safety-block {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* для визуального выделения */
    position: relative; /* ← важно! */
    z-index: 2; /* ← важно! чтобы был поверх фоновых изображений */
    font-family: Arial, sans-serif;
    margin: 20px auto;
}

.safety-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.safety-block p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: left;
    align-items: center;
}

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

.logo-item img {
    height: 50px;
    margin-right: 10px;
}

.logo-item span {
    font-size: 18px;
}
.faq-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    background-color: #fafafa;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question::after {
    content: '▼';
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: white;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 16px 20px;
    max-height: 1000px; /* достаточно для большинства ответов */
}
.cta-block {
    background: transparent; /* Прозрачный фон */
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-title span {
    color: #082D96; /* Синий цвет для "КАПИТАЛ" */
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 250px;
    text-align: center;
}

.cta-button:hover {
    background: #80BC42; /* ← синий, как в Figma! */
    color: white;
    border-color: #80BC42;
}
.modal-submit:hover {
    background: #80BC42; /* ← синий, как в Figma! */
    color: white;
    border-color: #80BC42;
}
.calculator {
    max-width: 600px;
    margin: 0px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.calculator h3 {
    margin-top: 0;
    color: #333;
}

.slider-container {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 10px 10px 10px 10px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}
@media (max-width: 660px) {
    .slider {
        width: 95% !important;
    }

}
@media (max-width: 450px) {
    .slider {
        width: 93% !important;
    }

}
.slider {
    width: 97%;
    height: 2px;
    position: absolute;
    bottom: 0px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #80BC42;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #80BC42;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.term-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.results {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #80BC42;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 16px;
}

.result-label {
    font-weight: 600;
    color: #555;
}

.result-value {
    color: #3a3a3a;
    font-weight: 600;
}
#total{
    color: #80BC42 !important;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    text-align: center;
    background: transparent;
    border: 2px solid #80BC42;
    color: #80BC42;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #80BC42;
    color: white;
}
.calculator {
    max-width: 1000px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0 0 0;
}

.main_calc {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 40px;
    font-family: Arial, sans-serif;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0 0 0;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.left-column {
    flex: 1;
}

.slider-container {
    position: relative;
    margin: 15px 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #80BC42;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #80BC42;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.term-buttons {
    display: flex;
    gap: 10px;
    margin-top: 35px;
    justify-content: space-around;
}

.term-btn {
    width: 23%;
    line-height: 20px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    font-weight: 600;
}
.background_layout2 {
    bottom: 0 !important;
}
.background_layout1 {
    top: 0 !important;
}

.right-column {
    flex: 0 0 230px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
}

.result-label {
    font-weight: 600;
    color: #555;
}

.note {
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    line-height: 1.3;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    background: white;
    border: 2px solid #80BC42;
    color: #80BC42;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #80BC42;
    color: white;
}
a:hover {
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
.zz_new_one {
    width: 16% !important;
}
.zz_new_two {
    width: 21% !important;
}
.zz_new_three {
    width: 18% !important;
}
.zz_new_yep {
    width: 18% !important;
}
@media (max-width: 961px) {
    .kapital-title {
        font-size: 35px;
        margin-top: 20px;
    }
}
@media (max-width: 854px) {
    .jq_st {
        flex-wrap: wrap;
    }
    .jq_st article{
        width: 49% !important;
    }
}
@media (max-width: 590px) {
    .income_block_one {
        margin-bottom: 0px !important;
    }
    .jq_st {
        flex-wrap: wrap;
    }
    .jq_st article{
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
    }
}
@media (max-width: 653px) {
    .log_img_two {
        height: 140px !important;
    }
    .log_img {
        height: 90px !important;
    }
}
@media (max-width: 450px) {
    .kapital-btn{
        width: 90% !important;
    }
    .kapital-title {
        margin-top: 35px !important;
    }
    .kapital-btn {
        margin-bottom: 40px !important;
    }
}
@media (max-width: 500px) {
    .slider-container {
        padding-bottom: 15px !important;
        padding-top: 15px !important;
    }
    .cta-button {
        width: 100% !important;
    }
    .calculator {
        padding: 0px !important;
    }
    #rate {
        font-size: 17px;
    }
    #income{
        font-size: 17px;
    }
    #total{
        font-size: 17px;
    }
    .kapital-btn {
        font-size: 17px;
    }
    .kapital-content {
        padding-left: 60px;
    }
    .cta-subtitle{
        text-align: left;
        margin-bottom: 0 !important;
    }
    .cta-title {
        text-align: left;
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .cta-buttons a {
        font-size: 11px !important;
        width: 340px !important;
        line-height: 15px !important;
    }
    .cta-block {
        padding: 16px !important;
    }
    .cta-subtitle {
        font-size: 13px !important;
        line-height: 15px !important;
    }
    .faq-title {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .faq-question {
        font-size: 13px !important;
        line-height: 15px !important;
        font-weight: 600;
    }
    .faq-answer {
        font-size: 12px !important;
        line-height: 14px !important;
    }
    .one_block h1{
        margin: 0 auto !important;
    }
    .bg_mobile23 {
        position: absolute;   /* ← Вне потока документа */
        top: 65%;
        left: 26%;
        z-index: -1;          /* ← Под контентом */
        display: block !important;
        transform: scaleX(-1);
        pointer-events: none;
    }
    .bg_mobile23 img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    .footer_bg {
        display: none;
    }
    .safety-block {
        padding-top: 1px;
    }
    .log_img{
        height: 65px !important;
    }
    .log_img_two{
        height: 80px !important;
    }
    .logos {
        justify-content: space-evenly;
    }
    .zz_new_one {
        width: 100% !important;
        margin: 0 auto !important;
        right: 0 !important;
        left: 0 !important;
    }
    .zz_new_two {
        width: 100% !important;
        margin: 0 auto !important;
        right: 0 !important;
        left: 0 !important;
        top: 0 !important;
    }
    .zz_new_three {
        width: 100% !important;
        margin: 0 auto !important;
        right: 0 !important;
        left: 0 !important;
        top: 0 !important;
    }
    .zz_new_yep {
        width: 100% !important;
        margin: 0 auto !important;
        right: 0 !important;
        left: 0 !important;
    }

    .blue_des {
        display: block;
    }
    .get_credit-title h1 {
        font-size: 20px !important;
        line-height: 24px !important;
        width: 248px;
    }
    .safety-block h2 {
        font-size: 20px !important;
        line-height: 24px !important;
        font-weight: 600;
    }
    .safety-block p {
        font-size: 13px !important;
        line-height: 15px !important;
    }

    .kapital-terms-full-title h2 {
        font-size: 20px !important;
        line-height: 24px !important;
        font-weight: 600;
        margin-bottom: 15px !important;
    }
    .kapital-terms-full-list {
        margin-left: 30px !important;
        font-size: 13px !important;
        line-height: 17px !important;
    }
    .maik {
        font-size: 20px !important;
        line-height: 24px !important;
        font-weight: 600;
        margin-top: 0px !important;

    }
    .kapital-title {
        font-size: 29px;
        margin-top: 20px;
        line-height: 35px;
    }
    .kapital-hero-image-new {
        margin: 0 -32px !important;
    }
    .kapital-list{
        line-height: 18px;
        font-size: 13px !important;
    }
    .kapital-list li{
        line-height: 18px;
        font-size: 13px !important;
    }
    .kapital-list li::before {
        left: 17px;
        top: 7px;
        width: 5px;
        height: 5px;
    }
    .one_block h1{
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .cta-title{
        width: 82%;
    }
    .container {
        margin-top: 30px !important;
    }
    .marg_non {
        margin-top: 0px !important;
    }
    .faq-title {
        margin-top: 30px !important;
    }
    .kapital-terms-full-title h2 {
        margin-top: 0px !important;
    }
    .kapital-terms-full {
        margin-top: 0px !important;
    }
    .cta-buttons a {
        padding: 15px 0px !important;
    }
}
@media (max-width: 855px) {
    .kapital-hero-image-new{
        display: block !important;
        margin: 0px 100px;
        height: 315px;
        width: 284px;
    }
    .kapital-image{
        display: none;
    }
    .kapital-card {
        margin: 0 auto;
    }
    .mob_men {
        width: 100%;
    }
    .kapital-content {
        width: 100%;
        padding-right: 15px;
    }
    .kapital-btn {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .kapital-list {
        font-size: 13px;
    }
}
@media (max-width: 1161px) {
    .get_credit-main h2 {
        font-size: 13px;
        line-height: 18px;
        font-weight: 600;
    }
    .get_credit-main p {
        font-size: 12px;
        line-height: 14px;
    }
}
@media (max-width: 590px) {

    .zz_new_one img{
        margin-left: 36px;
        height: 190px;
    }
    .get_credit-main article {
        width: 100%;
        margin-top: 0 !important;
    }
    .get_credit-main article:nth-child(1) p {
        width: 54%;
        margin: 0 auto;
        margin-top: 2px;
    }
    .get_credit-main article:nth-child(1) {
        right: 17%;
    }
    .get_credit-main article:nth-child(2) {
        left: 17%;
        top: -20px;
    }
    .get_credit-main article:nth-child(3) {
        right: 15%;
        top: -40px;
    }
    .income_bloke {
        margin-top: 0px !important;
    }
}
@media (max-width: 495px) {
    .get_credit-image {
        width: unset;
    }
}
@media (max-width: 854px) {
    .background_layout22 {
        display: none  !important;
    }
    .get_credit-title h1 {
        line-height: unset;
    }
    .get_credit-main article:nth-child(1) p{
        width: 70%;
        margin: 0 auto;
        margin-top: 2px;
    }
    .bg_mobile2 {
        top: 28%;
    }
    .calculator {
        display: block;
    }
    .right-column {
        margin-top: 20px;
    }
}
@media (max-width: 590px) {
    .cta-button {
        font-size: 13px !important;
        width: 100% !important;
    }
    .calculator {
        margin-top: 0 !important;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* затемнение */
    backdrop-filter: blur(4px); /* ← замыливание фона */
    -webkit-backdrop-filter: blur(4px); /* для Safari */
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 522px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    animation: fadeIn 0.3s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.close {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -40px;
    z-index: 1002;
    background: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.close:hover,
.close:focus {
    color: black;
    background: #f0f0f0;
    transform: scale(1.1);
    text-decoration: none;
}
.modal-body{
    padding: 0px !important;
}
.modal-header {
    margin-bottom: 0px;
    border-bottom: 0px;
    padding: 0px !important;
}

.modal-image {
    width: 161px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.modal-image::after {
    content: "★";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #80BC42;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.modal-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-body h3 .green {
    color: #80BC42;
    font-weight: 600;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border 0.2s;
    font-family: 'Inter', sans-serif;
}

.modal-input:focus {
    border-color: #80BC42;
    box-shadow: 0 0 0 2px rgba(128, 188, 66, 0.2);
}

.modal-submit {
    width: 263px;
    padding: 25px 30px;
    background: transparent;
    border: 2px solid #80BC42;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 16px;
}

@media (max-width: 590px) {
    .bg_mobile2 {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        height: 2000px; /* как было */
        overflow: hidden;
    }
    .bg_mobile2 img{
        height: 1500px;
    }
    .footer_bg {
        display: none !important;
    }
    .bg_mobile3 {
        display: block !important;
        z-index: -1;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2000px; /* как было */
        overflow: hidden;
        bottom: 7%;
    }
    .bg_mobile3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scaleX(-1);
    }
}
.bg_mobile3  {
    display: none;
}
/* Адаптивность */
@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
        max-width: 80%;
    }

    .modal-body h3 {
        font-size: 17px;
        font-weight: 600;
    }
    .modal-submit {
        font-size: 15px;
        font-weight: 600;
    }
}
.background_layout1 img{
    height: 2000px;
}
.background_layout2 img{
    height: 3500px;
}
.background_layout22{
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    display: block ;
    transform: scaleX(-1);
    pointer-events: none;
}
.background_layout22 img {
    display: block;
    max-width: 100%;
    height: 2000px;
}
@media (max-width: 1200px) {
    .background_layout2 img {
        height: 1500px !important;
    }
}
@media (max-width: 1300px) {
    .background_layout2 img {
        height: 2000px !important;
    }
}
@media (max-width: 1500px) {
    .background_layout2 img {
        height: 3000px;
    }
}
@media (max-width: 854px) {
    .log_img  {
        height: 100px !important;
    }
    .log_img_two  {
        height: 180px !important;
    }
}
@media (max-width: 653px) {
    .log_img  {
        height: 80px !important;
    }
    .log_img_two  {
        height: 160px !important;
    }
}
@media (max-width: 590px) {
    .log_img  {
        height: 70px !important;
    }
    .log_img_two  {
        height: 110px !important;
    }
}
body {
    font-family: 'Inter', sans-serif !important;
}
.footer-kit {
    display: none !important;
}
.dd_block h2 {
    margin: 0px 0 !important;
    margin-bottom: 20px !important;
    margin-left: 10px !important;
}
.dd_block {
    padding: 20px;
}
@media (max-width: 500px) {
    .dd_block h2 {
        margin-left: 0px !important;
    }

    .safety-block p {
        margin-left: 0px !important;
    }

    main {
        width: 330px;
        margin: 0 auto;
    }

    .kapital-card {
        box-shadow: 10px 0 20px -10px rgba(0, 0, 0, 0.15) !important;
    }

    .kapital-content {
      padding-left: 20px;
    }
    .kapital-btn {
        margin-left: 0;
        font-size: 16px;
        width: 271px;
        padding-left: 10px;
    }
    .kapital-list {
        margin-left: -15px;
    }
    .kapital-list li {
        font-size: 12px !important;
    }
    .term-btn{
        font-size: 10px !important;
    }
    .term-buttons {
        margin-top: 10px !important;
    }
    .slider-container {
        margin-bottom: 5px !important;
    }
    .slider-labels {
        font-size: 10px !important;
        border-radius: 10px !important;
    }
    .cta-button {
        font-size: 11px !important;
    }
    .log_img {
        height: 55px !important;
    }
    .log_img_two{
        height: 80px !important;
    }
    .cta-title {
        font-size: 19px !important;
    }
    .cta-buttons a {
        width: 100% !important;
    }
    .name_block {
        font-size: 5.37px !important;
    }
    .slider-container {
        font-size: 6.49px !important;
    }
    .main_calc {
        border-radius: 15px !important;
        padding-left: 10px !important;
    }
    .slider-container {
        margin: 4px 0 !important;
        border-radius: 10px !important;
    }
    .term-btn {
        font-size: 6.49px !important;
        height: 38px !important;
        padding: 0px !important;
        padding-top: 17px !important;
    }
    .note {
        font-size: 9px !important;
        color: black !important;
    }
    .main_calc {
        padding-bottom: 1px;
        padding-top: 11px;
    }
}
@media screen and (max-width: 500px){
    .agreement h6 {
        width: 86% !important;
    }
}