:root {
  /* Dimensions */
  --range-track-height: 32px;
  --range-track-radius: 32px;
  --range-thumb-height: 38px;
  --range-thumb-width: 5px;
  --range-thumb-radius: 8px;
  /* Colors */
  --range-track-bg: #ececec;
  --range-fill-start: #ffa566;
  --range-fill-end: #ff5841;
  --range-thumb-color: #c02a15;
}

body:has(.side-menu.active) {
  overflow: hidden;
}

.section-inline-padding {
  padding: 0 20px;
}

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

.section-inline-padding {
  padding: 0 20px;
  max-width: 1880px !important;
}

.icon-arrow {
  display: block;
  width: 44px;
  height: 44px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  border-radius: 34px;
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%);
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #f7771c;
  border-radius: 34px;
  background-color: #ffe7d6;
  transition: transform 0.3s ease;
}
.btn-secondary:hover {
  transform: scale(1.05);
}

.btn-white {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fe5d3b;
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  padding: 26px 24px;
  border-radius: 34px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.btn-white:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .btn-white {
    width: fit-content;
  }
}

.header {
  position: sticky;
  z-index: 11;
  top: 0;
  background-color: #ffffff;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 15px;
  gap: 20px;
}
@media screen and (min-width: 1700px) {
  .header__container {
    padding: 10px 15px;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: flex;
  }
}
.header__action-btns-container {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__action-btns-container {
    display: flex;
    gap: 16px;
  }
}
.header__burger-btn {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 9px;
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .header__burger-btn {
    display: none;
  }
}
.header__burger-btn.active .header__burger-icon::before {
  transform: translate(-50%, -50%) rotate(-20deg);
  top: 50%;
  left: 50%;
  background-color: #b9b9b9;
}
.header__burger-btn.active .header__burger-icon::after {
  transform: translate(50%, 50%) rotate(20deg);
  bottom: 50%;
  right: 50%;
  background-color: #b9b9b9;
}
.header__burger-btn .header__burger-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 13px;
}
.header__burger-btn .header__burger-icon::before, .header__burger-btn .header__burger-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3.2px;
  background-color: #fe5d3b;
  transform-origin: center center;
  transform: translate(0, 0) rotate(0deg);
  transition: background-color 0.3s ease, transform 0.3s ease, top 0.3s ease, left 0.3s ease, bottom 0.3s ease, right 0.3s ease;
}
.header__burger-btn .header__burger-icon::before {
  top: 0;
  left: 0;
}
.header__burger-btn .header__burger-icon::after {
  bottom: 0;
  right: 0;
}
.header__burger-btn .header__burger-text {
  font-family: Orbitron, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fe5d3b;
}
.header__nav-list {
  display: flex;
  column-gap: 40px;
  row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.header__nav-item {
  display: flex;
  width: fit-content;
}
.header__nav-item:hover .header__nav-item-link, .header__nav-item.active .header__nav-item-link {
  color: #fe5d3b;
}
.header__nav-item-link {
  display: flex;
  text-decoration: none;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #202020;
}
.header__action-btn {
  min-width: 112px;
  padding: 21.5px 24px;
}

.side-menu {
  margin-top: 66px;
  padding-top: 28px;
  display: flex;
  position: fixed;
  z-index: 10;
  right: -100%;
  top: 0;
  width: 100%;
  background-color: #fff;
  transition: right 0.3s ease;
  min-height: 100dvh;
  opacity: 1;
  pointer-events: none;
}
.side-menu.active {
  right: 0;
  pointer-events: all;
}
@media screen and (min-width: 1200px) {
  .side-menu {
    right: -100% !important;
  }
}
.side-menu__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.side-menu__nav {
  display: flex;
  width: 100%;
}
.side-menu__nav-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow-y: auto;
}
.side-menu__nav-item {
  display: flex;
  width: 100%;
}
.side-menu__nav-item:hover .side-menu__nav-item-link--icon, .side-menu__nav-item.active .side-menu__nav-item-link--icon {
  color: #fe5d3b;
}
.side-menu__nav-item:hover .side-menu__nav-item-link--text, .side-menu__nav-item.active .side-menu__nav-item-link--text {
  color: #fe5d3b;
}
.side-menu__nav-item.active .side-menu__nav-item-link--text {
  font-weight: 600;
}
.side-menu__nav-item.active .side-menu__nav-item-link--icon {
  transform: rotate(0);
}
.side-menu__nav-item-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 20px;
  column-gap: 8px;
}
.side-menu__nav-item-link--icon {
  display: flex;
  width: fit-content;
  align-items: center;
  color: #b9b9b9;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, color 0.3s ease;
}
.side-menu__nav-item-link--text {
  font-family: "Exo 2", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #202020;
  transition: color 0.3s ease;
}
.side-menu__action-btns-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 32px 20px 28px;
}
.side-menu__action-btn {
  width: 100%;
  padding: 20px;
}

input[type=range] {
  width: 100%;
  appearance: none;
  background: var(--range-track-bg);
  border: none;
  border-radius: var(--range-track-radius);
}

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%);
}

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%);
}

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%);
}

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;
}

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;
}

input[type=text] {
  background: transparent;
  border: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #ff5841;
  max-width: 135px;
  width: 100%;
  text-align: right;
}
@media (max-width: 768px) {
  input[type=text] {
    font-size: 26px;
  }
}

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;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.2509803922);
  padding: 40px;
  border-radius: 24px;
}
.calculator__text-input-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calculator__value-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-align: left;
  color: #ff5841;
}
@media (max-width: 768px) {
  .calculator__value-title {
    font-size: 24px;
  }
}
.calculator__details {
  width: 100%;
}
.calculator__details .additional-info {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #949494;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.calculator__calculation__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px !important;
  margin-bottom: 32px;
}
.calculator__calculation__list li {
  display: flex;
  gap: 4px;
  justify-content: space-between;
}
.calculator__calculation__list .value {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #202020;
}
.calculator .btn-primary {
  width: 100%;
  height: 72px;
}
.calculator__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.calculator__block-wrapper {
  background: #ffffff;
  padding: 32px 32px 64px 32px;
  border-radius: 32px;
  max-width: 852px;
  width: 100%;
}
.calculator__limits-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.calculator__limit {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #b9b9b9;
}
.calculator__detail {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #202020;
}
@media (max-width: 500px) {
  .calculator {
    padding: 24px;
    border-radius: 20px;
  }
}

section.default-section-paddings {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  section.default-section-paddings {
    padding-bottom: 56px;
  }
}

section.breadcrumbs-section {
  padding: 30px 0 100px 0;
}
@media (max-width: 768px) {
  section.breadcrumbs-section {
    padding-bottom: 56px;
  }
}

.breadcrumbs {
  padding: 8px 12px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
  background: #ffe7d6;
  margin-bottom: 30px;
}
.breadcrumbs__prev-page, .breadcrumbs__current-page {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  vertical-align: middle;
  color: #fe5d3b;
}
.breadcrumbs__prev-page {
  color: rgba(254, 93, 59, 0.5019607843);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Exo 2", sans-serif;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}
h1.black,
h2.black,
h3.black,
h4.black,
h5.black {
  color: #202020;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

.section-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  color: #ffe7d6;
}

.primary-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #b9b9b9;
}
.primary-text.small {
  font-size: 20px;
}
.primary-text.big {
  font-size: 28px;
}
.primary-text.black {
  color: #202020;
}
.primary-text.light {
  color: #ffe7d6;
}
.primary-text.gray {
  color: #b9b9b9;
}
.primary-text.orange {
  color: #fe5d3b;
}
.primary-text.extra-small {
  font-size: 18px;
}
@media (max-width: 768px) {
  .primary-text.extra-small {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 34px;
    line-height: 1;
  }
  h2 {
    font-size: 30px;
    line-height: 1;
  }
  h4 {
    font-size: 20px;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 18px;
    line-height: 1.2;
  }
  .primary-text {
    font-size: 18px;
    line-height: 1.4;
  }
  .primary-text.small {
    font-size: 16px;
  }
  .primary-text.big {
    font-size: 20px;
  }
}
.footer {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}
.footer__container {
  border-radius: 24px 24px 0 0;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%), linear-gradient(0deg, #ff5841, #ff5841);
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 45px 0;
    margin-bottom: 54px;
    border-radius: 24px;
  }
}
.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 20px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer__logo-link {
    padding: 0 45px;
  }
}
.footer__outer-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .footer__outer-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 45px;
  }
}
@media screen and (min-width: 1400px) {
  .footer__outer-info-wrapper {
    grid-template-columns: 0.5fr 1fr 0.5fr 0.5fr;
  }
}
.footer__info-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__info-list {
    width: fit-content;
    height: 100%;
  }
}
.footer .footer__info-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 140%;
}
.footer .footer__info-text--bold {
  font-weight: 700;
}
.footer__nav {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: 100%;
    justify-content: center;
    height: 100%;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  text-align: start;
  row-gap: 16px;
}
@media screen and (min-width: 1200px) {
  .footer__nav-list {
    display: grid;
    width: 100%;
    max-width: 400px;
    grid-template-columns: 1fr 1fr;
    column-gap: 54px;
  }
}
.footer__nav-item.active .footer__nav-link {
  font-weight: 700;
}
.footer__nav-link {
  display: flex;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Bold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #fff;
}
.footer__socials-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer__socials-container {
    height: 100%;
  }
}
.footer__socials-title {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .footer__socials-title {
    font-size: 24px;
  }
}
.footer__socials-list {
  display: flex;
  column-gap: 32px;
}
.footer__socials-item {
  display: flex;
  width: 32px;
  height: 32px;
}
.footer__bottom-container {
  margin-top: 20px;
  padding: 20px 20px 0;
  border-top: 1px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__bottom-container {
    padding: 24px 45px 0;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 0.3fr;
  }
}
.footer__useful-files-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__useful-files-list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 8px;
  }
}
.footer__useful-files-item {
  display: flex;
  justify-items: center;
}
.footer__useful-files-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 56px;
  padding: 16px;
  text-wrap: balance;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  background-color: rgba(255, 231, 214, 0.3019607843);
  border-radius: 44px;
  max-width: 400px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.footer__useful-files-link:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .footer__useful-files-link {
    max-width: 275px;
    font-size: 14px;
  }
}
.footer__bottom-inner-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.footer__complaint {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffe7d6;
}
@media screen and (min-width: 768px) {
  .footer__complaint {
    font-size: 16px;
    text-align: start;
  }
}
.footer__rights {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffe7d6;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer__rights {
    font-size: 16px;
    margin-top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    text-align: start;
    align-items: flex-end;
  }
}

.pagination-list-arrow-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 78px;
  height: 64px;
}
.pagination-list-arrow-btn img {
  width: 78px;
  height: 64px;
}
@media (max-width: 768px) {
  .pagination-list-arrow-btn {
    width: 54px;
    height: 44px;
  }
  .pagination-list-arrow-btn img {
    width: 54px;
    height: 44px;
  }
}

.pagination-list-arrow-btn.prev-btn.active img {
  content: url(../images/pagination-next-active.svg);
  transform: rotate(180deg);
}

.pagination-list-arrow-btn.next-btn.inactive img {
  content: url(../images/pagination-prev-inactive.svg);
  transform: rotate(180deg);
}

.arrow-list-pagination-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
.arrow-list-pagination-block .primary-text {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .arrow-list-pagination-block .primary-text {
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .arrow-list-pagination-block {
    margin-bottom: 28px;
  }
  .arrow-list-pagination-block .desk {
    display: none;
  }
}

.hidden {
  display: none !important;
}

section.arrow-paginated-list-section {
  overflow: hidden;
}

@media (max-width: 766px) {
  #arrow-paginated-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: scroll;
    padding-bottom: 25px;
  }
  #arrow-paginated-list::-webkit-scrollbar {
    display: none;
  }
  #arrow-paginated-list li {
    flex-shrink: 0;
  }
}

.arrow-list-pagination-block__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}
.arrow-list-pagination-block__wrapper.mobile {
  display: none;
}
@media (max-width: 768px) {
  .arrow-list-pagination-block__wrapper.desk {
    display: none;
  }
  .arrow-list-pagination-block__wrapper.mobile {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}

.faq-lists {
  padding-bottom: 0 !important;
}

.number-list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  user-select: none;
}
.number-list-pagination__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .number-list-pagination__container {
    gap: 8px 12px;
  }
}
.number-list-pagination__number {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
}
.number-list-pagination__number.active {
  color: #ff5841;
}
@media (max-width: 768px) {
  .number-list-pagination {
    gap: 12px;
  }
}

.promotions-list-section__item-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.promotions-list-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 30px;
  justify-content: center;
}
.promotions-list-section__list__item {
  max-width: 431px;
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.2509803922);
  position: relative;
}
.promotions-list-section__list__item .date {
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #fe5d3b;
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
}
.promotions-list-section__list__item__text-wrapper {
  padding: 0 40px 40px 40px;
}
@media (max-width: 768px) {
  .promotions-list-section__list__item__text-wrapper {
    padding: 0 20px 20px 20px;
  }
}
.promotions-list-section__list__item__img {
  margin-bottom: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .promotions-list-section__list__item__img {
    margin-bottom: 24px;
  }
}
.promotions-list-section__list__item h4 {
  margin-bottom: 16px;
  word-break: break-word;
}
@media (max-width: 768px) {
  .promotions-list-section__list__item h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .promotions-list-section {
    padding-bottom: 56px;
  }
  .promotions-list-section__list {
    gap: 20px;
  }
  .promotions-list-section__list.promotion-arrow-paginated-list {
    padding-bottom: 25px !important;
  }
  .promotions-list-section__list.promotion-arrow-paginated-list .promotions-list-section__list__item {
    width: 335px;
  }
}

.slider--static.slider__btns {
  position: static;
  bottom: unset;
  right: unset;
}
.slider__btns {
  display: flex;
  column-gap: 12px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}
.slider__btn-prev-slide, .slider__btn-next-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 44px;
  border-radius: 30.25px;
  border: none;
  cursor: pointer;
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%);
  color: #ffffff;
}
.slider__btn-prev-slide:disabled, .slider__btn-next-slide:disabled {
  background: #f1f1f1;
  pointer-events: none;
  color: #b9b9b9;
}
.slider__btn-next-slide {
  transform: rotate(180deg);
}
.slider__icon-arrow {
  width: 31px;
  height: 15px;
  transform: scale(0.9);
}

.blocks-slider__top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blocks-slider__top-container > .slider__btns {
  display: none;
}
@media screen and (min-width: 768px) {
  .blocks-slider__top-container > .slider__btns {
    display: flex;
  }
}
.blocks-slider__top-inner {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 20px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .blocks-slider__top-inner {
    row-gap: 24px;
    width: 100%;
  }
}
.blocks-slider__title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #202020;
}
@media screen and (min-width: 768px) {
  .blocks-slider__title {
    font-size: 48px;
  }
}
.blocks-slider__subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
}
@media screen and (min-width: 768px) {
  .blocks-slider__subtitle {
    font-size: 24px;
    line-height: 120%;
  }
}
.blocks-slider .blocks-slider__slide {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.2509803922);
}
.blocks-slider .blocks-slider__slide:first-of-type {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .blocks-slider .blocks-slider__slide {
    padding: 40px;
  }
}
.blocks-slider__slide-image {
  display: block;
  width: 40px;
  height: 40px;
}
.blocks-slider__slide-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #202020;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .blocks-slider__slide-title {
    font-size: 32px;
  }
}
.blocks-slider__slide-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .blocks-slider__slide-content {
    margin-top: 32px;
  }
}
.blocks-slider__slide-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
}
@media screen and (min-width: 768px) {
  .blocks-slider__slide-text {
    font-size: 20px;
  }
}
.blocks-slider .slider__btns {
  margin-top: 8px;
  margin-left: auto;
  justify-content: flex-end;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .blocks-slider .slider__btns {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .blocks-slider__slider-container .slider__btns {
    display: none;
  }
}
.blocks-slider__slider-wrapper .swiper {
  padding-bottom: 30px;
}

.text-list {
  padding-left: 24px;
  color: #929292;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-list li {
  list-style-type: disc;
}

@media (max-width: 768px) {
  .container-inline-padding-disable-section .container {
    padding: 0 !important;
  }
}

.default-first-screen-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.default-first-screen-wrapper__banner {
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%);
  max-width: 1198px;
  width: 100%;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.default-first-screen-wrapper__banner__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .default-first-screen-wrapper__banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 0;
  }
  .default-first-screen-wrapper__banner .default-first-screen-wrapper__img {
    position: relative;
    bottom: -150px;
    margin-top: -100px;
    z-index: 1;
    max-width: 345px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .default-first-screen-wrapper__banner {
    padding: 20px 20px 0 20px;
  }
}
@media (max-width: 430px) {
  .default-first-screen-wrapper__banner .default-first-screen-wrapper__img {
    max-width: 250px;
    bottom: -113px;
    margin-top: -90px;
  }
}
.default-first-screen-wrapper .calculator {
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .default-first-screen-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.guide-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.guide-list__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.guide-list.not-paginated.guide-list--two-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .guide-list.not-paginated.guide-list--two-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.guide-list.not-paginated.guide-list--three-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .guide-list.not-paginated.guide-list--three-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .guide-list.not-paginated.guide-list--three-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.guide-list.not-paginated .guide-list__item {
  max-width: unset;
}
.guide-list__item {
  max-width: 584px;
  width: 100%;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.2509803922);
  background: #ffffff;
}
.guide-list__item.big {
  max-width: 891px;
}
.guide-list__item__img {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .guide-list__item__img {
    margin-bottom: 24px;
  }
}
.guide-list__item h4 {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .guide-list__item {
    width: 310px;
    padding: 20px;
  }
  .guide-list__item__img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .guide-list__item {
    width: 310px;
    padding: 20px;
  }
  .guide-list__item__img {
    width: 40px;
    height: 40px;
  }
  .guide-list.not-paginated .guide-list__item {
    width: 100%;
    max-width: unset;
  }
}

.checkmark-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 44px;
  max-height: 292px;
}
.checkmark-list__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .checkmark-list {
    margin-top: 28px;
    gap: 12px;
  }
  .checkmark-list__item {
    gap: 12px;
  }
  .checkmark-list__item__img {
    width: 40px;
    height: 40px;
  }
}

.help-section__text {
  color: #ffe7d6;
}
.help-section__wrapper {
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
}
.help-section__wrapper__text-wrapper h2 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .help-section__wrapper__text-wrapper h2 {
    margin-bottom: 12px;
  }
}
.help-section__wrapper__actions-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .help-section__wrapper {
    padding: 20px;
  }
}
.help-section .btn-secondary {
  height: 72px;
  width: 249px;
  background: #ffffff;
  color: #fe5d3b;
}
@media (max-width: 768px) {
  .help-section__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .help-section__wrapper__actions-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .help-section__wrapper .btn-secondary {
    max-width: 335px;
  }
}

ul.faq__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin-top: 64px;
}
ul.faq__list .faq__list-item-header__btn {
  border: none;
  background: transparent;
  user-select: none;
  cursor: pointer;
}
ul.faq__list .faq__list-item-header__btn.active img {
  content: url(../images/faq-list-opened-icon.svg);
}
ul.faq__list li {
  max-width: 1732px;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(30px);
  border-radius: 24px;
}
ul.faq__list li .faq__list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 40px;
}
ul.faq__list li .faq__list-item-header.opened {
  margin-bottom: -24px;
}
ul.faq__list li .faq__list-item-header .title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #202020;
}
ul.faq__list li .item-content {
  padding: 0 40px 40px 40px;
}
ul.faq__list li .item-content .primary-text {
  font-size: 18px;
}

@media (max-width: 768px) {
  ul.faq__list {
    margin-top: 28px;
  }
  ul.faq__list li .faq__list-item-header {
    padding: 20px;
  }
  ul.faq__list li .faq__list-item-header .title {
    font-size: 18px;
  }
  ul.faq__list li .faq__list-item-header .faq__list-item-header__btn img {
    width: 44px;
    height: 44px;
  }
  ul.faq__list li .item-content {
    padding: 0 20px 20px 20px;
  }
  ul.faq__list li .faq__list-item-header.opened {
    margin-bottom: 0;
  }
  ul.faq__list li .faq__list-item-header.opened .primary-text {
    font-size: 16px;
  }
}
.hidden {
  display: none;
}

.faq-lists-change-container {
  max-width: 1198px;
  width: 100%;
  background: #ffffff;
  padding: 10px;
  border-radius: 60px;
  margin-top: 64px;
  margin-bottom: -34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}
.faq-lists-change-container__list {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 828px;
  width: 100%;
  overflow-x: scroll;
}
.faq-lists-change-container__list::-webkit-scrollbar {
  display: none;
}
.faq-lists-change-container__list li {
  cursor: pointer;
}
.faq-lists-change-container__list li .primary-text {
  text-wrap: nowrap;
}
.faq-lists-change-container__list li.active .primary-text {
  color: #fe5d3b;
}
.faq-lists-change-container__btn {
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-lists-change-container__btn.next-btn.inactive img {
  content: url(../images/pagination-prev-inactive.svg);
  transform: rotate(180deg);
}
.faq-lists-change-container__btn.prev-btn.active img {
  content: url(../images/pagination-next-active.svg);
  transform: rotate(180deg);
}
.faq-lists-change-container__btn img {
  width: 78px;
  height: 64px;
}
@media (max-width: 1240px) {
  .faq-lists-change-container__list {
    width: 55dvw;
  }
}
@media (max-width: 1240px) and (max-width: 768px) {
  .faq-lists-change-container {
    margin-top: 28px;
    margin-bottom: 0;
  }
  .faq-lists-change-container__list {
    gap: 12px;
    width: 59dvw;
  }
  .faq-lists-change-container .faq-lists-change-container__btn img {
    width: 54px;
    height: 44px;
  }
}
@media (max-width: 1240px) and (max-width: 500px) {
  .faq-lists-change-container {
    gap: 10px;
  }
  .faq-lists-change-container__list {
    width: 50dvw;
  }
}
@media (max-width: 1240px) and (max-width: 400px) {
  .faq-lists-change-container__list {
    width: 40dvw;
  }
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkbox-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  padding-left: 28px;
  line-height: 20px;
  vertical-align: middle;
  padding-top: 16px;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: #929292;
}
.checkbox-label a {
  color: #fe5d3b;
  text-decoration: underline;
}

.checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: white;
  border: 2px solid #afabab;
  display: block;
  box-sizing: border-box;
  transition: background 120ms ease, border 120ms ease, transform 120ms ease;
}

input[type=checkbox]:checked + .checkbox-label::before {
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%);
  border: none;
}

.checkbox-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-68%) rotate(41deg);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  display: none;
  box-sizing: content-box;
}

input[type=checkbox]:checked + .checkbox-label::after {
  display: block;
}

.input-wrapper {
  position: relative;
  max-width: 411px;
  width: 100%;
}

.input-wrapper .err-text {
  font-size: 14px;
  line-height: 140%;
  color: #e04a4d;
  display: none;
}

.input-wrapper input[type=text].error ~ .err-text,
input[type=password].error ~ .err-text {
  display: block;
}

.input-wrapper input[type=text],
input[type=password] {
  height: 60px;
  max-width: 411px;
  width: 100%;
  background: #ffffff;
  padding: 24px 12px 16px 16px;
  border-radius: 24px;
  outline: none;
  border: none;
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  line-height: 100%;
  color: #929292;
  text-align: left;
}

.input-wrapper input[type=text].big {
  max-width: 811px;
  width: 100%;
}

.input-wrapper input[type=text].error,
input[type=password].error {
  border: 2px solid #e04a4d !important;
}

.input-wrapper input[type=text]:valid,
input[type=password]:valid {
  border: 2px solid #076fcd;
}

.input-wrapper label.input-placeholder {
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  line-height: 100%;
  color: #929292;
  position: absolute;
  top: 21px;
  left: 17px;
  transition: 0.2s all linear;
}

.input-wrapper input[type=text].error ~ label.input-placeholder {
  color: #e04a4d;
}

.input-wrapper.big {
  max-width: 850px;
}
.input-wrapper.big input {
  max-width: 850px;
}

.input-wrapper textarea {
  height: 120px;
  min-height: 120px;
  border-radius: 32px;
  padding: 16px;
  width: 100%;
  max-width: 850px;
}

.input-wrapper input[type=text]:valid ~ label.input-placeholder,
.input-wrapper input[type=text]:focus ~ label.input-placeholder,
.input-wrapper input[type=password]:valid ~ label.input-placeholder,
.input-wrapper input[type=password]:focus ~ label.input-placeholder {
  top: 11px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .input-wrapper {
    max-width: 850px;
  }
  .input-wrapper input {
    max-width: 850px !important;
  }
}
.toast-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-message.success {
  background-color: #4CAF50;
}

.toast-message.error {
  background-color: #f44336;
}

.promotions-banner {
  padding: 30px 0 100px 0;
}
.promotions-banner__wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.promotions-banner__banner-content {
  background: linear-gradient(89.46deg, #F7771C -9.6%, #FF5841 101.64%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1198px;
}
.promotions-banner__banner-content h1 {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .promotions-banner__banner-content {
    flex-direction: column;
    padding: 20px 20px 0 20px;
    gap: 0;
  }
  .promotions-banner__banner-content img {
    width: 160px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
  }
}
@media (max-width: 768px) {
  .promotions-banner {
    padding-bottom: 56px;
  }
}

.grid-banner {
  margin: 28px 0;
}
@media screen and (min-width: 768px) {
  .grid-banner {
    margin: 30px 0 100px;
  }
}
.grid-banner__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
  min-width: unset;
}
@media screen and (min-width: 1000px) {
  .grid-banner__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .grid-banner__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
    row-gap: 32px;
    column-gap: 30px;
  }
}
.grid-banner__title {
  text-wrap: balance;
  font-size: 34px;
}
@media screen and (min-width: 1300px) {
  .grid-banner__title {
    font-size: 60px;
  }
}
.grid-banner__text-info {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%), linear-gradient(0deg, #ff5841, #ff5841);
}
@media screen and (min-width: 768px) {
  .grid-banner__text-info {
    row-gap: 32px;
    padding: 40px;
  }
}
.grid-banner__subtitle {
  font-family: "Exo 2", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #ffe7d6;
}
@media screen and (min-width: 1300px) {
  .grid-banner__subtitle {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #ffe3df;
    opacity: 0.8;
  }
}
.grid-banner__calculator {
  display: flex;
  justify-content: center;
}
.grid-banner__slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
}
.grid-banner__slider-wrapper .swiper-slide {
  width: 100%;
}
.grid-banner__slider-wrapper .swiper-slide img,
.grid-banner__slider-wrapper .swiper-slide video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 261px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .grid-banner__slider-wrapper .swiper-slide img,
  .grid-banner__slider-wrapper .swiper-slide video {
    border-radius: 24px;
  }
}
.grid-banner__info-tabs {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .grid-banner__info-tabs {
    row-gap: 16px;
  }
}
.grid-banner__info-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 16px 20px;
  background-color: #fff;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.25);
  border-radius: 16px;
}
@media screen and (min-width: 1300px) {
  .grid-banner__info-item {
    padding: 32px 40px;
  }
}
.grid-banner__info-text {
  font-family: "Exo 2", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #202020;
}
@media screen and (min-width: 1300px) {
  .grid-banner__info-text {
    font-size: 32px;
    font-weight: 400;
  }
}

.card-effect-banner {
  padding: 28px 0;
}
@media screen and (min-width: 768px) {
  .card-effect-banner {
    padding: 100px 0 0;
  }
}
.card-effect-banner__wrapper {
  padding: 20px;
  border-radius: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 90%;
  row-gap: 56px;
  margin-bottom: 200px;
  background: linear-gradient(89.46deg, #f7771c -9.6%, #ff5841 101.64%), linear-gradient(0deg, #ff5841, #ff5841);
}
@media screen and (min-width: 768px) {
  .card-effect-banner__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 20px;
    padding: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .card-effect-banner__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    column-gap: 30px;
  }
}
.card-effect-banner__text-container {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.card-effect-banner__left-container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__left-container {
    row-gap: 44px;
  }
}
.card-effect-banner__title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__title {
    font-size: 48px;
  }
}
.card-effect-banner__description {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ffe7d6;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__description {
    font-size: 24px;
    line-height: 120%;
  }
}
.card-effect-banner__btn {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__btn {
    margin: unset;
  }
}
.card-effect-banner__right-container {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 200px;
  margin-top: -200px;
  margin-bottom: -200px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__right-container {
    flex-direction: column;
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: -100px;
  }
}
.card-effect-banner__slide {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px -3px 32.1px 0px rgba(89, 89, 89, 0.5);
}
@media screen and (min-width: 1300px) {
  .card-effect-banner__slide {
    flex-direction: row;
    height: fit-content;
  }
}
.card-effect-banner__slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  max-height: 296px;
}
@media screen and (min-width: 1300px) {
  .card-effect-banner__slide-image {
    max-height: unset;
    max-width: 424px;
  }
}
.card-effect-banner__slide-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  row-gap: 32px;
  padding: 20px;
}
@media screen and (min-width: 1300px) {
  .card-effect-banner__slide-content {
    padding: 40px 40px 40px 20px;
  }
}
.card-effect-banner__slide-content-inner {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.card-effect-banner__date {
  display: flex;
  width: fit-content;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  background-color: #ffe7d6;
  color: #fe5d3b;
  margin-bottom: 4px;
  padding: 4px 8px;
  border-radius: 24px;
}
.card-effect-banner__slider-wrapper {
  pointer-events: all;
}
.card-effect-banner .swiper {
  height: fit-content;
  max-height: 650px;
}
@media screen and (min-width: 768px) {
  .card-effect-banner .swiper {
    max-height: 750px;
  }
}
@media screen and (min-width: 1300px) {
  .card-effect-banner .swiper {
    max-height: 550px;
  }
}
@media screen and (min-width: 1500px) {
  .card-effect-banner .swiper {
    max-height: 400px;
  }
}
.card-effect-banner__slide-title {
  color: #202020;
}
.card-effect-banner__slide-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__slide-text {
    font-size: 16px;
  }
}
.card-effect-banner__slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ff5841;
  background-color: #ffe7d6;
  padding: 26px;
  text-align: center;
  border-radius: 44px;
  margin-top: auto;
  transition: transform 0.3s ease;
}
.card-effect-banner__slide-link:hover {
  transform: scale(1.05);
}
.card-effect-banner__slider-controls {
  margin-top: 48px;
  display: flex;
  justify-content: flex-end;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .card-effect-banner__slider-controls {
    margin-top: unset;
    margin-bottom: 48px;
  }
  .card-effect-banner__slider-controls .slider__btn-prev-slide,
  .card-effect-banner__slider-controls .slider__btn-next-slide {
    background: #ffffff;
    color: #fe5d3b;
  }
  .card-effect-banner__slider-controls .slider__btn-prev-slide:disabled,
  .card-effect-banner__slider-controls .slider__btn-next-slide:disabled {
    opacity: 0.5;
    background: #f1f1f1;
    color: #b9b9b9;
  }
}

.comments-slider__wrapper {
  border-radius: 24px;
  background-color: #f1f1f1;
  padding-bottom: 20px;
  margin: 28px 0 56px;
}
@media screen and (min-width: 768px) {
  .comments-slider__wrapper {
    padding-bottom: 40px;
    margin: 100px 0;
  }
}
.comments-slider__title {
  color: #202020;
  padding: 20px;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .comments-slider__title {
    padding: 40px;
    margin-bottom: 24px;
  }
}
.comments-slider .comments-slider__slide {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  width: 100%;
  background-color: #fff;
  height: auto;
  border-radius: 24px;
  padding: 20px;
}
.comments-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.comments-slider__author-info {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.comments-slider__author-avatar {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .comments-slider__author-avatar {
    width: 64px;
    height: 64px;
  }
}
.comments-slider__author-text {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.comments-slider__author-name {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #202020;
}
@media screen and (min-width: 768px) {
  .comments-slider__author-name {
    font-size: 24px;
  }
}
.comments-slider__author-position {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
}
.comments-slider__slide-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #202020;
}
@media screen and (min-width: 768px) {
  .comments-slider__slide-text {
    font-size: 20px;
  }
}
.comments-slider__sliders-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.info-grid {
  padding: 28px 0;
}
@media screen and (min-width: 768px) {
  .info-grid {
    padding: 50px 0;
  }
}
.info-grid__container {
  display: grid;
  row-gap: 50px;
  column-gap: 30px;
}
@media screen and (min-width: 1300px) {
  .info-grid__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.info-grid__block {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background-color: #ffe3df;
}
.info-grid__block--orange {
  background-color: #ffe7d6;
}
.info-grid__block--gray {
  background-color: #f1f1f1;
}
@media screen and (min-width: 1000px) {
  .info-grid__block {
    padding: 40px;
  }
}
.info-grid__block-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  .info-grid__block-inner {
    width: 50%;
  }
}
.info-grid__block-title {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #202020;
}
@media screen and (min-width: 768px) {
  .info-grid__block-title {
    font-size: 48px;
  }
}
.info-grid__block-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
}
@media screen and (min-width: 768px) {
  .info-grid__block-text {
    font-size: 24px;
  }
}
.info-grid__block-link {
  display: flex;
  padding: 26px 24px;
  width: fit-content;
  margin-top: 20px;
}
.info-grid__block-image {
  position: absolute;
  top: 85%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
  width: 220px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .info-grid__block-image {
    width: fit-content;
    top: 50%;
  }
}

.home-page .faq {
  margin: 28px 0;
}
@media screen and (min-width: 768px) {
  .home-page .faq {
    margin: 50px 0;
  }
}
.home-page .help-section {
  padding: 0 0 28px;
}
@media screen and (min-width: 768px) {
  .home-page .help-section {
    padding: 0 0 100px;
  }
}

.spread-content__state h4 {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #202020;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .spread-content__state h4 {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.spread-content__state p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #b9b9b9;
  margin-bottom: 24px;
}
.spread-content__state ul {
  display: flex;
  column-gap: 8px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .spread-content__state ul {
    column-gap: 16px;
    row-gap: 16px;
  }
}
.spread-content__state li {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ff5841;
  background-color: #ffe7d6;
  padding: 18px 8px;
  border-radius: 44px;
}
@media screen and (min-width: 768px) {
  .spread-content__state li {
    font-size: 16px;
    padding: 24px;
  }
}
.spread-content__btn-arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
}
.spread-content__btn {
  display: flex;
  align-items: center;
  column-gap: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.spread-content__btn-text {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #fe5d3b;
}

.promotions-item-banner {
  background: transparent;
}
.promotions-item-banner.breadcrumbs-section {
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .promotions-item-banner.breadcrumbs-section {
    padding-bottom: 28px;
  }
}
.promotions-item-banner__wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.promotion-item-description__wrapper {
  background: #F1F1F1;
  padding: 40px;
  border-radius: 24px;
  max-width: 1198px;
}
@media (max-width: 768px) {
  .promotion-item-description__wrapper {
    padding: 20px;
  }
  .promotion-item-description__wrapper .primary-text {
    font-size: 16px;
  }
}
.promotion-item-description .text-list {
  margin-bottom: 44px;
}
.promotion-item-description .text-list .primary-text {
  margin: 0;
}
.promotion-item-description h4 {
  margin-bottom: 16px;
}
.promotion-item-description .primary-text {
  margin-bottom: 44px;
}
.promotion-item-description .btn-primary {
  height: 72px;
  max-width: 391px;
  margin-top: 44px;
}

.info-page {
  padding: 100px 0 0 0;
}
.info-page .error-block {
  display: block;
  margin: 0 auto 44px auto;
  background: #FFE7D6;
  padding: 8px 12px;
  border-radius: 28px;
  width: 86px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #FE5D3B;
}
.info-page h1, .info-page .subtitle {
  text-align: center;
}
.info-page h1 {
  margin-bottom: 32px;
}
.info-page .subtitle {
  margin-bottom: 44px;
}
.info-page .btn-primary {
  height: 72px;
  max-width: 323px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info-page {
    padding: 28px 0;
  }
  .info-page h1 {
    margin-bottom: 24px;
  }
  .info-page .error-block {
    margin-bottom: 24px;
  }
}

.requirements-for-loan__wrapper {
  background: #FFE7D6;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.requirements-for-loan__wrapper.payment-date-wrapper {
  background: #F1F1F1;
}
.requirements-for-loan__wrapper.payment-date-wrapper > img {
  margin: 0;
}
.requirements-for-loan__wrapper__text-wrapper {
  padding: 40px 0 40px 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1660px) {
  .requirements-for-loan__wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .requirements-for-loan__wrapper__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.requirements-for-loan__img {
  position: relative;
  z-index: 2;
  margin: -56px 0 -56px 0;
  padding-right: 40px;
}
@media (max-width: 1660px) {
  .requirements-for-loan {
    margin-top: 140px;
  }
  .requirements-for-loan.payment-date {
    margin-top: 240px;
    background: #F1F1F1;
  }
  .requirements-for-loan .checkmark-list {
    max-height: initial;
    flex-wrap: wrap;
    text-align: left;
  }
  .requirements-for-loan__wrapper {
    padding: 0 40px 40px 40px;
  }
  .requirements-for-loan__wrapper.payment-date-wrapper {
    background: transparent;
  }
  .requirements-for-loan__wrapper.payment-date-wrapper > img {
    margin-top: -240px;
  }
  .requirements-for-loan__img {
    margin-top: -140px;
    margin-bottom: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .requirements-for-loan {
    background: #FFE7D6;
    text-align: left;
    padding-bottom: 20px !important;
    margin-bottom: 56px;
  }
  .requirements-for-loan__wrapper {
    padding: 0;
    background: transparent;
  }
  .requirements-for-loan__img {
    max-width: 345px;
    width: 100%;
  }
}

.faq__wrapper {
  background: #F1F1F1;
  padding: 40px;
  border-radius: 24px;
}
.faq__wrapper__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.faq__wrapper__title-wrapper .btn-primary {
  width: 118px;
  height: 50px;
}
@media (max-width: 768px) {
  .faq__wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .faq {
    background: #F1F1F1;
    padding: 20px 0;
  }
  .faq__wrapper {
    padding: 0;
    background: transparent;
  }
}

.how-it-works .btn-secondary.mobile {
  display: none;
}
@media (max-width: 768px) {
  .how-it-works .btn-secondary.mobile {
    display: flex;
    margin: 32px auto 0 auto;
  }
}

.faq-lists__wrapper {
  overflow: hidden;
  background: #F1F1F1;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.faq-lists__wrapper .calculator {
  margin-top: 123px;
}
@media (max-width: 1660px) {
  .faq-lists__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .faq-lists__wrapper .calculator {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .faq-lists .container {
    padding: 0;
  }
  .faq-lists__wrapper {
    padding: 20px;
  }
  .faq-lists__wrapper .calculator {
    width: 100dvw;
  }
}

.contacts-us {
  padding-bottom: 0 !important;
}
.contacts-us h2 {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .contacts-us h2 {
    margin-bottom: 28px;
  }
}
.contacts-us h1 {
  margin-bottom: 24px;
}
.contacts-us .textarea-input textarea {
  resize: none;
  min-height: 120px;
  border: none;
}
.contacts-us .textarea-input textarea:focus {
  outline: none;
}
.contacts-us__two-inputs-wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .contacts-us__two-inputs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contacts-us__wrapper {
  display: flex;
  gap: 30px;
}
.contacts-us__wrapper__info {
  max-width: 891px;
  width: 100%;
  background: #F1F1F1;
  padding: 40px;
  border-radius: 24px;
}
.contacts-us__wrapper__info h5 {
  margin-bottom: 24px;
}
.contacts-us__wrapper__info .primary-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-us__wrapper__info .primary-text.orange {
  margin-left: 6px;
}
.contacts-us__wrapper__info__block__content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-us__wrapper__info__block {
  width: 100%;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
}
.contacts-us__wrapper__info__block__wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.contacts-us__wrapper__info__block__wrapper .wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .contacts-us__wrapper__info__block__wrapper .wrapper img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .contacts-us__wrapper__info__block {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .contacts-us__wrapper__info {
    padding: 20px;
  }
}
.contacts-us__wrapper__form-wrapper__banner {
  position: relative;
  z-index: 2;
  background: linear-gradient(89.46deg, #F7771C -9.6%, #FF5841 101.64%);
  padding: 40px 40px 0 40px;
  border-radius: 24px;
}
.contacts-us__wrapper__form-wrapper__banner img {
  display: block;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .contacts-us__wrapper__form-wrapper__banner img {
    width: 100%;
  }
}
.contacts-us__wrapper__form-wrapper__banner p {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .contacts-us__wrapper__form-wrapper__banner p {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .contacts-us__wrapper__form-wrapper__banner {
    padding: 20px 20px 0 20px;
  }
}
.contacts-us__wrapper__form-block-wrapper {
  max-width: 922px;
  width: 100%;
}
.contacts-us__wrapper__form-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -16px;
  background: #FFE7D6;
  box-shadow: 0px 10px 16.3px 0px rgba(89, 89, 89, 0.2509803922);
  padding: 56px 40px 40px 40px;
  border-radius: 0 0 24px 24px;
}
.contacts-us__wrapper__form-wrapper__controls-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.contacts-us__wrapper__form-wrapper .btn-primary {
  height: 72px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .contacts-us__wrapper__form-wrapper {
    padding: 36px 20px 20px 20px;
  }
}
@media (max-width: 1660px) {
  .contacts-us__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contacts-us__wrapper__info {
    max-width: 922px;
  }
}
@media (max-width: 768px) {
  .contacts-us .container {
    padding: 0 !important;
  }
}
.footer-link,
.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: inherit;            /* Наслідує колір тексту від батьківського елемента */
    text-decoration: none;     /* Прибирає підкреслення */
    outline: none;             /* Прибирає рамку при фокусі */
    cursor: pointer;           /* Зберігає іконку "руки" */
}
