* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: unset;
    border: none;
    font-family: Inter, sans-serif;
    box-sizing: border-box;
    transition: 0.2s linear;
}
/* *::-webkit-scrollbar {
  display: none;
} */

/* Hide scrollbar for IE, Edge and Firefox */
/* * {
  -ms-overflow-style: none;
  scrollbar-width: none;
} */

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    display: inline-block;
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #bf1a1f;
}
.repayment_schedule {
    width: auto !important;
}

body {
    padding-top: 107px;
    background: #fafafa;
    min-width: 1316px;
}
.body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.default-wrapper {
    max-width: 1316px;
    width: 100%;
    padding: 0 60px;
}
#page_404 .body {
    min-height: auto;
    margin-bottom: 40px;
}
.content_404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.text_404 {
    color: #282828;
    font-size: 230px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.text_404_sub_title {
    color: #282828;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.text_404_sub_sub_title {
    color: #6e6e6e;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
/* header */

.header {
    width: 100%;
    min-height: 107px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
    background: #fafafa;
}
.header__container {
    width: 100%;
    height: 67px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 30px;
}
.header__menu-box {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}
.header__menu {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header__menu-item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header__menu-item-link {
    color: #282828;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 167.523%; /* 26.804px */
    padding: 0 24px;
    border-right: 0.5px solid #d2d2d2;
    border-left: 0.5px solid #d2d2d2;
    cursor: pointer;
}
.header__settings-btn {
  cursor: pointer;
  background: none;
}

.header__menu .header__menu-item:first-child .header__menu-item-link {
    border-left: unset;
    /*padding-left: 0;*/
}
.header__menu .header__menu-item:last-child .header__menu-item-link {
    border-right: unset;
    /*padding-right: 0;*/
}
.header__menu-item:hover .header__menu-item-link {
    color: #bf1a1f;
}

.settings {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 999999;
  padding: 20px 60px;
  max-height: 100dvh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  background: #FAFAFA;
  pointer-events: none;
}

.settings.active {
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.settings-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.settings-row__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings-row__item h4 {
  font-weight: 400;
  font-size: 20px;
}

.settings-btn {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 15px;
  background: none;
  border: 0.5px solid #000000;
  border-radius: 10px;
  font-size: 18px;
}

.settings-row__content {
  display: flex;
  align-items: center;
  gap: 4px;
}

.settings-btn[data-color="1"] {
  background-color: #FFFFFF;
  color: #000000;
}

.settings-btn[data-color="2"] {
  background-color: #000000;
  color: #fff;
}

.settings-btn[data-color="3"] {
  background-color: #9DD1FF;
  color: #195183;
}

.settings-btn[data-color="4"] {
  background-color: #F7F3D6;
  color: #4D4B43;
}

.settings-btn[data-color="5"] {
  background-color: #3B2716;
  color: #A9E44D;
}

.settings-btn.active::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background: #000000;
  border-radius: 10px;
}


/* drop menu */

.drop-menu {
    width: 200px;
    height: 0;
    padding: 0 24px;
    border-radius: 0 0 20px 20px;
    background: #fff;
    box-shadow: -1px 2px 9px 0 rgba(40, 40, 40, 0.08);
    position: absolute;
    top: 67px;
    left: 0;
    overflow: hidden;
    transition: 0.5s linear;
}
.drop-menu-list,
.drop-menu-list form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    transition: 0.5s linear;
    overflow-y: unset;
}
.drop-menu__item {
    color: #282828;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
    cursor: pointer;
}
.drop-menu__item:hover {
    color: #bf1a1f;
}

/* header */

.header__menu-item:hover > .drop-menu {
    padding: 20px 24px;
    height: unset;
}
.header__lang:hover > .drop-menu {
    transition-delay: 0.4s;
    padding: 20px 24px 20px 35px;
    height: unset;
}
.header__search-box {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__lang {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header__lang-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #282828;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header__lang .header__lang-link p {
    width: 0;
    overflow: hidden;
    margin-left: 0;
    transition: 0.4s;
}
.header__lang:hover .header__lang-link p {
    width: 100px;
    margin-left: 10px;
}

.header__lang .drop-menu {
    /*left: unset;*/
    /*right: 0;*/
    width: min-content;
    padding-left: 35px;
}
.header__search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    transition: 0.5s linear;
}
.header__search input {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
    width: 0;
    background: transparent;
    transition: 0.5s linear;
}
.header__search input:not(:placeholder-shown) {
    width: 100px;
    margin-left: 10px;
}
.header__search:hover input {
    width: 100px;
    margin-left: 10px;
}

/* header__mobile */

.mobile-header {
    width: 100%;
    height: 93px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: #fafafa;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
}

.mobile-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-header .default-wrapper {
    height: 100%;
}
.mobile-header__container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #fafafa;
}
.mobile-header__menu-button {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}
.mobile-header__menu-button span {
    width: 90%;
    height: 3px;
    background: black;
    transition: transform 0.2s;
}
/*.mobile-header__menu-button:hover span {*/
/*    position: absolute;*/
/*    top: 8px;*/
/*}*/
/*.mobile-header__menu-button:hover span:first-child {*/
/*    transform: rotate(45deg);*/
/*}*/
/*.mobile-header__menu-button:hover span:last-child {*/
/*    transform: rotate(-45deg);*/
/*}*/
.mobile-header__menu-button.active span {
    position: absolute;
    top: 8px;
}
.mobile-header__menu-button.active span:first-child {
    transform: rotate(45deg);
}
.mobile-header__menu-button.active span:last-child {
    transform: rotate(-45deg);
}
.mobile-header__menu {
    z-index: 9999;
    width: 100%;
    position: absolute;
    top: 93px;
    height: 100vh;
    display: none;
    background: #fafafa;
}
.mobile-header__menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.mobile-header__language-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-header__langs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
}
.mobile-header__lang {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    cursor: pointer;
}
.mobile-header__lang:hover {
    color: #bf1a1f;
}
.mobile-header__links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.mobile-header__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.mobile-header__links-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    cursor: pointer;
}
.mobile-header__links-title {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.mobile-header__links-header:hover .mobile-header__links-arrow {
    transform: rotate(180deg);
}
.mobile-header__links-header.active .mobile-header__links-arrow {
    transform: rotate(180deg);
}
.mobile-header__links-body {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}
.mobile-header__link {
    color: #282828;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
}
.mobile-header__search-form {
    width: 100%;
}
.mobile-header__search {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.5s linear;
    border-radius: 36px;
    background: #fff;
    padding: 13px 20px;
}
.mobile-header__search svg {
    flex-shrink: 0;
}
.mobile-header__search input {
    width: 100%;
    color: #282828;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
    background: transparent;
    transition: 0.5s linear;
}

/* buttons */

.submit-orange-button {
    width: min-content;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    padding: 20px 30px;
    border-radius: 10px;
    background: linear-gradient(204deg, #bf1a1f 34.6%, #dd383d 88.27%);
    cursor: pointer;
    border: 1px solid #bf1a1f;
    white-space: nowrap;
}
.submit-orange-button:hover {
    background: white;
    color: #bf1a1f;
}

.submit-white-button {
    max-width: min-content;
    width: 100%;
    color: #bf1a1f;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #bf1a1f;
    cursor: pointer;
    background: white;
    white-space: nowrap;
}
.submit-white-button:hover {
    background: linear-gradient(204deg, #bf1a1f 34.6%, #dd383d 88.27%);
    color: white;
}

.submit-orange-button.small {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    padding: 12px 14px;
}
.submit-white-button.small {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    padding: 12px 14px;
}
.submit-orange-button.w-full {
    width: 100%;
}
.submit-white-button.w-full {
    width: 100%;
}

/* brief info */

.brief-info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brief-info__container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.brief-info__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    border-right: 1.5px solid #bfa060;
    border-left: 1.5px solid #bfa060;
}
.brief-info__item p {
    width: 100%;
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    text-align: center;
}
.brief-info__container .brief-info__item:first-child {
    padding-left: 0;
    border-left: unset;
}
.brief-info__container .brief-info__item:last-child {
    padding-right: 0;
    border-right: unset;
}

/* titles */

.block-title {
    width: 100%;
    text-align: start;
    color: #282828;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.page-title {
    width: 100%;
    color: #282828;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 80px;
    padding-right: 50px;
}

/* switch box */

.switch-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.switch-box__header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.switch-box__header-item,
.switch-box__header-item__currency {
    border-radius: 10px 10px 0 0;
    box-shadow: -1px 4px 10px 0 rgba(40, 40, 40, 0.01);
    color: #6e6e6e;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    padding: 20px 30px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
    white-space: nowrap;
}
.switch-box__header-item.active,
.switch-box__header-item__currency.active {
    background: #fff;
    color: #bf1a1f;
    font-weight: 700;
    font-size: 16px;
    text-overflow: initial;
    flex-shrink: 0;
}
.switch-box__body {
    width: 100%;
    border-radius: 0 10px 10px 10px;
    background: #fff;
    box-shadow: -1px 4px 10px 0 rgba(40, 40, 40, 0.1);
    padding: 24px 38px 22px 38px;
}
.switch-box__body-item {
    width: 100%;
    display: none;
    flex-direction: column;
}
.switch-box__body-item.active {
    display: flex;
}

/* footer */

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #282828;
}
.footer__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 52px 0 42px 0;
    gap: 35px;
}
.footer__search-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
.footer__search {
    width: 100%;
    max-width: 857px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.footer__search-input {
    width: 100%;
    position: relative;
}
.footer__search-input svg {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translate(0, -50%);
}
.footer__search-input input {
    display: flex;
    max-width: 665px;
    width: 100%;
    padding: 13px 24px 13px 72px;
    align-items: center;
    border-radius: 36px;
    background: #fff;
    color: #b4b4b4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
}
.footer__search-button {
    display: flex;
    padding: 16px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 36px;
    background: linear-gradient(204deg, #bf1a1f 34.6%, #dd383d 88.27%);
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.footer__logo {
    width: 100%;
    max-width: 273px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer__logo img {
    width: 200px;
}
.footer__contacts-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}
.footer__link-box {
    width: 100%;
    max-width: 857px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.footer__links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 215px;
    width: 100%;
}
.footer__links-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer__links_contacts-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer__links-title {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #bf1a1f;
    margin-bottom: 30px;
}
.footer__links-item {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    margin-bottom: 10px;
}
.footer__links-item:hover {
    /*border-bottom: 1px solid white;*/
    text-decoration: underline;
}
.footer__links_contacts {
    max-width: 273px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.footer__links_contacts .footer__links-item:hover {
    border-bottom: unset;
}

.footer__links-item-social {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.footer__sub-bar {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer__sub-bar-link {
    color: #d2d2d2;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
    padding: 0 10px;
    border-right: 0.5px solid #d2d2d2;
    border-left: 0.5px solid #d2d2d2;
}
.footer__sub-bar-link:first-child {
    border-left: unset;
    padding-left: 0;
}
.footer__sub-bar-link:last-child {
    border-right: unset;
    padding-right: 0;
}

/* quick-link-buttons */

.quick-link-buttons {
    position: fixed;
    top: 201px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
}
.quick-link-buttons.centered {
    top: 340px;
}
.quick-link-button {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    border-radius: 100px;
    background: #bf1a1f;
    transition: 0.5s linear;
    position: relative;
}
.quick-link {
    width: 0;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 143.523%; /* 20.093px */
    white-space: nowrap;
    transition: 0.5s linear;
    text-align: right;
    margin-right: 0;
    padding-left: 0;
}
.quick-link-button:hover .quick-link {
    width: 152px;
    margin-right: 10px;
}
.quick-link-button.active .quick-link {
    width: 152px;
    margin-right: 10px;
}
.quick-link_box {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 9;
    border-radius: 10px;
    background: #fff;
    transition: 0.5s linear;
}
.quick-link-button.active .quick-link_box {
    display: flex;
}
.quick-link-buttons .quick-link-button:last-child .quick-link_box {
    background: transparent;
}

/* currency box */

.currency-box__table {
    width: 100%;
    border-collapse: collapse;
}
.currency-box__table th,
.home-currency-box__body table th td {
    text-align: start;
}
.currency-box__table th {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    padding-bottom: 20px;
    width: 25%;
}
.switch-box_currency .currency-box__table th {
    width: 25%;
}
.switch-box_currency .switch-box__header {
    justify-content: space-between;
}
.switch-box_currency {
    min-width: 530px;
}
.currency-box__table td {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    padding: 20px 0 16px 0;
}
.currency-box__table tr td:first-child,
.currency-box__table tr td:first-child {
    color: #bf1a1f;
}
.currency-box__table tr {
    border-bottom: 1px solid #b4b4b4;
}
.currency-box__table tr:last-child {
    border-bottom: unset;
}
.currency-box__table tr:last-child td {
    padding-bottom: unset;
}

/* privacy agreement */
.privacy_agreement_text p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 21px;
}
.privacy_agreement_text .bold,
.privacy_agreement_text b {
    font-weight: bold;
    margin-top: 40px;
    font-size: 18px;
}
.privacy_agreement_text {
    margin-bottom: 80px;
}
.privacy_agreement_text a {
    color: #bf1a1f;
}
.privacy_agreement_text button a {
    color: #fff;
}
.privacy_agreement_text button:hover a {
    color: #bf1a1f;
}
/* calculate box */

.calculate-box__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 31px;
}
.calculate-box__currency {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.calculate-box__currency-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.calculate-box__currency-button {
    color: #6e6e6e;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}
.calculate-box__currency-button.active {
    color: #bf1a1f;
}
.calculate-box__currency-button:hover {
    color: #bf1a1f;
}
.calculate-box__input-box {
    width: 100%;
}
.calculate-box__input-box label {
    width: 100%;
}
.calculate-box__input-box input {
    display: flex;
    width: 100%;
    padding: 13px 20px 13px 20px;
    align-items: center;
    border-radius: 10px;
    background: #f0f0f0;
    color: #6e6e6e;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
}

/* news-block */

.news-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-block__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.news-block__title-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.news-block__page-link {
    color: #bf1a1f;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    white-space: nowrap;
}
.news-block__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* news card */

.news-item {
    width: 100%;
}
.news-item-container {
    width: 100%;
    height: 100%;
    max-width: 400px;
    border-radius: 10px;
    background: #fff;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
    padding: 30px 30px 100px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.news-item__title {
    width: 100%;
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.18px;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}

.news-item__text {
    width: 100%;
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    margin-bottom: 17px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-item__text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-item__button-box {
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}
.news-item__date {
    color: #b4b4b4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 235.714% */
}

/* breadcrumbs */

.breadcrumbs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.breadcrumbs__container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 50px;
}
.breadcrumbs__item {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    margin: 0 5px;
}
.breadcrumbs__item:first-child {
    margin-left: 0;
}
.breadcrumbs__item:last-child {
    margin-right: 0;
}

/* pagination */

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.pagination__pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.pagination-button {
    cursor: pointer;
}
.page {
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 183.333% */
    cursor: pointer;
}
.page:hover {
    color: #bf1a1f;
}
.page.active {
    color: #bf1a1f;
}

/* default-modal */

.default-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    background: rgba(40, 40, 40, 0.4);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.default-modal__container {
    max-width: 629px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 9px;
    background: #fff;
    box-shadow: -0.89729px 3.58916px 7.17832px 0 rgba(40, 40, 40, 0.05);
    padding: 70px 90px 40px 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.default-modal__close-button {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
}
.default-modal__close-button > div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}
.default-modal__close-button span {
    width: 90%;
    height: 2px;
    background: black;
    transition: transform 0.2s;
    position: absolute;
}
.default-modal__close-button span:first-child {
    transform: rotate(45deg);
}
.default-modal__close-button span:last-child {
    transform: rotate(-45deg);
}
.default-modal__close-button:hover > div {
    transform: rotate(180deg);
}

.default-modal__title {
    color: #282828;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 60px;
}
.default-modal__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.default-modal__form-input {
    width: 100%;
}
.default-modal__form-input input {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    align-items: center;
    border-radius: 9px;
    background: #fafafa;
    color: #b4b4b4;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
}

.default-modal__form-input.file input {
    display: flex;
    padding: 16px 24px;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    border-radius: 9px;
    border: 2px dashed #b4b4b4;
}
.default-modal__form-input.textarea textarea {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    align-items: center;
    border-radius: 9px;
    background: #fafafa;
    color: #b4b4b4;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
}

.default-modal__form-submit-button {
    display: flex;
    width: 100%;
    height: 54px;
    justify-content: center;
    padding: 18px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: #bf1a1f;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    cursor: pointer;
    border: 1px solid #bf1a1f;
}
.default-modal__form-submit-button:hover {
    color: #bf1a1f;
    background: #fff;
}
.default-modal__form-response {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.default-modal__form-response p {
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.mobile-form {
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.mobile-form .default-modal__form-input input,
.mobile-form .default-modal__form-input textarea {
    background: white;
}

.default-table {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
    border-collapse: collapse;
}
.default-table tr {
    height: 100px;
    font-size: 14px;
}
.default-table th {
    padding: 30px 0;
    white-space: nowrap;
    height: 1px;
}
.default-table th div {
    padding: 0 25px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #b4b4b4;
    border-left: 1px solid #b4b4b4;
    font-size: 14px;
}
.default-table tr th:first-child div {
    border-left: 0;
}
.default-table tr th:last-child div {
    border-right: 0;
}

.default-table td {
    height: inherit;
    padding-bottom: 20px;
}
.default-table tbody tr:first-child td {
    padding-top: 20px;
}
.default-table td div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 14px 30px;
    text-align: start;
    background: rgba(210, 210, 210, 0.1);
}
.default-table td div {
    border-right: 1px solid #b4b4b4;
    border-left: 1px solid #b4b4b4;
}
.default-table tr td:first-child div {
    border-left: unset;
}
.default-table tr td:last-child div {
    border-right: unset;
}

/* default-table changes */

.switch-box .default-table,
.default-modal .default-table {
    box-shadow: none;
}
.default-modal .default-table th {
    white-space: unset;
}

/* page data download link */

.page-data-download-link {
    color: #bf1a1f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 183.333% */
}
.page-data-download-link.notLink {
    color: #6e6e6e;
    font-style: italic;
}

/* default-select */

.default-select {
    width: min-content;
}
.default-select select {
    display: flex;
    padding: 15px 30px 15px 30px;
    justify-content: flex-end;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    background: #f0f0f0;
    box-shadow: -1px 2px 9px 0 rgba(40, 40, 40, 0.08);
}

/* questions */

.questions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}
.questions__title {
    color: #282828;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.questions__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.question {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 2px solid #d2d2d2;
}
.question__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    cursor: pointer;
}
.question__header-title {
    color: #282828;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.question__header-icon {
    flex-shrink: 0;
}
.question__body {
    display: none;
    width: 100%;
    padding: 20px 20px;
}
.question.active .tender__header-icon {
    transform: rotate(180deg);
}
.question.active .tender__header-title {
    color: #bf1a1f;
}
.question__body-text {
    width: 100%;
    text-align: start;
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
}

/* calculator */

.calculator {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
}
.calculator__title {
    width: 100%;
    text-align: center;
    color: #282828;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.calculator__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.calculator__slider-box {
    width: 100%;
    max-width: 723px;
    display: inline-flex;
    padding: 50px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 59px;
    border-radius: 10px;
    background: #fff;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
}
.calculator__slider-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 43px;
}
.calculator__slider-item-title {
    color: #282828;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.calculator__slider-item-input-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.calculator__slider-item-input-box label {
    display: flex;
}
.calculator__slider-item-input {
    width: 0;
    overflow: hidden;
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
    background: transparent;
    border-bottom: 1px solid #bf1a1f;
    margin-right: unset;
}
.calculator__slider-item-input-box span {
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
    margin-right: 10px;
    overflow: hidden;
}
.hidden {
    display: none;
}
.header__logo img {
    max-width: 200px;
}
.calculator__slider-item-input-box svg {
    cursor: pointer;
}
.calculator__slider-item-input:focus {
    width: min-content;
    margin-right: 10px;
}
.calculator__slider-item-input:focus + span {
    width: 0;
    margin-right: unset;
}
.calculator__slider-item-input:focus ~ svg {
    width: 0;
}
.calculator__slider-item-currency-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.calculator__slider-item-currency {
    display: flex;
    padding: 4px 20px 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #f0f0f0;
    box-shadow: -1px 4px 8px 0 rgba(40, 40, 40, 0.05);
    color: #b4b4b4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    cursor: pointer;
}
.calculator__slider-item-currency.active {
    color: #f0f0f0;
    background: #bf1a1f;
}
.calculator__slider-item-currency:hover {
    color: #f0f0f0;
    background: #bf1a1f;
}
.calculator__slider-item-slider-box {
    width: 100%;
    position: relative;
}
.calculator__slider-item-slider {
    width: 100%;
}
.calculator__slider-item-slider-box div {
    position: absolute;
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
    top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.calculator__slider-item-slider-box div:first-child {
    left: 0;
}
.calculator__slider-item-slider-box div:last-child {
    right: 0;
}
.calculator__slider-item-slider-box span {
}

.calculator__results-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding-left: 20px;
    /*padding: 50px 50px 50px 20px;*/
    border-left: 3px solid #bf1a1f;
}
.calculator__results-title {
    color: #282828;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 50px;
}
.home-currency-calculate-box-note {
    width: 100%;
    text-align: start;
    color: #b4b4b4;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 147.023%;
    margin-top: 20px;
}
.calculator__results {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}
.calculator__result {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.calculator__result-description {
    color: #282828;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.calculator__result-values {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.18px;
}

.calculator__result-note {
    color: #282828;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 167.523%; /* 26.804px */
}

/* === range theme and appearance === */
input[type='range'] {
    font-size: 1.5rem;
}

input[type='range'] {
    color: #bf1a1f;
    --thumb-height: 20px;
    --track-height: 2px;
    --track-color: rgba(0, 0, 0, 0.2);
    --clip-edges: 0.125em;
}

input[type='range'].win10-thumb {
    color: #2b2d42;

    --thumb-height: 1.375em;
    --thumb-width: 0.5em;
    --clip-edges: 0.0125em;
}

/* === range commons === */
input[type='range'] {
    position: relative;
    background: #fff0;
    overflow: hidden;
}

input[type='range']:active {
    cursor: grabbing;
}

input[type='range']:disabled {
    filter: grayscale(1);
    opacity: 0.3;
    cursor: not-allowed;
}

/* === WebKit specific styles === */
input[type='range'],
input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}

input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
    position: relative;
}

input[type='range']::-webkit-slider-thumb {
    --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
    --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
    --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
    --clip-further: calc(100% + 1px);
    --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
        100vmax currentColor;

    width: var(--thumb-width, var(--thumb-height));
    background-color: currentColor;
    box-shadow: var(--box-fill);
    border-radius: var(--thumb-width, var(--thumb-height));

    filter: brightness(100%);
    clip-path: polygon(
        100% -1px,
        var(--clip-edges) -1px,
        0 var(--clip-top),
        -100vmax var(--clip-top),
        -100vmax var(--clip-bottom),
        0 var(--clip-bottom),
        var(--clip-edges) 100%,
        var(--clip-further) var(--clip-further)
    );
}

input[type='range']::-webkit-slider-runnable-track {
    background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
        100% calc(var(--track-height) + 1px);
}

input[type='range']:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
}

/* === Firefox specific styles === */
input[type='range'],
input[type='range']::-moz-range-track,
input[type='range']::-moz-range-thumb {
    appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}

input[type='range']::-moz-range-track,
input[type='range']::-moz-range-thumb,
input[type='range']::-moz-range-progress {
    background: #fff0;
}

input[type='range']::-moz-range-thumb {
    background: currentColor;
    border: 0;
    width: var(--thumb-width, var(--thumb-height));
    border-radius: var(--thumb-width, var(--thumb-height));
    cursor: grab;
}

input[type='range']:active::-moz-range-thumb {
    cursor: grabbing;
}

input[type='range']::-moz-range-track {
    width: 100%;
    background: var(--track-color);
}

input[type='range']::-moz-range-progress {
    appearance: none;
    background: currentColor;
    transition-delay: 30ms;
}

input[type='range']::-moz-range-track,
input[type='range']::-moz-range-progress {
    height: calc(var(--track-height) + 1px);
    border-radius: var(--track-height);
}

input[type='range']::-moz-range-thumb,
input[type='range']::-moz-range-progress {
    filter: brightness(100%);
}

input[type='range']:disabled::-moz-range-thumb {
    cursor: not-allowed;
}

/* Visa card */
.visa-card {
    color: #ffffff;
}
.visa-card_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}
.visa_card_block {
    position: relative;
}
.visa-card_info img {
    width: 100%;
}
.visa-card_info img:last-child {
    display: none;
}
.block-title.card_title {
    font-size: 32px;
}
.visa-card_title {
    font-weight: 400;
    font-size: 44px;
    line-height: 53.25px;
}
.visa-card_subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 26.8px;
    max-width: 830px;
}
.card-info {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.switch-box_card-info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
/* .switch-box_card-item {
    border-radius: 10px 10px 0 0;
    box-shadow: -1px 4px 10px 0 rgba(40, 40, 40, 0.01);
    color: #6E6E6E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%;
    padding: 20px 30px;
    cursor: pointer;

} */
.switch-box__header-item.card-item {
    color: #b4b4b4;
}
.switch-box__header-item.card-item.active {
    color: #ffffff;
    background-color: #282828;
}
.switch-box__body.card-body {
    background-color: #282828;
    padding: 30px 0;
}
.switch-box__body.card-body tr td {
    color: white;
    font-weight: 500;
    font-size: 14px;
    background-color: #d2d2d21a;
    padding: 16px 36px;
    width: 100%;
}
.switch-box__body.card-body tr td:last-child {
    border-left: 2px solid white;
    width: 50%;
}
.switch-box__body.card-body tr {
    display: flex;
    justify-content: space-between;
    border-bottom: none;
}
.currency-box__table.card-table {
    border: none;
    border-collapse: collapse;
}
tbody {
    /* display: flex; */
    flex-direction: column;
    gap: 20px;
}
.card-info_desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 40px 0;
}
.card-info_desc p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26.8px;
    font-style: italic;
    color: #6e6e6e;
}
.card-info_desc-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 26.8px;
    color: #ffffff;
}

/* Private perk */
.private-perk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.perk_title {
    font-weight: 500;
    font-size: 32px;
    line-height: 38.73px;
    color: #ffffff;
    padding-bottom: 80px;
}
.private_perk_content {
    display: flex;
    justify-content: center;
    position: relative;
}
.perk_main_text {
    position: absolute;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 23.52px;
    color: #ffffff;
    background-color: #bfa060;
    border-radius: 36px;
    text-align: center;
    width: 432px;
}
.perk_main_text:nth-child(3) {
    top: 122px;
    right: -210px;
}
.perk_main_text:nth-child(4) {
    top: 264px;
    left: -280px;
}
.perk_main_text:nth-child(5) {
    top: 372px;
    right: -210px;
}
.perk_main_text:nth-child(6) {
    top: 577px;
    left: -160px;
}
.perk_main_text:nth-child(7) {
    top: 635px;
    right: -160px;
}
.insurance_items {
    display: flex;
    gap: 17px;
    justify-content: center;
}
.insurance_item {
    display: flex;
    flex-direction: column;
    width: 302px;
    height: 470px;
    border-radius: 10px;
    overflow: hidden;
}
.insurance_img {
    width: 100%;
    height: 168px;
    overflow: hidden;
    object-fit: cover;
}
.insurance_item_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 22px 40px 22px;
    background-color: #282828;
    border-radius: 10px;
}
.insurance_item_content img {
    width: 30px;
    height: 30px;
}
.insurance_item_title {
    font-weight: 700;
    font-size: 18px;
    line-height: 21.78px;
    color: #d3b474;
}
.insurance_item_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20.58px;
    color: #ffffff;
}

.swiper-slide {
    margin: 0 !important;
    display: flex !important;
}

.container {
    max-width: 1280px;
    margin: auto;
}

.private_perk_content img:nth-child(2) {
    display: none;
}

/* adaptive */
.mobile-header__logo img {
    width: 150px;
}
.select_another {
    width: 100%;
}
.select_another_page {
    width: 100%;
}
blockquote {
    background: #f4f4f4;
    padding: 35px;
    color: #282828;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 167.523%;
    border-left: 4px solid #bf1a1f;
    margin-left: 80px;
}


@media screen and (max-width: 920px) {
    .mobile-header {
        display: flex;
    }
    .header {
        display: none;
    }

    .settings {

    }
}

@media screen and (max-width: 920px) {
    .mobile-header {
        display: flex;
    }
    .header {
        display: none;
    }
    body {
        padding-top: 93px;
    }

    .settings {
       padding: 20px 12px;
    }

    .settings-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

    .settings-row__item {
      align-items: flex-start;
    }

    .settings-btn {
      text-align: start;
      padding: 10px 15px;
    }

    .settings-row__content {
      width: 100%;
      flex-wrap: wrap;
    }
}

@media screen and (max-width: 730px) {
    .quick-link-button.default-modal__show-button {
        display: flex !important;
    }
    .home-calculate-box .switch-box__header-item {
        width: auto !important;
    }
    .single-td {
        display: table !important;
    }
    .default-modal__container {
        padding: 40px;
    }
    .switch-box_currency {
        min-width: 0;
    }
    #index-page .switch-box__header-item,
    .header .switch-box__header-item {
        width: 25%;
        min-width: 20px;
    }
    .switch-box__header-item.active {
        font-size: 14px;
        text-overflow: ellipsis;
        flex-shrink: 1;
    }
    body {
        min-width: 390px;
    }
    .default-wrapper {
        padding: 0 20px;
    }
    .quick-link-buttons {
        top: calc(50% - 131px);
        right: 10px;
    }
    .quick-link-buttons.centered {
        top: 178px;
    }
    .quick-link-button {
        padding: 7px;
    }
    .quick-link_box {
        max-width: 350px;
    }

    /* titles */

    .block-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
    }
    .page-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: 36px;
    }

    /* footer */

    .footer__search-box {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
    }
    .footer__search-button {
        display: none;
    }
    .footer__contacts-box {
        flex-direction: column-reverse;
        gap: 70px;
    }
    .footer__link-box {
        flex-direction: column;
        gap: 23px;
    }
    .footer__links_contacts,
    .footer__links {
        max-width: unset;
    }
    .footer__links_contacts-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer__links-title {
        margin-bottom: 15px;
        width: 100%;
        position: relative;
    }
    .footer__links .footer__links-title:after {
        position: absolute;
        content: url("../images/arrow-down.044300375b1e.svg");
        right: 0;
        top: 0;
    }
    .footer__links .footer__links-wrapper {
        display: none;
    }
    .footer__links-title.active:after {
        transform: rotate(180deg);
    }
    .footer__sub-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer__sub-bar-link {
        border: none;
        padding: unset;
    }

    /* brief-info */

    .brief-info__container {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 40px;
        /*grid-column-gap: 40px;*/
    }
    .brief-info__container .brief-info__item:nth-child(2) {
        padding-right: unset;
        border-right: unset;
    }
    .brief-info__container .brief-info__item:nth-child(3) {
        padding-left: unset;
        border-left: unset;
    }
    .brief-info__item {
        padding: 0 15px;
        gap: 15px;
    }

    /* switch box */

    .switch-box__header-item,
    .switch-box__header-item__currency {
        padding: 14px;
    }
    .switch-box__body {
        padding: 20px;
    }

    /* breadcrumbs */

    .breadcrumbs {
        margin-bottom: 10px;
    }
    .breadcrumbs__item {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }

    /* news */

    .news-item-container {
        max-width: unset;
        padding: 24px 24px 88px 24px;
    }

    .news-item__button-box {
        left: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
    }

    .news-item__title {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        flex-shrink: 0;
        margin-bottom: 15px;
    }
    .news-item__text {
        font-size: 12px;
        font-style: normal;
        margin-bottom: 0;
    }

    .news-block__items {
        grid-template-columns: 1fr;
    }
    .news-block .default-wrapper {
        padding: 0;
    }
    .news-block__title-wrapper {
        padding: 0 20px;
    }
    .news-block .slick-list {
        padding: 0 15px !important;
    }
    .news-block__container {
        gap: 40px;
    }
    .news-block__items {
        display: flex;
        gap: 10px;
        overflow: hidden;
    }
    .news-item {
        height: 216px;
        margin: 0 5px;
    }

    /* default-modal */

    .default-modal__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: 30px;
    }
    .default-modal__show-button {
        display: none;
    }
    .mobile-form {
        display: flex;
    }

    /* submit buttons */

    .submit-orange-button {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        padding: 12px 14px;
    }
    .submit-white-button {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        padding: 12px 14px;
    }

    /* default table */

    .default-table {
        display: none;
    }

    .page-data-download-link {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 147.023%; /* 20.583px */
    }

    /* questions */

    .questions__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
    }
    .question__body-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }

    /*   calculator */

    .calculator {
        gap: 40px;
    }
    .calculator__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
    }
    .calculator__container {
        flex-direction: column;
    }
    .calculator__slider-box {
        padding: 20px 20px 40px 20px;
    }
    .calculator__slider-item-title {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
    }
    .calculator__slider-item-input,
    .calculator__slider-item-input-box span {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
    }
    .calculator__slider-item {
        gap: 20px;
    }
    .calculator__result-description {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
    }
    .calculator__result-values {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
    }
}

.table__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.table__links .note {
    font-size: 14px;
}

.insurance {
    width: 100%;
}
