:root {
  --index: calc(1vw + 1vh);
  --blue-color: #275EC7;
}
*:not(footer *) {
  color: var(--white);
}
img {
	object-fit: initial;
}
h2 {
  color: var(--white);
}
body {
  background-color: var(--background);
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100vw;
}
header {
  background-color: transparent;
}
main {
  position: relative;
  /* padding-bottom: 100px; */
}
main.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
br.sm-display {
  display: none;
}
.promo {
  position: fixed;
  top: 90px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform .3s ease;
  z-index: 5;
}
header.fixed ~ .promo {
  transform: translateX(50%) translateY(-200px);
}
.promo__card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background .2s ease-in-out ;
}
.promo__card:hover {
  background: rgba(255, 255, 255, 0.2);
}
.promo__card-name {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
}

/* main */
.promo-banner {
  position: relative;
  /* height: 100vh; */
  display: flex;
  align-items: center;
}
.promo-banner .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 210px;
  z-index: 2;
}
.section-descr {
  max-width: 1100px;
}
.promo-banner .content h1.web {
  display: block;
}
.promo-banner .content h1.mob {
  display: none;
}
.promo-banner .content h1 {
  background: var(--purple-color);
  background: radial-gradient(circle farthest-side at top center, var(--blue-color) 0%, var(--blue-color) 32%, #FFFFFF 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promo-banner .button {
  padding: 7.5px 40px 7.5px 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.promo-banner .bg-blur {
  position: absolute;
  top: 525px;
  width: calc(var(--index) * 28.3333);
  height: calc(var(--index) * 14);
  border-radius: 50%;
  background-color: var(--blue-color);
  filter: blur(70px);
  opacity: .6;
  z-index: 0;
}
.promo-banner .banner-img {
  width: 100%;
  max-height: 40%;
  margin-top: calc(var(--index) * 1.0666);
  z-index: 1;
}
.promo-banner .banner-img-mob {
  display: none;
}

/* WOW */
.wow {
  padding-left: calc(var(--index) * 5);
  padding-right: calc(var(--index) * 5);
}
.wow-grid {
  position: relative;
  width: 100%;
  margin-top: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wow-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wow-grid__item img {
  max-height: calc(var(--index) * 9.9333);
}
.wow-grid__item a {
  width: fit-content;
  margin-top: 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}
.wow-grid__item a:hover img {
  position: relative;
  transition: all .2s ease;
}
.wow-grid__item a:hover img {
  transform: translateX(3px);
}

/* FORMULA SH */
.formula-sh {
  margin-top: 200px;
}
.formula-sh__wrapper {
  margin-top: 80px;
  position: relative;
}
.formula-sh__wrapper img {
  max-width: calc(var(--index) * 52);
}
.formula-sh__wrapper p {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(calc(var(--index) * -8)) translateY(-55%);
}

/* FANTASY */
.fantasy {
  margin-top: 200px;
}
.fantasy__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 600px 340px 520px;
  grid-template-rows: calc(var(--index) * 20) calc(var(--index) * 11.3333) calc(var(--index) * 17.3333);
  gap: 24px;
}
.fantasy__grid__item {
  position: relative;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.fantasy__grid__item .content {
  z-index: 1;
}
.fantasy__grid__item .content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
}
.fantasy__grid__item:nth-of-type(1) {
  grid-column-start: 1;
  grid-column-end: 4;
}
.fantasy__grid__item:nth-of-type(2) {
  grid-column-start: 4;
  grid-column-end: 7;
}
.fantasy__grid__item:nth-of-type(3) {
  grid-column-start: 1;
  grid-column-end: 7;
}
.fantasy__grid__item:nth-of-type(4) {
  grid-column-start: 1;
  grid-column-end: 5;
}
.fantasy__grid__item:nth-of-type(5) {
  grid-column-start: 5;
  grid-column-end: 7;
}
.fantasy__grid__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* LIFE PART */
.life-part {
  margin-top: 200px;
}
.life-part b {
  font-weight: 600;
}
.life-part .content {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--index) * 5);
  text-align: center;
}
.life-part .content .blur-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.life-part .content .blur {
  position: relative;
  top: 12%;
  width: 80%;
  height: calc(var(--index) * 18.6666);
  background-color: var(--blue-color);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  opacity: .5;
}
/* .life-part .content::before {
  content: '';
  position: absolute;
  top: 20%;
  display: block;
  width: 80%;
  height: calc(var(--index) * 18.6666);
  background-color: var(--blue-color);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  opacity: .5;
} */
.life-part__row {
  font-weight: 700;
  font-size: calc(var(--index) * 2.666);
  line-height: 100%;
  opacity: .6;
  transition: opacity .2s ease-in-out, transform .4s ease-in-out;
}
.life-part__row.highliht {
  transform: scale(1.2);
}

/* HOME */
.home {
  margin-top: 200px;
}
.home__wrapper {
  margin-top: -12%;
}
.home__wrapper > img {
  max-width: 100%;
}
.home__wrapper .button-wrapper {
  position: absolute;
  bottom: calc(var(--index) * 6);
}

.button-wrapper {
  width: fit-content;
}
.button-wrapper__root {
  position: absolute;
  width: 100%;
  height: calc(100% + 25px);
	bottom: 50%;
	transform: translateY(50%);
  -moz-transform: translateY(50%);
  z-index: 0;
}
.choice__markets {
  width: 250px;
}
.choice__markets.show.top {
  bottom: 68px;
}
.choice__markets.show.bottom {
  bottom: -116px;
}
.choice__markets * {
  color: var(--dark) !important;
}
.button-wrapper .button.accent {
  padding: 16px 61px 16px 74px;
}
.button-wrapper .button.accent p {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
.choice__markets a img {
  width: 30px;
  height: 30px;
}
.button-wrapper .chevron {
  left: -14px;
  top: 3px;
}
.button-wrapper .chevron span {
  background-color: #fff;
}
.button-wrapper.active .chevron {
  top: -4px;
}
.button-wrapper.active .chevron span:first-of-type {
  transform: rotate(225deg);
}
.button-wrapper.active .chevron span:last-of-type {
  transform: rotate(-45deg);
}

@media screen and (max-width: 1440px) {
  h2 {
    font-size: 56px;
  }
  h3 {
    font-size: 28px;
  }
  .fz-t1 {
    font-size: 20px;
  }
  .wow-grid__item a {
    font-size: 20px;
  }
  .formula-sh__wrapper img {
    max-width: calc(var(--index)* 40);
  }
  .fantasy__grid__item img {
    object-fit: cover;
  }
  .fantasy__grid__item .content p {
    font-size: 16px;
  }
  .life-part br {
    display: none;
  }
  .life-part__row {
    font-size: calc(var(--index)* 2.5);
  }
}
@media screen and (max-width: 1200px) {
 
  .wow-grid {
    margin-top: 64px;
    flex-direction: column;
    gap: 52px;
  }
  
  .formula-sh h2 {
    padding: 0 40px;
  }
  .formula-sh__wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .formula-sh__wrapper img {
    max-width: calc(var(--index)* 49);
  }
  .formula-sh__wrapper p {
    position: relative;
    transform: none;
    padding: 0 40px;
  }

  .home__wrapper {
    margin-top: 0;
  }
  .home__wrapper .button-wrapper {
    bottom: calc(var(--index)* 3);
  }
}

@media screen and (max-width: 992px) {
	.promo {
		display:none;
	}
	.formula-sh__wrapper img.mob {
		display: none;
	}
  .life-part__row.highliht {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 76px;
  }

}

@media screen and (max-width: 480px) {
	body:has(.mobile-menu.active) header {
        background: var(--brand-colors-pantone-282);
	}
  main {
    padding-bottom: 40px;
  }
  br.sm-display {
    display: block;
  }
  br {
    display: none;
  }
  .fz-t1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;    
  }
  h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.04em;
  }
  h2 {
    font-weight: 400;
    font-size: 26px;
    line-height: 110%;    
  }
  h3 {
    font-weight: 600;
    font-size: 15px;
    line-height: 110%;
  }
  .promo-banner {
    height: 100dvh;
    justify-content: space-between;
    padding-bottom: 20px;
  }
  .promo-banner .content {
    padding-top: 84px;
    position: initial;
  }
  .promo-banner h1 {
    width: 100vw;
  }
  .promo-banner .section-descr {
    width: calc(100vw - 40px);
  }
  .promo-banner .banner-img {
    display: none;
  }
  .promo-banner .banner-img-mob {
    display: block;
    width: 100vw;
  }
  .promo-banner .button-wrapper {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  .button-wrapper .button.accent {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 7.5px 50px;
  }
  .button-wrapper .button.accent p {
    margin-left: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
  }
  .button-wrapper .chevron {
    top: 1px;
  }
  .choice__markets {
    width: 100%;
  }

  .wow {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .wow-grid {
    gap: 38px;
    margin-top: 24px;
  }
  .wow-grid__item {
    align-items: flex-start;
    text-align: left;
  }
  .wow-grid__item > img {
    max-height: none;
    max-width: calc(var(--index) * 26.6363);
  }
  .wow-grid__item h3 {
    margin-top: 12px;
  }
  .wow-grid__item p {
    margin-top: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  .wow-grid__item a {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    position: relative;
  }
  .wow-grid__item a img {
    position: absolute;
    right: -18px;
    bottom: 1px;
  }

  .formula-sh {
    margin-top: 60px;
  }
  .formula-sh h2 {
    padding: 0 20px;
  }
  .formula-sh__wrapper {
    margin-top: -5%;
  }
  .formula-sh__wrapper img.web {
    display: none;
  }
  .formula-sh__wrapper img.mob {
    display: block;
    max-width: 100%;
  }
  .formula-sh__wrapper p {
    padding: 0 20px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }

  .fantasy {
    margin-top: 60px;
  }
  .fantasy__grid {
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .fantasy__grid__item {
    grid-column-start: auto !important;
    grid-column-end: auto !important;
    border-radius: 0;
    aspect-ratio: 9 / 8;
    padding: 20px;
  }
  .fantasy__grid__item .content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
  }
  .fantasy__grid__item img.mob {
    display: block;
  }
  .fantasy__grid__item img.web {
    display: none;
  }

  .life-part {
    margin-top: 60px;
  }
  .life-part__row {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -0.04em;
  }
  .life-part .content {
    /* height: 320px; */
    position: relative;
    gap: 50px;
  }
  .life-part .content .blur {
    top: 33%;
    width: 105%;
    height: 120px;
    opacity: 1;
    filter: blur(50px);
  }
  /* .life-part .content::before {
    content: '';
    position: absolute;
    top: 35%;
    display: block;
    width: 105%;
    height: 120px;
    background-color: var(--blue-color);
    filter: blur(50px);
    z-index: -1;
    opacity: 1;
  } */

  .home {
    margin-top: 60px;
  }
  .home__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20%;
  }
  .home__wrapper > img {
    max-width: none;
    width: 170%;
  }
  .home .button-wrapper {
    width: calc(100% - 40px);
  }
}


@media screen and (min-width: 1921px) {
  .promo-banner .banner-img {
    width: 100%;
  }
  .promo-banner .bg-blur {
    top: 620px;
    width: 80%;
    height: 50%;
  }

  .wow-grid__item img {
    max-height: none;
    max-width: 70%;
  }

  .formula-sh__wrapper img {
    max-width: 60%;
  }
  .formula-sh__wrapper p {
    right: 15%;
    transform: translateX(-50%) translateY(-50%);
  }

  .fantasy__grid {
    grid-template-rows: 600px 340px 520px;
  }

  .life-part .content {
    gap: 150px;
  }
  .life-part .content::before {
    content: '';
    position: absolute;
    top: 20%;
    display: block;
    width: 80%;
    height: 600px;
    background-color: var(--blue-color);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: .5;
  }
  .life-part__row {
    font-size: 96px;
  }

  .home__wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home__wrapper > img {
    max-width: 60%;
  }
}