@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  padding-top: 71px;
}

.container {
  width: 90%;
  max-width: 1080px;
  margin: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border-radius: 0;
  text-decoration: none;
  line-height: 1.44;
  color: #212333;
  font-family: "Montserrat", sans-serif;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
          font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off, 'kern' off;
}

body {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body footer {
  margin-top: auto;
  margin-bottom: 0;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: transparent;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

b,
strong {
  font-weight: 600;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

u {
  text-decoration: underline;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  background: white;
  transition: 0.4s;
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid transparent;
}

.header.fix {
  box-shadow: 0 0 50px rgba(33, 35, 51, 0.2);
  border-bottom-color: rgba(67, 81, 202, 0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.header__logo img {
  display: block;
  height: 18px;
  width: auto;
}

.header__menu ul {
  display: flex;
  gap: 32px;
}

.header__menu a {
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s;
}

.header__menu a:hover {
  color: #4351CA;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s;
}

.header__phone svg {
  display: block;
  width: 20px;
  height: auto;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.header__phone svg * {
  fill: #212333;
  transition: 0.4s;
}

.header__phone:hover {
  color: #4351CA;
}

.header__phone:hover svg * {
  fill: #4351CA;
}

.header__mob__btn {
  width: 44px;
  height: 44px;
  margin-left: 20px;
  border-radius: 5px;
  background: rgba(242, 244, 252, 0.5);
  border: 1px solid rgba(67, 81, 202, 0.2);
  position: relative;
  cursor: pointer;
}

.header__mob__btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #4351CA;
  border-radius: 5px;
  width: 20px;
  height: 2px;
  transition: 0.4s;
}

.header__mob__btn span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
}

.header__mob__btn span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header__mob__btn span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 6px));
          transform: translate(-50%, calc(-50% + 6px));
}

.header__mob__btn.open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header__mob__btn.open span:nth-child(2) {
  opacity: 0;
}

.header__mob__btn.open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.header__mob__container {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: white;
  padding: calc(77px + 20px) 0 60px;
  overflow: auto;
}

.header__mob__container .container {
  flex-direction: column;
  gap: 32px;
}

.header__mob__container ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.header__mob__container ul li,
.header__mob__container ul a {
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s;
  text-align: center;
}

.header__mob__container ul li:active,
.header__mob__container ul a:active {
  color: #4351CA;
}

.header__mob__container .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s;
  text-align: center;
}

.header__mob__container .phone svg * {
  fill: #212333;
  transition: 0.4s;
}

.header__mob__container .phone:active {
  color: #4351CA;
}

.header__mob__container .phone:active svg * {
  fill: #4351CA;
}

.footer {
  padding: 40px 0;
  border-radius: 24px 24px 0 0;
  background: rgba(242, 244, 252, 0.5);
  border: 1px solid rgba(67, 81, 202, 0.2);
}

.footer .container {
  padding: 0 20px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__top p {
  width: calc(50% - 16px);
  font-size: 14px;
}

.footer__logo img {
  display: block;
  height: 20px;
  width: auto;
}

.footer__main {
  display: flex;
  gap: 32px;
}

.footer__main .side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__main .contBox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__main .contBox p {
  padding-top: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}

.footer__main .contBox svg {
  display: block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 10px;
  background: #e1e6f8;
  border-radius: 8px;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}

.footer__main .contBox svg * {
  fill: #212333;
  transition: 0.4s;
}

.footer__main a.contBox:hover p {
  color: #4351CA;
}

.footer__main a.contBox:hover svg * {
  fill: #4351CA;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

.txt-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.txt-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.txt-content ul ol,
.txt-content ul ul,
.txt-content ol ul,
.txt-content ol ol {
  padding-top: 8px;
}

.txt-content ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.txt-content ul li {
  list-style: disc;
}

.txt-content ul > li {
  list-style: disc !important;
}

.txt-content ol {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.txt-content ol li {
  list-style: decimal;
}

.txt-content ol > li {
  list-style: decimal !important;
}

.txt-content a {
  text-decoration: underline;
  transition: 0.4s;
}

.txt-content a:hover {
  color: #4351CA;
}

.txt-content h2 {
  margin-top: 24px;
  font-size: 24px;
}

.txt-content h2:first-child {
  margin-top: 0;
}

.txt-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 144%;
}

.txt-content h4,
.txt-content h5,
.txt-content h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 144%;
}

.txt-content iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
}

.block1 {
  padding-bottom: 40px;
  overflow: hidden;
}

.block1__image {
  width: calc(100% + 240px);
  margin: 0 -120px;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 100px;
}

.block1__image:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 35, 51, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.block1__image h1 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.block1__window {
  margin-top: -100px;
  background: white;
  border-radius: 24px;
  z-index: 2;
  position: relative;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.block1__window:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 76px;
  width: 24px;
  height: 24px;
  background-image: url("../img/corner.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.block1__window:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 76px;
  width: 24px;
  height: 24px;
  background-image: url("../img/corner.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.block1__advantages {
  display: flex;
  gap: 20px;
}

.block1__advantages .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(242, 244, 252, 0.5);
  border: 1px solid rgba(67, 81, 202, 0.2);
}

.block1__advantages .box h3 {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.block1__advantages .box h3 svg,
.block1__advantages .box h3 img {
  display: block;
  width: 24px;
  height: auto;
}

.block1__advantages .box h3 svg *,
.block1__advantages .box h3 img * {
  fill: #4351CA;
}

.block1__advantages .box ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.block1__advantages .box li {
  font-size: 16px;
  padding-left: 32px;
  position: relative;
}

.block1__advantages .box li:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(33, 35, 51, 0.7);
}

.block1__calc {
  display: flex;
  gap: 64px;
}

.block1__calc .side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.block1__calc .range-box .top-row {
  display: flex;
  align-items: baseline;
}

.block1__calc .range-box .top-row .label {
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
}

.block1__calc .range-box .top-row .input {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.block1__calc .range-box .top-row .input.input-money input {
  width: 110px;
}

.block1__calc .range-box .top-row .input.input-percent input {
  width: 50px;
}

.block1__calc .range-box .top-row .input.input-term input {
  width: 50px;
}

.block1__calc .range-box .top-row .input input {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.block1__calc .range-box .top-row .input span {
  font-size: 14px;
  font-weight: 600;
}

.block1__calc .range-box .slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin: 10px 0 5px;
}

.block1__calc .range-box .slider-row .btn-control {
  width: 20px;
  height: 20px;
  background: #4351CA;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
}

.block1__calc .range-box .slider-row .btn-control:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.block1__calc .range-box .slider-row .btn-control[data-function=range-plus]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2px;
  height: 8px;
  background: white;
  border-radius: 99px;
}

.block1__calc .range-box .slider-row .btn-control:hover {
  background: #4351CA;
}

.block1__calc .range-box .slider-row .slider-dev {
  width: calc(100% - 80px);
  background: #e1e6f8;
  height: 4px;
  position: relative;
}

.block1__calc .range-box .slider-row .slider-dev:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 10px;
  height: 100%;
  background: #4351CA;
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

.block1__calc .range-box .slider-row .slider-dev:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 10px;
  height: 100%;
  background: #e1e6f8;
  border-radius: 0 3px 3px 0;
  z-index: 1;
}

.block1__calc .range-box .slider-row .slider-dev .ui-slider-range {
  border-radius: 0 3px 3px 0;
  background: #4351CA;
  height: 100%;
}

.block1__calc .range-box .slider-row .slider-dev .ui-slider-handle {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 13px;
  border-radius: 3px;
  background: #4351CA;
  cursor: -webkit-grab;
  cursor: grab;
  z-index: 2;
}

.block1__calc .range-box .slider-row .slider-dev .ui-slider-handle span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  opacity: 0;
}

.block1__calc .range-box .slider-row .slider-dev .ui-slider-handle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(calc(-50% - 2px), -50%);
          transform: translate(calc(-50% - 2px), -50%);
  width: 2px;
  height: 6px;
  background: white;
  border-radius: 2px;
}

.block1__calc .range-box .slider-row .slider-dev .ui-slider-handle:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(calc(-50% + 2px), -50%);
          transform: translate(calc(-50% + 2px), -50%);
  width: 2px;
  height: 6px;
  background: white;
  border-radius: 2px;
}

.block1__calc .range-box .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block1__calc .range-box .bottom-row p {
  color: rgba(33, 35, 51, 0.5);
  font-size: 12px;
  font-weight: 500;
}

.block1__calc .result-part {
  border-radius: 20px;
  background: #FFF;
  padding: 0 30px 20px 30px;
  margin-top: -1px;
}

.block1__calc .result-part .price-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block1__calc .result-part .price-line .input {
  display: flex;
  gap: 5px;
  align-items: baseline;
  justify-content: center;
}

.block1__calc .result-part .price-line .input.input-money input {
  width: 200px;
  text-align: center;
}

.block1__calc .result-part .price-line .input.input-percent input {
  width: 50px;
}

.block1__calc .result-part .price-line .input.input-term input {
  width: 50px;
}

.block1__calc .result-part .price-line .input input {
  font-size: 24px;
  font-weight: 600;
  text-align: right;
}

.block1__calc .result-part .price-line .input span {
  font-size: 14px;
  font-weight: 600;
}

.block1__calc .result-part .btn {
  padding: 17px;
  width: 100%;
  font-size: 20px;
  margin-top: 20px;
}

.block2 {
  padding: 40px 0 80px;
}

.block2 .container {
  padding: 0 20px;
}

.block3 {
  padding: 60px 0 80px 0;
}

.block3 h1 {
  text-align: center;
  margin-bottom: 44px;
}

.block3 .tabs__header {
  border: 1px solid rgba(67, 81, 202, 0.3);
  border-radius: 99px;
  display: flex;
  gap: 10px;
  padding: 10px;
  margin-bottom: 32px;
}

.block3 .tabs__header .box {
  flex-grow: 1;
  text-align: center;
  padding: 12px;
  border-radius: 99px;
  transition: 0.4s;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.block3 .tabs__header .box:hover {
  color: #4351CA;
}

.block3 .tabs__header .box.open {
  background: rgba(242, 244, 252, 0.5);
  color: #4351CA;
}

.block3 .tabs__body .box {
  display: none;
}

.block3 .tabs__body .box.open {
  display: block;
}

.block3 .acc {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block3 .acc-title {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 32px;
  background: rgba(242, 244, 252, 0.5);
  cursor: pointer;
  border-radius: 12px;
}

.block3 .acc-title:hover svg * {
  fill: #4351CA;
}

.block3 .acc-title.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.block3 .acc-title svg {
  transition: 0.4s;
}

.block3 .acc-title svg * {
  transition: 0.4s;
}

.block3 .acc-body {
  padding: 8px 8px;
  display: none;
}

.block3 .acc-body ul {
  display: flex;
  flex-direction: column;
}

.block3 .acc-body a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 24px;
  transition: 0.4s;
  border-radius: 12px;
}

.block3 .acc-body a:hover {
  background: rgba(242, 244, 252, 0.5);
}

.block3 .acc-body a svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
  -webkit-transform: translate(0, -1px);
          transform: translate(0, -1px);
}

.block3 .acc-body a h3 {
  font-size: 16px;
  font-weight: 400;
}

.block3 .acc-body a h3 span{
  display: block;
  font-size: 13px;
  font-weight: inherit;
  opacity: 0.8;
}

.block3 .acc-body a p {
  margin-left: auto;
  opacity: 0.5;
  transition: 0.4s;
}

.block3 .acc-body a p:hover {
  color: #4351CA;
  opacity: 1;
}

.block4 {
  padding: 60px 0 80px 0;
}

.block4 h1 {
  text-align: center;
  margin-bottom: 44px;
}

.block4 .table {
  overflow: auto;
}

.block4 table {
  border-collapse: collapse;
}

.block4 table td,
.block4 table th {
  font-size: 16px;
  border: 1px solid rgba(67, 81, 202, 0.2);
  padding: 4px 8px;
  transition: 0.4s;
  vertical-align: top;
}

/*.block4 table td:nth-child(1),*/
/*.block4 table th:nth-child(1) {*/
/*  text-align: center;*/
/*}*/

.block4 table td:nth-child(1),
.block4 table th:nth-child(1) {
  width: 250px;
}

.block4 table th {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
}

.block4 table td {
  font-size: 14px;
}

.block4 table td * {
  font-size: 14px;
}

.block4 table td ul ol,
.block4 table td ul ul,
.block4 table td ol ul,
.block4 table td ol ol {
  padding-top: 8px;
}

.block4 table td ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.block4 table td ul li {
  list-style: disc;
}

.block4 table td ul > li {
  list-style: disc !important;
}

.block4 table td ol {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.block4 table td ol li {
  list-style: decimal;
}

.block4 table td ol > li {
  list-style: decimal !important;
}

.block4 table td a {
  text-decoration: underline;
  transition: 0.4s;
}

.block4 table td a:hover {
  color: #4351CA;
}

.block4 table td h2 {
  margin-top: 24px;
  font-size: 24px;
}

.block4 table td h2:first-child {
  margin-top: 0;
}

.block4 table td h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 144%;
}

.block4 table td h4,
.block4 table td h5,
.block4 table td h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 144%;
}

.block4 table tr:hover td {
  background: rgba(242, 244, 252, 0.5);
}

.block4 .links {
  margin-top: 32px;
}

.block4 .links ul {
  display: flex;
  flex-direction: column;
}

.block4 .links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 24px;
  transition: 0.4s;
  border-radius: 12px;
}

.block4 .links a:hover {
  background: rgba(242, 244, 252, 0.5);
}

.block4 .links a svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
  -webkit-transform: translate(0, -1px);
          transform: translate(0, -1px);
}

.block4 .links a h3 {
  font-size: 16px;
  font-weight: 400;
}

.block5 {
  padding: 60px 0 80px 0;
}

.block5__main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.block5__main .right {
  padding: 32px;
  border-radius: 24px;
  background: rgba(242, 244, 252, 0.5);
  border: 1px solid rgba(67, 81, 202, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
}

@media screen and (min-width: 1025px){
  .block5__main .right {
    width: 43%;
  }

  .block5__main .txt-content {
    width: 57%;
  }
}

.block5__main .right .box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.block5__main .right .box span {
  font-size: 14px;
  font-weight: 600;
  color: #4351CA;
  opacity: 0.6;
}

.block5__main .right .box p {
  font-size: 16px;
}

.block5__frame {
  margin-top: 44px;
}

.block5__frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 24px;
}

@media screen and (min-width: 1025px) {
  .header__mob__btn {
    display: none;
  }
}

@media screen and (max-width: 1450px) {
  .block1__calc .result-part .btn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1400px) {
  .block1__image {
    margin: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: calc(100vw - 48px);
  }
}

@media screen and (max-width: 1260px) {
  .block1__calc .result-part {
    padding: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .header__logo img {
    height: 14px;
  }

  .header__menu ul {
    gap: 24px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 77px;
  }

  .container {
    max-width: 500px;
  }

  .header {
    padding: 16px 0;
    border-radius: 0 0 20px 20px;
  }

  .header__logo img {
    height: 16px;
  }

  .header__menu {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .footer {
    padding: 32px 0;
    border-radius: 20px 20px 0 0;
  }

  .footer .container {
    padding: 0;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__top p {
    width: 100%;
    font-size: 12px;
  }

  .footer__main {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__main .contBox p {
    font-size: 14px;
    padding-top: 4px;
  }

  .footer__main .contBox svg {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 6px;
    padding: 7px;
  }

  h1 {
    font-size: 24px;
  }

  .txt-content {
    gap: 12px;
  }

  .txt-content ul ol,
  .txt-content ul ul,
  .txt-content ol ul,
  .txt-content ol ol {
    padding-top: 4px;
  }

  .txt-content ul {
    gap: 4px;
  }

  .txt-content ol {
    gap: 4px;
  }

  .txt-content h2 {
    font-size: 18px;
  }

  .txt-content h3 {
    font-size: 16px;
  }

  .txt-content h4,
  .txt-content h5,
  .txt-content h6 {
    font-size: 14px;
  }

  .txt-content p,
  .txt-content li,
  .txt-content span,
  .txt-content div,
  .txt-content font,
  .txt-content a {
    font-size: 14px;
  }

  .block1__image {
    width: 105vw;
    height: 300px;
    border-radius: 0;
  }

  .block1__image {
    padding: 0 7.5vw 50px;
  }

  .block1__window {
    margin-top: -50px;
    padding: 6px 6px 0;
    gap: 50px;
  }

  .block1__window:before {
    top: 26px;
  }

  .block1__window:after {
    top: 26px;
  }

  .block1__advantages {
    flex-direction: column;
    gap: 16px;
  }

  .block1__advantages .box {
    border-radius: 18px;
  }

  .block1__advantages .box h3 {
    font-size: 18px;
  }

  .block1__advantages .box li {
    font-size: 14px;
    padding-left: 24px;
  }

  .block1__advantages .box li:before {
    top: 10px;
  }

  .block1__calc {
    flex-direction: column;
    gap: 32px;
  }

  .block1__calc .side {
    gap: 32px;
  }

  .block1__calc .range-box .top-row .input.input-money input {
    width: 75px;
  }

  .block1__calc .range-box .top-row .input.input-percent input {
    width: 30px;
  }

  .block1__calc .range-box .top-row .input.input-term input {
    width: 30px;
  }

  .block1__calc .range-box .top-row .input input {
    font-size: 14px;
  }

  .block1__calc .range-box .top-row .input span {
    font-size: 12px;
  }

  .block1__calc .result-part {
    padding: 0;
    margin-top: -12px;
  }

  .block1__calc .result-part .price-line .label {
    font-size: 14px;
  }

  .block1__calc .result-part .price-line .input input {
    font-size: 20px;
  }

  .block1__calc .result-part .price-line .input span {
    font-size: 12px;
  }

  .block1__calc .result-part .btn {
    font-size: 16px;
    padding: 13px;
  }

  .block2 {
    padding: 40px 0;
    border-top: 1px solid rgba(33, 35, 51, 0.3);
  }

  .block2 .container {
    padding: 0;
  }

  .block3 {
    padding: 32px 0 40px;
  }

  .block3 h1 {
    margin-bottom: 32px;
  }

  .block3 .tabs__header {
    margin-bottom: 24px;
    flex-direction: column;
    border-radius: 32px;
  }

  .block3 .tabs__header .box {
    font-size: 14px;
  }

  .block3 .acc-title {
    font-size: 16px;
    padding: 16px;
  }

  .block3 .acc-body {
    padding: 8px 0;
  }

  .block3 .acc-body a {
    padding: 12px;
    border-radius: 8px;
    gap: 8px;
  }

  .block3 .acc-body a svg {
    width: 20px;
    min-width: 20px;
  }

  .block3 .acc-body a h3 {
    font-size: 14px;
  }

  .block3 .acc-body a p {
    display: none;
  }

  .block4 {
    padding: 32px 0 40px;
  }

  .block4 h1 {
    margin-bottom: 32px;
  }

  .block4 table td:nth-child(1),
  .block4 table th:nth-child(1) {
    min-width: 200px;
  }

  .block4 table th {
    font-size: 12px;
  }

  .block4 table td {
    font-size: 12px;
  }

  .block4 table td * {
    font-size: 12px;
  }

  .block4 table td ul ol,
  .block4 table td ul ul,
  .block4 table td ol ul,
  .block4 table td ol ol {
    padding-top: 4px;
  }

  .block4 table td ul {
    gap: 4px;
  }

  .block4 table td ol {
    gap: 4px;
  }

  .block4 table td h2 {
    font-size: 18px;
  }

  .block4 table td h3 {
    font-size: 16px;
  }

  .block4 table td h4,
  .block4 table td h5,
  .block4 table td h6 {
    font-size: 14px;
  }

  .block4 .links a {
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
  }

  .block4 .links a svg {
    width: 20px;
    min-width: 20px;
  }

  .block4 .links a h3 {
    font-size: 14px;
  }

  .block4 .links a p {
    display: none;
  }

  .block5 {
    padding: 32px 0 40px;
  }

  .block5__main {
    gap: 32px;
    flex-direction: column;
  }

  .block5__main .right {
    padding: 24px 20px;
    border-radius: 20px;
    gap: 16px;
  }

  .block5__main .right .box span {
    font-size: 12px;
  }

  .block5__main .right .box p {
    font-size: 14px;
  }

  .block5__frame {
    margin-top: 32px;
  }

  .block5__frame iframe {
    border-radius: 20px;
    height: 400px;
  }
}