.hidden {
  display: none !important;
}

body {
  background-color: #eaf3fc;
}

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

body .inline-padding {
  padding-left: 20px;
  padding-right: 20px;
}

body .section-padding {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  body .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

body .section-margin {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  body .section-margin {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  body .hide-mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  body .hide-desktop {
    display: none;
  }
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.btn-primary {
  display: flex;
  width: fit-content;
  padding: 10.5px 11.5px;
  border-radius: 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  overlay: none;
  background-color: #002d73;
}
@media screen and (min-width: 768px) {
  .btn-primary {
    padding: 18.5px 24px;
    font-size: 16px;
  }
}

.header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.header__logo img {
  display: flex;
  width: 170px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 255px;
  }
}

.chip-text {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 36px;
  background-color: rgba(234, 243, 252, 0.2);
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #eaf3fc;
}
@media screen and (min-width: 768px) {
  .chip-text {
    font-size: 16px;
  }
}
.chip-text img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.footer {
  border-top: 1px solid rgba(89, 100, 117, 0.3019607843);
}
.footer__container {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 50px 0 110px;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(89, 100, 117, 0.3019607843);
}
@media screen and (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 68px;
  }
}
.footer__logo {
  display: flex;
  width: fit-content;
  text-decoration: none;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-bottom: 18px;
  }
}
.footer__logo img {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 255px;
  }
}
.footer__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #596475;
  text-decoration: none;
}
.footer__text--link:hover {
  text-decoration: underline;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__column-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #002d73;
}
.footer__disclaimer {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
  margin-bottom: 8px;
}
.footer__copyright {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}

.product-card {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  background-color: #fff;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .product-card {
    padding: 24px;
  }
}
.product-card__header {
  display: flex;
  justify-content: space-between;
}
.product-card__header-info {
  display: flex;
  gap: 16px;
}
.product-card__logo-link {
  display: block;
}
.product-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background-color: #eaf3fc;
}
@media screen and (min-width: 768px) {
  .product-card__icon {
    width: 56px;
    height: 56px;
  }
}
.product-card__badge {
  display: flex;
  align-items: center;
  height: fit-content;
  width: fit-content;
  gap: 4px;
  background-color: #34c759;
  padding: 8px;
  border-radius: 10px;
}
.product-card__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.product-card__badge-text {
  font-family: Inter;
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .product-card__badge-text {
    font-size: 12px;
  }
}
.product-card__header-inner {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.product-card__title {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .product-card__title {
    font-size: 24px;
  }
}
.product-card__subtitle {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .product-card__subtitle {
    font-size: 16px;
  }
}
.product-card__description {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .product-card__description {
    font-size: 16px;
  }
}
.product-card__info-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-card__info-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: #eaf3fc;
  gap: 4px;
  padding: 8px;
  border-radius: 10px;
}
.product-card__info-item-title {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .product-card__info-item-title {
    font-size: 14px;
  }
}
.product-card__info-item-text {
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
}
@media screen and (min-width: 768px) {
  .product-card__info-item-text {
    font-size: 16px;
  }
}
.product-card__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 21px;
}

.hero-banner {
  background: linear-gradient(280.63deg, #015cff 3.26%, #18279d 92.1%), linear-gradient(280.63deg, color(display-p3 0.149 0.357 1) 3.26%, color(display-p3 0.106 0.149 0.592) 92.1%);
}
.hero-banner__calculator {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .hero-banner__calculator {
    justify-content: flex-end;
  }
}
.hero-banner__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .hero-banner__container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-banner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-banner__title {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero-banner__title {
    font-size: 60px;
  }
}
.hero-banner__subtitle {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero-banner__subtitle {
    font-size: 24px;
  }
}
.hero-banner__badges {
  max-width: 400px;
  display: flex;
  justify-content: space-between;
}
.hero-banner__badge {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.hero-banner__badge img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hero-banner__badge-title {
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #eaf3fc;
}
@media screen and (min-width: 768px) {
  .hero-banner__badge-title {
    font-size: 24px;
  }
}
.hero-banner__badge-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgba(234, 243, 252, 0.6980392157);
}

.yellow {
  color: #e0af3b;
}

.featured-blocks__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .featured-blocks__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.featured-blocks__item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 10px;
  row-gap: 8px;
  background-color: #fff;
}
.featured-blocks__item-badge {
  display: flex;
  width: fit-content;
  padding: 12px;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: linear-gradient(136.93deg, #ffca2f 4.23%, #e9ad00 90.5%), linear-gradient(136.93deg, color(display-p3 1 0.8 0.325) 4.23%, color(display-p3 0.878 0.686 0.231) 90.5%);
  border-radius: 10px;
  margin-bottom: 8px;
}
.featured-blocks__item-badge img {
  display: block;
  width: 16px;
  height: 16px;
}
.featured-blocks__item-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .featured-blocks__item-title {
    font-size: 24px;
  }
}
.featured-blocks__item-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .featured-blocks__item-text {
    font-size: 16px;
  }
}

.calculator {
  /* Dimensions */
  --range-track-height: 6px;
  --range-track-radius: 8px;
  --range-thumb-height: 16px;
  --range-thumb-width: 16px;
  --range-thumb-radius: 50%;
  /* Colors */
  --range-track-bg: #eaf3fc;
  --range-fill-start: #002d73;
  --range-fill-end: #002d73;
  --range-thumb-color: #ffffff;
}
.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: -5px;
  background: var(--range-thumb-color);
  box-shadow: 0px 0px 6.3px 0px rgba(80, 64, 176, 0.5019607843);
  border: 1px solid #596475;
  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: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
  background: transparent;
  border: none;
  outline: none;
  max-width: 200px;
  width: 100%;
  text-align: end;
  padding: 0;
}
.calculator input[type=text]::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
}
.calculator {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 24px;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .calculator {
    padding: 32px;
    border-radius: 32px;
  }
}
.calculator__text-input-label {
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
.calculator__text-input-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
.calculator__limits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
}
.calculator__limit {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #596475;
}
.calculator__text-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calculator__details {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  display: flex;
  width: 100%;
  background-color: #eaf3fc;
  border-radius: 10px;
}
.calculator__info-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  column-gap: 10px;
}
@media screen and (min-width: 768px) {
  .calculator__info-wrapper {
    row-gap: 16px;
  }
}
.calculator__info-item {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  text-align: left;
}
.calculator__info-item--right {
  text-align: right;
}
.calculator__label {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
.calculator__value {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002d73;
}
.calculator .btn-primary {
  width: 100%;
  justify-content: center;
}
.calculator__btn {
  margin-top: 12px;
  padding: 21px;
}
@media screen and (min-width: 768px) {
  .calculator__btn {
    margin-top: 16px;
  }
}
.calculator__input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .calculator__input-wrapper {
    margin-bottom: 16px;
  }
}
.calculator__note {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 12px;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .calculator__note {
    margin-top: 16px;
    text-align: start;
  }
}

.main-products__header {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .main-products__header {
    margin-bottom: 64px;
  }
}
.main-products__title {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #002d73;
}
@media screen and (min-width: 768px) {
  .main-products__title {
    font-size: 60px;
  }
}
.main-products__description {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #596475;
}
@media screen and (min-width: 768px) {
  .main-products__description {
    font-size: 24px;
  }
}
.main-products__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .main-products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .main-products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
