@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.re-header {
  padding: 24px 0 0;
}
.re-header__wrapper {
  width: 100%;
  padding: 0 32px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background: #222;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .re-header__wrapper {
    padding: 0 16px;
  }
}
.re-header__logo {
  width: 115px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .re-header__logo {
    width: 90px;
    z-index: 9;
    position: relative;
  }
}
.re-header__logo:hover {
  opacity: 0.7;
}
.re-header__logo img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}
.re-header__logo:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -33px;
  width: 70px;
  height: 60%;
  border-radius: 100%;
  background: rgb(11, 133, 238);
  background: radial-gradient(circle, rgba(11, 133, 238, 0.7833727241) 0%, rgba(11, 133, 238, 0.0130646008) 100%);
  filter: blur(16px);
  z-index: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .re-header__logo:before {
    width: 36px;
  }
}
.re-header__logo:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(11, 133, 238);
  background: linear-gradient(90deg, rgba(11, 133, 238, 0) 0%, rgb(33, 108, 179) 33%, rgb(26, 119, 206) 66%, rgba(11, 133, 238, 0) 100%);
  z-index: 0;
}
.re-header__menu {
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .re-header__menu {
    position: fixed;
    background: #222;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    z-index: 8;
    padding: 140px 40px 24px;
  }
}
.re-header__menu.active-js {
  bottom: 0;
}
.re-header__menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .re-header__menu ul {
    gap: 48px;
    flex-flow: column;
    align-items: flex-start;
  }
}
.re-header__menu ul li a {
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.re-header__menu ul li a:hover {
  opacity: 0.7;
}
.re-header__burger {
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .re-header__burger {
    display: block;
    z-index: 9;
  }
}
.re-header__burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.re-header__burger span:first-child {
  top: 35%;
}
.re-header__burger span:last-child {
  top: 65%;
}
.re-header__burger.active-js span:first-child {
  top: 55%;
  transform: rotate(45deg);
}
.re-header__burger.active-js span:last-child {
  top: 55%;
  transform: rotate(-45deg);
}
.re-header__bottom-logo {
  width: 100%;
  height: auto;
  margin-top: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.re-contacts {
  padding: 128px 0;
}
.re-contacts .re-btn {
  margin: 0 auto;
}

.re-logo {
  padding: 24px 0;
  height: 200px;
}
.re-logo__wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 48px;
}
.re-logo__wrapper span {
  opacity: 0.24;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 128%;
}
.re-logo__wrapper img {
  width: 80px;
  height: 30px;
}

.re-chat__wrapper {
  display: flex;
  flex-flow: column;
  gap: 18px;
}
.re-chat__wrapper .info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.re-chat__wrapper .info span {
  opacity: 0.24;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 128%;
  position: relative;
}
.re-chat__wrapper .info span.end:after {
  display: none;
}
.re-chat__wrapper .info span:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #fff;
}
.re-chat__wrapper .info span:nth-child(4):after {
  display: none;
}
.re-chat__wrapper .info hr {
  opacity: 0.24;
  background-color: #fff;
  flex: 1;
}
.re-chat__message {
  max-width: 696px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 998px) {
  .re-chat__message {
    max-width: 100%;
  }
}
.re-chat__message.ai {
  margin-left: auto;
}
.re-chat__message.ai .name {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  justify-content: flex-end;
}
.re-chat__message.ai .message {
  position: relative;
  overflow: hidden;
}
.re-chat__message.ai .message span {
  z-index: 1;
  position: relative;
}
.re-chat__message.ai .message:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(11, 133, 238);
  background: linear-gradient(90deg, rgba(11, 133, 238, 0) 0%, rgb(33, 108, 179) 33%, rgb(26, 119, 206) 66%, rgba(11, 133, 238, 0) 100%);
  z-index: 0;
}
.re-chat__message.ai .message:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgb(11, 133, 238);
  background: radial-gradient(circle, rgba(11, 133, 238, 0.7833727241) 0%, rgba(11, 133, 238, 0.0130646008) 100%);
  filter: blur(100px);
  z-index: 0;
  transform: translateX(-50%);
}
.re-chat__message.ai .date {
  justify-content: flex-end;
}
.re-chat__message.scammer .message {
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.04);
}
.re-chat__message.scammer .name {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.re-chat__message .name {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.re-chat__message .name span {
  color: #fff;
  font-family: "PPSupplyMono", monospace;
  font-size: 12px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 100%;
}
.re-chat__message .message {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 128%;
}
@media screen and (max-width: 998px) {
  .re-chat__message .message {
    font-size: 24px;
    line-height: 128%;
  }
}
.re-chat__message .date {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.re-chat__message .date span {
  font-family: "PPSupplyMono", monospace;
  color: #fff;
  opacity: 0.24;
  font-size: 12px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 100%;
  position: relative;
}
.re-chat__message .date span:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #fff;
}
.re-chat__message .date span:nth-child(3):after {
  display: none;
}

.re-project {
  padding: 24px 0;
}
.re-project__wrapper {
  overflow: hidden;
  border-radius: 8px;
  background-color: #1E1E1E;
  position: relative;
  padding: 160px 60px;
  display: flex;
}
@media screen and (max-width: 998px) {
  .re-project__wrapper {
    padding: 64px 24px;
  }
}
.re-project__wrapper div {
  flex: 1;
}
.re-project__wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(230deg, rgba(0, 0, 0, 0) 0%, rgba(6, 67, 119, 0) 50%, rgb(0, 0, 0) 100%);
  left: 0;
  top: 0;
  z-index: 2;
}
.re-project__wrapper:after {
  content: "";
  position: absolute;
  right: -140px;
  top: 0;
  width: 500px;
  height: 100%;
  background-image: url("../images/svg/logo-project.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 0;
  transform: scale(2.6);
}
@media screen and (max-width: 998px) {
  .re-project__wrapper:after {
    right: -340px;
  }
}
@media screen and (max-width: 600px) {
  .re-project__wrapper:after {
    display: none;
  }
}
.re-project__wrapper .decor-girl {
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translateX(-50%);
  width: 110%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .re-project__wrapper .decor-girl {
    width: 130%;
  }
}
@media screen and (max-width: 900px) {
  .re-project__wrapper .decor-girl {
    width: 150%;
  }
}
@media screen and (max-width: 600px) {
  .re-project__wrapper .decor-girl {
    width: 240%;
    left: 40%;
  }
}
@media screen and (max-width: 460px) {
  .re-project__wrapper .decor-girl {
    width: 300%;
    left: 34%;
  }
}
.re-project__wrapper .decor-girl:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/rescam-girl-new.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .re-project__wrapper .decor-girl:after {
    background-size: 100%;
  }
}
.re-project__wrapper .decor {
  position: relative;
}
.re-project__wrapper .decor:after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  border-radius: 100%;
  background: rgb(11, 133, 238);
  background: radial-gradient(circle, rgba(11, 133, 238, 0.7833727241) 0%, rgba(11, 133, 238, 0.0130646008) 100%);
  filter: blur(100px);
  z-index: 0;
}
@media screen and (max-width: 998px) {
  .re-project__wrapper .decor:after {
    right: -200px;
  }
}
@media screen and (max-width: 460px) {
  .re-project__wrapper .decor:after {
    right: -340px;
  }
}
.re-project__wrapper .info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column;
  gap: 48px;
}
.re-project__wrapper .info h2 {
  font-family: "PPSupplyMono", monospace;
  color: #fff;
  font-size: 112px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 80%;
}
@media screen and (max-width: 998px) {
  .re-project__wrapper .info h2 {
    font-size: 64px;
    line-height: 80%;
  }
}
.re-project__wrapper .info p {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 160%;
}
.re-project__wrapper .info .logo span {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 160%;
}
.re-project__wrapper .info .logo img {
  width: 130px;
  height: 32px;
  margin-top: 12px;
}

.re-share {
  padding: 42px 0;
  max-width: 998px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .re-share {
    max-width: 100%;
  }
}
.re-share__wrapper {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 24px;
}
.re-share__wrapper h3 {
  padding: 0;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .re-share__wrapper h3 {
    font-size: 38px;
  }
}
.re-share__wrapper .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .re-share__wrapper .buttons {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -6px;
    gap: unset;
    row-gap: 12px;
  }
}
.re-share__wrapper .buttons .re-btn {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .re-share__wrapper .buttons .re-btn {
    width: calc(50% - 12px);
    flex: unset;
    margin: 0 6px;
    padding: 16px 12px;
    height: fit-content;
  }
}
.re-share__wrapper .buttons .re-btn:hover:before {
  opacity: 1;
  visibility: visible;
}
.re-share__wrapper .buttons .re-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(11, 133, 238);
  background: linear-gradient(90deg, rgba(11, 133, 238, 0) 0%, rgb(33, 108, 179) 33%, rgb(26, 119, 206) 66%, rgba(11, 133, 238, 0) 100%);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.re-footer {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.re-footer__wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.re-footer__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(11, 133, 238);
  background: linear-gradient(90deg, rgba(11, 133, 238, 0) 0%, rgb(33, 108, 179) 33%, rgb(26, 119, 206) 66%, rgba(11, 133, 238, 0) 100%);
  z-index: 0;
}
.re-footer__wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -370px;
  width: 100%;
  height: 60%;
  border-radius: 100%;
  background: rgb(11, 133, 238);
  background: radial-gradient(circle, rgba(11, 133, 238, 0.7833727241) 0%, rgba(11, 133, 238, 0.0130646008) 100%);
  filter: blur(250px);
  z-index: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .re-footer__wrapper:after {
    top: -220px;
    filter: blur(180px);
  }
}
.re-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 48px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto 0;
  overflow: hidden;
}
.re-footer__top:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 270px;
  height: 60%;
  border-radius: 100%;
  background: rgb(11, 133, 238);
  background: radial-gradient(circle, rgba(11, 133, 238, 0.7833727241) 0%, rgba(11, 133, 238, 0.0130646008) 100%);
  filter: blur(20px);
  z-index: 0;
  transform: translateX(-50%);
}
.re-footer__top span {
  font-weight: 400;
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 160%;
  display: block;
}
.re-footer__top img {
  width: 89px;
  height: 22px;
  object-fit: contain;
}
.re-footer__logo {
  width: 100%;
  height: auto;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.re-footer__list {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .re-footer__list {
    flex-flow: column;
    align-items: flex-start;
    margin-top: 32px;
  }
}
.re-footer__list-item {
  flex: 1;
}
.re-footer__list-item span, .re-footer__list-item a {
  font-size: 12px;
  text-transform: uppercase;
  color: #e6e6e6;
  letter-spacing: -0.03em;
  line-height: 100%;
  opacity: 0.44;
}

.re-btn {
  width: fit-content;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 16px;
  font-family: "PPSupplyMono", monospace;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: all 0.3s ease;
  position: relative;
}
.re-btn svg {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.re-btn:hover {
  opacity: 0.9;
  background-color: rgba(255, 255, 255, 0.04);
}
.re-btn:hover svg {
  transform: rotate(-90deg) translateY(3px);
}

/* Reset */
body {
  height: 100%;
  margin: 0;
}

html {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul, ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-size: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}

body {
  background-color: #141414;
  color: #fff;
  font-family: "PPSupplyMono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.03em;
}
body.active-js {
  overflow: hidden;
}

.wrapper-container {
  max-width: 1488px;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

h3 {
  width: 100%;
  height: auto;
  font-family: "PPSupplyMono", monospace;
  color: #fff;
  font-size: 48px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 80%;
  text-align: center;
  padding-bottom: 24px;
}

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