@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Light"), local("Segoe-UI-Light"), url("../../fonts/SegoeUI-Light.woff2") format("woff2"), url("../../fonts/SegoeUI-Light.woff") format("woff"), url("../../fonts/SegoeUI-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI SemiBold"), local("Segoe-UI-SemiBold"), url("../../fonts/SegoeUI-SemiBold.woff2") format("woff2"), url("../../fonts/SegoeUI-SemiBold.woff") format("woff"), url("../../fonts/SegoeUI-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Bold"), local("Segoe-UI-Bold"), url("../../fonts/SegoeUI-Bold.woff2") format("woff2"), url("../../fonts/SegoeUI-Bold.woff") format("woff"), url("../../fonts/SegoeUI-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  font-size: inherit;
  font-weight: inherit;
  padding: 0;
  margin: 0;
}

nav,
header,
main,
section,
aside,
footer {
  display: block;
  width: 100%;
}

[hidden] {
  display: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button:focus-visible {
  border: none;
  outline: none;
}

a:hover,
a:not(:hover),
button:hover,
button:not(:hover) {
  transition: all ease-out 0.4s;
}

input[type=text],
input[type=submit],
textarea {
  -webkit-appearance: none;
}

a,
label,
button,
div {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

input {
  background: none;
  box-shadow: none;
  outline: none;
}

html,
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  line-height: 120%;
  width: 100%;
  min-height: 100%;
  min-width: 360px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.8);
  background: #F6F7F8;
  position: relative;
  outline: none;
  -webkit-text-size-adjust: none;
}

.container {
  max-width: 1178px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 1199.98px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    padding: 0 15px;
  }
}

.disabled {
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 16, 36, 0.1215686275);
}
.header.is-menu-open {
  border-bottom-color: rgba(0, 16, 36, 0.12);
}
.header.is-menu-open .header__burger span {
  opacity: 0;
}
.header.is-menu-open .header__burger::before {
  transform: translateY(6px) translateX(-50%) rotate(45deg);
}
.header.is-menu-open .header__burger::after {
  transform: translateY(-6px) translateX(-50%) rotate(-45deg);
}
.header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.header__logo img {
  display: block;
  width: 83px;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}
.header__nav a {
  font-size: 15px;
  line-height: 160%;
  color: #333333;
  text-decoration: none;
  padding: 4px 10px;
}
.header__nav a:hover {
  color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #E2AA00;
}
.header__nav a:hover, .header__nav a:not(:hover) {
  transition: all;
}
.header__burger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #F6F7F8;
  cursor: pointer;
}
.header__burger span, .header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 21px;
  height: 2px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.header__burger span {
  top: 17px;
}
.header__burger::before {
  top: 11px;
}
.header__burger::after {
  top: 23px;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 991.98px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .mobile-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1001;
    display: block;
    padding: 40px 25px 15px;
    background: #FFFFFF;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: 0.3s ease;
  }
  .mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu__nav {
    display: grid;
    gap: 20px;
    margin-bottom: 36px;
  }
  .mobile-menu__nav a {
    font-size: 16px;
    line-height: 120%;
    color: #333333;
    text-decoration: none;
  }
  .mobile-menu__all {
    width: 100%;
    border-radius: 12px;
    padding: 15px 15px 15px 20px;
    min-height: 38px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    outline: none;
    background: #e4d7c1;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 400;
    line-height: 133%;
    text-align: center;
    color: #333333;
    text-decoration: none;
  }
  .mobile-menu__all span {
    width: 32px;
    height: 24px;
    background: url("../../img/arrow-right.webp") center top/contain no-repeat;
  }
  .mobile-menu__all:hover, .mobile-menu__all:focus {
    background: #FFFFFF;
    filter: brightness(0.9);
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    pointer-events: auto;
  }
}
@media screen and (max-width: 575.98px) {
  .mobile-menu {
    padding: 40px 15px 15px;
  }
}
.hero {
  padding: 60px 0 20px;
  background: radial-gradient(circle at 15% 10%, rgba(204, 207, 245, 0.7), transparent 35%), radial-gradient(circle at 85% 10%, rgba(245, 204, 215, 0.7), transparent 35%), #EAECEE;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__content {
  max-width: 940px;
  margin-bottom: 40px;
  text-align: center;
  order: 1;
}
.hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}
.hero__text {
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 40px;
}
.hero__btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  padding: 10px;
  min-width: 220px;
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: #FFDD2D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  text-align: center;
  color: #333333;
}
.hero__btn:hover, .hero__btn:focus {
  background: #FFCD33;
  color: #333333;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.hero__btn.disabled, .hero__btn[disabled] {
  background: #9299A2;
  color: #F6F7F8;
  pointer-events: none;
}
.hero__picture {
  width: 100%;
  display: block;
  order: 2;
  margin-bottom: 40px;
}
.hero__picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.hero__categories {
  order: 3;
  width: 100%;
  padding: 0 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.hero-category {
  width: auto;
  min-height: 138px;
  padding: 8px;
  border: 1px solid #E1E3E4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.hero-category:hover {
  border-color: #FFDD2D;
  background: #FFFFFF;
}
.hero-category img {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-category span {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: #000000;
  opacity: 0.68;
}
.hero-category--all {
  flex-direction: column-reverse;
}
.hero-category--all i {
  border-radius: 20px;
  width: 72px;
  height: 72px;
  background: url("../../img/arrow-right.webp") center/32px 24px no-repeat #e8dcc2;
}

@media screen and (max-width: 991.98px) {
  .hero__categories {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .hero {
    padding: 15px 0 20px;
  }
  .hero__picture {
    order: 1;
    margin-bottom: 20px;
  }
  .hero__content {
    order: 2;
  }
  .hero__title {
    margin-bottom: 10px;
    font-size: 9.07vw;
  }
  .hero__title br {
    display: none;
  }
  .hero__text {
    margin-bottom: 20px;
    font-size: 4.8vw;
    line-height: 145%;
  }
  .hero__categories {
    width: 100%;
    order: 3;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero-category {
    width: auto;
    min-height: 120px;
    padding: 0 6px 8px 6px;
  }
  .hero-category--all {
    grid-column: 1/-1;
    min-height: 56px;
    padding: 12px 16px;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    border: 0;
    background: #e4d7c1;
  }
  .hero-category--all span {
    font-size: 13px;
    flex-shrink: 0;
  }
  .hero-category--all span br {
    display: none;
  }
  .hero-category--all i {
    width: 32px;
    height: 24px;
    border-radius: 0;
    background: url("../../img/arrow-right.webp") center/32px 24px no-repeat;
  }
  .hero-category--all:hover, .hero-category--all:focus {
    background: #e4d7c1;
    border-color: initial;
    filter: brightness(0.9);
  }
}
.hero-article {
  padding: 40px 0 40px;
}
.hero-article__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.hero-article__top {
  display: block;
  max-width: 920px;
  text-align: center;
}
.hero-article__content {
  max-width: 520px;
}
.hero-article__title {
  margin-bottom: 10px;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}
.hero-article__subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #E2AA00;
}
.hero-article__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 0 70px;
}

@media screen and (max-width: 991.98px) {
  .hero-article__title br, .hero-article__subtitle br {
    display: none;
  }
  .hero-article__categories {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .hero-article {
    padding: 15px 0 20px;
    background: radial-gradient(circle at 0% 0%, rgba(204, 207, 245, 0.7), transparent 45%), radial-gradient(circle at 100% 0%, rgba(245, 204, 215, 0.7), transparent 45%), #EAECEE;
  }
  .hero-article__inner {
    gap: 20px;
  }
  .hero-article__content {
    display: contents;
    max-width: none;
  }
  .hero-article__title {
    font-size: 6.4vw;
  }
  .hero-article__subtitle {
    font-size: 4.3vw;
  }
  .hero-article__categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.hero-additional {
  padding: 40px 0 40px;
}
.hero-additional__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.hero-additional__top {
  display: grid;
  grid-template-columns: 1fr 455px;
  align-items: center;
  gap: 40px;
}
.hero-additional__content {
  max-width: 520px;
}
.hero-additional__title {
  margin-bottom: 10px;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
}
.hero-additional__subtitle {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #E2AA00;
}
.hero-additional__text {
  max-width: 450px;
  margin: 0;
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
.hero-additional__img {
  display: block;
  width: 100%;
  height: auto;
  justify-self: center;
}
.hero-additional__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 0 70px;
}

@media screen and (max-width: 991.98px) {
  .hero-additional__top {
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }
  .hero-additional__title br {
    display: none;
  }
  .hero-additional__categories {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .hero-additional {
    padding: 15px 0 20px;
    background: radial-gradient(circle at 0% 0%, rgba(204, 207, 245, 0.7), transparent 45%), radial-gradient(circle at 100% 0%, rgba(245, 204, 215, 0.7), transparent 45%), #EAECEE;
  }
  .hero-additional__inner {
    gap: 20px;
  }
  .hero-additional__top {
    display: grid;
    grid-template-columns: 76px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 5px;
    align-items: center;
  }
  .hero-additional__content {
    display: contents;
    max-width: none;
  }
  .hero-additional__img {
    grid-column: 1;
    grid-row: 1/3;
    width: 76px;
    justify-self: start;
  }
  .hero-additional__title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 32px;
  }
  .hero-additional__subtitle {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 20px;
  }
  .hero-additional__text {
    grid-column: 1/-1;
    margin: 0;
    max-width: none;
    font-size: 15px;
  }
  .hero-additional__categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.loan-selection {
  padding: 20px 0 40px;
  background: #EAECEE;
}
.loan-selection__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 40px;
}
.loan-selection__tabs {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(36, 74, 127, 0.0588235294);
  display: flex;
  align-items: center;
}
.loan-selection__tabs--mob {
  display: none;
}
.loan-selection__tab {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 15px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.loan-selection__tab.is-active {
  background: #FFFFFF;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.loan-selection__card {
  display: grid;
  grid-template-columns: 384px 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.21);
  border-top: 5px solid #333333;
}
.loan-selection__aside {
  padding: 40px 22px 32px;
  background: #E2E8F0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.loan-selection__aside::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 167px;
  background: url("../../img/dots.svg");
}
.loan-selection__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.loan-selection__info {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 16px;
  background: #F6F7F8;
}
.loan-selection__info h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
}
.loan-selection__info p {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.7019607843);
  margin: 0;
}
.loan-selection__content {
  padding: 50px 96px 40px;
  background: #FFFFFF;
}
.loan-selection__form-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.8);
}
.loan-selection__progress {
  margin-bottom: 18px;
}
.loan-selection__progress-head {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loan-selection__progress-head span,
.loan-selection__progress-head strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
}
.loan-selection__progress-head strong {
  font-size: 18px;
  line-height: 129%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.loan-selection__progress-line {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 16, 36, 0.0588235294);
}
.loan-selection__progress-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #428BF9;
  transition: width 0.3s ease;
}
.loan-selection__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.loan-selection__fields > .loan-selection__field:nth-child(1), .loan-selection__fields > .loan-selection__field:nth-child(2),
.loan-selection__fields > .loan-selection__field-wrap:nth-child(1),
.loan-selection__fields > .loan-selection__field-wrap:nth-child(2) {
  grid-column: 1/-1;
}
.loan-selection__field-wrap {
  position: relative;
  display: block;
}
.loan-selection__field {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  outline: none;
  background: rgba(36, 74, 127, 0.0588235294);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #333333;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.loan-selection__field::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54);
}
.loan-selection__field::placeholder {
  color: rgba(0, 0, 0, 0.54);
}
.loan-selection__field.is-error {
  box-shadow: inset 0 0 0 1px #ff0003;
}
.loan-selection input[type=date] {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  height: 56px;
  line-height: 56px;
  padding: 0 16px;
}
.loan-selection input[type=date]::-webkit-date-and-time-value {
  min-height: 56px;
  height: 56px;
  line-height: 56px;
  text-align: left;
}
.loan-selection input[type=date]::-webkit-calendar-picker-indicator {
  margin: 0;
}
@supports (-webkit-touch-callout: none) {
  .loan-selection input[type=date]:invalid::before {
    content: "дд.мм.гггг";
    color: rgba(0, 0, 0, 0.54);
  }
  .loan-selection input[type=date]:focus::before,
  .loan-selection input[type=date]:valid::before {
    content: "";
  }
}
.loan-selection select.loan-selection__field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  background: url("../../img/chevron-down.svg") right 20px center/17px 9px no-repeat, #f0f2f5;
}
.loan-selection__bonus {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  background: #00b83f;
  font-size: 11px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.loan-selection__bonus.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loan-selection__history {
  margin-top: 110px;
}
.loan-selection__history p {
  font-size: 15px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.loan-selection__radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.loan-selection__radio {
  position: relative;
  cursor: pointer;
}
.loan-selection__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.loan-selection__radio span {
  height: 56px;
  padding: 0 40px 0 14px;
  border: 1px solid #E1E3E4;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 120%;
  color: #333333;
}
.loan-selection__radio span::after {
  content: "";
  position: absolute;
  right: 29px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eef1f5;
}
.loan-selection__radio span::before {
  content: "";
  position: absolute;
  right: 35px;
  top: 50%;
  z-index: 1;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) scale(0);
  border-radius: 50%;
  background: #333333;
  transition: 0.2s ease;
}
.loan-selection__radio input:checked + span::after {
  background: #ffd426;
}
.loan-selection__radio input:checked + span::before {
  transform: translateY(-50%) scale(1);
}
.loan-selection__bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 139, 139, 0.2);
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 28px;
}
.loan-selection__bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
}
.loan-selection__bottom p span {
  color: #126DF7;
}
.loan-selection__bottom p a {
  color: #126DF7;
}
.loan-selection__bottom p a:hover {
  text-decoration: underline;
}
.loan-selection__submit {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  padding: 10px;
  min-width: 220px;
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: #FFDD2D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  text-align: center;
  color: #333333;
  cursor: pointer;
}
.loan-selection__submit:hover, .loan-selection__submit:focus {
  background: #FFCD33;
  color: #333333;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.loan-selection__submit.disabled, .loan-selection__submit[disabled] {
  background: #9299A2;
  color: #F6F7F8;
  pointer-events: none;
}

@media screen and (max-width: 1199.98px) {
  .loan-selection__content {
    padding: 40px;
  }
}
@media screen and (max-width: 991.98px) {
  .loan-selection__card {
    grid-template-columns: 300px 1fr;
  }
  .loan-selection__bottom {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767.98px) {
  .loan-selection .container {
    padding: 0;
  }
  .loan-selection__title {
    margin: 0 auto 30px;
    font-size: 6.4vw;
  }
  .loan-selection__tabs {
    max-width: 100%;
    margin-bottom: 25px;
    padding: 2px;
  }
  .loan-selection__tabs--pc {
    display: none;
  }
  .loan-selection__tabs--mob {
    display: block;
  }
  .loan-selection__tab {
    padding: 8px;
  }
  .loan-selection__card {
    display: flex;
    flex-direction: column;
  }
  .loan-selection__aside {
    padding: 32px 16px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
  .loan-selection__aside::after {
    height: 164px;
  }
  .loan-selection__img {
    display: none;
  }
  .loan-selection__info h3 {
    position: relative;
    padding-left: 40px;
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .loan-selection__info h3::after {
    content: "";
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
    background: url("../../img/loan-selection-img.webp") top center/contain no-repeat;
    position: absolute;
  }
  .loan-selection__content {
    padding: 20px 15px 8px;
  }
  .loan-selection__form-title {
    margin-bottom: 20px;
  }
  .loan-selection__fields {
    grid-template-columns: 1fr;
  }
  .loan-selection__fields > .loan-selection__field,
  .loan-selection__fields > .loan-selection__field-wrap {
    grid-column: auto;
  }
  .loan-selection__radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .loan-selection__history {
    margin-top: 30px;
  }
  .loan-selection__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .loan-selection__bottom p {
    order: 2;
    text-align: center;
  }
  .loan-selection__submit {
    order: 1;
    width: 100%;
  }
}
.recommendations {
  padding: 40px 0;
}
.recommendations__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  text-align: center;
  margin-bottom: 40px;
}
.recommendations-cards__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.recommendations-cards__btn-all {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  min-width: 160px;
  min-height: 44px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 16, 36, 0.1215686275);
  outline: none;
  background: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 133%;
  text-align: center;
  color: #126DF7;
}
.recommendations-cards__btn-all:hover, .recommendations-cards__btn-all:focus {
  background: #FFFFFF;
  color: rgba(0, 0, 0, 0.8);
}
.recommendations .recommendations-card {
  border-radius: 24px;
  padding: 20px;
  min-height: 332px;
  background: #E2E8F0;
  color: rgba(0, 0, 0, 0.8);
}
.recommendations .recommendations-card:hover, .recommendations .recommendations-card:focus {
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.21);
}
.recommendations .recommendations-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 126%;
  text-align: center;
  margin-bottom: 10px;
}
.recommendations .recommendations-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  margin-bottom: 15px;
}
.recommendations .recommendations-card__img {
  width: 100%;
  max-width: 234px;
  aspect-ratio: 234/153;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto;
}
.recommendations .recommendations-card__select {
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  max-width: 160px;
  display: block;
  background: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 133%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .recommendations__title {
    font-size: 6.4vw;
  }
  .recommendations-cards__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.reviews {
  padding: 40px 0;
  background: #EAECEE;
  overflow: hidden;
}
.reviews__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  text-align: center;
  margin-bottom: 40px;
}
.reviews__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.reviews__nav {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.reviews__prev, .reviews__next {
  width: 48px;
  height: 48px;
  font-size: 20px;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.8);
  border: 0;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  transition: 0.3s;
}
.reviews__prev:hover, .reviews__next:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.21);
}
.reviews__prev.swiper-button-disabled, .reviews__next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}
.reviews__slider {
  overflow: visible;
}
.reviews__content {
  align-items: stretch;
}
.reviews__item {
  width: calc((100% - 40px) / 3);
  height: auto;
}
.reviews__stage {
  position: relative;
}
.reviews__stage:has(.reviews-loader) .reviews__slider {
  display: none;
}
.reviews__item--template {
  display: none !important;
}
.reviews-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.reviews-loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(51, 111, 238, 0.2);
  border-top-color: #336FEE;
  border-radius: 50%;
  animation: reviews-loader-spin 0.8s linear infinite;
}
@keyframes reviews-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.review-card {
  min-height: 286px;
  padding: 20px;
  border-radius: 24px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.review-card__logo {
  width: auto;
  height: 32px;
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  margin-bottom: 20px;
}
.review-card__name {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  color: #333333;
}
.review-card__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("../../img/review-user-icon.svg") center/contain no-repeat;
}
.review-card__text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
}
.review-card__link {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.3;
  color: #126DF7;
  text-decoration: none;
}
.review-card__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991.98px) {
  .reviews__item {
    width: calc((100% - 40px) / 2);
    height: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .reviews__head {
    flex-direction: column;
    gap: 20px;
  }
  .reviews__nav {
    justify-content: center;
  }
  .reviews__title {
    font-size: 6.4vw;
    margin-bottom: 30px;
  }
  .reviews__item {
    width: 376px;
    max-width: calc(100vw - 40px);
  }
}
.rating {
  padding: 40px 0;
  background: #EAECEE;
}
.rating__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  margin-bottom: 60px;
}
.rating__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 20px;
}
.rating__decor {
  width: auto;
  height: 76px;
  max-width: 81px;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.rating__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.rating__sort-text {
  font-size: 14px;
  line-height: 130%;
  color: rgba(146, 153, 162, 0.6);
}
.rating__sort-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.rating__sort.is-asc .rating__sort-icon {
  transform: rotate(180deg);
}
.rating__list {
  display: grid;
  gap: 20px;
}
.rating__item {
  min-height: 73px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
}
.rating__logo {
  max-width: 120px;
  max-height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.rating__logo:not([src]),
.rating__logo[src=""] {
  visibility: hidden;
}
.rating__value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #336FEE;
}
.rating__value:empty {
  display: none;
}
.rating__value::before {
  content: "";
  width: 33px;
  height: 32px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("../../img/star.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/star.svg") center/contain no-repeat;
}
.rating__all {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  min-width: 160px;
  min-height: 44px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 16, 36, 0.1215686275);
  outline: none;
  background: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 133%;
  text-align: center;
  color: #126DF7;
}
.rating__all:hover, .rating__all:focus {
  background: #FFFFFF;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767.98px) {
  .rating__title {
    margin-bottom: 20px;
    font-size: 6.4vw;
  }
  .rating__head {
    margin-bottom: 10px;
  }
  .rating__sort {
    position: static;
  }
}

.credit-consultant {
  padding: 40px 0;
}
.credit-consultant__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.credit-consultant__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 60px;
  color: rgba(0, 0, 0, 0.8);
}
.credit-consultant__subtitle a {
  color: #126DF7;
  text-decoration: none;
}
.credit-consultant__subtitle a:hover {
  text-decoration: underline;
}
.credit-consultant__card {
  max-width: 936px;
  margin: 0 auto;
  padding: 40px 32px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 24px;
  background: linear-gradient(90deg, #dfe5f7 0%, #e2e8f0 50%, #eadce8 100%);
  overflow: hidden;
}
.credit-consultant__content {
  max-width: 460px;
  flex-shrink: 0;
}
.credit-consultant__icon {
  max-width: 120px;
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  display: block;
  margin-bottom: 20px;
}
.credit-consultant__head {
  margin-bottom: 20px;
}
.credit-consultant__card-title {
  font-size: 34px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.8);
}
.credit-consultant__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  color: rgba(0, 0, 0, 0.8);
}
.credit-consultant__notice {
  margin-bottom: 40px;
  padding: 16px;
  border-radius: 16px;
  background: #F6F7F8;
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.7019607843);
}
.credit-consultant__btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  min-width: 188px;
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #336FEE;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 133%;
  text-align: center;
  color: #FFFFFF;
}
.credit-consultant__btn:hover, .credit-consultant__btn:focus {
  filter: brightness(0.9);
}
.credit-consultant__picture {
  align-self: flex-end;
  margin-bottom: -40px;
}
.credit-consultant__picture img {
  display: block;
  width: 100%;
  max-width: 400px;
  max-height: 451px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media screen and (max-width: 991.98px) {
  .credit-consultant__card {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .credit-consultant__picture {
    align-self: center;
  }
  .credit-consultant__content {
    max-width: 100%;
  }
  .credit-consultant__head {
    display: grid;
    grid-template-columns: 80px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: flex-start;
  }
  .credit-consultant__card-title {
    margin-bottom: 0;
  }
  .credit-consultant__icon {
    width: 80px;
    height: 80px;
    grid-row: 1/3;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .credit-consultant__title {
    font-size: 6.4vw;
  }
  .credit-consultant__subtitle {
    font-size: 4vw;
    margin-bottom: 40px;
  }
  .credit-consultant__card {
    padding: 16px 16px 0;
  }
  .credit-consultant__head {
    grid-template-columns: 46px 1fr;
  }
  .credit-consultant__icon {
    width: 46px;
    height: 46px;
    margin: 0;
  }
  .credit-consultant__card-title {
    font-size: 22px;
  }
  .credit-consultant__text {
    font-size: 15px;
  }
  .credit-consultant__notice {
    margin-bottom: 20px;
    padding: 12px;
  }
  .credit-consultant__picture img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.top-offers {
  padding: 100px 0 40px 0;
}
.top-offers__inner {
  padding: 20px 32px;
  border-top: 5px solid #333333;
  border-radius: 24px;
  background: #E2E8F0;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.21);
}
.top-offers__head {
  min-height: 88px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #F6F7F8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-offers__head-icon {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.top-offers__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #E2AA00;
}
.top-offers__list {
  display: grid;
  gap: 10px;
}

.top-offer-card {
  padding: 20px;
  border-radius: 24px;
  background: #FFFFFF;
  position: relative;
}
.top-offer-card__inner {
  min-height: 250px;
  padding: 24px 28px;
  border: 1px solid #E1E3E4;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  gap: 20px;
  align-items: start;
}
.top-offer-card__label {
  position: relative;
  padding-left: 34px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: #E2AA00;
}
.top-offer-card__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url("../../img/top-offers-icon.svg") center/contain no-repeat;
}
.top-offer-card__logo-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  margin-bottom: 28px;
}
.top-offer-card__logo {
  display: block;
  max-width: 190px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.top-offer-card__rating {
  display: grid;
  gap: 6px;
}
.top-offer-card__rating-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
}
.top-offer-card__rating-row::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
}
.top-offer-card__rating-row--star {
  color: #336FEE;
}
.top-offer-card__rating-row--star::before {
  mask: url("../../img/star.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/star.svg") center/contain no-repeat;
}
.top-offer-card__rating-row--reviews {
  color: #E2AA00;
}
.top-offer-card__rating-row--reviews::before {
  mask: url("../../img/review-user-icon.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/review-user-icon.svg") center/contain no-repeat;
}
.top-offer-card__rating-row span {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(146, 153, 162, 0.6);
}
.top-offer-card__rating-row a {
  font-size: 16px;
  font-weight: 600;
  color: #126DF7;
  text-decoration: underline;
}
.top-offer-card__rating-row a:empty {
  visibility: hidden;
}
.top-offer-card__rating-row a:hover {
  text-decoration: none;
}
.top-offer-card__params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 15px;
}
.top-offer-card__param--full {
  grid-column: 1/-1;
}
.top-offer-card__param--full.is-hidden {
  display: none;
}
.top-offer-card__param-top {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: #333333;
}
.top-offer-card__param-top span {
  font-size: 22px;
  line-height: 120%;
}
.top-offer-card__param-about {
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.04em;
  color: #9299A2;
}
.top-offer-card__right {
  display: grid;
  justify-items: end;
  gap: 20px;
}
.top-offer-card__btn {
  width: 100%;
  max-width: 260px;
  min-height: 56px;
  padding: 10px;
  border-radius: 12px;
  background: #FFDD2D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  color: #333333;
  text-decoration: none;
}
.top-offer-card__btn:hover, .top-offer-card__btn:focus {
  background: #FFCD33;
  color: #333333;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.top-offer-card__btn.disabled, .top-offer-card__btn[disabled] {
  background: #9299A2;
  color: #F6F7F8;
  pointer-events: none;
}
.top-offer-card__more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.04em;
  color: rgba(146, 153, 162, 0.6);
  cursor: pointer;
}
.top-offer-card__more span {
  width: 14px;
  height: 8px;
  background: currentColor;
  mask: url("../../img/chevron-down.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/chevron-down.svg") center/contain no-repeat;
}
.top-offer-card__links {
  display: flex;
  gap: 20px;
  margin-top: auto;
  position: absolute;
  bottom: 55px;
}
.top-offer-card__links a {
  font-size: 13px;
  line-height: 120%;
  color: #336FEE;
  text-decoration: none;
}
.top-offer-card__links a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  mask: url("../../img/link.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/link.svg") center/contain no-repeat;
}
.top-offer-card__details {
  display: none;
  grid-column: 1/-1;
}
.top-offer-card__notice {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 221, 45, 0.1);
}
.top-offer-card__notice h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #E2AA00;
}
.top-offer-card__notice strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #00B92D;
}
.top-offer-card__notice p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
}
.top-offer-card__notice p span {
  font-weight: 600;
}
.top-offer-card__details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.top-offer-card__details-grid h4 {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #202020;
}
.top-offer-card__details-grid p {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: #333333;
}
.top-offer-card__details-link {
  font-size: 15px;
  line-height: 120%;
  color: #336FEE;
  text-decoration: underline;
}
.top-offer-card__details-link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  mask: url("../../img/link.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/link.svg") center/contain no-repeat;
}
.top-offer-card__param--bottom {
  margin-top: 20px;
}
.top-offer-card.is-open .top-offer-card__details {
  display: block;
}
.top-offer-card.is-open .top-offer-card__more span {
  transform: rotate(180deg);
}

@media screen and (max-width: 991.98px) {
  .top-offer-card__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .top-offer-card__links {
    bottom: 0;
    position: relative;
  }
  .top-offer-card__details-grid {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .top-offers {
    padding: 40px 0;
  }
  .top-offers .container {
    padding: 0;
  }
  .top-offers__inner {
    padding: 20px 16px;
  }
  .top-offers__head {
    min-height: 56px;
    padding: 12px 16px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .top-offers__head-icon {
    width: 28px;
    height: 28px;
  }
  .top-offers__title {
    font-size: 24px;
  }
  .top-offers__list {
    gap: 10px;
  }
  .top-offer-card {
    padding: 10px;
    border-radius: 12px;
  }
  .top-offer-card__inner {
    padding: 10px;
    border-radius: 12px;
  }
  .top-offer-card__logo {
    margin-bottom: 10px;
  }
  .top-offer-card__rating {
    margin-bottom: 4px;
  }
  .top-offer-card__params {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
  .top-offer-card__param-top span {
    font-size: 18px;
  }
  .top-offer-card__right {
    justify-items: stretch;
    gap: 10px;
  }
  .top-offer-card__btn {
    max-width: 100%;
  }
  .top-offer-card__more {
    justify-content: center;
  }
  .top-offer-card__links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .top-offer-card__details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .top-offer-card__params {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offers {
  padding: 40px 0;
}
.offers__head {
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.offers__title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
}
.offers__text {
  max-width: 680px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.04em;
  color: #202020;
}
.offers__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.offers__sort-text {
  font-size: 18px;
  line-height: 130%;
  color: rgba(146, 153, 162, 0.6);
}
.offers__sort-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.offers__sort.is-asc .offers__sort-icon {
  transform: rotate(180deg);
}
.offers__list {
  margin: 0 auto;
  border-radius: 24px;
  background: #FFFFFF;
  overflow: hidden;
}
.offers__list > :last-child::after {
  display: none;
}
.offers__all {
  width: auto;
  min-height: 56px;
  padding: 12px 16px 12px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 auto;
  margin-top: 20px;
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 344px;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  color: #333333;
  background: #e4d7c1;
}
.offers__all span {
  font-size: 13px;
  flex-shrink: 0;
}
.offers__all span br {
  display: none;
}
.offers__all i {
  width: 32px;
  height: 24px;
  border-radius: 0;
  background: url("../../img/arrow-right.webp") center/32px 24px no-repeat;
}
.offers__all:hover, .offers__all:focus {
  background: #e4d7c1;
  border-color: initial;
  filter: brightness(0.9);
}

.offer-card {
  padding: 20px;
  background: #FFFFFF;
  position: relative;
}
.offer-card::after {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background: #747B8F;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  position: absolute;
}
.offer-card:has(+ .offers-form)::after, .offer-card:has(+ .offers-consultant)::after {
  display: none;
}
.offer-card__top {
  display: grid;
  grid-template-columns: 168px 1fr 260px;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}
.offer-card__label {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: #00B92D;
}
.offer-card__logo-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.offer-card__logo {
  display: block;
  max-width: 100%;
  max-height: 86px;
  padding: 20px 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.offer-card__badges {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 30px;
}
.offer-card__badges span {
  position: relative;
  padding-left: 34px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: #E2AA00;
}
.offer-card__badges span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 19px;
  background: url("../../img/shield-yellow.svg") center/contain no-repeat;
}
.offer-card__rating {
  display: grid;
  gap: 5px;
}
.offer-card__rating-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
}
.offer-card__rating-row::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
}
.offer-card__rating-row--star {
  color: #336FEE;
}
.offer-card__rating-row--star::before {
  mask: url("../../img/star.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/star.svg") center/contain no-repeat;
}
.offer-card__rating-row--reviews {
  color: #E2AA00;
}
.offer-card__rating-row--reviews::before {
  mask: url("../../img/review-user-icon.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/review-user-icon.svg") center/contain no-repeat;
}
.offer-card__rating-row span {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(146, 153, 162, 0.6);
}
.offer-card__rating-row a {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: #126DF7;
  text-decoration: underline;
}
.offer-card__rating-row a:empty {
  visibility: hidden;
}
.offer-card__rating-row a:hover {
  text-decoration: none;
}
.offer-card__main {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 30px;
  align-items: start;
}
.offer-card__params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.offer-card__param--full {
  grid-column: 1/-1;
}
.offer-card__param--full.is-hidden {
  display: none;
}
.offer-card__param--bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.offer-card__param-top {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  color: #333333;
}
.offer-card__param-top span {
  font-size: 22px;
  line-height: 120%;
  color: #333333;
}
.offer-card__param-about {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.04em;
  text-align: left;
  color: #9299A2;
}
.offer-card__action {
  display: grid;
  gap: 20px;
}
.offer-card__btn {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  padding: 10px;
  min-width: 260px;
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: #FFDD2D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  text-align: center;
  color: #333333;
}
.offer-card__btn:hover, .offer-card__btn:focus {
  background: #FFCD33;
  color: #333333;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.offer-card__btn.disabled, .offer-card__btn[disabled] {
  background: #9299A2;
  color: #F6F7F8;
  pointer-events: none;
}
.offer-card__more {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(146, 153, 162, 0.6);
  cursor: pointer;
}
.offer-card__more span {
  width: 14px;
  height: 8px;
  background: currentColor;
  mask: url("../../img/chevron-down.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/chevron-down.svg") center/contain no-repeat;
}
.offer-card.is-open .offer-card__more span {
  transform: rotate(180deg);
}
.offer-card.is-open .offer-card__details {
  display: block;
}
.offer-card__links {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.offer-card__links a {
  font-size: 13px;
  line-height: 120%;
  color: #336FEE;
  text-decoration: none;
}
.offer-card__links a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  mask: url("../../img/link.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/link.svg") center/contain no-repeat;
}
.offer-card__details {
  display: none;
  padding: 20px;
}
.offer-card__details-link {
  font-size: 15px;
  line-height: 120%;
  color: #336FEE;
  text-decoration: underline;
}
.offer-card__details-link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  mask: url("../../img/link.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/link.svg") center/contain no-repeat;
}
.offer-card__notice {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 221, 45, 0.1);
}
.offer-card__notice h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #E2AA00;
}
.offer-card__notice strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #00B92D;
}
.offer-card__notice p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
}
.offer-card__notice p span {
  font-weight: 600;
}
.offer-card__details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.offer-card__details-grid h4 {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #202020;
}
.offer-card__details-grid p {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: #333333;
}

.offers-form {
  width: calc(100% - 40px);
  margin: 20px auto;
  padding: 14px;
  border-radius: 16px;
  background: #E2E8F0;
}
.offers-form__info {
  padding: 16px;
  border-radius: 16px;
  background: #F6F7F8;
  margin-bottom: 16px;
}
.offers-form__info h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  min-height: 32px;
  display: flex;
  align-items: center;
  color: #333333;
}
.offers-form__info h3::after {
  content: "";
  width: 32px;
  height: 32px;
  top: 0;
  left: 0;
  background: url("../../img/loan-selection-img.webp") top center/contain no-repeat;
  position: absolute;
}
.offers-form__info p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 140%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7019607843);
}
.offers-form__progress-head {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offers-form__progress-head span,
.offers-form__progress-head strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
}
.offers-form__progress-head strong {
  font-size: 18px;
  line-height: 129%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.offers-form__progress-line {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 16, 36, 0.0588235294);
}
.offers-form__progress-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #428BF9;
  transition: width 0.3s ease;
}
.offers-form__fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.offers-form__fields input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #FFFFFF;
  outline: none;
}
.offers-form__fields input.is-error {
  box-shadow: inset 0 0 0 1px #e53935;
}
.offers-form__fields label {
  position: relative;
}
.offers-form__field-wrap {
  position: relative;
  display: block;
}
.offers-form__bonus {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  background: #00b83f;
  font-size: 11px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.offers-form__bonus.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.offers-form__bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 139, 139, 0.2);
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 20px;
}
.offers-form__bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
}
.offers-form__bottom p span {
  color: #126DF7;
}
.offers-form__bottom p a {
  color: #126DF7;
}
.offers-form__bottom p a:hover {
  text-decoration: underline;
}
.offers-form__bottom button {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  padding: 10px;
  min-width: 220px;
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: #FFDD2D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  text-align: center;
  color: #333333;
  cursor: pointer;
}
.offers-form__bottom button:hover, .offers-form__bottom button:focus {
  background: #FFCD33;
  color: #333333;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.offers-form__bottom button.disabled, .offers-form__bottom button[disabled] {
  background: #9299A2;
  color: #F6F7F8;
  pointer-events: none;
}

.offers-consultant {
  width: calc(100% - 40px);
  margin: 20px auto;
}
.offers-consultant__card {
  min-height: 377px;
  padding: 20px 100px 0 20px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: end;
  background: radial-gradient(ellipse 70% 140% at 0% 50%, #CCCFF5 0%, transparent 60%), radial-gradient(ellipse 70% 140% at 100% 50%, #F5CCD7 0%, transparent 60%), #E2E8F0;
}
.offers-consultant__content {
  align-self: center;
  padding: 32px;
  border-radius: 16px;
  background: #F6F7F8;
  max-width: 610px;
}
.offers-consultant__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.offers-consultant__head img {
  width: 32px;
  height: 32px;
}
.offers-consultant__head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}
.offers-consultant p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7019607843);
}
.offers-consultant a {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  min-width: 188px;
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #336FEE;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 133%;
  text-align: center;
  color: #FFFFFF;
}
.offers-consultant a:hover, .offers-consultant a:focus {
  filter: brightness(0.9);
}
.offers-consultant__img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1199.98px) {
  .offer-card__badges {
    grid-template-columns: initial;
  }
  .offers-form__fields {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-consultant__card {
    padding: 20px 20px 0 20px;
    gap: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .offers {
    padding: 28px 0;
  }
  .offers .container {
    padding: 0;
  }
  .offers__head {
    display: block;
    margin-bottom: 24px;
    padding: 0 15px;
  }
  .offers__title {
    font-size: 24px;
  }
  .offers__sort {
    margin-top: 20px;
    margin-left: auto;
    width: 100%;
    justify-content: space-between;
  }
  .offers__list {
    border-radius: 0;
  }
  .offers__all {
    width: calc(100% - 32px);
  }
  .offer-card {
    padding: 20px 16px;
  }
  .offer-card__label {
    margin-bottom: 10px;
  }
  .offer-card::after {
    width: calc(100% - 32px);
  }
  .offer-card__top {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .offer-card__left {
    grid-column: 1;
  }
  .offer-card__badges {
    grid-column: 2;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offer-card__badges span {
    font-size: 10px;
    padding-left: 30px;
  }
  .offer-card__badges span::before {
    width: 18px;
    height: 14px;
  }
  .offer-card__rating {
    grid-column: 1/-1;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offer-card__rating-row {
    grid-template-columns: 24px 1fr auto;
  }
  .offer-card__main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .offer-card__params {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
  .offer-card__param span {
    font-size: 18px;
  }
  .offer-card__param--bottom {
    position: relative;
    left: initial;
    bottom: initial;
  }
  .offer-card__action {
    gap: 10px;
  }
  .offer-card__btn {
    width: 100%;
  }
  .offer-card__more {
    justify-self: center;
  }
  .offer-card__links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    position: relative;
    bottom: initial;
    right: initial;
    margin-top: 20px;
  }
  .offer-card__details {
    padding: 20px 0 0 0;
  }
  .offer-card__details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
  .offers-form {
    padding: 10px;
    margin: 10px auto;
    border-radius: 24px;
    width: calc(100% - 32px);
  }
  .offers-form__fields {
    grid-template-columns: 1fr;
  }
  .offers-form__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offers-form__bottom button {
    order: -1;
    width: 100%;
  }
  .offers-consultant {
    width: calc(100% - 32px);
  }
  .offers-consultant__head {
    margin-bottom: 20px;
  }
  .offers-consultant__card {
    padding: 16px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 38px;
  }
  .offers-consultant__content {
    padding: 20px 10px;
    max-width: 100%;
  }
  .offers-consultant__img {
    width: 100%;
    margin: 0 auto;
  }
}

.offers-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.offers-loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(51, 111, 238, 0.2);
  border-top-color: #336FEE;
  border-radius: 50%;
  animation: offers-loader-spin 0.8s linear infinite;
}

.offers__list:has(.offers-loader) .offers-form,
.offers__list:has(.offers-loader) .offers-consultant {
  display: none;
}

@keyframes offers-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.article-content {
  padding: 20px 0 100px;
}
.article-content__inner {
  max-width: 940px;
  margin: 0 auto;
}
.article-content__inner > :last-child {
  margin-bottom: 0;
}
.article-content h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.8);
}
.article-content h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.8);
}
.article-content p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
}
.article-content strong {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}
.article-content ul,
.article-content ol {
  margin: -10px 0 16px;
  padding-left: 24px;
}
.article-content li {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.5411764706);
  list-style-type: initial;
}
@media screen and (max-width: 767.98px) {
  .article-content {
    padding: 24px 0 40px 0;
  }
  .article-content p,
  .article-content li {
    font-size: 16px;
  }
  .article-content ul {
    padding-left: 20px;
  }
}

.faq {
  padding: 40px 0;
}
.faq__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 126%;
  color: #333333;
  margin-bottom: 60px;
}
.faq__inner {
  max-width: 936px;
  margin: 0 auto;
}
.faq__list {
  margin-bottom: 45px;
}
.faq__item {
  margin-bottom: 20px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item.is-active .faq__answer {
  max-height: var(--answer-height);
  opacity: 1;
  padding-top: 8px;
}
.faq__item.is-active .faq__question span {
  transform: rotate(180deg);
}
.faq__question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: #202020;
  cursor: pointer;
}
.faq__question span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: currentColor;
  mask-image: url("../../img/chevron-down.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 14px 8px;
  -webkit-mask-image: url("../../img/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 14px 8px;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}
.faq__answer p,
.faq__answer ul,
.faq__answer ol {
  font-size: 14px;
  line-height: 150%;
  margin: 0;
  color: #202020;
}
.faq__answer ul {
  padding-left: 24px;
}
.faq__answer li {
  list-style-type: initial;
}
.faq__search {
  margin-bottom: 30px;
}
.faq__search-label {
  position: relative;
  display: block;
}
.faq__search-label input {
  width: 100%;
  height: 56px;
  padding: 0 24px 0 52px;
  border: 0;
  border-radius: 12px;
  outline: none;
  background: #FFFFFF;
}
.faq__search-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__search-btn span {
  display: block;
  width: 24px;
  height: 24px;
  background: #000000;
  mask: url("../../img/search.svg") center/contain no-repeat;
  -webkit-mask: url("../../img/search.svg") center/contain no-repeat;
}
.faq__tags {
  margin: 0 auto;
  padding: 0 45px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.faq__tags a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(66, 139, 249, 0.1607843137);
  font-size: 13px;
  line-height: 123%;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.faq__tags a:hover {
  background: #FFFFFF;
}
@media screen and (max-width: 767.98px) {
  .faq__tags {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .faq__title {
    font-size: 6.4vw;
    margin-bottom: 25px;
  }
}

.footer {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 16, 36, 0.1215686275);
}
.footer__card {
  position: relative;
  min-height: 286px;
  padding: 28px;
  border-radius: 12px;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  gap: 20px;
  overflow: hidden;
}
.footer__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 12px;
  color: #000000;
}
.footer__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__list a {
  font-size: 16px;
  line-height: 120%;
  color: #666666;
  text-decoration: none;
}
.footer__list a:hover {
  color: #126DF7;
  text-decoration: underline;
}
.footer__email {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 120%;
  color: #126DF7;
  text-decoration: underline;
}
.footer__email:hover {
  text-decoration: none;
}
.footer__complain {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px;
  min-width: 160px;
  min-height: 44px;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 16, 36, 0.1215686275);
  outline: none;
  background: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 133%;
  text-align: center;
  color: #126DF7;
}
.footer__complain:hover, .footer__complain:focus {
  border-color: transparent;
  background: #FFCD33;
  color: #333333;
}
.footer__up {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #FFCD33;
  cursor: pointer;
}
.footer__up span {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  background: #202020;
  mask: url("../../img/arrow-up.svg") center/14px 18px no-repeat;
  -webkit-mask: url("../../img/arrow-up.svg") center/14px 18px no-repeat;
}
.footer__duck {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 124px;
  height: auto;
}
.footer__links {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}
.footer__links a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 120%;
  text-decoration: underline;
  color: #1455B8;
}
.footer__links a:hover {
  text-decoration: none;
}
.footer__bottom {
  padding: 8px 10px;
  background: #333333;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  color: #FFFFFF;
}

@media screen and (max-width: 767.98px) {
  .footer__card {
    padding: 12px;
    min-height: 422px;
    display: flex;
    flex-direction: column;
  }
  .footer__up {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  .footer__title {
    margin-bottom: 16px;
  }
  .footer__contacts {
    position: relative;
    z-index: 2;
  }
}/*# sourceMappingURL=style.css.map */