:root {
  --midnight-blue: #2b1e52;
  --royal-blue: #005ffe;
  --alice-blue: #f1f6ff;
  --white: white;
  --transparent: transparent;
}

.loading {
  opacity: .5;
}
.tag p {
  margin:0;
  padding:0;
}
.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--midnight-blue);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.025em;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  letter-spacing: -.025em;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}

h3 {
  letter-spacing: -.026em;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.025em;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

h5 {
  letter-spacing: -.025em;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

h6 {
  opacity: .5;
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--royal-blue);
  text-decoration: none;
  transition: opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
}

a:hover {
  color: var(--midnight-blue);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: 800;
}

blockquote {
  background-color: var(--alice-blue);
  background-image: url('../images/blockqoute.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 4rem;
  border-left: 1px #000;
  border-radius: .5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 2rem 2rem 6rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  opacity: .75;
  color: rgba(43, 30, 82, .7);
  text-align: left;
  margin-top: .5rem;
  font-size: 1rem;
  line-height: 1.25;
}

.global-style {
  position: relative;
}

.button {
  border: .125rem solid var(--royal-blue);
  background-color: var(--royal-blue);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s cubic-bezier(.68, 0, .265, 1.55), color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .3s cubic-bezier(.68, 0, .265, 1.55);
  display: flex;
}

.button:hover {
  color: #fff;
  background-color: #0056e6;
  border-color: #0056e6;
  transform: scale(1.1);
}

.button:active {
  background-color: var(--royal-blue);
  transform: scale(1);
}

.button.b-shadow {
  color: var(--white);
  box-shadow: 0 16px 1rem -.5rem rgba(7, 51, 126, .5);
}

.button.b-shadow:hover {
  box-shadow: 0 16px 1.5rem -.5rem rgba(7, 51, 126, .25);
}

.button.b-shadow:active {
  box-shadow: 0 16px 1rem -.5rem rgba(7, 51, 126, .5);
}

.button.b-shadow.work-step-button {
  margin-top: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.button.b-shadow.work-step-button.white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--midnight-blue);
}

.button.b-shadow.padding-2rem {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.button.b-inverted {
  border: .125rem solid var(--royal-blue);
  color: var(--royal-blue);
  background-color: rgba(0, 0, 0, 0);
}

.button.b-inverted:hover {
  border-color: var(--midnight-blue);
  color: var(--midnight-blue);
  transform: none;
}

.button.b-inverted:active {
  transform: scale(.96);
}

.button.b-icon {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  color: #fff;
  white-space: nowrap;
  padding: .125rem 1.375rem .125rem .125rem;
  box-shadow: 0 16px 1rem -.5rem rgba(7, 51, 126, .2);
}

.button.b-icon:hover {
  box-shadow: 0 16px 1.5rem -.5rem rgba(7, 51, 126, .25);
}

.button.b-icon:active {
  box-shadow: 0 16px 1rem -.5rem rgba(7, 51, 126, .5);
}

.button.b-icon.b-white {
  color: var(--midnight-blue);
  background-color: #fff;
  border-color: #fff;
}

.button.b-icon.b-blue {
  border-color: var(--royal-blue);
  background-color: var(--royal-blue);
}

.button.b-icon.b-no-shadow {
  box-shadow: none;
}

.button.b-arrow {
  border: .125rem solid var(--midnight-blue);
  opacity: .6;
  color: var(--midnight-blue);
  background-color: rgba(0, 0, 0, 0);
  padding-top: .375rem;
  padding-bottom: .375rem;
}

.button.b-arrow:hover {
  border-color: var(--midnight-blue);
  opacity: 1;
  color: var(--midnight-blue);
  transform: none;
}

.button.b-arrow:active {
  opacity: .8;
  transform: scale(.96);
}

.button.b-arrow.b-heading-arrow {
  margin-bottom: .75rem;
  margin-left: .75rem;
}

.button.b-card-footer {
  color: var(--midnight-blue);
  background-color: #dfe5f0;
  border-style: none;
  border-width: 0;
  border-radius: 0;
  flex: 1;
  padding: .9rem 1rem 1rem;
}

.button.b-card-footer:hover {
  opacity: .8;
  transform: none;
}

.button.b-card-footer.green {
  color: var(--white);
  background-color: #229e39;
}

.button.b-card-footer.orange {
  color: var(--white);
  background-color: #f56920;
}

.button.b-card-footer.dark-blue {
  color: var(--white);
  background-color: #002e73;
}

.button.b-card-footer.red {
  color: var(--white);
  background-color: #f03225;
}

.button.b-dark {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
  color: var(--white);
}

.button.b-dark.calc-success-button {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.button.b-white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--midnight-blue);
}

.button.b-white.cross-button {
  min-width: 3.25rem;
  color: rgba(43, 30, 82, .3);
}

.button.b-white.cross-button:hover {
  color: #2b1e52;
}

.button-styles {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  align-items: flex-start;
  display: flex;
}

.rich-text {
  width: 100%;
  max-width: 54rem;
  min-width: 848px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32.6073px;
}

.rich-text ul {
  margin-bottom: .5rem;
  padding-left: 0;
  list-style-type: none;
}
.rich-text ul ul {
  padding-left: 2rem;
}

.rich-text li {
  background-image: url('../images/star.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 1rem 1.35rem;
  background-attachment: scroll;
  margin-bottom: .25rem;
  margin-left: 0;
  padding-left: 2rem;
}

.rich-text ol {
  margin-bottom: .5rem;
  padding-left: 3rem;
}

.rich-text.expandable-rich-text {
  max-width: none;
  min-width: 0;
  padding-bottom: .5rem;
  padding-left: 0;
  padding-right: 0;
}

.rich-text.program-rich-text {
  max-width: 100%;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.rich-text.program-rich-text h4 {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.big-p {
  opacity: .8;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.section {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section.h-flex {
  display: flex;
}

.section.h-flex.offers {
  padding-bottom: 3rem;
}

.section.footer-section {
  margin-bottom: 0;
}

.container {
  max-width: 1920px;
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 4rem;
  position: relative;
}

.container.overflow-hidden {
  overflow: hidden;
}

.container.overflow-hidden.form-container {
  background-color: #dce5f6;
  padding-bottom: 1rem;
}

.container.work-steps-container {
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  display: flex;
}

.container.space-between-flex-container {
  justify-content: space-between;
  display: flex;
}

.container.footer-container {
  background-color: var(--midnight-blue);
  color: var(--white);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  font-size: .875rem;
  line-height: 1.42857;
  display: flex;
}

.container.transparent-bg {
  background-color: var(--transparent);
}

.container.offers-heading-container {
  margin-bottom: -1.5rem;
  padding-bottom: 0;
}

.banner {
  max-width: 1920px;
  flex: none;
  margin-left: auto;
  margin-right: auto;
}

.banner-container {
  background-color: var(--alice-blue);
  border-radius: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-wrap {
  z-index: 1;
  width: 50%;
  min-height: 22.5rem;
  background-color: #e6ddd6;
  border-radius: 1rem;
  flex-direction: column;
  flex: none;
  padding: 2rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-wrap.yacht {
  background-color: #d0f1f9;
}

.banner-content-wrap.spectechnika {
  background-color: #edd1bb;
}

.banner-content-wrap.kommerc-avto {
  background-color: #f5b4b0;
}

.banner-content-wrap.just-leasing {
  color: var(--white);
  background-color: #1164f0;
}

.banner-content-wrap.calc {
  color: var(--white);
  background-color: #403e74;
}

.banner-content-wrap.sitrak {
  background-color: #d4dceb;
}

.banner-content-wrap.full-width {
  width: 100%;
  flex: none;
}

.banner-content-wrap.full-width.red {
  color: var(--white);
  background-color: #f33832;
}

.banner-image-wrap {
  flex: 1;
  margin-left: -1rem;
  display: flex;
  position: relative;
}

.image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  flex: none;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.banner-heading {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.08;
  
}

.banner-p.banner-big-p {
  font-size: 1.5rem;
  line-height: 1.33333;
}

.banner-content-footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: nowrap;
  margin-top: auto;
  display: flex;
}

.banner-content-footer.company-banner-footer {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  font-size: .75rem;
  line-height: 1.35;
}

.button-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--midnight-blue);
  background-color: #fff;
  border-radius: .3125rem;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
  display: flex;
  position: relative;
}

.button-icon-wrap.dark-bg {
  background-color: var(--transparent);
  color: var(--white);
  margin-left: .5rem;
  margin-right: 0;
}

.button-label.blue {
  color: var(--royal-blue);
}

.button-icon {
  width: 100%;
  height: 100%;
  max-height: 1.5rem;
  max-width: 1.5rem;
  object-fit: contain;
  position: absolute;
}

.banner-content {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
}

.banners-wrap {
  display: flex;
}

.gradient {
  z-index: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.gradient._180 {
  height: 170%;
}

.gradient._120 {
  height: 120%;
}

.gradient._140 {
  height: 140%;
}

.banners {
  position: relative;
  overflow: auto;
}

.banners-arrows {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 69.5rem;
}

.left-arrow {
  width: 2rem;
  height: 2rem;
  color: var(--midnight-blue);
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-top: .6rem;
  padding-bottom: .6rem;
  padding-right: .1rem;
  transition: transform .2s, opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
  display: flex;
}

.left-arrow:hover {
  background-color: var(--midnight-blue);
  color: var(--alice-blue);
  transform: scale(1.1);
}

.left-arrow.inverted {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.left-arrow.inverted:hover {
  opacity: .6;
}

.right-arrow {
  width: 2rem;
  height: 2rem;
  color: var(--midnight-blue);
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-top: .6rem;
  padding-bottom: .6rem;
  padding-left: .1rem;
  transition: transform .2s, opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
  display: flex;
}

.right-arrow:hover {
  background-color: var(--midnight-blue);
  color: var(--alice-blue);
  transform: scale(1.1);
}

.right-arrow.inverted {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.right-arrow.inverted:hover {
  opacity: .6;
}

.arrow-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  display: flex;
}

.content {
  z-index: 2;
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

.gradient-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 500;
}

.radio-switch-group {
  margin-bottom: 1rem;
  display: flex;
}

.radio-switch {
  color: rgba(43, 30, 82, .6);
  flex: none;
  margin: 0;
  padding: .5rem 1rem;
  font-size: 1rem;
  transition: color .2s;
  position: relative;
}

.radio-switch:hover {
  color: var(--midnight-blue);
}

.radio-switch-input {
  width: 100%;
  height: auto;
  border-style: none;
  border-radius: .375rem;
  margin: 0;
  padding: 0;
  transition: background-color .2s, bottom .3s cubic-bezier(.68, 0, .265, 1.55), top .3s cubic-bezier(.68, 0, .265, 1.55);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.radio-switch-input.w--redirected-checked {
  z-index: 0;
  width: 100%;
  height: auto;
  background-color: var(--midnight-blue);
  border-radius: .375rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -.25rem;
  bottom: -.25rem;
  left: 0%;
  right: 0%;
}

.radio-switch-input.w--redirected-focus {
  box-shadow: none;
}

.radio-switch-label {
  z-index: 1;
  font-weight: 700;
  position: relative;
}

.radio-switch-wrap {
  background-color: var(--alice-blue);
  border-radius: .25rem;
  flex: none;
  display: flex;
}

.radio-switch-wrap.white-bg {
  background-color: #fff;
  box-shadow: 0 2px 4px -2px rgba(43, 30, 82, .2);
}

.list-heading-wrap {
  padding-left: 4rem;
}

.side-wrap {
  width: 24rem;
  flex-direction: column;
  flex: none;
  margin-left: 1rem;
  display: flex;
  position: relative;
}

.selected-offers {
  background-color: var(--alice-blue);
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: 1.5rem 4rem;
  line-height: 1.25;
  position: relative;
  overflow: hidden;
}

.selected-offers.all-offers {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.offers-wrap {
  flex: 1;
}

.form.light-bg {
  background-color: var(--alice-blue);
}

.offer {
  min-height: 4.25rem;
  border: .0625rem solid var(--alice-blue);
  background-color: var(--alice-blue);
  border-radius: 1rem;
  align-items: center;
  margin-bottom: .5rem;
  padding: 1rem .5rem 1rem 1.6rem;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.offer:hover {
  border-color: #d4e3ff;
}

.offer.checked {
  border-width: .125rem;
  border-color: var(--royal-blue);
  background-color: var(--white);
  padding: .9375rem .4375rem .9375rem 1.5375rem;
}

.sticky-side {
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
}

.sticky-side.offers {
  padding-bottom: 4rem;
}

.selected-offers-text {
  opacity: .8;
}

.selected-offers-big-text {
  letter-spacing: -.05rem;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
}

.tiny-text {
  font-size: .625rem;
  line-height: 1.33333;
}

.tiny-text.selected-offers-comment {
  opacity: .6;
  flex: none;
  margin-top: auto;
  margin-bottom: .5rem;
  position: relative;
}

.offers-table-heading {
  flex: 1;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-right: .5rem;
  display: flex;
}

.offer-table-heading-label {
  width: 9rem;
  white-space: nowrap;
  align-self: flex-end;
  font-size: .75rem;
  line-height: 1.33333;
}

.offer-table-heading-label.summ {
  width: 9.5rem;
}

.offer-table-heading-label.payment {
  width: 7.5rem;
  margin-right: .5rem;
}

.offer-check {
  width: 1rem;
  height: 1rem;
  border: .125rem solid var(--royal-blue);
  color: var(--white);
  background-color: #fff;
  border-radius: .25rem;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 1.4rem;
  display: flex;
}

.offer-check:hover {
  color: rgba(255, 255, 255, 0);
}

.offer-check.checked {
  background-color: var(--royal-blue);
  color: var(--white);
}

.offer-link {
  width: 100%;
  color: var(--midnight-blue);
  cursor: pointer;
  flex: 1;
  margin-right: .25rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline;
}

.offer-link:hover {
  color: var(--royal-blue);
}

.offer-tag {
  background-color: rgba(99, 212, 137, .6);
  border-radius: .125rem;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  font-size: .75rem;
  display: inline-block;
  position: relative;
}

.offer-tag.expand-tag {
  background-color: var(--royal-blue);
  color: #fff;
  cursor: pointer;
}

.offer-tag.expand-tag:hover {
  opacity: .8;
}

.offer-tag.expand-tag.expanded {
  background-color: var(--midnight-blue);
}

.offer-tag.violet {
  background-color: rgba(184, 158, 255, .4);
}

.offer-tag.orange {
  background-color: rgba(255, 171, 102, .4);
}

.offer-expand-tag-arrows {
  width: 1.25rem;
  object-fit: contain;
  background-color: rgba(255, 255, 255, .2);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin: -.125rem -.25rem -.125rem .25rem;
  padding-left: .4rem;
  padding-right: .4rem;
  display: flex;
}

.offer-tag-content {
  align-items: center;
  padding: .125rem .25rem;
  display: flex;
}

.offer-collapse-tag-arrows {
  width: 1.25rem;
  object-fit: contain;
  background-color: rgba(255, 255, 255, .2);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin: -.125rem -.25rem -.125rem .25rem;
  padding-left: .4rem;
  padding-right: .4rem;
  display: flex;
}

.offer-description {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  flex: 1;
  margin-right: 1rem;
  line-height: 1.25;
  display: block;
}

.offer-logo {
  width: 9rem;
  flex: none;
  align-items: center;
  margin-right: 1rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.33333;
  display: flex;
}

.offer-payment {
  letter-spacing: -.025rem;
  flex: none;
  margin-left: auto;
  margin-right: .5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.offer-summ {
  letter-spacing: -.025rem;
  flex: none;
  font-size: 1rem;
  line-height: 1.25;
}

.selected-offers-footer {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-top: 1.5rem;
  display: flex;
  position: relative;
}

.selected-offers-content {
  z-index: 2;
  position: relative;
}

.selected-offers-image {
  width: 10rem;
  height: 11.625rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.select-offers-image {
  margin-top: 1.5rem;
  margin-bottom: -1.5rem;
}

.offer-logo-image {
  max-height: 1.8rem;
  margin-right: .75rem;
}

.html-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.offer-actions {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--alice-blue);
  align-items: center;
  padding-right: .5rem;
  display: flex;
  position: absolute;
  top: .5rem;
  bottom: .5rem;
  right: .5rem;
}

.offer-action-button {
  z-index: 1;
  background-color: var(--royal-blue);
  color: var(--white);
  border-radius: .25rem;
  padding: .5rem 1rem;
  font-weight: 700;
  position: relative;
}

.offer-action-button:hover {
  opacity: .8;
  color: var(--white);
}

.offer-action-button.detail {
  z-index: 0;
  background-color: var(--midnight-blue);
}

.container-header {
  align-items: center;
  display: flex;
}

.button-arrow-icon {
  width: .875rem;
  justify-content: center;
  align-items: center;
  margin-left: .5rem;
  display: flex;
}

.card-slider {
  width: auto;
  margin-left: -4rem;
  margin-right: -4rem;
  overflow: auto;
}

.card-slider-wrap {
  display: flex;
}

.card-slide {
  flex-direction: column;
  flex: none;
  padding: .5rem;
  display: flex;
}

.card-slide-content {
  width: 18rem;
  background-color: var(--white);
  border-radius: .5rem;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  line-height: 1.25;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px .25rem -.125rem rgba(43, 30, 82, .2);
}

.card-logo {
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.card-logo-image {
  height: 2rem;
  margin-right: 1rem;
  
}
.w_2rem .card-logo-image {
  width: 2rem;
}

.card-slide-footer {
  width: auto;
  max-width: none;
  min-height: 50px;
  flex-direction: row;
  flex: none;
  margin: auto -1.5rem -1.5rem;
  padding-top: 1rem;
  display: flex;
  position: relative;
}

.tag {
  background-color: var(--alice-blue);
  border-radius: .25rem;
  align-self: flex-start;
  padding: .5rem;
  font-size: .75rem;
  line-height: 1rem;
}

.tag.white-tag {
  background-color: var(--white);
}

.tag.action-offer-tag {
  background-color: var(--white);
  box-shadow: 0 1px 1px rgba(43, 30, 82, .2);
}

.tags {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  display: flex;
}

.card-slider-buttons {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  display: flex;
  position: absolute;
  top: -3rem;
  right: 0;
}

.card-slider-wrapper {
  position: relative;
}

.container-filter-form-wrap {
  margin-bottom: .75rem;
}

.card-slide-header {
  z-index: 0;
  width: auto;
  max-width: none;
  min-height: 50px;
  flex-direction: column;
  flex: none;
  margin: -1.5rem -1.5rem 1.5rem;
  padding-top: 0;
  display: flex;
  position: relative;
}

.container-filter-form {
  display: flex;
}

.card-slide-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: opacity .2s;
}

.card-slide-footer-content {
  color: #2b1e52;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1.5rem 1.5rem;
  font-size: .75rem;
  line-height: 1.33333;
  display: flex;
}

.card-slide-footer-logo {
  flex: 1;
  align-items: center;
  margin-right: 1rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.33333;
  display: flex;
}

.card-slide-footer-date {
  opacity: .5;
  color: var(--midnight-blue);
  flex: none;
  margin-left: .5rem;
}

.card-slide-overlay {
  width: 100%;
  height: 100%;
  flex-direction: column;
  flex: none;
  padding: 0;
  transition: top .4s;
  display: flex;
  position: absolute;
  top: 100%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-slide-date {
  opacity: .5;
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-size: .75rem;
}

.card-slide-link {
  color: var(--midnight-blue);
}

.card-slide-link:hover {
  color: var(--royal-blue);
}

.work-step {
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex: 1;
  padding: 3rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-step.blue {
  background-color: var(--royal-blue);
  color: var(--white);
  margin-left: -1.5rem;
}

.work-step.dark-blue {
  background-color: var(--midnight-blue);
  color: var(--white);
  margin-left: -1.5rem;
}

.work-step-number {
  height: 95%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.work-step-icon {
  height: 2rem;
  margin-bottom: 2rem;
}

.work-step-content {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.work-step-p {
  letter-spacing: -.025rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.16667;
}

.side-form-wrap {
  max-width: 39.5rem;
  flex-direction: column;
  flex: 1;
  align-self: flex-start;
  margin-left: 5rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
}

.benefits-content {
  z-index: 2;
  flex: 1;
  position: relative;
}

.benefits-content.side-benefits {
  max-width: 35.5rem;
}

.side-form-block {
  margin-bottom: 0;
}

.side-form {
  background-color: var(--white);
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 30px 4rem -1.5rem rgba(43, 30, 82, .5);
}

.benefits-logo {
  width: 17.25rem;
}

.benefits-logo.big {
  width: auto;
}

.benefits-h {
  letter-spacing: -.025em;
  margin-top: .5rem;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.16667;
}

.cards {
  max-width: 1920px;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cards.vertical {
  flex-direction: column;
}

.cards.stacked {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-wrap: nowrap;
}

.cards.advantages {
  margin-top: 2rem;
}

.cards.program-cards {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--alice-blue);
  border-radius: .5rem;
  flex-wrap: wrap;
  flex: 1;
  align-content: flex-start;
  align-items: flex-start;
}

.cards.program-cards.width-100 {
  width: 100%;
  flex: none;
}

.cards.action-cards {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--alice-blue);
  border-radius: .5rem;
  flex-wrap: wrap;
  flex: 1;
  align-content: flex-start;
  align-items: flex-start;
}

.cards.action-cards.width-100 {
  width: 100%;
  flex: none;
}

.card {
  background-color: var(--white);
  border-radius: .5rem;
  flex: 1;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px .25rem -.125rem rgba(43, 30, 82, .2);
}

.card._1-3 {
  width: 32%;
  flex: none;
}

.card._1-2 {
  width: 50%;
  flex-direction: row;
  flex: none;
  display: flex;
}

.card._1-2.no-paddings {
  padding: 0;
  position: relative;
}

.card-content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  line-height: 1.3;
  display: flex;
}

.card-icon {
  height: 1.5rem;
}

.card-icon.size-2 {
  height: 2rem;
  object-fit: contain;
}

.card-title {
  letter-spacing: -.025rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
}

.benefits-header {
  margin-bottom: 2rem;
}

.benefits-header.space-between {
  justify-content: space-between;
  margin-bottom: 3rem;
  display: flex;
}

.benefits-p.right-side {
  max-width: 40rem;
}

.benefits-logo-wrap {
  flex-direction: column;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
}

.benefits-logo-wrap.left-side {
  max-width: 34.5rem;
  margin-right: 5.5rem;
}

.offers-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-side {
  max-width: 24rem;
  color: rgba(255, 255, 255, .6);
  flex-direction: column;
  flex: 1;
  margin-right: 3rem;
  font-size: .625rem;
  display: flex;
}

.footer-content {
  flex: 1;
}

.footer-callouts {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  display: flex;
}

.footer-menu {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: flex-start;
  display: flex;
}

.footer-menu-group {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.footer-menu-divider {
  width: 100%;
  height: .125rem;
  background-color: var(--white);
  opacity: .3;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-menu-column {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.footer-link , body .geolocation__link{
  color: var(--white);
  white-space: nowrap;
  align-self: flex-start;
}

.footer-link:hover {
  opacity: .6;
  color: var(--white);
}

.footer-menu-column-h {
  width: 100%;
  opacity: .6;
  flex: none;
  font-weight: 700;
}

.footer-logo {
  width: 100%;
  display: block;
}

.footer-logo-link {
  max-width: 22rem;
  align-self: stretch;
  margin-bottom: 2.5rem;
}

.footer-logo-link.w--current {
  max-width: 24rem;
}

.footer-side-p {
  max-width: 20rem;
}

.raketa-design {
  opacity: .6;
  color: var(--white);
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: .25rem;
}

.raketa-design:hover {
  opacity: 1;
  color: var(--white);
}

.footer-phone-wrap {
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  margin-right: auto;
  display: flex;
}

.footer-phone {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.footer-phone:hover {
  opacity: .6;
  color: var(--white);
}

.footer-call-back {
  color: var(--white);
  margin-top: .25rem;
  font-size: .9375rem;
  line-height: 1.4;
}

.footer-call-back:hover {
  opacity: .6;
  color: var(--white);
}

.navbar-container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbar {
  height: 4rem;
  background-color: var(--white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-logo {
  width: 100%;
  flex: none;
  display: block;
}

.brand {
  width: 18%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: 1;
  margin-left: 1rem;
  display: flex;
}

.nav-menu-container {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-link {
  color: var(--midnight-blue);
  border-radius: .25rem;
  flex: none;
  align-items: flex-start;
  padding: .5rem;
  display: flex;
}

.nav-link:hover {
  color: var(--royal-blue);
}

.nav-button {
  background-color: var(--royal-blue);
  text-align: center;
  cursor: pointer;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  margin-left: .5rem;
  padding: .8rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s cubic-bezier(.68, 0, .265, 1.55), color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .3s cubic-bezier(.68, 0, .265, 1.55);
  display: flex;
}

.nav-button:hover {
  color: #fff;
  background-color: #0056e6;
  border-color: #0056e6;
  transform: scale(1.1);
}

.nav-button:active {
  background-color: var(--royal-blue);
  transform: scale(1);
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.navbar-search {
  z-index: 5;
  width: 75%;
  max-width: 100%;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0;
  right: auto;
}

.navbar-search-input {
  width: 16rem;
  height: auto;
  max-width: 100%;
  border: .125rem solid var(--alice-blue);
  background-color: var(--alice-blue);
  color: var(--midnight-blue);
  border-radius: .5rem;
  margin-bottom: 0;
  padding: .375rem .5rem .375rem 2.25rem;
  font-size: 1rem;
  line-height: 1.25;
}

.navbar-search-input:focus {
  width: 100%;
  border-color: var(--royal-blue);
}

.navbar-search-input::-ms-input-placeholder {
  color: rgba(43, 30, 82, .4);
}

.navbar-search-input::placeholder {
  color: rgba(43, 30, 82, .4);
}

.navbar-search-button {
  z-index: 3;
  width: 2.5rem;
  opacity: .5;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/enter.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  padding: .5rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s cubic-bezier(.68, 0, .265, 1.55), color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .3s cubic-bezier(.68, 0, .265, 1.55);
  display: none;
  position: absolute;
  left: auto;
  right: 0%;
}

.navbar-search-button:hover {
  opacity: 1;
  color: #fff;
}

.navbar-search-icon {
  z-index: 1;
  height: 1.8rem;
  position: absolute;
  left: 0;
}

.navbar-phone-wrap {
  flex-direction: column;
  align-items: flex-end;
  padding-left: 1.5rem;
  padding-right: .5rem;
  display: flex;
}

.navbar-phone {
  color: var(--midnight-blue);
  font-weight: 800;
  line-height: 1.25;
}

.navbar-phone:hover {
  color: var(--royal-blue);
}

.nav-bar-call-back {
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.33333;
}

.nav-dropdown {
  z-index: 0;
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.nav-dropdown-toggle {
  border-radius: .25rem;
  padding: .5rem;
  transition: color .2s, background-color .3s;
}

.nav-dropdown-toggle:hover {
  color: var(--royal-blue);
}

.nav-dropdown-toggle.w--open {
  background-color: var(--alice-blue);
  color: var(--royal-blue);
}

.nav-dropdown-icon {
  display: none;
}

.nav-dropdown-list.w--open {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 1.25rem;
  top: 2rem;
  left: 0%;
  right: 0;
}

.nav-dropdown-content {
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex-wrap: wrap;
  margin-left: -16.9rem;
  padding: 2rem 4rem;
  display: flex;
  box-shadow: 0 30px 60px -20px rgba(43, 30, 82, .5);
}

.nav-dropdown-column {
  width: 100%;
  flex-flow: column wrap;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.nav-column-heading {
  width: 100%;
  opacity: .3;
  flex: none;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.nav-group {
  flex-flow: wrap;
  flex: 1;
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.nav-group-divider {
  width: .125rem;
  background-color: var(--midnight-blue);
  opacity: .1;
  flex: none;
  margin-right: 3rem;
}

.dropdown-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  margin-right: 1rem;
  display: block;
}

.dropdown-link {
  color: var(--midnight-blue);
  border-radius: .25rem;
  flex: none;
  align-self: flex-start;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.dropdown-link:hover {
  color: var(--royal-blue);
}

.input-wrap {
  flex: 1;
  margin-bottom: .5rem;
  display: flex;
  position: relative;
}

.input-wrap.percent-input {
  max-width: 7rem;
  flex: none;
}

.text-field {
  height: auto;
  color: var(--midnight-blue);
  border: .125rem solid rgba(43, 30, 82, .3);
  border-radius: .25rem;
  margin-bottom: 0;
  padding: 1.625rem 1rem .625rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  transition: border-color .2s;
}

.text-field:focus {
  border-color: var(--royal-blue);
}

.text-field::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0);
}

.text-field::placeholder {
  color: rgba(0, 0, 0, 0);
}

.text-field.borderless {
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 2px .25rem -.125rem rgba(43, 30, 82, .3);
}

.text-field.borderless:focus {
  border-color: var(--royal-blue);
}

.text-field.text-area {
  width: 100%;
  max-height: 16rem;
  max-width: 100%;
  min-height: 8rem;
  min-width: 100%;
}

.text-field.text-area.one-string {
  height: 4.4rem;
  min-height: 0;
  border-style: none;
}

.text-field-label {
  height: 4.25rem;
  opacity: .3;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.text-field-units {
  height: 4.25rem;
  opacity: .3;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: .125%;
  left: auto;
  right: 0%;
}

.light-h {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 500;
    letter-spacing: -.025em;
    font-size: 2rem;
    
    line-height: 1.25;
}
.light-h span {
  font-weight: bold;
}

.light-h.side-form-h {
  margin-bottom: .5rem;
}

.side-form-footer {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.side-form-submit {
  border: .125rem solid var(--royal-blue);
  background-color: var(--royal-blue);
  text-align: center;
  cursor: pointer;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s cubic-bezier(.68, 0, .265, 1.55), color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .3s cubic-bezier(.68, 0, .265, 1.55);
  display: flex;
}

.side-form-submit:hover {
  color: #fff;
  background-color: #0056e6;
  border-color: #0056e6;
  transform: scale(1.1);
}

.side-form-submit:active {
  background-color: var(--royal-blue);
  transform: scale(1);
}

.side-form-agreement {
  margin-right: 1rem;
  font-size: .75rem;
  line-height: 1.33333;
}

.submit-secured {
  max-width: 32rem;
  opacity: .6;
  align-self: stretch;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: .75rem;
  line-height: 1.33333;
  display: flex;
}

.submit-secured.in-popup-side-form {
  margin-top: auto;
  padding-left: 0;
  padding-right: 0;
}

.shield-icon {
  height: 2rem;
  flex: none;
  margin-right: 1.5rem;
}

.nav-spacer {
  height: 3rem;
}

.nav-spacer.before-banners {
  height: 4rem;
}

.fields-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.percent-summ-wrap {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  flex-wrap: wrap;
  flex: 1;
  display: flex;
  position: relative;
}

.range-input-wrap {
  width: 100%;
  flex-flow: wrap;
  flex: none;
  justify-content: flex-start;
  display: block;
  position: absolute;
  top: auto;
  bottom: .125rem;
  left: 0%;
  right: 0%;
  transform: translate(0, 100%);
}

.calc-footer {
  margin-top: 2rem;
  display: flex;
}

.calc-footer-action {
  max-width: 16.25rem;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: auto;
  display: flex;
}

.calc-payment {
  font-weight: 800;
}

.calc-payment-text {
  letter-spacing: -.0125rem;
  margin-bottom: .25rem;
  font-size: 2rem;
  line-height: 1.25;
}

.banner-items.half-width {
  max-width: 22.5rem;
}

.banner-item {
  align-items: flex-start;
  margin-bottom: 1rem;
  display: flex;
}

.banner-item-arrow {
  width: 2rem;
  flex: none;
  margin-top: .125rem;
  margin-right: 1.5rem;
  display: block;
}

.banner-item-text {
  line-height: 1.25;
}
.banner-item-text p {
  margin:0;
  padding:0;
}

.faq-container {
  z-index: 2;
  max-width: 35.5rem;
  flex: 1;
  position: relative;
}

.text-line {
  display: block;
}

.text-line.white {
  color: var(--white);
}

.card-label {
  opacity: .6;
  margin-top: 1.5rem;
  margin-bottom: -2.5rem;
}

.footnotes {
  width: 100%;
  max-width: 54rem;
  min-width: 848px;
  color: rgba(43, 30, 82, .6);
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 32.6073px 0;
  font-size: .75rem;
  line-height: 1.33333;
}

.divider {
  height: .125rem;
  background-color: var(--midnight-blue);
  opacity: .1;
  margin-bottom: 1rem;
}

.dealers-brands {
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.dealer-brand {
  mix-blend-mode: multiply;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: transform .4s cubic-bezier(.146, .492, .234, 1.632), opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
  display: flex;
}
@media (min-width:992px){
  .dealer-brand:hover {
    mix-blend-mode: multiply;
    transform: scale(1.2);
  }  
}


.dealer-brand-logo {
  height: 4rem;
  display: block;
}

.dealers-table {
  grid-column-gap: 1rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  display: flex;
}

.dealer-table-item {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: var(--white);
  color: var(--midnight-blue);
  border-radius: .5rem;
  flex: none;
  justify-content: space-between;
  padding: .5rem 1rem;
  font-weight: 400;
  display: flex;
  box-shadow: 0 2px .25rem -.125rem rgba(43, 30, 82, .2);
}

.dealer-table-item:hover {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.dealers-action {
  justify-content: flex-end;
  display: flex;
}

.expandables {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-top: 1rem;
  display: flex;
}

.expandable {
  background-color: var(--white);
  border-radius: .5rem;
  flex: 1;
  box-shadow: 0 2px .25rem -.125rem rgba(43, 30, 82, .2);
}

.expandable-header {
  color: var(--midnight-blue);
  align-items: flex-start;
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  display: flex;
}

.expandable-header:hover {
  color: var(--royal-blue);
}

.expandable-content {
  height: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all .4s;
  overflow: hidden;
}

.expandable-plus {
  width: 1.25rem;
  color: var(--royal-blue);
  justify-content: center;
  align-items: center;
  margin-top: .125rem;
  margin-left: auto;
  transition: transform .3s;
  display: flex;
}

.expandable-title {
  flex: 1;
  margin-right: 2rem;
}

.success-message {
  background-color: var(--white);
  text-align: left;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 30px 4rem -1.5rem rgba(43, 30, 82, .5);
}

.success-form-content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.error-message {
  color: var(--white);
  text-align: center;
  background-color: #ff424d;
  border-radius: 0 0 1rem 1rem;
  margin-top: -3rem;
  margin-bottom: 1.5rem;
  padding: 1rem 2.5rem;
  line-height: 1.3;
}

.error-message-link {
  color: var(--white);
  text-decoration: underline;
}

.error-message-link:hover {
  opacity: .6;
  color: var(--white);
}

.calc-result {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
}

.calc-result.action-calc-result {
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.checkbox-field {
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 1rem;
  line-height: 1.25;
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-width: .125rem;
  border-color: var(--midnight-blue);
  border-radius: .25rem;
  margin-top: 0;
  margin-left: -2rem;
}

.checkbox.w--redirected-checked {
  border-color: var(--royal-blue);
  background-color: var(--royal-blue);
  background-image: url('../images/checkbox-check.svg');
}

.checkbox-label {
  margin-top: .1rem;
  margin-bottom: 0;
}

.checkbox-label.small {
  margin-bottom: 0;
  font-size: .85rem;
  line-height: 1.3;
}

.calc-error-message {
  color: var(--white);
  text-align: center;
  background-color: #ff424d;
  border-radius: .25rem;
  margin-top: 0;
  padding: 1rem;
  line-height: 1.3;
}

.calc-success {
  text-align: left;
  background-color: #d3e3ff;
  border-radius: 1rem;
  align-items: flex-end;
  margin: -2rem -4rem;
  padding: 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.calc-success-content {
  max-width: 60%;
  font-size: 1.5rem;
  line-height: 1.33333;
}

.calc-success-wrap {
  z-index: 2;
  display: flex;
  position: relative;
}

.calc-success-action {
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
  display: flex;
}

.calc-success-check {
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 47%;
  right: auto;
}

.advantage-content {
  width: 60%;
  flex: none;
  padding: 1.5rem 2rem;
}

.advantage-image {
  width: 40%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  flex: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.advantage-h {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 1.33333;
}

.breadcrumbs {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  line-height: 1.33333;
  display: flex;
}

.breadcrumb {
  color: var(--midnight-blue);
  flex: none;
  overflow: hidden;
}

.breadcrumb:hover, .breadcrumb.current {
  opacity: .6;
}

.breadcrumb-arrow {
  width: .25rem;
  height: .4rem;
  opacity: .4;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacer {
  height: 1rem;
}

.range-inputs {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  flex-wrap: wrap;
  flex: 1;
  display: flex;
  position: relative;
}

.buttons-input-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: 1;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
  position: relative;
}

.button-cross {
  width: 1.125rem;
  flex: none;
}

.input-suggestions {
  z-index: 2;
  width: 100%;
  max-height: 18rem;
  border: .125rem solid var(--royal-blue);
  background-color: var(--white);
  border-radius: 0 0 .25rem .25rem;
  padding: .5rem .5rem .25rem;
  display: none;
  position: absolute;
  bottom: .25rem;
  overflow: auto;
  transform: translate(0, 100%);
  box-shadow: 0 16px 2rem -.5rem rgba(43, 30, 82, .3);
}

.input-suggestion-link {
  color: var(--midnight-blue);
  border-radius: .25rem;
  margin-bottom: .25rem;
  padding: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}

.input-suggestion-link:hover {
  background-color: var(--alice-blue);
}

.input-suggestion-empty {
  opacity: .4;
  color: var(--midnight-blue);
  border-radius: .25rem;
  margin-bottom: .25rem;
  padding: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: none;
}

.action-offer-wrap {
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
  padding-left: 13rem;
  padding-right: 9rem;
  display: flex;
  position: relative;
}

.action-offer-wrap:hover {
  border-color: #d4e3ff;
}

.action-image {
  width: 12rem;
  height: 101%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 1rem;
  flex: none;
  position: absolute;
  top: -.0625rem;
  bottom: -.0625rem;
  left: -.0625%;
  right: auto;
}

.action-offer-content-wrap {
  min-height: 8.8rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  padding: 1rem;
  display: flex;
}

.action-offer-buttons {
  width: 9rem;
  height: 100%;
  color: var(--royal-blue);
  text-align: right;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.action-offer-buttons.no-footer {
  justify-content: space-between;
}

.action-detail {
  align-self: flex-end;
  align-items: center;
  display: flex;
}

.disclosure-arrow {
  width: .375rem;
  height: .625rem;
  justify-content: center;
  align-items: center;
  margin-left: .5rem;
  display: flex;
}

.disclosure-arrow.small {
  width: .3rem;
  height: .5rem;
  margin-top: .1875rem;
}

.action-offer-content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.action-offer-options {
  grid-column-gap: .35rem;
  grid-row-gap: .35rem;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  display: flex;
}

.action-offer-price {
  width: 18rem;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  display: flex;
}

.action-offer-h {
  letter-spacing: -.05rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.33333;
}

.action-offer-p {
  margin-bottom: .5rem;
  line-height: 1.25;
}

.action-offer-info {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  margin-top: auto;
  font-size: .75rem;
  display: flex;
}

.action-offer-link {
  align-items: center;
  margin-bottom: -.25rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: .875rem;
  line-height: 1.33333;
  display: flex;
}

.action-offer-link.active {
  color: var(--midnight-blue);
}

.action-offer-link.active:hover {
  opacity: .6;
  color: var(--midnight-blue);
}

.action-offer-tag-info {
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: .25rem;
  flex-direction: column;
  padding: 1rem 1.5rem .5rem;
  display: flex;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  box-shadow: 0 15px 1rem -.5rem rgba(43, 30, 82, .4);
}

.action-offer-tag-info.w--open {
  display: flex;
}

.action-offer-tag-info-h {
  margin-bottom: .5rem;
  font-weight: 800;
}

.action-offer-tag-info-text {
  margin-bottom: .5rem;
}

.action-offer-tag-info-subscr {
  opacity: .6;
  margin-bottom: .5px;
}

.actions-tag-info-link {
  color: var(--white);
  align-items: center;
  margin-top: 1rem;
  margin-bottom: .5rem;
  margin-left: auto;
  display: flex;
}

.actions-tag-info-link:hover {
  opacity: .6;
  color: var(--white);
}

.action-tag-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.action-offer-tag-dropdown {
  width: 100vw;
  max-width: 25rem;
  background-color: var(--transparent);
  flex-direction: column;
  padding-bottom: .125rem;
  display: none;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate(0, -100%);
}

.action-offer-tag-dropdown.w--open {
  display: flex;
}

.action-offer {
  border: .0625rem solid var(--alice-blue);
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex-flow: column wrap;
  align-items: stretch;
  margin-bottom: .5rem;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.action-offer:hover {
  border-color: #d4e3ff;
}

.action-offer-price-info {
  margin-top: auto;
}

.action-offer-calc {
  padding-left: 1rem;
  padding-right: 1rem;
  display: none;
  overflow: hidden;
}

.action-offer-calc-divider {
  height: .125rem;
  background-color: #d4e3ff;
  margin-bottom: 2rem;
  margin-left: 13rem;
}

.calc-result-columns {
  width: 100%;
  max-width: 64rem;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: none;
  justify-content: space-between;
  margin-top: 1rem;
  display: flex;
  position: relative;
}

.calc-result-column {
  min-width: 25rem;
}

.calc-result-example {
  width: 9.75rem;
  opacity: .6;
  text-align: right;
  font-size: .625rem;
  line-height: 1.2;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.calc-result-text {
  width: 100%;
  letter-spacing: -.0125rem;
  flex: none;
  margin-bottom: .25rem;
  font-size: 2rem;
  line-height: 1.25;
}

.action-offer-switch-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
  display: flex;
}

.action-offer-items {
  margin-top: -.375rem;
  margin-bottom: .5rem;
  display: none;
}

.action-offer-items:hover {
  border-color: #d4e3ff;
}

.color-circle {
  width: 1.5rem;
  height: 1.5rem;
  border: .0625rem solid var(--midnight-blue);
  background-color: #000;
  border-radius: 50%;
  padding: 0;
}

.color-circle.red {
  background-color: #ff0200;
}

.color-circle.white {
  background-color: #fff;
}

.color-circle.beige {
  background-color: beige;
}

.color-circle.gray {
  background-color: gray;
}

.color-circle.brown {
  background-color: #833113;
}

.color-circle.orange {
  background-color: orange;
}

.color {
  margin-right: -.35rem;
}

.color-popup.w--open {
  background-color: var(--white);
  border-radius: .5rem;
  padding: .25rem .5rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  box-shadow: 0 1px 1px rgba(43, 30, 82, .1);
}

.action-offer-nav {
  flex-direction: column;
  margin-top: 1rem;
  display: flex;
}

.action-offer-nav.pages {
  flex-direction: row;
}

.load-more-button {
  color: var(--royal-blue);
  text-align: center;
  cursor: pointer;
  background-color: #f1f6ff;
  border: .125rem solid #d4e3ff;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: .875rem .875rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.load-more-button:hover {
  color: var(--midnight-blue);
  background-color: #d4e3ff;
  border-color: #d4e3ff;
}

.load-more-button.prev-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.load-more-button.next-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.pages-navigation {
  background-color: #f1f6ff;
  border: .125rem solid #d4e3ff;
  border-style: solid none;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-nav-link {
  min-height: 2.25rem;
  min-width: 2.25rem;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding-left: .5rem;
  padding-right: .5rem;
  font-weight: 700;
  display: flex;
}

.page-nav-link.active {
  background-color: var(--royal-blue);
  color: var(--white);
}

.image-2 {
  width: 2rem;
  height: 2.25rem;
  object-fit: contain;
  padding-left: .5rem;
  padding-right: .5rem;
}

.company-rating-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.company-logo {
  z-index: 3;
  width: 25%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 5px;
}
.company-text {
  padding-right:35%;
  padding-top:20px;
  padding-bottom:20px;
}

.company-rating-score {
  background-color: var(--white);
  color: var(--midnight-blue);
  border-radius: .5rem;
  align-items: center;
  padding: .25rem 1rem .25rem .25rem;
  display: flex;
}

.comany-rating-score-number {
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: .3125rem;
  align-self: stretch;
  padding: .75rem;
}

.company-rating-score-place {
  font-size: 1rem;
  line-height: 1;
  display: block;
}

.text-block {
  margin-left: 1rem;
  font-size: .75rem;
  line-height: 1.33333;
}

.company-circle-link {
  width: 2rem;
  height: 2rem;
  flex: none;
  transition: transform .4s cubic-bezier(.445, .05, .316, 1.574), opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
  display: flex;
}

.company-circle-link:hover {
  transform: scale(1.25);
}

.company-circle-links {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

.reviews-container {
  max-width: 1920px;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  justify-content: space-between;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  display: flex;
}

.reviews-wrap {
  max-width: 55.75rem;
  flex: 1;
}

.reviews-count {
  letter-spacing: -.025rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
}

.review {
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  position: relative;
}

.review-side {
  flex-direction: column;
  flex: none;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.review-text {
  flex: 1;
}

.stars {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: rgba(43, 30, 82, .3);
  display: flex;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.star.active {
  color: var(--royal-blue);
}

.commentator {
  margin-top: 1rem;
  font-weight: 700;
}

.comment-date {
  font-size: .75rem;
  line-height: 1.33333;
}

.review-footer {
  width: 100%;
  flex: none;
  display: flex;
}

.comment-actions {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: center;
  display: flex;
}

.review-view-count {
  opacity: .4;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.eye-icon {
  width: 1rem;
  margin-right: .5rem;
}

.bubble-icon {
  width: .875rem;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
  display: flex;
}

.review-other-comments {
  align-items: center;
  display: flex;
}

.review-other-comments.active {
  color: var(--midnight-blue);
}

.review-comments-wrap {
  width: 100%;
  flex: none;
  padding-top: 1.5rem;
  display: none;
  overflow: hidden;
}

.review-reply {
  border-top: .125rem solid rgba(43, 30, 82, .2);
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.reply-icon {
  width: .875rem;
  height: 1.35rem;
  flex: none;
  margin-right: 1rem;
}

.review-reply-text {
  max-width: 80%;
  flex: 1;
}

.companies-rating {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: 1rem;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 1.5rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.companies-rating-h {
  z-index: 2;
  color: rgba(255, 255, 255, .8);
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
}

.companies-rating-table {
  z-index: 2;
  position: relative;
}

.companies-rating-row {
  color: rgba(255, 255, 255, .8);
  border-bottom: .0625rem solid rgba(255, 255, 255, .2);
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.companies-rating-row:hover {
  opacity: .6;
  color: var(--white);
}

.companies-row-name {
  color: var(--white);
}

.companies-row-score {
  flex: none;
}

.side-pane-button {
  z-index: 2;
  color: var(--white);
  background-color: rgba(255, 255, 255, .2);
  border-radius: .25rem;
  flex: none;
  align-self: flex-start;
  align-items: center;
  padding: .25rem 1rem .3125rem;
  font-size: .875rem;
  line-height: 1.42857;
  display: flex;
  position: relative;
}

.side-pane-button:hover {
  background-color: var(--white);
  color: var(--midnight-blue);
}

.companies-background {
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.comment-auth {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--alice-blue);
  border-radius: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem 4rem;
  display: flex;
  position: relative;
}

.comment-auth-text {
  z-index: 2;
  width: 100%;
  flex: none;
  margin-bottom: .5rem;
  position: relative;
}

.auth-social-link {
  z-index: 2;
  width: 3rem;
  height: 3rem;
  flex: none;
  transition: transform .4s cubic-bezier(.445, .05, .316, 1.574), opacity .2s, color .2s, background-color .2s, opacity .2s, border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.auth-social-link:hover {
  transform: scale(1.15);
}

.auth-smile {
  z-index: 0;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.write-comment {
  background-color: #dce5f6;
  border-radius: 1rem;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  display: none;
  position: relative;
}

.form-agree-text {
  max-width: 25.875rem;
}

.comment-action {
  max-width: 10rem;
  flex-direction: column;
  flex: 1;
  margin-left: auto;
  display: flex;
}

.comment-rating {
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.comment-rating-text {
  margin-right: 1rem;
}

.popup-content {
  padding: 2rem;
}

.side-form-popup {
  z-index: 99999;
  min-height: 100vh;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(43, 30, 82, .2);
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

.popup-background-close {
  z-index: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.side-form-popup-wrap {
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  background-color: var(--white);
  border-radius: 1rem;
  flex-direction: row;
  margin: auto;
  display: flex;
  position: relative;
}

.popup-close-button {
  z-index: 5;
  padding: 1rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.side-form-popup-content {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.side-form-popup-form-block {
  width: 32rem;
  background-color: var(--alice-blue);
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  flex-direction: column;
  flex: none;
  align-self: stretch;
  margin: 0;
  padding: 2rem;
  display: flex;
}

.side-form-popup-form {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  margin-bottom: 1rem;
  display: block;
}

.side-form-popup-success {
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.side-form-popup-error {
  color: var(--white);
  background-color: #ff424d;
  border-radius: .25rem;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
}

.cross-icon {
  width: .75rem;
  height: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.program-header {
  margin-bottom: 1.5rem;
  display: flex;
}

.program-logo {
  width: 4rem;
  height: 4rem;
  background-color: var(--alice-blue);
  border-radius: .5rem;
  flex: none;
  justify-content: center;
  align-items: stretch;
  margin-right: 1.5rem;
  padding: .5rem;
  display: flex;
}

.program-logo-image {
  mix-blend-mode: multiply;
  object-fit: contain;
}

.program-header-content {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.program-h {
  margin-top: 0;
  margin-bottom: 0;
}

.program-header-company {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-end;
  font-size: .75rem;
  line-height: 1.33333;
  display: flex;
}

.program-header-company-link {
  color: var(--midnight-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.program-header-company-link:hover {
  color: var(--royal-blue);
}

.program-header-company-stars {
  font-weight: 800;
  display: flex;
}

.program-header-star {
  width: .7rem;
  height: .8rem;
  color: var(--royal-blue);
  justify-content: center;
  align-items: center;
  margin-right: .125rem;
  display: flex;
}

.cards-heading {
  width: 100%;
  color: rgba(43, 30, 82, .4);
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.25;
}

.program-cards-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  margin-bottom: 2rem;
  display: flex;
}

.card-paragraph {
  flex: 1;
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.action-content {
  flex-direction: column;
  flex: 1;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
  display: flex;
}

.action-h {
  margin-top: .75rem;
  margin-bottom: 1rem;
}

.action-p {
  margin-bottom: 1rem;
}

.action-content-wrap {
  display: flex;
}

.tabs {
  width: 20rem;
  flex-direction: column-reverse;
  flex: none;
  justify-content: flex-end;
  display: flex;
}

.tabs-menu {
  justify-content: center;
  margin-top: .75rem;
  display: flex;
}

.action-tab-image {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: .5rem;
  display: block;
}

.tab-color {
  width: 1rem;
  height: 1rem;
  background-color: var(--midnight-blue);
  border-radius: 50%;
}

.tab-color.orange {
  background-color: #ff8000;
}

.tab-color.red {
  background-color: #db0707;
}

.tab-color.green {
  background-color: #77b61b;
}

.action-tab-link {
  border: .0625px solid var(--transparent);
  background-color: var(--transparent);
  border-radius: 50%;
  padding: .25rem;
}

.action-tab-link.w--current {
  border: .0625rem solid var(--midnight-blue);
  background-color: var(--transparent);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
}

.popup {
  z-index: 99999;
  min-height: 100vh;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(43, 30, 82, .2);
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: scroll;
}

.popup-wrap {
  z-index: 2;
  background-color: var(--white);
  border-radius: 1rem;
  flex-flow: wrap;
  margin: auto;
  display: flex;
  position: relative;
}

.popup-form-block {
  width: 100%;
  max-width: 32.25rem;
  flex: none;
  margin-bottom: 0;
  padding: 2rem;
}

.popup-form-footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.popup-form {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  margin-bottom: 0;
  display: block;
}

.st-wrap-1 {
  position: relative;
}

.div-block {
  max-width: 60rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.div-block-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 8.4rem;
}

.div-block-copy {
  max-width: 60rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
}

.div-block-copy-copy {
  max-width: 60rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.popup-form-error {
  color: var(--white);
  background-color: #ff424d;
  border-radius: .25rem;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
}

.offer-summ-wrap {
  width: 9.5rem;
  letter-spacing: -.025rem;
  flex: none;
  font-size: 1rem;
  line-height: 1.25;
  display: flex;
}

.offer-payment-wrap {
  width: 7.5rem;
  letter-spacing: -.025rem;
  flex: none;
  margin-left: auto;
  margin-right: .5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.offer-summ-label {
  font-size: .75rem;
  font-weight: 500;
  display: none;
}

.action-offer-side-info {
  flex-direction: column;
  flex: none;
  align-items: flex-end;
  display: flex;
}

.mobile-nav-overlay, .mobile-offers-menu {
  display: none;
}

@media screen and (max-width: 991px) {
  .rich-text {
    max-width: none;
    min-width: 0;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .banner {
    max-width: 84.1rem;
  }

  .banner-content-wrap {
    min-height: 0;
    padding-left: 2rem;
  }

  .banner-heading {
    font-size: 2rem;
  }

  .navbar-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footnotes {
    max-width: none;
    min-width: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.6em;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.15rem;
  }

  blockquote {
    background-size: 2.4rem;
    padding: 1rem 1rem 1rem 3.3rem;
    font-size: 1rem;
  }

  .button.b-arrow.b-heading-arrow {
    margin-bottom: 0;
    margin-left: 0;
  }

  .rich-text {
    padding-left: 0;
    padding-right: 0;
  }

  .rich-text.expandable-rich-text {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.mobile-left-right-margin-off {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    padding: 1rem;
  }

  .container.work-steps-container {
    flex-direction: column;
  }

  .container.space-between-flex-container {
    flex-direction: column;
    padding-bottom: 1rem;
  }

  .container.footer-container {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .container.transparent-bg.action-offers {
    margin-top: 1rem;
  }

  .banner {
    max-width: none;
    flex: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .banner-container {
    flex-direction: column;
    flex: 1;
  }

  .banner-content-wrap {
    width: auto;
    flex: 1;
    padding: 1rem;
  }

  .banner-image-wrap {
    height: 50vw;
    flex: none;
    order: -1;
    margin-bottom: -1rem;
    margin-left: 0;
  }

  .banner-heading {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .banner-p.banner-big-p {
    font-size: 1.25rem;
  }

  .banner-content-footer {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
  }

  .banner-content-footer.company-banner-footer {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .banners-arrows {
    display: none;
  }

  .section-heading {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .radio-switch-group {
    margin: .5rem -1rem;
    padding: .25rem 1rem;
    overflow: auto;
  }

  .radio-switch-group.mob-hidden {
    display: none;
  }

  .list-heading-wrap {
    margin-bottom: .5rem;
    padding-left: 0;
  }

  .side-wrap {
    z-index: 10;
    width: auto;
    margin-left: 0;
    position: relative;
    bottom: 0;
  }

  .side-wrap.offers-side-wrap {
    margin-bottom: -2rem;
  }

  .selected-offers.all-offers, .selected-offers.not-selected, .selected-offers.any-selected {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .offer {
    flex-flow: wrap;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sticky-side.offers {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-bottom: 0;
  }

  .offers-table-heading {
    display: none;
  }

  .offer-check {
    order: 1;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 0;
  }

  .offer-description {
    width: 100%;
    flex: none;
    order: 2;
    align-self: stretch;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .offer-logo {
    order: 0;
  }

  .selected-offers-footer {
    flex-direction: row;
  }

  .select-offers-image {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .offer-actions {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    background-color: var(--transparent);
    flex-direction: row;
    order: 6;
    margin-left: auto;
    margin-right: -1.5rem;
    padding-right: 0;
    position: relative;
  }

  .offer-action-button.detail {
    background-color: var(--transparent);
    color: var(--royal-blue);
    font-weight: 500;
  }

  .container-header {
    grid-column-gap: .75rem;
    grid-row-gap: 0rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .card-slider {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tags {
    justify-content: center;
  }
  

  .tags.mobile-action-tags {
    justify-content: flex-start;
  }

  .card-slider-buttons {
    display: none;
  }

  .card-slider-wrapper.mobile-margin-top-0-75rem {
    margin-top: .75rem;
  }

  .container-filter-form {
    margin: -.25rem -1rem;
    padding: .25rem 1rem;
    display: none;
    overflow: auto;
  }

  .work-step {
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 4rem;
  }

  .work-step.blue {
    margin-left: 0;
    top: 5rem;
  }

  .work-step.dark-blue {
    margin-bottom: 0;
    margin-left: 0;
    top: 6rem;
  }

  .side-form-wrap {
    margin-left: 0;
  }

  .benefits-content.side-benefits {
    max-width: none;
  }

  .side-form {
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1rem;
  }

  .cards {
    flex-direction: column;
  }

  .cards.vertical {
    max-width: none;
  }

  .cards.mobile-scroll {
    flex-flow: row;
    overflow: auto;
  }

  .card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card.mobile-scroll {
    min-width: 40vw;
    flex: 0 auto;
  }

  .card-title {
    margin-top: 1rem;
    font-size: 1.25rem;
  }

  .benefits-header.space-between {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .benefits-logo-wrap.left-side {
    max-width: none;
    margin-right: 0;
  }

  .offers-container {
    width: 100%;
    flex-direction: column;
    position: relative;
  }

  .footer-side {
    width: auto;
    max-width: none;
    text-align: center;
    background-color: #140b2e;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    align-self: stretch;
    align-items: stretch;
    margin: 3rem -1rem -1rem;
    padding: 2rem;
  }

  .footer-callouts {
    flex-flow: column wrap;
    align-items: center;
  }

  .footer-menu {
    max-width: 60%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-menu-column {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-menu-column-h {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-logo-link, .footer-side-p {
    max-width: none;
  }

  .raketa-design {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-phone-wrap {
    width: 100%;
    align-items: center;
  }

  .navbar-container {
    padding: 0;
  }

  .navbar {
    background-color: var(--white);
    padding: .75rem 0;
  }

  .brand {
    width: 16rem;
    margin-left: 1rem;
    padding-left: 0;
  }

  .brand.w--current {
    width: 16rem;
    flex: none;
    margin-left: 1rem;
    padding-left: 0;
  }

  .nav-menu {
    width: auto;
    max-height: 100vh;
    background-color: var(--white);
    flex: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: .75rem;
    overflow: auto;
  }

  .nav-menu-container {
    width: 100%;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    padding: 1rem;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-button {
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    position: absolute;
    top: auto;
    bottom: 1rem;
    left: auto;
    right: 1rem;
  }

  .navbar-search {
    width: 100%;
    align-self: stretch;
    margin-bottom: 1rem;
    position: relative;
  }

  .navbar-search-input {
    width: auto;
    flex: 1;
  }

  .navbar-phone-wrap {
    align-self: flex-start;
    align-items: flex-start;
    margin-top: .75rem;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-bar-call-back {
    font-size: 1rem;
  }

  .nav-dropdown {
    align-self: stretch;
  }

  .nav-dropdown-toggle {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .nav-dropdown-toggle.w--open {
    background-color: var(--transparent);
  }

  .nav-dropdown-icon {
    margin-right: 0;
    display: block;
  }

  .nav-dropdown-list.w--open {
    margin-bottom: 1rem;
    padding-top: 0;
    position: relative;
    top: 0;
  }

  .nav-dropdown-content {
    flex-direction: column;
    margin-left: 0;
    padding: 1rem;
  }

  .nav-column-heading {
    margin-bottom: .5rem;
  }

  .nav-group {
    flex-direction: column;
  }

  .nav-group-divider {
    width: auto;
    height: 2rem;
    background-color: var(--transparent);
    margin-right: 0;
  }

  .input-wrap.percent-input {
    max-width: 30%;
  }

  .text-field {
    font-size: 1rem;
  }

  .text-field-label, .text-field-units {
    height: 3.6rem;
    font-size: 1rem;
  }

  .light-h.side-form-h {
    padding-right: 2rem;
  }

  .submit-secured {
    margin-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .fields-group {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    margin-bottom: .5rem;
  }

  .fields-group.mob-calc-footer {
    margin-top: 1rem;
  }

  .calc-footer {
    flex-direction: column;
  }

  .calc-footer-action {
    max-width: none;
    align-self: stretch;
    margin-top: 1rem;
    margin-left: 0;
  }

  .calc-payment {
    white-space: nowrap;
    display: block;
  }

  .calc-payment-text {
    text-align: center;
    letter-spacing: -.025rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .card-label {
    margin-bottom: -1rem;
  }

  .dealers-brands {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: auto;
  }

  .expandable-header {
    padding: 1rem;
  }

  .expandable-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .calc-result {
    margin-bottom: 2rem;
  }

  .advantage-content {
    padding: 0 1rem 0 0;
  }

  .action-offer-wrap {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .action-image {
    width: auto;
    height: 70vw;
    flex: none;
    position: relative;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .action-offer-content-wrap {
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .action-offer-buttons {
    z-index: 3;
    width: auto;
    flex-direction: row-reverse;
    flex: none;
    align-items: stretch;
    padding-top: .5rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
  }

  .action-offer-buttons.no-footer {
    padding-bottom: 1rem;
  }

  .action-detail {
    margin: 0 0 auto;
  }

  .action-offer-content {
    width: 100%;
    flex: none;
  }

  .action-offer-options {
    width: 100%;
    flex-flow: wrap;
    flex: none;
  }

  .action-offer-p {
    margin-bottom: 0;
  }

  .action-offer-info {
    z-index: 0;
    width: 100%;
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    top: auto;
    bottom: -1rem;
    left: 0%;
    right: 0%;
  }

  .action-offer-info.action-details-info {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    bottom: auto;
  }

  .action-offer {
    padding-bottom: 2.5rem;
  }

  .action-offer-calc {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
    margin-bottom: -2rem;
    display: none;
  }

  .action-offer-calc-divider {
    display: none;
  }

  .calc-result-columns {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    font-size: .75rem;
  }

  .calc-result-example {
    width: auto;
    text-align: left;
    position: relative;
    top: 1rem;
  }

  .calc-result-text {
    font-size: 1.5rem;
  }

  .colors {
    padding-right: .5rem;
  }

  .load-more-button.prev-button, .load-more-button.next-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .company-rating-wrap {
    flex-wrap: wrap;
    order: 1;
  }

  .company-logo {
    width: 8rem;
    height: 8rem;
    top: 1rem;
    right: 1rem;
  }

  .company-circle-links {
    margin-right: 30%;
    width: auto;
    flex-wrap: wrap;
  }

  .reviews-container {
    flex-direction: column;
    padding-left: 0;
  }

  .companies-rating, .comment-auth {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .popup-content {
    padding: 1rem;
  }

  .side-form-popup-wrap {
    flex-direction: column;
  }

  .popup-close-button {
    background-color: #fff;
    border-radius: 1rem;
  }

  .side-form-popup-content {
    min-height: 12rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }

  .side-form-popup-form-block {
    width: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1rem;
    padding: 1rem;
  }

  .cards-heading {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .program-cards-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin-bottom: 0;
  }

  .card-paragraph {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .action-content-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .tabs.mobile-popup-tabs {
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 1rem;
  }

  .tabs-menu.mobile-popup-tabs-menu {
    flex-direction: column;
    margin-top: 0;
    margin-left: .75rem;
  }

  .action-tab-image {
    height: 60vw;
  }

  .popup-form-block {
    padding: 1rem;
  }

  .menu-button {
    margin-left: auto;
    padding: .5rem;
  }

  .menu-button.w--open {
    background-color: var(--transparent);
    color: var(--royal-blue);
  }

  .offer-summ-wrap {
    width: auto;
    flex-direction: column;
    order: 4;
  }

  .offer-payment-wrap {
    width: auto;
    order: 3;
    margin-left: 0;
    margin-right: 1rem;
  }

  .offer-summ-label {
    opacity: .7;
    margin-bottom: .25rem;
    font-size: .7rem;
    display: block;
  }

  .mob-payment-sup {
    color: var(--royal-blue);
  }

  .reviews-company-name {
    font-size: 2rem;
    display: block;
  }

  .action-offer-side-info {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: .75rem;
    display: flex;
  }

  .action-offer-side-info-text {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .mobile-nav-overlay {
    z-index: -1;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(43, 30, 82, .5);
    position: fixed;
    top: 4rem;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobile-offers-menu {
    z-index: 20;
    width: 100%;
    margin-top: 3rem;
    display: block;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }

  .mobile-offers-menu-wrap {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile-offers-all-button {
    z-index: 2;
    background-color: var(--midnight-blue);
    color: var(--white);
    border-radius: .25rem;
    justify-content: space-between;
    padding: .75rem 1rem;
    font-weight: 800;
    display: flex;
    position: relative;
  }

  .mobile-offers-all-button:hover {
    background-color: var(--midnight-blue);
    opacity: .8;
    color: var(--white);
  }

  .mobile-offers-unselected {
    background-color: var(--white);
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    position: relative;
    box-shadow: 0 0 8px 4px rgba(43, 30, 82, .1);
  }

  .mobile-offers-selected {
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    display: none;
    box-shadow: 0 0 8px 4px rgba(43, 30, 82, .1);
  }

  .mobile-offers-unselected-image {
    align-self: stretch;
  }

  .mobile-offers-unselected-bold {
    font-size: 1rem;
    display: block;
  }

  .mobile-offers-unselected-text {
    flex-direction: column;
    justify-content: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .75rem;
    line-height: 1.25;
    display: flex;
  }

  .mobile-offers-selected-text {
    flex-direction: column;
    line-height: 1.25;
    display: flex;
  }

  .mobile-offers-all-wrap {
    z-index: 2;
    background-color: var(--white);
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
  }

  .tabs-content {
    flex: 1;
  }
}

@media screen and (max-width: 479px) {
  .button.b-icon {
    justify-content: flex-start;
  }

  .banner-content-wrap.full-width.red {
    z-index: 1;
  }

  .banner-content-footer {
    flex-direction: column;
  }

  .banner-content-footer.company-banner-footer {
    align-items: flex-start;
  }

  .banner-content {
    z-index: 5;
  }

  .side-wrap {
    width: auto;
    margin-left: 0;
  }

  .sticky-side.offers {
    position: relative;
    top: 0;
  }

  .offer-actions {
    flex: 1;
    justify-content: space-between;
    margin-left: .5rem;
  }

  .work-step {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card._1-2.no-paddings.advantage-card {
    width: auto;
    flex-direction: column;
  }

  .card.mobile-scroll {
    min-width: 60vw;
  }

  .nav-button {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-phone-wrap {
    margin-top: .5rem;
  }

  .advantage-content {
    width: 100%;
    margin-top: 1rem;
  }

  .advantage-image {
    width: auto;
    height: auto;
    max-height: 50vw;
    max-width: none;
    flex: none;
    order: -1;
    align-self: stretch;
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    display: block;
    position: relative;
  }

  .advantage-h {
    margin-bottom: .5rem;
  }

  .company-rating-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .company-logo {
    top: 12.1rem;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .review {
    flex-direction: column;
    padding: 1rem;
  }

  .review-side {
    width: 100%;
    order: -1;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .stars {
    position: absolute;
    top: 0;
    right: 0;
  }

  .commentator {
    margin-top: 0;
  }

  .companies-rating, .comment-auth {
    padding: 1rem;
  }

  .offer-payment-wrap {
    width: 50%;
    flex: none;
  }

  .mobile-offers-menu {
    z-index: 100;
  }

  .mobile-offers-unselected, .mobile-offers-selected {
    background-color: var(--white);
  }

  .mobile-offers-unselected-image {
    flex: none;
  }
}


/* anycomment nenakhov  */
@media (max-width:991px) {
.sc-AxmLO.gmtmqV {
  width: 100%;
  margin-bottom: 10px;
}  
.anycomment-app .anycomment-form__guest-socials {
  position: relative;
  top:-10px;
  margin-bottom: 5px;
}
}
@media (min-width:992px) {
  .anycomment.anycomment-form__inputs.anycomment-form__inputs-2 {
    flex-direction: row;
  }
  .anycomment-app .anycomment-form__inputs-item {
    width: 48%;
  }
  .hvJMgY {

  }
}

.anycomment.comment-single.review.comment-no-comments{
  overflow: hidden;
  clear: both;
  display: block;
  content: '';
  padding-bottom: 25px !important;
}
.anycomment-app .anycomment-summary {
  display: none;
}
.anycomment.comment-single {
  background-color: var(--alice-blue);
  border-radius: 1rem;
  padding:1.5rem 2rem;
  position: relative;

}
.anycomment-app .anycomment-list .comment-single-avatar {
  top: 30px;
  left: 30px;
}
.anycomment-app .anycomment-list .comment-single-body__actions ul li a, .anycomment-app .anycomment-list .comment-single-body__actions ul li span {
  color:var(--royal-blue)
}
.anycomment-app .anycomment-list .comment-single-body__actions ul li a:hover, .anycomment-app .anycomment-list .comment-single-body__actions ul li a:active, .anycomment-app .anycomment-list .comment-single-body__actions ul li a:focus, .anycomment-app .anycomment-list .comment-single-body__actions ul li span:hover, .anycomment-app .anycomment-list .comment-single-body__actions ul li span:active, .anycomment-app .anycomment-list .comment-single-body__actions ul li span:focus {
color: var(--midnight-blue);  
}
.anycomment-app .anycomment-form__inputs-item label {
  color: var(--midnight-blue);  
}
.anycomment-app .anycomment-list .comment-single-body-header__date {
  color: #a2a0ba;  
}
.anycomment-app .anycomment-list .comment-single:last-of-type {
  overflow: hidden;
  padding-bottom: 25px !important;
}
.anycomment-app .anycomment-list .comment-single-replies {
  margin-top: 0;
}
.anycomment-app .anycomment-list .comment-single:last-of-type .comment-single:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.anycomment-app .anycomment-list .comment-single-body-header__author-name {
  font-weight:800;
  color: var(--midnight-blue);
}
.anycomment-app .anycomment {
  font-family: Inter, sans serif;
}
.anycomment-app .anycomment-list .comment-single-body__text-content {
  font-size:1rem;
}

.anycomment-app .anycomment-form {
    background-color: #dce5f6;
    border-radius: 1rem;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 1rem;
    padding: 1.5rem 2rem;    
    position: relative;
}
.anycomment.comment-single .anycomment.comment-single {
  padding-left: 0;
  padding-right: 0;
}
.anycomment-app .anycomment-list .anycomment.comment-single .anycomment.comment-single  .comment-single-avatar {
  left: 0;  
}
.anycomment.anycomment-form__terms {
  display: none;
}
@media (max-width:991px) {
  .anycomment-app .anycomment-global-header {
    margin-bottom: 0;
  }
}

