@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

textarea {
  resize: vertical;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

.newBody {
  background: #F1F5F9;
}

.header {
  position: relative;
  width: 100%;
  padding: 30px 0;
  box-shadow: none;
}
@media (max-width: 991px) {
  .header {
    padding: 15px 0;
  }
}
.header-body {
  display: grid;
  align-items: center;
  grid-template-columns: 170px 1fr 170px;
}
@media (max-width: 991px) {
  .header-body {
    grid-template-columns: 100px 1fr 100px;
  }
}
.header__contacts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 991px) {
  .header__contacts {
    display: none;
  }
}
.header__contacts-item {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
.header__contacts-item:hover, .header__contacts-item:focus {
  color: #000000;
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.header__nav-item {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
@media (max-width: 991px) {
  .header__nav-item {
    display: none;
  }
}
.header__nav-item:hover, .header__nav-item:focus {
  color: #000000;
}
.header__nav-logo {
  height: 40px;
  margin: 0 15px;
}
.header-btn {
  height: 44px;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #000000;
}
.header-btn:hover, .header-btn:focus {
  color: #000000;
}
@media (max-width: 991px) {
  .header-btn {
    height: 33px;
    background: #FFFFFF;
    border-radius: 10px;
    gap: 8px;
    font-size: 15px;
    line-height: 15px;
  }
}
.header-burger {
  display: none;
}
@media (max-width: 991px) {
  .header-burger {
    display: block;
  }
}

.mobmenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: #F1F5F9;
}
.mobmenu-body {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60px 1fr 260px;
}
.mobmenu__header {
  display: grid;
  align-items: center;
  grid-template-columns: 100px 1fr 100px;
}
.mobmenu__header-logo {
  height: 40px;
  justify-self: center;
}
.mobmenu__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-self: center;
  align-self: center;
}
.mobmenu__list-item {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  text-align: center;
  color: #000000;
}
.mobmenu__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.mobmenu__btns-item {
  width: 100%;
  height: 65px;
  background: #FFFFFF;
  border-radius: 148px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.footer {
  background: none;
  padding: 40px 0;
}
.footer__header {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer__header {
    grid-template-columns: 1fr;
  }
}
.footer__header-logo {
  width: 150px;
}
.footer__header-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .footer__header-contacts {
    align-items: flex-start;
  }
}
.footer__header-contacts-item {
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  color: #000000;
}
.footer__header-contacts-item:hover, .footer__header-contacts-item:focus {
  color: #000000;
}
.footer__header-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.footer__header-nav-item {
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  color: #000000;
}
.footer__header-nav-item:hover, .footer__header-nav-item:focus {
  color: #000000;
}
.footer__header-appeal {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  align-self: center;
  width: 191px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #3B3B3B;
}
@media (max-width: 991px) {
  .footer__header-appeal {
    width: 100%;
  }
}
.footer__docs {
  background: #FFFFFF;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-radius: 22px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer__docs {
    padding: 40px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer__docs {
    padding: 40px 15px;
    grid-template-columns: 1fr;
  }
}
.footer__docs-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  line-height: 13px;
  color: #000000;
}
.footer__docs-item:hover, .footer__docs-item:focus {
  color: #000000;
}
.footer-agreements * {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #656565;
}
.footer-agreements a {
  color: #000000 !important;
}

.requirements {
  margin-bottom: 60px;
}
.requirements * {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 142%;
  color: #464646;
}
.requirements a {
  color: #000000 !important;
}

.fast {
  margin-bottom: 60px;
}
.fast__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .fast__list {
    grid-template-columns: 1fr;
  }
}
.fast__list-item {
  position: relative;
  height: 238px;
  background: #FFFFFF;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .fast__list-item {
    height: unset;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 200px;
    overflow: hidden;
  }
}
.fast__list-item img {
  position: absolute;
  left: 10%;
  top: 0;
  height: 100%;
}
@media (max-width: 991px) {
  .fast__list-item img {
    height: 250px;
    top: unset;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fast__list-item h3 {
  position: absolute;
  max-width: 240px;
  left: 50%;
  top: 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 113%;
  color: #252432;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .fast__list-item h3 {
    position: relative;
    left: unset;
    top: unset;
    justify-self: center;
    text-align: center;
    font-size: 25px;
    line-height: 116%;
  }
}
.fast__list-item p {
  position: absolute;
  max-width: 240px;
  left: 50%;
  bottom: 60px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
@media (max-width: 991px) {
  .fast__list-item p {
    position: relative;
    left: unset;
    top: unset;
    justify-self: center;
    text-align: center;
    font-size: 18px;
    line-height: 23px;
  }
}

.steps {
  margin-bottom: 60px;
}
.steps-title {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252432;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .steps-title {
    font-size: 25px;
    line-height: 120%;
  }
}
.steps__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 991px) {
  .steps__list {
    grid-template-columns: 1fr;
  }
}
.steps__list::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #B4B4B4;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .steps__list::before {
    display: none;
  }
}
.steps__list-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}
.steps__list-item-num {
  display: flex;
  justify-content: center;
  justify-self: center;
  align-items: center;
  width: 125px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #757575;
  margin-bottom: 40px;
  outline: 12px solid #F1F5F9;
}
@media (max-width: 991px) {
  .steps__list-item-num {
    margin-bottom: 16px;
  }
}
.steps__list-item-name {
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 113%;
  text-align: center;
  color: #252432;
  margin-bottom: 18px;
}
.steps__list-item-desc {
  margin-top: 0;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 137%;
  text-align: center;
  color: #252432;
}

.methods {
  margin-bottom: 60px;
}
.methods-body {
  padding: 40px 120px;
  background: #FFFFFF;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .methods-body {
    padding: 40px 15px;
  }
}
.methods-title {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252432;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .methods-title {
    font-size: 28px;
    line-height: 30px;
  }
}
.methods__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
@media (max-width: 991px) {
  .methods__list {
    grid-template-columns: 1fr;
  }
}
.methods__list-item {
  position: relative;
  border-radius: 30px;
}
.methods__list-item:nth-child(1) {
  background-color: #F6F6F6;
}
.methods__list-item:nth-child(2) {
  background-color: #F1F5F9;
}
.methods__list-item:nth-child(1), .methods__list-item:nth-child(2) {
  padding: 40px;
  height: 240px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .methods__list-item:nth-child(1), .methods__list-item:nth-child(2) {
    padding: 40px 15px;
  }
}
.methods__list-item:nth-child(1) img, .methods__list-item:nth-child(2) img {
  position: absolute;
  top: 18px;
  right: 18px;
}
.methods__list-item:nth-child(3) {
  background-color: #F6F6F6;
}
.methods__list-item:nth-child(4) {
  background-color: #F1F5F9;
}
.methods__list-item:nth-child(3), .methods__list-item:nth-child(4) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
@media (max-width: 991px) {
  .methods__list-item:nth-child(3), .methods__list-item:nth-child(4) {
    padding: 20px 15px;
  }
}
.methods__list-item p {
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  align-items: center;
  color: #000000;
}
@media (max-width: 991px) {
  .methods__list-item p {
    font-size: 20px;
    line-height: 24px;
  }
}

.faq-body {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .faq-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .faq__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    gap: 16px;
  }
}
.faq__header-title {
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  align-items: center;
  color: #2B3140;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .faq__header-title {
    font-size: 24px;
    line-height: 29px;
  }
}
@media (max-width: 991px) {
  .faq__header-img {
    height: 80px;
  }
}
.faq__list {
  background-color: #FFFFFF;
  border-radius: 30px;
}
.faq__list-item {
  padding: 30px 20px;
}
.faq__list-item.active {
  background-color: #F3F9FF;
}
.faq__list-item.active img {
  transform: rotate(45deg);
}
.faq__list-item:not(:last-child) {
  border-bottom: 1px solid #FFF3DD;
}
.faq__list-item-header {
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
}
.faq__list-item-header span {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
  color: #2B3140;
}
.faq__list-item-header h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
  color: #2B3140;
  margin-bottom: 0;
}
.faq__list-item-header img {
  transition: transform 0.5s ease;
}
.faq__list-item-text {
  margin-top: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 166%;
  color: #2B3140;
}

.calc {
  margin-bottom: 60px;
}
.calc-body {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 991px) {
  .calc-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 15px;
    border-radius: 30px;
  }
}
.calc-left-title {
  font-style: normal;
  font-weight: 600;
  font-size: 37px;
  line-height: 44px;
  color: #2F2F2F;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .calc-left-title {
    font-size: 24px;
    line-height: 29px;
  }
}
.calc-left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
}
@media (max-width: 991px) {
  .calc-left-img {
    display: none;
  }
}
.calc__form {
  display: grid;
  grid-template-columns: 1fr;
}
.calc__form-group {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.calc__form-group label {
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 21px;
  color: #515151;
  margin-bottom: 12px;
}
.calc__form-group-val {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 33px;
  color: #2B3140;
  margin-bottom: 32px;
}
.calc__form-group input {
  margin-bottom: 16px;
}
.calc__form-group-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc__form-group-legend span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(81, 81, 81, 0.5);
}
.calc__form-total {
  margin-top: 0;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #130E21;
}
.calc__form-total span {
  font-weight: 700;
}
.calc__form-agree {
  margin-bottom: 30px;
}
.calc__form-agree-item:not(:last-child) {
  margin-bottom: 12px;
}
.calc__form-agree-item input {
  display: none;
}
.calc__form-agree-item input:checked ~ label::before {
  content: "✔" !important;
}
.calc__form-agree-item label {
  user-select: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.calc__form-agree-item label::before {
  flex-shrink: 0 !important;
  content: "" !important;
  border: 1px solid #F27D00 !important;
  border-radius: 4px !important;
  width: 18px !important;
  height: 18px !important;
  background: transparent !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 16px !important;
  margin-right: 0 !important;
  color: #F27D00 !important;
}
.calc__form-agree-item label p {
  margin-bottom: 0;
}
.calc__form-agree-item label span, .calc__form-agree-item label a {
  color: #F27D00 !important;
}
.calc__form-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.calc__form-btns-tbank {
  position: relative;
  margin-bottom: 40px;
}
.calc__form-btns-tbank .tbank {
  position: relative;
  border: 2px solid #FFD600;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  height: 68px;
  background: #FFDD2D;
  border-radius: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.8);
}
.calc__form-btns-tbank span {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 40px;
  left: 0;
  height: 60px;
  background-color: #FFF8D2;
  border-radius: 0 0 21px 21px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #040404;
}
.calc__form-btns-gos {
  position: relative;
  margin-bottom: 40px;
}
.calc__form-btns-gos .gosuslugi {
  position: relative;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  border: 2px solid #0092FF;
  height: 68px;
  background: #006AB9;
  border-radius: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: #FFFFFF;
}
.calc__form-btns-gos span {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 40px;
  left: 0;
  height: 60px;
  background-color: #E3F3FF;
  border-radius: 0 0 21px 21px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #040404;
}
.calc__form-btns-landing {
  user-select: none;
  border: 2px solid #FF8400;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF9D34;
  border-radius: 105px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
}
.calc__form-btns-landing:hover, .calc__form-btns-landing:active {
  color: #FFFFFF;
}

.calc__form input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 16px;
  border-radius: 20px;
  background: #DCDCDC;
  outline: none;
}

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

.calc__form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FF9D34;
  border: 8px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  margin-top: -20px;
}

.calc__form input[type=range]::-moz-range-track {
  height: 16px;
  background: #DCDCDC;
  border-radius: 20px;
}

.calc__form input[type=range]::-moz-range-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FF9D34;
  border: 8px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/*# sourceMappingURL=newIndex.css.map */
