@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:wght@300;500;900&display=swap');

@import url("https://fonts.cdnfonts.com/css/geometria");

@import url('https://fonts.googleapis.com/css2?family=Danfo&family=Manrope:wght@200..800&family=Roboto:wght@300;500;900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
}

body {
    background-color: #F2F5F9;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

ul {
    list-style: none;
}

label {
    margin-bottom: 0;
}

:root {
    --main-black: #000000;
    --main-blue: #005BFF;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding-inline: 15px;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    height: 84px;
    align-items: center;

}

section {
    padding: 120px 0;
}

.header {
    position: sticky;
    top: -1px;
    background-color: #F2F5F9;
    width: 100%;
    z-index: 100;
}

.header_left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.navigation_list {
    margin-bottom: 0 !important;
    display: flex;
    gap: 24px;
}

.burger_menu_items {
    left: -237px;
    padding: 24px;
    position: absolute;
    background-color: #EFF2F6;
    border-radius: 12px;
    border-top-right-radius: 0;
    box-shadow: 0px 5px 17px rgb(99, 99, 99);
    margin-top: 24px;
    animation-duration: 0.5s;
    animation-name: burgerOpacity0;
    opacity: 0;
    display: none;
}

.salom_form {
    padding-top: 0;
}

.salom_form_form input,
.salom_form_form select {
    width: 100%;
    display: flex;
    padding: 12px 16px 12px 18px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 1000px;
    border: 1px solid #B1B5C3;
    margin-top: 8px;
    box-shadow: none;
    transition: 0.5s all;
}

.salom_form_form input:disabled {
    background-color: #f0f0f0;
}
.salom_form_form input:focus-visible {
    outline: none;
    box-shadow: 0px 6px 15px 0px gray;
}
.salom_form_form select:focus-visible {
    outline: none;
    box-shadow: 0px 6px 15px 0px gray;
}

.salom_form_form button:hover {
    background-color: var(--main-black);
}


.burger_wrapper-active .burger_menu_items {
    display: block;
    animation-duration: 0.5s;
    animation-name: burgerOpacity1;
    opacity: 1;
}

@keyframes burgerOpacity1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes burgerOpacity0 {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.burger_menu_items a {
    display: block;
    /* width: max-content; */
    max-width: 100%;
}


.navigation_item a:hover {
    color: var(--main-black);
}

.burger_list {
    display: flex;
    gap: 18px;
    flex-direction: column;
}

.navigation_item {
    color: #777E90;
    cursor: pointer;
}

.header_navigation {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.header_right_item {
    border-radius: 100%;
    border: 1px solid;
    padding: 8px;
    color: #777E90;
    border-color: #E6E8EC;
}

.header_right_items:hover {
    background-color: var(--main-blue);
    transition: 0.5s;
    border-color: var(--main-blue);
    color: #fff;
}

.header_right-items:hover a {
    color: #ffffff !important;
}

.phone_number {
    display: none;
}

.phone_number a {
    text-decoration: none;
    color: #1D3448;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* .header_right_item:hover {
    background-color: var(--main-black);
    transition: 0.5s;
    border-color: var(--main-black);

    div {
        color: #fff;
    }
} */

.header_right_items {
    border-radius: 1000px;
    border: 1px solid;
    padding: 8px;
    color: #777E90;
    border-color: #E6E8EC;
}

.header_right_items>a {
    text-decoration: none;
    color: #777E90;
}

.burger-checkbox {
    position: absolute;
    visibility: hidden;
}

.burger_lines {
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 16px;
    height: 14px;
}

.burger_lines::before,
.burger_lines::after {
    content: "";
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: rgba(119, 126, 144, 1);
    margin: 0 auto;
}

.burger_lines::before {
    top: 0;
    box-shadow: 0 6px 0 rgba(119, 126, 144, 1);
    transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger_lines::after {
    bottom: 0;
    transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger_wrapper-active .burger_lines::before {
    top: 6px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
    transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger_wrapper-active .burger_lines::after {
    bottom: 6px;
    transform: rotate(-45deg);
    transition: bottom 0.3s, transform 0.3s 0.15s;
}

.special_features-item,
.header_right_item,
.header_right_items {
    cursor: pointer;
}

.special_features-item.burger_wrapper {
    position: relative;
    display: none;
}

main {
    background: #EBF7FF;
    overflow: hidden;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 660px;
    position: relative;
}

.main_text {
    max-width: 506px;
}


.percentage {
    color: var(--main-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10000px;
    background-color: #FCFCFD;
    padding: 8px 12px;
    width: fit-content;
}

.main_h1 {
    color: var(--main-black);
    font-size: 64px;
    font-weight: 700;
    line-height: 125%;
    font-family: "Geometria", sans-serif;
    margin-top: 14px;
}
.main_img img {
    width: 100%;
}
.blueText {
    color: var(--main-blue);
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

/* .lang:hover,
.header_right_items:hover a {
    color: #FFFFFF;
} */

.main_p {
    color: #777E90;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 14px;
}

.btn {
    border-radius: 90px;
    font-family: 'Geometria', sans-serif;
    line-height: 125%;
    cursor: pointer;
}

.main_btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.main_btn {
    padding: 16px 24px;
    background: var(--main-blue);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.white_btn {
    transition: all .3s;
    padding: 16px 18px;
    background: initial;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    border: var(--main-blue) 1px solid;
    color: var(--main-blue);
}
.white_btn:hover {
    background: var(--main-blue);
    color: #fff;
}

.header_right_item.header_right-items a {
    color: #777E90;
}

.header_right_items {
    color: #777E90;
}



.warning {
    color: red;
}



/* // MODAL \\ */

#modal_text {
    font-size: 26px;
    font-weight: 600;
    color: var(--main-black);
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    /* display: none; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity .5s;
  }
  .modal__dialog {
    max-width: 100%;
    margin-inline: auto;
  }
  .modal__content {
    position: relative;
    width: 100%;
    padding: 48px;
    background-color: #fff;
    border-radius: 24px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .modal__content-wrapper {
    margin-top: 32px;
    display: flex;
    gap: 36px;
  }
  .modal-first_block label {
    font-size: 14px;
    font-weight: 500;
    color: #0A1E3299;
  }
  .modal-first_block button {
    margin-top: 32px;
    width: 100%;
  }
  .modal-first_inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .modal-first_block {
    width: 100%;
  }
  .modal .modal__fixed {
    background-color: #EFF2F6;
    padding: 32px;
    border-radius: 12px;
    height: max-content;
  }
  .modal__close {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 30px;
    color: #000;
    opacity: 0.5;
    font-weight: 700;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .modal.hide {
      display: none !important;
  }
  .modal.show {
    opacity: 1;
    display: flex;
    align-items: center;
  } 






  /* =============================================== */


.salom-sqb_title {
    font-size: 40px;
    font-weight: 700;
    color: var(--main-black);
}

.first_advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.first_advantages_block {
    background-color: #fff;
    padding: 32px 32px 0px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
}

.first_advantages_block_img {
    display: flex;
    justify-content: center;
    img {
        height: 100%;
    }
}

.first_advantages_block_title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-black);
}

.first_advantages_block_p {
    font-size: 18px;
    font-weight: 500;
    color: #777E90;
    margin-top: 8px;
}

.second_advantages {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.second_advantages_block {
    background-color: #fff;
    border-radius: 12px;
    .second_advantages_img {
        padding: 24px 24px 0 24px;
        img {
            width: 86px;
            height: 86px;
        }
    }
}

.second_advantages_text {
    padding: 0 32px 32px 32px;
    margin-top: 12px;
}

.second_advantages_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-black);
}

.second_advantages_subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #777E90;
    margin-top: 8px;
}

.third_advantages_text {
    max-width: 560px;
}

.third_advantages_block {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    min-height: 232px;
}

.third_subtitle {
    margin-top: 8px;
}

.more_btn {
    background: var(--main-blue);
    color: #fff;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    display: block;
    width: fit-content;
}

.img_wrapper {
    position: absolute;
    right: 112px;
    bottom: 0;
    transform: translateY(50%);
    bottom: 50%;
}



.salom_form_wrapper {
    background-color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.salom_form_wrapper .form_part {
    padding: 32px;
    width: 100%;
}
.salom_form_wrapper .salom_form_title {
    font-size: 32px;
    font-weight: 500;
    color: var(--main-black);
    font-family: 'Geometria', sans-serif;
}
.form_bottom_text {
    font-size: 14px;
    font-weight: 400;
    max-width: 397px;
    color: #777E90;
}
.line_part {
    width: 2px;
    margin-block: 24px;
    background-color: #F4F5F6;
}
.support_part {
    padding: 32px;
    max-width: 503px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.support_line {
    display: flex;
    align-items: start;
    gap: 24px;
}
.support_line img {
    width: 72px;
    height: 72px;
}
.support_line + .support_line {
    margin-top: 32px;
}
.support_info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-black);
}
.support_info-subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}
.support_info-number {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-blue);
    display: block;
    margin-top: 8px;
}
.explanation {
    font-size: 12px;
    font-weight: 500;
    color: #777E90;
    margin-top: 24px;
}
















.red_title {
    color: #EA0000;
    margin-bottom: 32px;
}

.salom_note_text {
    div + div {
        margin-top: 24px;
    }
}

.red_dot_p {
    display: flex;
    align-items: start;
    justify-items: center;
    gap: 8px;
    span {
        display: block;
        margin-top: 10px;
        background-color: #EA0000;
        min-width: 8px;
        min-height: 8px;
        border-radius: 50%;
    }
    p {
        color: #0A1E32CC;
        font-size: 20px;
        font-weight: 400;
    }
}

/* .bottom_img_wrapper {
    position: absolute;
    right: 0px;
    bottom: 0;
    transform: translateY(50%);
    bottom: 50%;
} */

.small-silver-logo {
    display: none;
}

.bank_history_block {
    background-color: #F2F5F9;
    border-radius: 12px;
    display: flex;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    min-height: 232px;
    justify-content: space-between;
}

.bank_history_text {
    padding: 64px;
    max-width: 648px;
}

.bottom_img_wrapper .silver-sqb-logo {
    height: 100%;
}

.bank_history_block .second_advantages_title.third_title {
    font-size: 32px;
    font-weight: 600;
}

.bank_history_block .second_advantages_subtitle.third_subtitle {
    font-size: 18px;
    font-weight: 500;
}

.salom_form_form label {
    font-size: 14px;
    font-weight: 500;
    color: #0A1E32;
}
.salom_form_form .salom_form_inputs > label + label {
    display: block;
    margin-top: 24px;   
}

.salom_form_form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.salom_note {
    background-color: #FFFFFF;
}