.rud-not-auth-page {
  color: var(--color-dark-80);
}
.rud-not-auth-page__blocks {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  row-gap: 24px;
}
@media (max-width: 768px) {
  .rud-not-auth-page__blocks {
    margin: 0 -10px;
  }
}
.rud-not-auth-page__block {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  padding: 0 12px;
}
@media (max-width: 1366px) {
  .rud-not-auth-page__block {
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page__block {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page__block {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
.rud-not-auth-page__block-inner {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 20px;
  box-shadow: -7px 12px 53.8px rgba(0, 0, 0, 0.15);
  height: 100%;
  gap: 48px;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .rud-not-auth-page__block-inner {
    padding: 24px;
  }
}
.rud-not-auth-page__block-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 80px;
  height: 80px;
  background: var(--color-primary-100);
  border: 1px solid var(--color-primary-80);
  border-radius: 8px;
  flex: none;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .rud-not-auth-page__block-image {
    width: 48px;
    height: 48px;
  }
}
.rud-not-auth-page__block-title {
  margin-bottom: 16px;
}
.rud-not-auth-page__block-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}
.rud-not-auth-page h1.h2,
.rud-not-auth-page .h2 {
  font-size: 100px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 100%;
  color: var(--color-dark-80);
  margin: 0 0 24px;
}
.rud-not-auth-page h1.h2 .blue-text,
.rud-not-auth-page .h2 .blue-text {
  color: var(--color-primary-90);
}
@media (max-width: 1600px) {
  .rud-not-auth-page h1.h2,
  .rud-not-auth-page .h2 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page h1.h2,
  .rud-not-auth-page .h2 {
    font-size: 28px;
  }
}
.rud-not-auth-page .h4 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  line-height: 100%;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .h4 {
    font-size: 24px;
    line-height: 120%;
  }
}
@media (max-width: 578px) {
  .rud-not-auth-page .h4 {
    font-size: 20px;
  }
}
.rud-not-auth-page .h5 {
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-dark-80);
}
.rud-not-auth-page .h6 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 120%;
  margin: 0;
}
.rud-not-auth-page p {
  font-size: 20px;
  line-height: 120%;
  margin: 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page p {
    font-size: 16px;
    line-height: 120%;
  }
}
.rud-not-auth-page .move-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px;
  transition: var(--transition-base);
  animation: bounce 2s infinite ease-in-out;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rud-not-auth-page .move-down::before {
  content: "\f107";
  font-size: 60px;
  color: var(--white);
  font-family: "FontAwesome";
  transition: var(--transition-base);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .move-down::before {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .move-down::before {
    font-size: 30px;
  }
}
.rud-not-auth-page .move-down:hover::before {
  color: var(--color-primary-100);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .move-down {
    bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .move-down {
    bottom: 95px;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
.rud-not-auth-page__btn {
  padding: 22px 48px 24px;
  border-radius: 60px;
  font-size: 24px;
  color: var(--color-primary-80);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 100%;
}
@media (max-width: 1600px) {
  .rud-not-auth-page__btn {
    font-size: 16px;
    padding: 19px 36px 21px;
  }
}
.rud-not-auth-page__btn--white {
  background: var(--white);
}
.rud-not-auth-page__btn--white:hover {
  background: var(--color-primary-20);
}
.rud-not-auth-page__btn--white-border {
  background: var(--white);
  border: 3px solid var(--color-primary-90);
}
.rud-not-auth-page__btn--white-border:hover {
  background: var(--color-primary-90);
  color: var(--white);
  border-color: var(--white);
}
.rud-not-auth-page__btn--blue {
  background: var(--color-primary-90);
  color: var(--white);
}
.rud-not-auth-page__btn--blue:hover {
  background: var(--color-primary-80);
  color: var(--white);
}
.rud-not-auth-page .rud-hero {
  position: relative;
  overflow: hidden;
}
.rud-not-auth-page .rud-hero__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 2px);
  height: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.rud-not-auth-page .rud-hero__cloud {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}
.rud-not-auth-page .rud-hero__cloud.left-top {
  max-width: 809px;
  max-height: 643px;
  transform: rotate(16deg);
  top: -111px;
  left: -310px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 607px;
    max-height: 482px;
    transform: rotate(20deg);
    top: -88px;
    left: -238px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 506px;
    max-height: 402px;
    transform: rotate(16deg);
    top: -69px;
    left: -196px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 342px;
    max-height: 272px;
    transform: rotate(15deg);
    top: -50px;
    left: -119px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 323px;
    max-height: 257px;
    transform: rotate(16deg);
    top: -24px;
    left: -154px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 323px;
    max-height: 257px;
    top: -44px;
    left: -145px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__cloud.left-top {
    max-width: 323px;
    max-height: 257px;
    top: -56px;
    left: -175px;
  }
}
.rud-not-auth-page .rud-hero__cloud.left-center {
  top: 52%;
  left: calc(50% - 31vw);
  transform: translate(-50%, -50%);
  max-width: 470px;
  max-height: 260px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    left: calc(50% - 32vw);
    max-width: 350px;
    max-height: 210px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    left: calc(50% - 32vw);
    max-width: 300px;
    max-height: 162px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    top: 55%;
    left: calc(50% - 30vw);
    max-width: 202px;
    max-height: 116px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    top: 51%;
    left: calc(50% - 33vw);
    max-width: 192px;
    max-height: 103px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    max-width: 192px;
    max-height: 103px;
    top: 62%;
    left: calc(50% - 39vw);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__cloud.left-center {
    max-width: 84px;
    max-height: 42px;
    top: 76%;
    left: 7px;
  }
}
.rud-not-auth-page .rud-hero__cloud.left-bottom {
  bottom: -268px;
  left: -411px;
  max-width: 1210px;
  max-height: 603px;
  z-index: 6;
  transform: rotate(11deg);
  opacity: 1;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 907px;
    max-height: 453px;
    bottom: -199px;
    left: -313px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 756px;
    max-height: 378px;
    bottom: -168px;
    left: -260px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 590px;
    max-height: 295px;
    bottom: -150px;
    left: -160px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 480px;
    max-height: 242px;
    bottom: -10px;
    left: -164px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 480px;
    max-height: 242px;
    bottom: -26px;
    left: -175px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__cloud.left-bottom {
    max-width: 236px;
    max-height: 118px;
    bottom: -12px;
    left: -87px;
  }
}
.rud-not-auth-page .rud-hero__cloud.right-top {
  top: 21%;
  transform: translateY(-50%);
  left: calc(50% + 29.5vw);
  max-width: 353px;
  max-height: 186px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 261px;
    max-height: 155px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 228px;
    max-height: 116px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 168px;
    max-height: 85px;
    top: 32%;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 138px;
    max-height: 74px;
    top: 24%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 138px;
    max-height: 74px;
    top: 19%;
    left: calc(50% + 23.5vw);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__cloud.right-top {
    max-width: 85px;
    max-height: 42px;
    top: 21.5%;
    right: -20px;
    left: unset;
  }
}
.rud-not-auth-page .rud-hero__cloud.right-bottom {
  bottom: -305px;
  right: -509px;
  max-width: 1217px;
  max-height: 966px;
  transform: rotate(7deg);
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 912px;
    max-height: 725px;
    bottom: -230px;
    right: -383px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 761px;
    max-height: 605px;
    bottom: -192px;
    right: -320px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 515px;
    max-height: 406px;
    bottom: -148px;
    right: -169px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 487px;
    max-height: 388px;
    bottom: -82px;
    right: -205px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 487px;
    max-height: 388px;
    bottom: -75px;
    right: -160px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__cloud.right-bottom {
    max-width: 238px;
    max-height: 189px;
    bottom: -43px;
    right: -86px;
  }
}
.rud-not-auth-page .rud-hero__picture {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
  transition: all 0.15s ease;
}
.rud-not-auth-page .rud-hero__picture.yellow-car {
  display: block;
  top: 6%;
  left: 0;
  max-width: 510px;
  max-height: 675px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 8%;
    max-width: 380px;
    max-height: 474px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 7%;
    max-width: 312px;
    max-height: 403px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 7%;
    max-width: 215px;
    max-height: 271px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 9%;
    max-width: 203px;
    max-height: 312px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 9%;
    max-width: 189px;
    max-height: 242px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.yellow-car {
    top: 15%;
    max-width: 109px;
    max-height: 136px;
  }
}
.rud-not-auth-page .rud-hero__picture.music-book {
  display: block;
  top: 14%;
  left: calc(50% - 29vw);
  max-width: 245px;
  max-height: 245px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    max-width: 189px;
    max-height: 179px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    max-width: 152px;
    max-height: 150px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    max-width: 90px;
    max-height: 90px;
    top: 24%;
    left: calc(50% - 31vw);
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    top: 17%;
    left: calc(50% - 28vw);
    max-width: 98px;
    max-height: 98px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    top: 34%;
    left: -13px;
    max-width: 98px;
    max-height: 98px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.music-book {
    top: 60%;
    left: -20px;
    max-width: 71px;
    max-height: 82px;
  }
}
.rud-not-auth-page .rud-hero__picture.hand {
  display: block;
  bottom: 15%;
  left: 0;
  max-width: 525px;
  max-height: 410px;
  z-index: 5;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    max-width: 387px;
    max-height: 306px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    max-width: 323px;
    max-height: 255px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    max-width: 329px;
    max-height: 165px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    bottom: 23%;
    max-width: 198px;
    max-height: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    bottom: 21%;
    max-width: 194px;
    max-height: 171px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.hand {
    bottom: 13%;
    max-width: 94px;
    max-height: 91px;
  }
}
.rud-not-auth-page .rud-hero__picture.batteries {
  display: block;
  bottom: 14%;
  left: calc(50% - 35.5vw);
  max-width: 125px;
  max-height: 125px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    max-width: 95px;
    max-height: 95px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    max-width: 78px;
    max-height: 78px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    left: calc(50% - 32.5vw);
    max-width: 55px;
    max-height: 55px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    bottom: 23%;
    left: calc(50% - 32.5vw);
    max-width: 50px;
    max-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    bottom: 16%;
    left: calc(50% - 32.5vw);
    max-width: 70px;
    max-height: 70px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.batteries {
    bottom: 11%;
    left: calc(50% - 32.5vw);
    max-width: 37px;
    max-height: 37px;
  }
}
.rud-not-auth-page .rud-hero__picture.pyramid {
  display: block;
  bottom: 0;
  left: calc(50% - 29.5vw);
  max-width: 280px;
  max-height: 445px;
  z-index: 5;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    max-width: 200px;
    max-height: 327px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    max-width: 170px;
    max-height: 275px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    left: calc(50% - 27.5vw);
    max-width: 139px;
    max-height: 200px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    max-width: 137px;
    max-height: 217px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    max-width: 130px;
    max-height: 208px;
    left: calc(50% - 22.5vw);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.pyramid {
    max-width: 69px;
    max-height: 101px;
    left: calc(50% - 22.5vw);
  }
}
.rud-not-auth-page .rud-hero__picture.stapler {
  display: block;
  bottom: -44px;
  left: calc(50% - 231px);
  transform: rotate(45deg);
  max-width: 406px;
  max-height: 232px;
  z-index: 5;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% - 139px);
    max-width: 251px;
    max-height: 171px;
    bottom: -33px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% - 128px);
    max-width: 235px;
    max-height: 148px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% - 82px);
    max-width: 138px;
    max-height: 90px;
    bottom: -12px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% - 74px);
    max-width: 145px;
    max-height: 97px;
    bottom: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% + 3px);
    max-width: 145px;
    max-height: 97px;
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.stapler {
    left: calc(50% + 3px);
    max-width: 43px;
    max-height: 33px;
    bottom: 58px;
  }
}
.rud-not-auth-page .rud-hero__picture.doll {
  display: block;
  bottom: -76px;
  left: calc(50% + 12.5vw);
  transform: rotate(16deg);
  max-width: 328px;
  max-height: 410px;
  z-index: 5;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    max-width: 244px;
    max-height: 333px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    max-width: 201px;
    max-height: 311px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    left: calc(50% + 16vw);
    max-width: 178px;
    max-height: 273px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    left: calc(50% + 12vw);
    max-width: 131px;
    max-height: 280px;
    bottom: -63px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    left: unset;
    max-width: 131px;
    max-height: 280px;
    bottom: 271px;
    right: -36px;
    transform: rotate(-16deg);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.doll {
    left: unset;
    max-width: 63px;
    max-height: 83px;
    bottom: 172px;
    right: -20px;
    transform: rotate(-16deg);
  }
}
.rud-not-auth-page .rud-hero__picture.pen {
  display: block;
  bottom: 29%;
  left: calc(50% + 17.5vw);
  max-width: 265px;
  max-height: 225px;
  z-index: 5;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    max-width: 197px;
    max-height: 158px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    max-width: 168px;
    max-height: 137px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    max-width: 156px;
    max-height: 55px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    bottom: 35%;
    left: calc(50% + 15.5vw);
    max-width: 187px;
    max-height: 111px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    bottom: 13%;
    left: calc(50% - 6.5vw);
    max-width: 167px;
    max-height: 86px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.pen {
    bottom: 17%;
    left: calc(50% + 3.5vw);
    max-width: 51px;
    max-height: 25px;
  }
}
.rud-not-auth-page .rud-hero__picture.bag {
  display: block;
  bottom: -237px;
  right: -122px;
  max-width: 670px;
  max-height: 949px;
  transform: rotate(-32deg);
  z-index: 6;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    max-width: 519px;
    max-height: 772px;
    bottom: -223px;
    right: -104px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    max-width: 431px;
    max-height: 643px;
    bottom: -183px;
    right: -80px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    max-width: 248px;
    max-height: 358px;
    bottom: -88px;
    right: -5px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    bottom: -81px;
    right: -56px;
    max-width: 282px;
    max-height: 419px;
    transform: rotate(-31deg);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    bottom: -85px;
    right: -12px;
    max-width: 293px;
    max-height: 424px;
    transform: rotate(-31deg);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.bag {
    bottom: -85px;
    right: -22px;
    max-width: 160px;
    max-height: 267px;
  }
}
.rud-not-auth-page .rud-hero__picture.cup {
  display: block;
  top: 37%;
  left: calc(50% + 29vw);
  max-width: 190px;
  max-height: 185px;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    max-width: 153px;
    max-height: 136px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    max-width: 126px;
    max-height: 115px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    top: 44%;
    left: calc(50% + 31.5vw);
    max-width: 72px;
    max-height: 72px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    max-width: 77px;
    max-height: 77px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    top: 31%;
    left: calc(50% + 35vw);
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.cup {
    top: 20%;
    left: calc(50% + 1vw);
    max-width: 95px;
    max-height: 35px;
  }
}
.rud-not-auth-page .rud-hero__picture.painting {
  display: block;
  top: 6%;
  right: 0;
  max-width: 241px;
  max-height: 488px;
  z-index: 6;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    max-width: 180px;
    max-height: 368px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    max-width: 149px;
    max-height: 302px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    top: 10%;
    right: 0;
    max-width: 117px;
    max-height: 242px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    max-width: 98px;
    max-height: 301px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    max-width: 98px;
    max-height: 301px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.painting {
    max-width: 68px;
    max-height: 313px;
  }
}
.rud-not-auth-page .rud-hero__picture.tales-book {
  display: block;
  top: 13%;
  left: calc(50% + 17vw);
  max-width: 375px;
  max-height: 387px;
  z-index: 6;
}
@media (min-width: 1920px) and (max-width: 2100px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    max-width: 284px;
    max-height: 284px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    max-width: 233px;
    max-height: 236px;
  }
}
@media (min-width: 1366px) and (max-width: 1599px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    top: 23%;
    left: calc(50% + 18vw);
    max-width: 170px;
    max-height: 170px;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    top: 14%;
    left: calc(50% + 22vw);
    max-width: 129px;
    max-height: 127px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    top: 11%;
    left: calc(50% + 13vw);
    max-width: 129px;
    max-height: 127px;
  }
}
@media (max-width: 767px) {
  .rud-not-auth-page .rud-hero__picture.tales-book {
    top: 17%;
    left: calc(50% + 20vw);
    max-width: 59px;
    max-height: 97px;
  }
}
.rud-not-auth-page .rud-hero__inner {
  position: relative;
  height: 100vh;
  padding: 110px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 36px;
  z-index: 1;
  margin: 0 auto;
  max-width: 740px;
}
@media (max-width: 1920px) {
  .rud-not-auth-page .rud-hero__inner {
    padding: 100px 0 50px;
    max-width: 575px;
  }
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-hero__inner {
    gap: 24px;
    padding: 75px 0 50px;
    max-width: 510px;
  }
}
@media (max-width: 1366px) {
  .rud-not-auth-page .rud-hero__inner {
    gap: 18px;
    padding: 98px 0 50px;
    max-width: 353px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-hero__inner {
    padding: 62px 0 50px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-hero__inner {
    max-width: 310px;
    padding: 74px 0 50px;
  }
}
.rud-not-auth-page .rud-hero__title {
  color: var(--color-primary-90);
  font-size: 80px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin: 0;
}
@media (max-width: 1920px) {
  .rud-not-auth-page .rud-hero__title {
    font-size: 64px;
  }
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-hero__title {
    font-size: 56px;
  }
}
@media (max-width: 1366px) {
  .rud-not-auth-page .rud-hero__title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-hero__title {
    font-size: 34px;
  }
}
.rud-not-auth-page .rud-hero__description {
  color: var(--color-dark-80);
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0;
}
@media (max-width: 1920px) {
  .rud-not-auth-page .rud-hero__description {
    font-size: 24px;
    line-height: 33px;
  }
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-hero__description {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1366px) {
  .rud-not-auth-page .rud-hero__description {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-hero__description {
    font-size: 16px;
    line-height: 22px;
  }
}
.rud-not-auth-page .rud-hero__button {
  font-size: 18px;
  font-weight: 700;
  padding: 26px 48px 30px;
}
@media (max-width: 1366px) {
  .rud-not-auth-page .rud-hero__button {
    font-size: 16px;
    padding: 16px 24px 18px;
  }
}
.rud-not-auth-page .rud-our-advantages {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-advantages {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-our-advantages {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-advantages {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-our-advantages__title {
  text-align: center;
  margin-bottom: 37px;
}
.rud-not-auth-page .rud-our-advantages__title span {
  color: var(--color-primary-90);
}
.rud-not-auth-page .rud-our-advantages .rud-not-auth-page__block-inner {
  padding: 36px 36px 57px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-advantages .rud-not-auth-page__block-inner {
    padding: 26px;
    gap: 22px;
  }
}
.rud-not-auth-page .rud-our-advantages .rud-not-auth-page__block-title {
  margin-bottom: 12px;
  width: 390px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-advantages .rud-not-auth-page__block-title {
    max-width: 191px;
  }
}
.rud-not-auth-page .rud-our-advantages .rud-not-auth-page__block-text {
  letter-spacing: -0.4px;
  color: var(--color-dark);
  font-weight: 400;
}
.rud-not-auth-page .rud-for-whom {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-for-whom {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-for-whom {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-for-whom {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-for-whom__title {
  text-align: center;
  margin-bottom: 48px;
}
.rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block {
  flex: 1 1 25%;
  max-width: 25%;
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block-inner {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block-text {
  font-size: 24px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-for-whom__blocks .rud-not-auth-page__block-text {
    font-size: 20px;
  }
}
.rud-not-auth-page .rud-for-whom .rud-not-auth-page__block:nth-child(odd) .rud-not-auth-page__block-inner {
  background: var(--color-primary-90) !important;
}
.rud-not-auth-page .rud-for-whom .rud-not-auth-page__block:nth-child(odd) .rud-not-auth-page__block-image {
  background: var(--color-primary-80);
}
.rud-not-auth-page .rud-for-whom .rud-not-auth-page__block:nth-child(odd) .rud-not-auth-page__block-text {
  color: var(--white);
}
.rud-not-auth-page .rud-our-partners {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-our-partners {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-partners {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-our-partners__title {
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners__title {
    margin-bottom: 16px;
  }
}
.rud-not-auth-page .rud-our-partners__description {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners__description {
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-partners__blocks {
    row-gap: 8px;
    margin: 0 -8px;
  }
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block {
  flex: 1 1 25%;
  max-width: 25%;
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block {
    flex: 1 1 33.333%;
    max-width: 33.333%;
  }
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block:last-child {
    display: none;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 8px;
  }
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block:last-child {
    display: block;
  }
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-inner {
  min-height: 200px;
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-inner.link:hover {
  box-shadow: -7px 12px 53.8px rgba(0, 0, 0, 0.2);
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-inner.link:hover .rud-not-auth-page__block-image svg {
  scale: 1.2;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-inner {
    min-height: 146px;
  }
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-image {
  width: 100%;
  height: 100%;
  border: unset;
  background: transparent;
}
.rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-image svg {
  transition: all 1s ease;
  width: 100%;
  max-width: 152px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners__blocks .rud-not-auth-page__block-image svg {
    max-width: 120px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-our-partners__block:last-child {
    display: none;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-partners__block {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 8px;
  }
  .rud-not-auth-page .rud-our-partners__block:last-child {
    display: block;
  }
}
.rud-not-auth-page .rud-our-partners__buttons {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-our-partners__buttons {
    margin-top: 36px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-our-partners__buttons {
    margin-top: 24px;
  }
}
.rud-not-auth-page .rud-join {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-join {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-join {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-join__title {
  text-align: center;
  margin-bottom: 64px;
}
.rud-not-auth-page .rud-join__title span {
  color: var(--color-primary-90);
}
.rud-not-auth-page .rud-join__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__grid {
    grid-template-columns: repeat(20, 1fr);
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 24px;
  }
}
.rud-not-auth-page .rud-join__block {
  min-height: 441px;
}
.rud-not-auth-page .rud-join__block.link:hover .rud-join__block-inner {
  box-shadow: -7px 12px 53.8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block {
    min-height: 269px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__block {
    padding: 0 12px;
  }
}
@media (max-width: 620px) {
  .rud-not-auth-page .rud-join__block {
    min-height: 323px;
  }
}
.rud-not-auth-page .rud-join__block:nth-child(1) {
  grid-area: 1/1/7/9;
}
.rud-not-auth-page .rud-join__block:nth-child(1) .rud-join__block-title {
  font-size: 48px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block:nth-child(1) {
    grid-area: 1/1/6/13;
  }
  .rud-not-auth-page .rud-join__block:nth-child(1) .rud-join__block-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__block:nth-child(1) {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.rud-not-auth-page .rud-join__block:nth-child(2) {
  grid-area: 7/1/13/5;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block:nth-child(2) {
    grid-area: 6/1/13/7;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__block:nth-child(2) {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 620px) {
  .rud-not-auth-page .rud-join__block:nth-child(2) {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.rud-not-auth-page .rud-join__block:nth-child(3) {
  grid-area: 7/5/13/9;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block:nth-child(3) {
    grid-area: 6/7/13/13;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__block:nth-child(3) {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 620px) {
  .rud-not-auth-page .rud-join__block:nth-child(3) {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.rud-not-auth-page .rud-join__block:nth-child(4) {
  grid-area: 1/9/13/13;
}
.rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner {
  background: var(--color-primary-100);
  position: relative;
  padding: 48px 36px;
}
.rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/rud-no-auth-page/join-img.webp");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  mix-blend-mode: hard-light;
  z-index: 0;
}
.rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-title {
  color: var(--white);
  font-size: 48px;
}
.rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-text {
  color: var(--white);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block:nth-child(4) {
    grid-area: 1/13/13/21;
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner::before {
    background-image: url("../image/rud-no-auth-page/join-img-1600.webp");
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-join__block:nth-child(4) {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 423px;
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner::before {
    background-image: url("../image/rud-no-auth-page/join-img-1024.webp");
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-content {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-title,
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-text {
    flex: 1 1 48%;
    max-width: 48%;
  }
}
@media (max-width: 620px) {
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-title,
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner {
    min-height: 460px;
    padding: 36px 24px;
  }
  .rud-not-auth-page .rud-join__block:nth-child(4) .rud-join__block-inner::before {
    background-image: url("../image/rud-no-auth-page/join-img-576.webp");
  }
}
.rud-not-auth-page .rud-join__block-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 20px;
  box-shadow: -7px 12px 53.8px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block-inner {
    padding: 24px;
  }
}
.rud-not-auth-page .rud-join__block-number {
  background: var(--color-primary-100);
  color: var(--white);
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 111px;
  height: 111px;
  border-radius: 20px;
  flex: unset;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block-number {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
}
@media (max-width: 620px) {
  .rud-not-auth-page .rud-join__block-number {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }
}
.rud-not-auth-page .rud-join__block-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block-content {
    gap: 16px;
  }
}
.rud-not-auth-page .rud-join__block-title {
  color: var(--color-dark-80);
  font-size: 36px;
  letter-spacing: 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block-title {
    font-size: 24px;
  }
}
.rud-not-auth-page .rud-join__block-text {
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-join__block-text {
    font-size: 16px;
  }
}
.rud-not-auth-page .rud-register-block {
  margin-top: 153px !important;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-register-block {
    margin: 120px 0 0 !important;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-register-block {
    margin-top: 100px !important;
  }
}
@media (max-width: 640px) {
  .rud-not-auth-page .rud-register-block {
    margin-top: 64px !important;
  }
}
.rud-not-auth-page .rud-register-block__inner {
  display: flex;
  padding: 80px;
  background: var(--color-primary-100);
  border-radius: 20px;
  justify-content: space-between;
  min-height: 353px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-register-block__inner {
    min-height: 258px;
    padding: 48px;
  }
}
@media (max-width: 950px) {
  .rud-not-auth-page .rud-register-block__inner {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .rud-not-auth-page .rud-register-block__inner {
    padding: 48px 24px;
  }
}
.rud-not-auth-page .rud-register-block__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  flex: 1 1 100%;
  max-width: 623px;
  color: var(--white);
  padding-right: 64px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-register-block__title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-register-block__title {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 950px) {
  .rud-not-auth-page .rud-register-block__title {
    padding-bottom: 24px;
    flex: 1 1 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-register-block__title {
    font-size: 28px;
  }
}
.rud-not-auth-page .rud-register-block__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 100%;
  color: var(--white);
  padding-left: 64px;
  position: relative;
}
.rud-not-auth-page .rud-register-block__content::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: radial-gradient(5px 15px, var(--color-grey-40) 80%, transparent 87%) 0 0/100% 40px;
  opacity: 0.4;
}
@media (max-width: 950px) {
  .rud-not-auth-page .rud-register-block__content::before {
    right: unset;
    top: 0;
    width: 100%;
    height: 3px;
    background: radial-gradient(15px 5px, var(--color-grey-40) 80%, transparent 87%) 0 0/50px 100%;
  }
}
@media (max-width: 1024px) {
  .rud-not-auth-page .rud-register-block__content {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 950px) {
  .rud-not-auth-page .rud-register-block__content {
    padding-top: 24px;
    flex: 1 1 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.rud-not-auth-page .rud-register-block__text {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 120%;
}
.rud-not-auth-page .rud-register-block__button {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  padding: 28px 48px;
}
.rud-not-auth-page .rud-faq {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-faq {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-faq {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-faq {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-faq__title {
  text-align: center;
  margin-bottom: 64px;
}
.rud-not-auth-page .rud-faq__accordion-row {
  border-top: 1px solid var(--color-primary-100);
  padding: 36px 0;
  transition: var(--transition-base);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-faq__accordion-row {
    padding: 24px 0;
  }
}
.rud-not-auth-page .rud-faq__accordion-row:last-child {
  border-bottom: 1px solid var(--color-primary-100);
}
.rud-not-auth-page .rud-faq__accordion-row.active .rud-faq__accordion-row {
  padding: 24px 0;
}
.rud-not-auth-page .rud-faq__accordion-row.active .rud-faq__accordion-title {
  color: var(--white);
}
.rud-not-auth-page .rud-faq__accordion-row.active .rud-faq__accordion-title::before {
  background-color: var(--white);
  transform: translateY(-50%) scale(-1);
}
.rud-not-auth-page .rud-faq__accordion-row.active .rud-faq__accordion-row-inner {
  transition: var(--transition-base);
  background: var(--color-primary-90);
  border-radius: 20px;
  padding: 36px;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-faq__accordion-row.active .rud-faq__accordion-row-inner {
    padding: 24px;
  }
}
.rud-not-auth-page .rud-faq__accordion-title {
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-dark);
  position: relative;
  padding-right: 40px;
}
.rud-not-auth-page .rud-faq__accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 14px;
  background-color: var(--color-primary-80);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='32' height='20' viewBox='0 0 32 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L16 16L30 2' stroke='black' stroke-width='5'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='32' height='20' viewBox='0 0 32 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L16 16L30 2' stroke='black' stroke-width='5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: var(--transition-base);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-faq__accordion-title::before {
    width: 20px;
    height: 10px;
  }
}
.rud-not-auth-page .rud-faq__accordion-title:hover {
  color: var(--color-primary-80);
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-faq__accordion-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-faq__accordion-title {
    font-size: 18px;
  }
}
.rud-not-auth-page .rud-faq__accordion-content {
  display: none;
  margin-top: 24px;
  color: var(--white);
  max-width: 790px;
  overflow: hidden;
}
.rud-not-auth-page .rud-seo-block {
  margin: 180px 0 0;
}
@media (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block {
    margin: 120px 0 0;
  }
}
@media (max-width: 768px) {
  .rud-not-auth-page .rud-seo-block {
    margin: 100px 0 0;
  }
}
@media (max-width: 576px) {
  .rud-not-auth-page .rud-seo-block {
    margin: 64px 0 0;
  }
}
.rud-not-auth-page .rud-seo-block__inner {
  padding: 100px;
  border-radius: 48px;
  border: 2px dashed var(--color-grey-70);
}
@media screen and (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block__inner {
    padding: 48px;
  }
}
@media screen and (max-width: 650px) {
  .rud-not-auth-page .rud-seo-block__inner {
    padding: 16px;
    border-radius: 16px;
  }
}
.rud-not-auth-page .rud-seo-block__inner > *:last-child {
  margin: unset;
}
.rud-not-auth-page .rud-seo-block__inner h2 {
  color: var(--color-dark-80);
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  margin: 0 0 24px;
}
@media screen and (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block__inner h2 {
    font-size: 36px;
    margin: 0 0 16px;
  }
}
@media screen and (max-width: 650px) {
  .rud-not-auth-page .rud-seo-block__inner h2 {
    font-size: 24px;
  }
}
.rud-not-auth-page .rud-seo-block__inner h3 {
  color: var(--color-dark-80);
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  margin: 0 0 16px;
}
@media screen and (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block__inner h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 650px) {
  .rud-not-auth-page .rud-seo-block__inner h3 {
    font-size: 18px;
  }
}
.rud-not-auth-page .rud-seo-block__inner p {
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  opacity: 0.8;
  margin: 0 0 36px;
}
@media screen and (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block__inner p {
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 650px) {
  .rud-not-auth-page .rud-seo-block__inner p {
    margin: 0 0 16px;
  }
}
.rud-not-auth-page .rud-seo-block__inner ul,
.rud-not-auth-page .rud-seo-block__inner ol {
  margin: 0 0 36px;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 1600px) {
  .rud-not-auth-page .rud-seo-block__inner ul,
  .rud-not-auth-page .rud-seo-block__inner ol {
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 650px) {
  .rud-not-auth-page .rud-seo-block__inner ul,
  .rud-not-auth-page .rud-seo-block__inner ol {
    margin: 0 0 16px;
  }
}
.rud-not-auth-page .rud-seo-block__inner ul li,
.rud-not-auth-page .rud-seo-block__inner ol li {
  color: var(--color-dark-80);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.rud-not-auth-page .rud-seo-block__inner a {
  opacity: 0.8;
  color: var(--color-primary-80);
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: var(--transition-base);
}
.rud-not-auth-page .rud-seo-block__inner a:hover {
  color: var(--color-primary-100);
  opacity: 1;
}/*# sourceMappingURL=rud-not-auth-page.css.map */