:root {
  --main-font: "Golos Text", sans-serif;
  --fluid-spacer: 0.052vw;
  --base-size: calc(16 * 1);
  --container-size: 53.5rem;
  --container-padding: 1rem;
  --title-size-big: 4rem;
  --title-size-base: 3rem;
  --title-size-middle: 1.5rem;
  --title-size-small: 1.25rem;
  --title-size-tiny: 1.125rem;
  --title-size-headline: 2.25rem;
  --title-size-subheadline: 2rem;
  --text-size-base: 1.25rem;
  --text-size-subtitle: .875rem;
  --text-size-caption: .75rem;
  --text-size-body:1rem;
  --section-padding: 6rem;
  --section-spacer-base: 6rem;
  --section-spacer-tiny: 1rem;
  --section-spacer-middle: 3rem;
  --section-spacer-regular: 3rem;
  --section-spacer-big: 6rem;
  --section-header-spacer-big: 4rem;
  --section-header-spacer-base: 3rem;
  --section-header-spacer-small: 1.5rem;
  --color-dark: #2E3B4E;
  --color-accent: #1F60C2;
  --color-accent-hover: #4885E1;
  --color-accent-light: #708EB2;
  --color-grey: #8794A7;
  --color-white: #fff;
  --color-white-dark: #F5F5F7;
}

@media screen and (max-width: 1240px) {
  :root {
    --container-size: 37.5rem;
    --title-size-big: 2rem;
    --title-size-base: 1.5rem;
    --title-size-middle: 1.125rem;
    --title-size-small: 1.25rem;
    --title-size-tiny: .875rem;
    --title-size-headline: 1.5rem;
    --title-size-subheadline: 1.25rem;
    --text-size-base: 1rem;
    --text-size-body:.75rem;
    --section-padding: 3rem;
    --section-spacer: 1.5rem;
    --section-spacer-base: 3rem;
    --section-spacer-middle: 1.5rem;
    --section-spacer-big: 6rem;
    --section-spacer-tiny: 1.5rem;
    --section-header-spacer-big: 1.5rem;
    --section-header-spacer-base: 1.5rem;
  }
}
sup {
  vertical-align: super;
  font-size: 0.75em;
  line-height: 0;
}

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark);
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.container {
  max-width: calc(var(--container-size) + 2 * var(--container-padding));
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: var(--text-size-base);
}

.content {
  flex-grow: 1;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
}
.button:hover {
  cursor: pointer;
}
.button--link {
  gap: 0.5rem;
  --icon-size: .75rem;
  font-size: var(--title-size-small);
  font-weight: 700;
  color: var(--color-accent);
  transition: 0.3s color;
}
.button--link:hover {
  color: var(--color-accent-hover);
}
.button--link--middle {
  font-weight: 600;
}
@media screen and (min-width: 1241px) {
  .button--link--middle {
    font-size: var(--title-size-middle);
    --icon-size: 1rem;
  }
}
.button--link--small {
  font-size: var(--text-size-base);
  font-weight: 400;
}
.button--small {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  height: 2.375rem;
  line-height: 1;
}
.button--base {
  height: 4rem;
  font-size: var(--text-size-base);
  font-weight: 600;
  width: 25rem;
  padding: 1rem 3rem 1.125rem 3rem;
  border-radius: 4rem;
  overflow: hidden;
}
.button--base--small {
  height: 3.625rem;
}
.button--base--maxcontent {
  width: max-content;
}
@media screen and (max-width: 1240px) {
  .button--base {
    font-weight: 600;
    width: 21.25rem;
    height: 3.25rem;
  }
}
@media screen and (max-width: 640px) {
  .button--base {
    width: 100%;
    height: 3.125rem;
  }
}
.button--grey {
  color: #3c4f66;
  background: #e4e4ed;
  transition: 0.3s background-color;
}
.button--grey:hover {
  background: #D3D3DB;
}
.button--gradient {
  position: relative;
  background: linear-gradient(-72deg, #73ABFE 0%, #1F60C2 52%, #08449F 100%);
  color: #fff;
}
.button--gradient:hover:before {
  opacity: 1;
}
.button--gradient::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 3;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 4rem;
  display: block;
  opacity: 0;
  background: linear-gradient(151deg, #1f60c2 0%, #4885e1 55.77%, #1f60c2 100%);
  transition: 0.3s opacity;
  will-change: opacity;
}
.button--gradient::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 2;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 4rem;
  display: block;
  background: #1F60C2;
}
.button--gradient .button__text {
  position: relative;
  z-index: 4;
}
.button__icon {
  height: var(--icon-size);
  width: var(--icon-size);
  flex-shrink: 0;
}
.button--full {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

.title--base {
  font-size: var(--title-size-base);
}
.title--big {
  font-size: var(--title-size-big);
}
.title--subheadline {
  font-size: var(--title-size-subheadline);
}
.title--headline {
  font-size: var(--title-size-headline);
}
.title--middle {
  font-size: var(--title-size-middle);
}
.title--tiny {
  font-size: var(--title-size-tiny);
}
.title--small {
  font-size: var(--title-size-small);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.title--medium {
  font-weight: 500;
}
.title--grey {
  color: var(--color-grey);
}
.title--light {
  color: #E4E4ED;
}
.title--lighter {
  color: #EBEDF5;
  opacity: 0.5;
}
.title--accent {
  color: var(--color-accent);
}
.title--accent--light {
  color: var(--color-accent-light);
}
.title--number {
  white-space: nowrap;
}
.title--white {
  color: var(--color-white);
}
.title--semibold {
  font-weight: 600;
}
.title--bold {
  font-weight: 700;
}

.text--base {
  font-size: var(--text-size-base);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.text--body {
  font-size: var(--text-size-body);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.text--subtitle {
  font-size: var(--text-size-subtitle);
}
.text--grey {
  color: var(--color-grey);
}
.text--medium {
  font-weight: 500;
}
.text--semibold {
  font-weight: 600;
}
.text--white {
  color: var(--color-white);
  transition: 0.3s color;
}
.text--accent {
  color: var(--color-accent);
}
.text--accent--light {
  color: var(--color-accent-light);
}
.text a {
 color: var(--color-accent);
}

a.text--white:hover {
  color: rgba(255, 255, 255, 0.8);
}

.content {
  flex-grow: 1;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  --header-height:4rem;
}
@media screen and (max-width: 1240px) {
  .header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    --header-height:3rem;
  }
}
.header__wrapper {
  padding: 1.125rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .header__wrapper {
    padding: 1rem;
  }
}
.header__burger {
  z-index: 5;
}
@media screen and (min-width: 1241px) {
  .header__burger {
    display: none;
  }
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .header__row {
    justify-content: space-between;
  }
}
.header__logo {
  width: 3rem;
  height: 1rem;
  color: var(--color-dark);
  z-index: 5;
}
@media screen and (min-width: 1241px) {
  .header__logo {
    position: absolute;
    left: 2rem;
    top: calc(50% - 0.75rem);
    width: 4.375rem;
    height: 1.5rem;
    color: var(--color-white);
  }
}
@media screen and (max-width: 1240px) {
  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100% - var(--header-height));
    background-color: #fff;
    z-index: 4;
    overflow: auto;
    padding: var(--header-height) var(--container-padding);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s visibility, 0.5s opacity;
  }
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1241px) {
  .header-nav__item:hover .header-nav__sublist {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__item:hover .icon {
  transform: rotate(180deg);
}
.header-nav__item:has(:checked) .icon {
  transform: rotate(180deg);
}
@media screen and (max-width: 1240px) {
  .header-nav__item:has(:checked) .header-nav__sublist {
    max-height: 100%;
    padding: 3rem 0 0 0;
  }
}
.header-nav__sublist {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  width: max-content;
  box-shadow: 0 1px 5px 0 rgba(135, 148, 167, 0.21);
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: var(--color-dark);
  max-height: calc(100vh - var(--header-height) * 2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: 0.5s opacity, 0.3s visibility, 0.5s transform, 0.5s max-height, 0.5s padding;
}
@media screen and (max-width: 1240px) {
  .header-nav__sublist {
    gap: 2rem;
    position: relative;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translate(0);
    box-shadow: none;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: 0.3s opacity, 0.3s visibility, 0.5s transform, 0.5s max-height, 0.5s padding;
  }
}
.header-nav__sublist .header-nav__link {
  color: var(--color-dark);
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  font-size: 1.125rem;
  transition: 0.3s color;
}
@media screen and (max-width: 1240px) {
  .header-nav__sublist .header-nav__link {
    color: #8794a7;
  }
}
.header-nav__sublist .header-nav__link:hover {
  color: var(--color-accent);
}
.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.25rem;
}
@media screen and (max-width: 1240px) {
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    overflow: auto;
  }
}
.header-nav__item {
  position: relative;
}
.header-nav__item--divider {
  width: 100%;
  height: 1px;
  background-color: #8794a7;
  flex-shrink: 0;
}
.header-nav__input {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--title-size-tiny);
  font-weight: 500;
  line-height: 1.56;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  gap: 0.5rem;
  transition: 0.3s transfrom;
}
.header-nav__link .icon {
  width: 0.5rem;
  height: 0.5rem;
  transition: 0.3s transform;
}
.header-nav__link:hover {
  cursor: pointer;
}
@media screen and (max-width: 1240px) {
  .header-nav__link {
    color: var(--color-dark);
    font-size: 1.125rem;
    align-items: center;
    justify-content: flex-start;
  }
}
.header-nav__link span {
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.header-nav__link::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.header-nav__link:hover span {
  transform: translateY(-100%);
}
.header-nav__link:hover::before {
  transform: translateY(-100%);
}

.burger {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.burger:hover {
  cursor: pointer;
}
.burger.active .burger__item {
  left: calc(50% - 0.375rem);
  transform: rotate(45deg);
  top: calc(50% - 1px);
}
.burger.active .burger__item:nth-child(1) {
  transform: rotate(-45deg);
}
.burger__item {
	
  position: absolute;
  height: 2px;
  width: 0.75rem;
  background: var(--color-dark);
  left: calc(50% - 0.375rem);
  top: 5px;
  border-radius: 2px;
  transition: 0.3s transform, 0.3s top, 0.3s left, 0.3s right;
}
.burger__item:nth-child(2) {
  top: unset;
  bottom: 5px;
}

.hero {
  position: relative;
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #3c4f66;
  align-items: center;
  justify-content: center;
  z-index: 1; 
}
.hero-bg__poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.hero-bg__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1241px) {
  .hero-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    opacity: 0.65;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0) 100%);
  }
}
.hero-bg__item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
 .hero-bg__item {
  height: 440px;
 }
}
.hero-bg__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__footer {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 1.125rem);
}
.hero__wrapper {
  height: 36.25rem;
  display: flex;
  flex-direction: column;
}
.hero__wrapper--product {
  height: 54.25rem;
}
@media screen and (max-width: 1240px) {
  .hero__wrapper {
    height: 27.5rem;
  }
}
.hero__logo {
  color: var(--color-white);
  mix-blend-mode: hard-light;
  height: 9.125rem;
  width: 28.125rem;
  transform: translateY(4px);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  .hero__content, .hero__footer {
    display: none;
  }
}

.section {
  position: relative;
}
.section--dark {
  background: var(--color-white-dark);
}
@media screen and (min-width: 1241px) {
  .section--dark--tablet {
    background: transparent;
  }
}
.section-slider {
  overflow: hidden;
}
.section-video {
  height: 35rem;
  object-fit: cover;
}
@media screen and (max-width: 1240px) {
  .section-video {
    height: 20rem;
  }
}
@media screen and (max-width: 640px) {
  .section-video {
    height: 12.5rem;
  }
}
.section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30%;
  position: relative;
}
.section-img--big {
  padding-bottom: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .section-img {
    padding-bottom: 58%;
  }
  .section-img--big {
    padding-bottom: 130%;
  }
}
.fade-overlay-container{
  position: relative;
}
.fade-overlay-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.fade-overlay-base{
  z-index: 1;
}
.section-img--fit {
  padding-bottom: 0;
}
.section-img--fit .section-img__item {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-img__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-img__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 640px) {
  .section-img__item {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.section__logo {
  color: #E4E4ED;
  width: 16.5rem;
  height: 5.5rem;
}
@media screen and (max-width: 1240px) {
  .section__logo {
    height: 3rem;
    width: 9rem;
  }
}
.section__link {
  z-index: 3;
}
@media screen and (max-width: 1240px) {
  .section__link {
    margin-top: var(--section-spacer-tiny);
  }
}
@media screen and (min-width: 1241px) {
  .section__link {
    position: absolute;
    left: 0;
    width: 100%;
    top: calc(100% + 1rem);
  }
}
@media screen and (max-width: 1240px) {
  .section__link--desktop {
    display: none;
  }
}
.section__column {
  display: flex;
  flex-direction: column;
  gap: var(--section-spacer-tiny);
}
.section__text {
  display: flex;
  flex-direction: column;
  gap: var(--text-size-base);
}
.section__wrapper {
  padding: var(--section-padding) 0;
}
.section__wrapper--big {
  padding: calc(var(--section-padding) * 2) 0;
}
.section__wrapper--top--small {
  padding-top: calc(var(--section-padding) / 2);
}
.section__wrapper--top--none {
  padding-top: 0;
}
@media screen and (max-width: 1240px) {
  .section__wrapper--top--none--mobile {
    padding-top: 0;
  }
}
@media screen and (min-width: 1241px) {
  .section__wrapper--top--none--desktop {
    padding-top: 0;
  }
}
.section__wrapper--top--big {
  padding-top: calc(var(--section-padding) * 2);
}
@media screen and (min-width: 1241px) {
  .section__wrapper--top--big--desktop {
    padding-top: calc(var(--section-padding) * 2);
  }
}
@media screen and (max-width: 1240px) {
  .section__wrapper--top--big--mobile {
    padding-top: calc(var(--section-padding) * 2);
  }
}
.section__wrapper--bottom--big {
  padding-bottom: calc(var(--section-padding) * 2);
}
@media screen and (min-width: 1241px) {
  .section__wrapper--bottom--big--desktop {
    padding-bottom: calc(var(--section-padding) * 2);
  }
}
@media screen and (max-width: 1240px) {
  .section__wrapper--about {
    padding: 2rem 0 1.5rem 0;
  }
}
.section__wrapper--mortgage {
  padding: 15.625rem 0 6rem 0;
}
@media screen and (max-width: 1240px) {
  .section__wrapper--mortgage {
    padding: 6rem 0;
  }
}
@media screen and (min-width: 1241px) {
  .section__wrapper--desktop--big {
    padding: calc(var(--section-padding) * 2);
  }
}
.section__wrapper--map {
  padding-bottom: 0;
}
.section__wrapper--small {
  padding: calc(var(--section-padding) / 2) 0;
}
@media screen and (min-width: 1025px) {
  .section__footer--tablet {
    display: none;
  }
}
.section__content {
  display: flex;
  flex-direction: column;
  gap: var(--section-spacer-base);
}
.section__content--middle {
  gap: var(--section-spacer-middle);
}
.section__content--regular {
  gap: var(--section-spacer-regular);
}
.section__content--big {
  gap: var(--section-spacer-big);
}
.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--section-header-spacer-base);
}
@media screen and (min-width: 1241px) {
  .section__header--desktop--big {
    gap: calc(2 * var(--section-header-spacer-base));
  }
}
.section__header--small {
  gap: var(--section-header-spacer-small);
}
.section__header--big {
  gap: var(--section-header-spacer-big);
}

.category-main__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0;
}
@media screen and (max-width: 640px) {
  .category-main__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
  }
}
.category-card {
  position: relative;
  padding-bottom: 188%;
  overflow: hidden;
  transform: translateZ(0);
  isolation: isolate;
}
@media screen and (max-width: 640px) {
  .category-card {
    padding-bottom: 30%;
  }
}
.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  opacity: 0.35;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 640px) {
  .category-card::before {
    background: linear-gradient(270deg, rgba(77, 78, 80, 0.5) 0%, rgba(25, 26, 26, 0.5) 100%);
  }
}
.category-card:hover .category-card__img {
  filter: saturate(1);
  transform: scale(1.02);
}
.category-card__wrapper, .category-card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.category-card__wrapper {
  z-index: 3;
  padding: 3.125rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .category-card__wrapper {
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}
.category-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.125rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--text-size-caption);
  font-weight: 600;
}
.category-card__icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .category-card__icon {
    display: none;
  }
}
.category-card__title {
  color: var(--color-white);
  font-weight: 500;
  font-size: var(--title-size-small);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1240px) {
  .category-card__title {
    font-size: var(--text-size-caption);
  }
}
@media screen and (max-width: 640px) {
  .category-card__title {
    font-size: var(--text-size-base);
  }
}
.category-card__img {
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: saturate(0.55);
  transition: 0.3s filter, 0.3s transform;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.mortgage-main {
  position: relative;
}
.mortgage-cards {
  position: relative;
  width: 12.5rem;
  height: 17.5rem;
}
@media screen and (max-width: 1240px) {
  .mortgage-cards {
    width: 100%;
    margin-top: var(--section-header-spacer-base);
  }
}
@media screen and (max-width: 640px) {
  .mortgage-cards {
    height: 12.5rem;
  }
}
@media screen and (min-width: 1241px) {
  .mortgage-cards:hover .mortgage-card:nth-child(1) {
    transform: scale(0.7) rotate(0) translateX(-24rem);
  }
  .mortgage-cards:hover .mortgage-card:nth-child(2) {
    transform: scale(0.8) rotate(0) translateX(-16rem);
  }
  .mortgage-cards:hover .mortgage-card:nth-child(3) {
    transform: scale(0.9) rotate(0) translateX(-8rem);
  }
  .mortgage-cards:hover .mortgage-card:nth-child(4) {
    transform: scale(1) rotate(0) translateX(0px);
  }
}
.mortgage-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 17.5rem;
  position: absolute;
  box-shadow: 1px 0px 3px 0 rgba(197, 197, 197, 0.27);
  right: 0;
  top: calc(50% - 8.75rem);
  transition: 0.3s transform;
}
.mortgage-card:nth-child(1) {
  transform: scale(0.7) rotate(-10.5deg) translateX(-150px);
}
.mortgage-card:nth-child(2) {
  transform: scale(0.8) rotate(-6.5deg) translateX(-110px);
}
.mortgage-card:nth-child(3) {
  transform: scale(0.9) rotate(-2.5deg) translateX(-70px);
}
.mortgage-card:nth-child(4) {
  transform: scale(1) rotate(5deg) translateX(0px);
}
@media screen and (max-width: 1240px) {
  .mortgage-card {
    left: 50%;
    right: unset;
  }
  .mortgage-card:nth-child(1) {
    transform: scale(0.7) rotate(0) translateX(-24rem);
  }
  .mortgage-card:nth-child(2) {
    transform: scale(0.8) rotate(0) translateX(-16rem);
  }
  .mortgage-card:nth-child(3) {
    transform: scale(0.9) rotate(0) translateX(-8rem);
  }
  .mortgage-card:nth-child(4) {
    transform: scale(1) rotate(0) translateX(0px);
  }
}
@media screen and (max-width: 640px) {
  .mortgage-card {
    height: 12.5rem;
    top: calc(50% - 6.25rem);
    width: 8.75rem;
  }
  .mortgage-card:nth-child(1) {
    transform: scale(0.7) rotate(0) translateX(-18rem);
  }
  .mortgage-card:nth-child(2) {
    transform: scale(0.8) rotate(0) translateX(-12rem);
  }
  .mortgage-card:nth-child(3) {
    transform: scale(0.9) rotate(0) translateX(-6rem);
  }
  .mortgage-card:nth-child(4) {
    transform: scale(1) rotate(0) translateX(0px);
  }
}
.mortgage-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mortgage__grid {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  position: relative;
}
@media screen and (min-width: 1241px) {
  .mortgage__content {
    gap: calc(2 * var(--section-spacer-big));
  }
}
.mortgage__text {
  max-width: 18.75rem;
  width: 100%;
}
.mortgage__cards {
  position: absolute;
  right: 0;
  top: 3.75rem;
}
@media screen and (max-width: 1240px) {
  .mortgage__cards {
    position: relative;
    top: 0;
  }
}

.banks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem 6.25rem;
  grid-auto-rows: 2.75rem;
}
@media screen and (max-width: 1240px) {
  .banks__grid {
    gap: 2.1875rem 4.375rem;
    grid-auto-rows: 1.875rem;
  }
}
@media screen and (max-width: 640px) {
  .banks__grid {
    gap: 2rem;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.banks-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banks-item__img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .banks-item__img {
    max-height: 2.5rem;
    max-width: 8.125rem;
  }
}
.banks-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps-slider {
  width: 100%;
  overflow: visible;
}
.steps-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.steps-slider__item {
  height: auto;
  max-width: 23.75rem;
}
@media screen and (max-width: 1240px) {
  .steps-slider__item {
    max-width: 13.5rem;
  }
}
.steps-card {
  box-shadow: 12px 2px 16px 0 rgba(197, 197, 197, 0.1);
  border-radius: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1240px) {
  .steps-card {
    border-radius: 1rem;
    box-shadow: 7px 1px 9px 0 rgba(197, 197, 197, 0.1);
  }
}
.steps-card__wrapper {
  height: 100%;
  padding: 2.625rem 1rem 4.25rem 1rem;
}
@media screen and (max-width: 1240px) {
  .steps-card__wrapper {
    padding: 1rem 1rem 2rem 1rem;
  }
}
.steps-card__img {
  width: 18.75rem;
  height: 18.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  .steps-card__img {
    width: 10.625rem;
    height: 10.625rem;
  }
}
.steps-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.steps-card__wrapper, .steps-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1240px) {
  .steps-card__wrapper, .steps-card__content {
    gap: 0.875rem;
  }
}

.slider {
  -webkit-user-select: none;
  user-select: none;
}
.slider-nav {
  margin-top: 5.375rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1240px) {
  .slider-nav {
    margin-top: 2rem;
    gap: 1rem;
  }
}
.slider-nav--margin--small {
  margin-top: 3rem;
}
@media screen and (max-width: 1240px) {
  .slider-nav--margin--small {
    margin-top: 1.5rem;
  }
}
.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E4E4ED;
  transition: 0.3s opacity, 0.3s background-color;
}
.slider-button.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.slider-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.slider-button:hover {
  background: #D3D3DB;
  cursor: pointer;
}
@media screen and (max-width: 1240px) {
  .slider-button {
    width: 3rem;
    height: 3rem;
  }
}
.slider-button .icon {
  color: #3C4F66;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 1240px) {
  .slider-button .icon {
    width: 1rem;
    height: 1rem;
  }
}

.map-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 40%;
}
@media screen and (max-width: 640px) {
  .map-img {
    padding-bottom: 100%;
  }
}
.map-img__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maintenance {
  position: relative;
}
@media screen and (min-width: 641px) {
  .maintenance__content {
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}
.maintenance__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.maintenance__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 640px) {
  .br-desktop {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .br-mobile {
    display: none;
  }
}

.slogan {
  background-image: url("../../images/slogan.svg");
  background-repeat: repeat;
}
@media screen and (max-width: 640px) {
  .slogan {
    background-image: url("../../images/slogan-m.svg");
  }
}
.slogan__wrapper {
  padding: 10.25rem 0 9.375rem 0;
}
@media screen and (max-width: 1240px) {
  .slogan__wrapper {
    padding: 3rem 0 6rem 0;
  }
}
@media screen and (max-width: 640px) {
  .slogan__wrapper {
    padding: 6rem 0 8.125rem 0;
  }
}

/* Catalog, Product - Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem var(--container-padding);
}
.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.357rem;
  border-radius: 0.5rem;
  background-color: rgb(235, 237, 245);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-dark);
  transition: 0.3s color, 0.3s background-color;
}
.pagination li.active, .pagination li:hover {
  color: rgb(228, 228, 237);
  background-color: var(--color-dark);
}
.pagination li.disabled {
  pointer-events: none;
  background-color: rgb(245, 245, 247);
  color: rgb(228, 228, 237);
}
.pagination li span, .pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.marquee {
  width: 100%;
  display: flex;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  gap: 0.5rem;
}
.marquee-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.marquee__img {
  width: 25rem;
  height: 18.75rem;
  object-fit: cover;
  border-radius: 1rem;
}
.marquee__img--small {
  width: 21.25rem;
  height: 16rem;
}
@media screen and (max-width: 640px) {
  .marquee__img {
    width: 17rem;
    height: 12.5rem;
  }
  .marquee__img--small {
    width: 14.625rem;
    height: 11rem;
  }
}

.social {
  position: relative;
  background: #F5F5F7;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .social {
    background: transparent;
  }
}
.social::before {
  content: "";
  position: absolute;
  right: 14.375rem;
  bottom: 0;
  width: 35.875rem;
  z-index: 1;
  height: 35.875rem;
  background: url("../../images/social/bg.webp") bottom center/contain no-repeat;
}
@media screen and (max-width: 1240px) {
  .social::before {
    max-width: 21.5rem;
    width: 100%;
    padding-bottom: 100%;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
.social__wrapper {
  padding: 7.5rem 0 13.75rem 0;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1240px) {
  .social__wrapper {
    padding: 6rem 0 25rem 0;
  }
}
@media screen and (max-width: 640px) {
  .social__wrapper {
    padding-bottom: 22rem;
  }
}
.social__content {
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .social__content {
    max-width: 100%;
  }
}
.social-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1240px) {
  .social-list {
    gap: 1rem;
    justify-content: center;
  }
}
.social-list__item {
  flex-shrink: 0;
  transform: translateZ(0);
}
.social-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  box-shadow: 0 2px 6px 0 rgba(135, 148, 167, 0.21);
  border-radius: 1rem;
  will-change: transform;
  transition: 0.3s transform;
}
@media screen and (max-width: 1240px) {
  .social-list__link {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.social-list__link:hover {
  transform: scale(1.02);
}
.social-list__link .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
}

.footer__wrapper {
  padding: 9.5rem 0 12rem 0;
  background: var(--color-dark);
}
@media screen and (max-width: 1240px) {
  .footer__wrapper {
    padding: 6rem 0;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 1240px) {
  .footer__column {
    gap: 3rem;
  }
}
.footer__logo {
  height: 4rem;
  width: 12rem;
  color: var(--color-white);
}
@media screen and (max-width: 1240px) {
  .footer__logo {
    height: 2rem;
    width: 6rem;
  }
}
.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .footer__row {
    flex-wrap: wrap;
  }
}
.footer__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10.625rem;
  width: 100%;
  background: var(--color-dark);
}
.footer__decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 1240px) {
  .footer-list:nth-child(2) {
    order: 3;
  }
  .footer-list:nth-child(3) {
    order: 2;
  }
}
.footer-list__link,  .footer-list__item a {
  display: flex;
  align-items: center;
  font-size: var(--text-size-base);
  font-weight: 500;
  color: var(--color-white);
  transition: 0.3s color;
}
.footer-list__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1240px) {
  .footer-list__link {
    font-size: var(--text-size-subtitle);
  }
}
.footer-list__link--semibold {
  font-weight: 600;
}
.footer-list__link--right {
  text-align: right;
  justify-content: flex-end;
}
.footer-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-info__divider {
  width: 100%;
  height: 1px;
  background: var(--color-white);
}
.footer-info__row {
  display: flex;
  align-items: center;
  gap: 0.75rem 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1240px) {
  .footer-info__item {
    order: 2;
  }
  .footer-info__item:first-child {
    order: 3;
  }
}
.footer-info__item:first-child {
  margin-right: auto;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.popup__close {
  position: absolute;
  top: 0;
  left: calc(100% + 1rem);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  z-index: 4;
  pointer-events: auto;
  transition: 0.3s opacity;
}
.popup__close:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 640px) {
  .popup__close {
    top: 0.75rem;
    left: unset;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
  }
}
.popup__close .icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #DDDDE1;
}
@media screen and (max-width: 640px) {
  .popup__close .icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.popup.is-active {
  display: block;
}

.popup__wrapper {
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
}
@media screen and (max-width: 640px) {
  .popup__wrapper {
    padding: 0.875rem var(--container-padding);
  }
}
@media screen and (max-width: 1240px) {
  .popup__wrapper--full--mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

.popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
  animation: popup-overlay-in 250ms ease forwards;
}

.popup__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  animation: popup-content-in 300ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.popup--lightbox .popup__content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  pointer-events: none;
}
.popup--lightbox .popup__close {
  top: -3.125rem;
  right: 2rem;
  left: unset;
}
@media screen and (max-width: 1240px) {
  .popup--lightbox .popup__close {
    right: 1rem;
  }
}
@media screen and (max-width: 1240px) {
  .popup--lightbox .popup__wrapper {
    padding: 4rem 0;
  }
}

.lightbox-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.75rem;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 1240px) {
  .lightbox-popup {
    gap: 1rem;
  }
  .lightbox-popup--full--mobile {
    padding: 0;
  }
}
.lightbox-popup__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
}
.lightbox-popup__img {
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: auto;
  max-width: 100%;
  max-height: 100%;
}
.lightbox-popup__button {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  z-index: 3;
  backdrop-filter: blur(4px);
  pointer-events: auto;
  transition: 0.3s opacity;
}
.lightbox-popup__button.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.lightbox-popup__button:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 1240px) {
  .lightbox-popup__button {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .lightbox-popup__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
  }
  .lightbox-popup__button--prev {
    left: 0.75rem;
    right: unset;
  }
}
.lightbox-popup__button .icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #DDDDE1;
}
@media screen and (max-width: 640px) {
  .lightbox-popup__button .icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.js-gallery-item:hover {
  cursor: pointer;
}

.popup.is-closing .popup__overlay {
  animation: popup-overlay-out 200ms ease forwards;
}

.popup.is-closing .popup__content {
  animation: popup-content-out 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes popup-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popup-overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popup-content-in {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes popup-content-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}
.application-popup {
  width: 31.875rem;
  max-width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1240px) {
  .application-popup {
    width: 23.5rem;
  }
}
.application-popup__title {
  font-size: 1.5rem;
}
.application-popup__content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding: 2.25rem 1.5rem;
}
@media screen and (max-width: 1240px) {
  .application-popup__content {
    gap: 1.5rem;
    padding: 1rem;
  }
}
.application-popup__footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.application-popup__header {
  padding-bottom: 52%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .application-popup__header {
    padding-bottom: 40%;
  }
}
.application-popup__header img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__subtext {
  font-size: var(--text-size-subtitle);
  color: #8794A7;
}
.form__subtext a {
  color: #4885E1;
}
@media screen and (max-width: 1240px) {
  .form__subtext {
    font-size: var(--text-size-caption);
  }
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 1240px) {
  .form__content {
    gap: 1rem;
  }
}
.form-input {
  display: flex;
  flex-direction: column;
}
.form-input__label {
  color: #8794A7;
  font-size: var(--text-size-caption);
  font-weight: 500;
}
.form-input__item {
  padding: 0.5rem 0;
  width: 100%;
  font-size: var(--text-size-base);
  border-bottom: 1px solid #E4E4ED;
  color: #2E3B4E;
}
.form-input__item--textarea {
  height: 6.25rem;
  resize: none;
  overflow-x: hidden;
}

.phone-input {
  display: flex;
  width: 100%;
  position: relative;
}
.phone-input::before {
  content: "+7";
  position: absolute;
  left: 0;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-size-base);
}
.phone-input__item {
  padding-left: calc(var(--text-size-base) + 0.5rem);
}
.phone-input__item::placeholder {
  color: #E4E4ED;
}

.copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.copy__text {
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.copy__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-grey);
  transition: 0.3s color;
}
.copy__button:hover {
  cursor: pointer;
  color: var(--color-dark);
}
.copy__icon {
  width: 100%;
  height: 100%;
}

.parallax-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  transform: translateZ(0);
}

.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.js-gallery__item:hover {
  cursor: pointer;
}

@media screen and (min-width: 1241px) {
  .block__wrapper {
    padding: calc(var(--section-padding) / 2) 0;
  }
}

.img-slider__item {
  max-width: 100%;
  width: 100%;
}

.tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}
.tip__label {
  align-self: center;
}
.tip-icon {
  color: #8794A7;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tip-icon:hover {
  cursor: pointer;
}
.tip__wrapper:hover {
  cursor: pointer;
}
.tip__text.active {
  animation: tip 2s forwards;
}
.tip__wrapper:hover .tip__text {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 0.75rem);
}
.tip-text {
  font-size: var(--text-size-subtitle);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 400;
  background: var(--color-dark);
  max-width: 16.25rem;
  width: max-content;
  z-index: 6;
  position: fixed;
  color: #fff;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity, 0.5s bottom;
}
.tip-text.active {
  opacity: 1;
  visibility: visible;
}
.tip-text.bottom-right {
  transform: translateX(calc(-100% + 0.75rem));
}
.tip-text.bottom-right::before {
  left: calc(100% - 1.5rem);
}
.tip-text.bottom-left {
  transform: translateX(-0.75rem);
}
.tip-text.bottom-left::before {
  left: 1.5rem;
}
.tip-text::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(90%);
  border-style: solid;
  border-width: 0.5rem 0.375rem 0 0.375rem;
  border-color: var(--color-dark) transparent transparent transparent;
}

@keyframes tip {
  15% {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 0.75rem);
  }
  85% {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 0.75rem);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    bottom: calc(100% + 0.75rem);
  }
}
.estimate-banner {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .estimate-banner {
    padding-bottom: 4.125rem;
  }
}
.estimate-banner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: contain;
  object-position: bottom right;
}
.estimate-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
.estimate-banner__wrapper {
  padding: 3rem 4rem;
  position: relative;
  background: var(--color-white-dark);
}
@media screen and (max-width: 1240px) {
  .estimate-banner__wrapper {
    padding: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .estimate-banner__wrapper {
    padding: 1.25rem 1rem 75% 1rem;
  }
}
.estimate-banner__header, .estimate-banner__button {
  position: relative;
  z-index: 3;
}
.estimate-banner__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1240px) {
  .estimate-banner__content {
    gap: 3.5rem;
  }
}
@media screen and (max-width: 640px) {
  .estimate-banner__button {
    position: absolute;
    left: 0;
    top: calc(100% + 1rem);
    width: 100%;
  }
}
.estimate-banner__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 20rem;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .estimate-banner__header {
    gap: 0.875rem;
  }
}

[data-animation] {
  opacity: 0;
}

/*# sourceMappingURL=index.css.map */
