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

body .inline-padding {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 1800px) {
  body .inline-padding {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.btn-primary {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(278.01deg, #265bff -36.69%, #1b2697 179.85%);
  padding: 12px 13px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .btn-primary {
    padding: 25px 38px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header {
    position: sticky;
    background: #ffffff;
  }
}
.header.scrolled {
  background: #ffffff;
}
.header__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  column-gap: 10px;
  align-items: center;
  padding: 16px 0;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding: 23px 0;
  }
}
.header__logo {
  display: block;
  width: 100%;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 255px;
  }
}
.header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.calculator {
  /* Dimensions */
  --range-track-height: 24px;
  --range-track-radius: 24px;
  --range-thumb-height: 32px;
  --range-thumb-width: 32px;
  --range-thumb-radius: 50%;
  /* Colors */
  --range-track-bg: #f2f5ff;
  --range-fill-start: #265bff;
  --range-fill-end: #1b2697;
  --range-thumb-color: url("../images/thumb.svg") no-repeat center center / contain;
}
.calculator input[type=range] {
  width: 100%;
  appearance: none;
  background: var(--range-track-bg);
  border: none;
  border-radius: var(--range-track-radius);
}
.calculator input[type=range]::-webkit-slider-runnable-track {
  height: var(--range-track-height);
  border-radius: var(--range-track-radius);
  background: linear-gradient(to right, var(--range-fill-start) 0%, var(--range-fill-end) var(--fill-percent), var(--range-track-bg) var(--fill-percent), var(--range-track-bg) 100%);
}
.calculator input[type=range]::-moz-range-track {
  height: var(--range-track-height);
  border-radius: var(--range-track-radius);
  border: none;
  background: linear-gradient(to right, var(--range-fill-start) 0%, var(--range-fill-end) var(--fill-percent), var(--range-track-bg) var(--fill-percent), var(--range-track-bg) 100%);
}
.calculator input[type=range]::-moz-range-progress {
  height: var(--range-track-height);
  border-radius: var(--range-track-radius);
  background: linear-gradient(to right, var(--range-fill-start) 0%, var(--range-fill-end) var(--fill-percent), var(--range-track-bg) var(--fill-percent), var(--range-track-bg) 100%);
}
.calculator input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: var(--range-thumb-height);
  width: var(--range-thumb-width);
  margin-top: -4px;
  background: var(--range-thumb-color);
  border: none;
  border-radius: var(--range-thumb-radius);
  cursor: pointer;
}
.calculator input[type=range]::-moz-range-thumb {
  height: var(--range-thumb-height);
  width: var(--range-thumb-width);
  background: var(--range-thumb-color);
  border: none;
  border-radius: var(--range-thumb-radius);
  cursor: pointer;
}
.calculator input[type=text] {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  background: transparent;
  border: none;
  outline: none;
  color: #265bff;
  max-width: 230px;
  width: 100%;
  text-align: start;
}
@media (max-width: 768px) {
  .calculator input[type=text] {
    font-size: 26px;
  }
}
.calculator input[type=text]::placeholder {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #ff5841;
}
.calculator {
  max-width: 584px;
  width: 100%;
  background: #ffffff;
  padding: 46px 49px;
  border-radius: 56px;
  border: 1px solid #265bff;
}
.calculator__limits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calculator__limit {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #878d97;
}
.calculator__text-input-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calculator__details {
  width: 100%;
}
.calculator .btn-primary {
  width: 100%;
  box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, 0.5);
  padding: 18px;
}
.calculator__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .calculator {
    padding: 42px 24px 36px;
    border-radius: 56px;
  }
}
.calculator__text-wrap {
  margin-bottom: 52px;
}
@media screen and (min-width: 768px) {
  .calculator__text-wrap {
    margin-bottom: 20px;
  }
}
.calculator__text {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #030b5c;
}
@media screen and (min-width: 768px) {
  .calculator__text {
    font-size: 24px;
  }
}

.hero-banner {
  overflow: hidden;
  padding-top: 77px;
  background: linear-gradient(270deg, #b5cafc 0%, #e6eefe 100%), linear-gradient(270deg, #e7effe 0%, #b4c9fc 100%);
}
@media screen and (min-width: 768px) {
  .hero-banner {
    background: linear-gradient(270deg, #e7effe 0%, #b4c9fc 100%), linear-gradient(270deg, #b5cafc 0%, #e6eefe 100%);
  }
}
@media screen and (min-width: 1300px) {
  .hero-banner {
    padding-top: 0;
  }
}
.hero-banner__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-bottom: 66px;
}
@media screen and (min-width: 1300px) {
  .hero-banner__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 125px 60px 231px;
    flex-direction: row;
    width: 100%;
    gap: 116px;
  }
}
@media screen and (min-width: 1600px) {
  .hero-banner__container {
    grid-template-columns: 1fr 0.5fr;
  }
}
.hero-banner__content-wrapper {
  position: relative;
  z-index: 2;
}
.hero-banner__calculator-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1300px) {
  .hero-banner__calculator-wrapper {
    height: fit-content;
  }
}
.hero-banner__content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .hero-banner__content-text {
    gap: 38px;
  }
}
@media screen and (min-width: 1600px) {
  .hero-banner__content-text {
    padding-right: 120px;
  }
}
.hero-banner__title {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(90deg, #010014 -5.35%, #1644b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .hero-banner__title {
    font-size: 80px;
  }
}
.hero-banner__description {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #113287;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .hero-banner__description {
    font-size: 24px;
  }
}
.hero-banner__description .bold {
  font-weight: 800;
}
.hero-banner__bg-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-banner__bg-img-wrapper--mobile {
  display: block;
}
.hero-banner__bg-img-wrapper--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero-banner__bg-img-wrapper--mobile {
    display: none;
  }
  .hero-banner__bg-img-wrapper--desktop {
    display: block;
    bottom: 0;
    top: unset;
    left: unset;
    right: 15%;
    width: fit-content;
    height: fit-content;
  }
}
.hero-banner .bot-mobile {
  display: block;
  position: absolute;
  top: 0;
}
.hero-banner__bg-img-mobile {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.hero-banner__bg-img-desktop {
  display: block;
  width: auto;
  height: auto;
}
.hero-banner .bot-desktop {
  display: block;
  position: absolute;
}
.hero-banner .bot-desktop--1 {
  left: 22%;
  bottom: 8%;
}
.hero-banner .bot-desktop--2 {
  left: 26%;
  top: -4%;
}
.hero-banner .bot-desktop--3 {
  right: 4%;
  bottom: 7%;
}

.grid-blocks {
  padding: 48px 0;
  background: linear-gradient(180deg, #e7efff 0%, #ffffff 100%);
}
@media screen and (min-width: 768px) {
  .grid-blocks {
    padding: 120px 0;
  }
}
.grid-blocks--secondary .grid-blocks__item {
  max-width: 455px;
}
.grid-blocks__container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (min-width: 768px) {
  .grid-blocks__container {
    row-gap: 72px;
  }
}
.grid-blocks__title {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(90deg, #010014 -5.35%, #1644b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .grid-blocks__title {
    font-size: 40px;
  }
}
.grid-blocks__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  column-gap: 22px;
  width: 100%;
}
.grid-blocks__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 435px;
  align-self: stretch;
  row-gap: 40px;
  padding: 30px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 768px) {
  .grid-blocks__item {
    padding: 60px 60px 44px;
  }
}
.grid-blocks__item-icon {
  display: block;
  width: 148px;
  height: 148px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .grid-blocks__item-icon {
    width: 240px;
    height: 240px;
  }
}
.grid-blocks__item-title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #113287;
}
@media screen and (min-width: 768px) {
  .grid-blocks__item-title {
    font-size: 24px;
  }
}
.grid-blocks__item-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .grid-blocks__item-text-wrapper {
    padding-bottom: 40px;
  }
}
.grid-blocks__item-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #113287;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .grid-blocks__item-description {
    font-size: 20px;
  }
}

.showcase-calculator {
  padding: 48px 0;
  background: linear-gradient(180deg, #3b6edb 0%, #e6eefe 100%);
}
@media screen and (min-width: 768px) {
  .showcase-calculator {
    padding: 120px 0;
  }
}
.showcase-calculator__container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (min-width: 768px) {
  .showcase-calculator__container {
    row-gap: 72px;
  }
}
.showcase-calculator__title {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .showcase-calculator__title {
    font-size: 40px;
  }
}
.showcase-calculator__calculator-wrapper {
  display: flex;
  justify-content: center;
}

.list-info {
  padding: 48px 0;
  background: url(../images/list-info-section-bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .list-info {
    padding: 120px 0;
  }
}
.list-info__container {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.list-info__title {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(90deg, #010014 -5.35%, #1644b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .list-info__title {
    font-size: 40px;
  }
}
.list-info__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.list-info__item {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  background: linear-gradient(90deg, #dde7fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 30px 24px;
}
.list-info__item-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.list-info__item-text {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #113287;
}
.list-info__btn {
  margin: 0 auto;
  padding: 19px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list-info__btn {
    max-width: 585px;
  }
}
.list-info__action-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  .list-info__action-wrapper {
    row-gap: 32px;
  }
}
.list-info__disclaimer {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .list-info__disclaimer {
    font-size: 24px;
  }
}

.full-description {
  padding: 48px 0;
  background: linear-gradient(90deg, #ffffff 0%, #cfdcf9 100%);
}
@media screen and (min-width: 768px) {
  .full-description {
    padding: 96px 0 120px;
  }
}
.full-description__title {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(90deg, #010014 -5.35%, #1644b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .full-description__title {
    font-size: 40px;
  }
}
.full-description__text {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #113287;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .full-description__text {
    font-size: 36px;
  }
}
.full-description__container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (min-width: 768px) {
  .full-description__container {
    row-gap: 72px;
  }
}

.footer {
  padding: 48px 0;
  background: linear-gradient(360deg, #12246e 0%, #2345d4 100%);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 140px 0;
    background: linear-gradient(90deg, #2142cd 0%, #112167 100%);
  }
}
.footer__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  row-gap: 57px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1300px) {
  .footer__container {
    grid-template-columns: 0.5fr 0.8fr 1fr;
    max-width: 1600px;
    column-gap: 94px;
  }
}
.footer__column {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.footer__logo {
  display: flex;
  width: 100%;
  max-width: 255px;
  margin-left: 16.5px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-left: 0;
  }
}
.footer__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.footer__text.small {
  font-size: 16px;
}
.footer__copyright--mobile {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.footer__copyright--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__copyright--mobile {
    display: none;
  }
  .footer__copyright--desktop {
    display: block;
    margin-top: 24px;
  }
}
.footer__column-item {
  display: flex;
}
.footer__column-item--wrap {
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (min-width: 768px) {
  .footer__column-item--wrap {
    row-gap: 4px;
    margin-top: 24px;
  }
}
.footer__column-item--split {
  flex-direction: row;
  align-items: flex-start;
  column-gap: 10px;
}
.footer__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer__link {
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #ffffff;
  padding: 2px 0;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
}
.footer__bots-bg-desktop {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer__bots-bg-desktop {
    display: block;
  }
}
.footer__bot {
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  z-index: 2;
}
.footer__bot--1 {
  left: -186px;
  top: -125px;
}
.footer__bot--2 {
  left: -185px;
  bottom: -57px;
}
.footer__bot--3 {
  left: 10px;
  bottom: -130px;
}

body:has(.modals.active) {
    overflow: hidden;
}

.modals.active .modals__overlay {
    opacity: 1;
    pointer-events: all;
}

.modals.active .modal__block.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
.modals__overlay {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 25;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.modals__container {
    position: fixed;
    inset: 0;
    z-index: 26;
    pointer-events: none;
}

.modal__title {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #010014;
}
@media screen and (min-width: 768px) {
    .modal__title {
        font-size: 22px;
    }
}

.modal__block {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    width: calc(100% - 16px);
    max-width: 600px;
    max-height: calc(100dvh - 32px);
    height: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media screen and (min-width: 450px) {
    .modal__block {
        width: calc(100% - 32px);
    }
}

@media screen and (min-width: 1000px) {
    .modal__block {
        max-width: 900px;
    }
}
.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px;
}
@media screen and (min-width: 768px) {
    .modal__header {
        padding: 24px 32px;
    }
}
.modal__close {
    display: flex;
    cursor: pointer;
    border-radius: 12px;
    border: none;
    transition: transform 0.1s ease;
    background-color: #cfdcf9;
    padding: 10px;
}
.modal__close:hover {
    transform: scale(1.1);
}
.modal__close {
    align-items: center;
    justify-content: center;
}
.modal__close img {
    display: block;
    width: 24px;
    height: 24px;
}
.modal__content {
    display: flex;
    flex-direction: column;
    overflow: auto;
    scrollbar-width: thin;
    border-radius: 0 0 20px 20px;
    padding: 24px 16px;
}
@media screen and (min-width: 768px) {
    .modal__content {
        padding: 24px 32px;
    }
}
.modal__content > div {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.modal__content h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #010014;
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .modal__content h3 {
        font-size: 18px;
    }
}
.modal__content p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #717171;
    margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
    .modal__content p {
        font-size: 14px;
        line-height: 140%;
    }
}
.modal__content p span {
    font-weight: 700;
}

.modal__content--iframe {
    padding: 0;
    overflow: hidden;
}

.modal__iframe {
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: 0;
    border-radius: 0 0 20px 20px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .modal__iframe {
        height: calc(100dvh - 120px);
        min-height: 400px;
    }
}