@charset "UTF-8";
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.ttf") format("truetype"), url("../fonts/icons.woff") format("woff"), url("../fonts/icons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=_icon-]::before,
[class*=" _icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._icon-Facebook:before {
  content: "\e900";
}

._icon-Twitter:before {
  content: "\e901";
}

._icon-Instagram:before {
  content: "\e902";
}

._icon-LinkedIn:before {
  content: "\e903";
}

._icon-Telegram:before {
  content: "\e904";
}

._icon-TikTok:before {
  content: "\e905";
}

._icon-VK:before {
  content: "\e906";
}

._icon-YouTube:before {
  content: "\e907";
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after { /*браузер Mozilla Firefox*/ /*браузеры Chrome, Safari, Opera*/
  box-sizing: border-box; /*браузер Internet Explorer*/
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*------------------------------------------------------------------------------------------------------------------------*/
body {
  color: #ffffff;
  font-size: 14px;
  font-family: "Lexend";
  background-color: #110a1d;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
[class*=__container] {
  max-width: 1670px;
  margin: 0 auto;
  padding: 0px 15px;
}
@media (max-width: 991.78px) {
  [class*=__container] {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  [class*=__container] {
    max-width: none;
    padding: 0 10px;
  }
}

.header {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 4px solid #478bf9;
  border-radius: 64px;
  min-height: 96px;
  gap: 15px;
}
.header__burger {
  display: none;
}
@media (max-width: 991.78px) {
  .header .header__container {
    justify-content: flex-end;
    gap: 4px;
    min-height: 76px;
  }
  .header .header__nav {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: -350px;
    left: 0;
    width: 100vw;
    background-color: #110a1d;
    z-index: 24;
    transition: all ease 0.25s;
    opacity: 0;
  }
  .header .header__nav .nav-header {
    width: 100%;
  }
  .header .header__nav .nav-header__item {
    width: 100%;
    border-radius: 28px;
    font-size: 18px;
    line-height: 24px;
    padding: 13px 20px;
    border: 2px solid #478bf9;
  }
  .header .header__nav .nav-header__items {
    gap: 5px;
    flex-direction: column;
    max-width: 750px;
    margin: 0 auto;
  }
  .header .header__nav .nav-header__items .nav-header__item {
    width: 100%;
  }
  .header .header__nav.open-nav {
    top: 106px;
    z-index: 24;
    opacity: 1;
  }
  .header .header__burger {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header__burger.active .header__burger-line {
    transform: rotate(-45deg);
  }
  .header .header__burger.active .header__burger-line::after {
    opacity: 0;
  }
  .header .header__burger.active .header__burger-line::before {
    top: 0;
    transform: rotate(90deg);
  }
  .header .header__burger-line {
    position: relative;
    height: 4px;
    width: 28px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all ease 0.25s;
  }
  .header .header__burger-line::after, .header .header__burger-line::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
  }
  .header .header__burger-line::after {
    transition: all ease 0.25s;
    opacity: 1;
    top: 10px;
  }
  .header .header__burger-line::before {
    transition: all ease 0.25s;
    top: -10px;
  }
  .header .header__login {
    margin: 25px 0px 0px 0px;
  }
  .header .header__login, .header .header__sign {
    display: none;
    text-transform: uppercase;
    border-radius: 28px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    padding: 13px 20px;
    text-align: center;
  }
  .header .header__login.block, .header .header__sign.block {
    display: block;
  }
  .header .header__lang img {
    width: 20px;
    height: 20px;
  }
  .header .header__lang {
    padding: 8px;
  }
  .header .header__lang p {
    display: none;
  }
}
.header__logo {
  display: block;
  flex: 0 1 287px;
  height: 32px;
}
.header__user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
}
.header__lang {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__lang p {
  margin-left: 8px;
}
.nav-header__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-header__item:hover {
  text-decoration: underline;
}
.nav-header__link {
  color: inherit;
}

.border-user {
  cursor: pointer;
  border: 2px solid #9dadf2;
  border-radius: 24px;
  padding: 14px;
  transition: all ease 0.25s;
}
.border-user:hover {
  border: 2px solid #478bf9;
  background-color: #478bf9;
}

.page {
  height: 1048px;
  overflow: hidden;
}
.page__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1682px) {
  .page__container {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (max-width: 1682px) {
  .page {
    height: 100%;
  }
}
.left-page {
  width: 669px;
}
.left-page__title {
  font-size: 96px;
  font-weight: 500;
  line-height: 96px;
  margin-bottom: 24px;
}
.left-page__title span {
  color: #478bf9;
}
.left-page__subtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}
.left-page__btn {
  display: flex;
  padding: 20px 72px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 48px;
  background-color: #478bf9;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  text-transform: uppercase;
  color: inherit;
  transition: background-color ease 0.25s;
}
.left-page__btn:hover {
  background-color: #3368bd;
}

@media (max-width: 1682px) {
  .left-page {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .left-page__title {
    margin-top: 30px;
  }
}
.center-page {
  display: flex;
  -moz-column-gap: 17px;
       column-gap: 17px;
}
.center-page__icons {
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}
.center-page .left-icons {
  animation: bounce-1 2.5s infinite linear alternate-reverse;
  white-space: nowrap;
}
.center-page .center-icons {
  animation: bounce-1 4.5s infinite linear alternate;
  white-space: nowrap;
}
.center-page .right-icons {
  animation: bounce-1 3s infinite linear alternate-reverse;
  white-space: nowrap;
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15%);
  }
}

@media (max-width: 1682px) {
  .center-page {
    height: 600px;
    overflow: hidden;
    justify-content: center;
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .right-page {
    margin-bottom: 30px;
  }
}
.right-page {
  position: relative;
}
.right-page__title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
}

.blog-block {
  border-radius: 100px;
  border: 3px solid #478bf9;
  background-color: rgba(255, 255, 255, 0.12);
  height: 595px;
  padding: 24px 40px 0 24px;
  overflow: auto;
  /* скрываем скроллбар, но оставляем скролл */
}
.blog-block::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.blog-block__items {
  margin-bottom: 16px;
}
.blog-block__link {
  color: inherit;
}
.blog-block__item {
  cursor: pointer;
  max-width: 467px;
  display: flex;
  padding: 16px 64px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 196px;
  background-color: #1e1231;
  transition: background-color ease 0.2s;
}
.blog-block__item:hover {
  background-color: #478bf9;
}
.blog-block__scrollbar {
  position: absolute;
  top: 160px;
  right: 16px;
  display: block;
  width: 8px;
  height: 403px;
  background-color: rgba(255, 255, 255, 0.1215686275);
  border-radius: 10px;
}
.blog-block__dumbl {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 8px;
  height: 104px;
  background-color: #478bf9;
  border-radius: 10px;
}

.item-blog-block__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 14px;
}
.item-blog-block__date {
  font-size: 14px;
  font-weight: 450;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  border-width: 4px 4px 0px 4px;
  border-style: solid;
  border-color: #478bf9;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 24px;
}
.nav-footer__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-footer__link {
  font-size: 16px;
  line-height: 20px;
  color: inherit;
  transition: all ease 0.2s;
}
.nav-footer__link:hover {
  text-decoration: underline;
  color: #478bf9;
}

.socials__title {
  text-align: right;
  margin-bottom: 14px;
}
.socials__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.socials__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials ._svg {
  position: absolute;
  color: #000;
}

@media (max-width: 1300px) {
  .header__logo {
    flex: 0 1 250px;
  }
}
@media (max-width: 1200px) {
  .header__logo {
    flex: 0 1 230px;
  }
  .nav-header__items {
    gap: 15px;
  }
  .border-user {
    padding: 10px;
    text-align: center;
  }
  .nav-header__item {
    text-align: center;
  }
  .header__user {
    gap: 10px;
  }
}
@media (max-width: 991.78px) {
  .left-page__title {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
  }
  .left-page__subtitle {
    margin-bottom: 25px;
  }
  .footer__container {
    gap: 15px;
  }
  .nav-footer__items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    margin: 0 10px;
  }
  .left-page__title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .left-page__subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .nav-footer__items {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 625px) {
  .footer__container {
    flex-direction: column;
    text-align: left;
    gap: 20px;
    margin: 20px auto 20px;
    padding: 0 30px;
  }
  .nav-footer__items {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .nav-footer__link {
    font-size: 14px;
  }
  .footer__socials {
    width: 100%;
  }
  .footer__socials p {
    text-align: center;
  }
}
@media (max-width: 595px) {
  .page__right {
    margin-bottom: 120px;
  }
  .right-page__blog {
    height: 446px;
    padding: 10px 16px 10px 10px;
    border-radius: 50px;
  }
  .blog-block__item {
    padding: 15px 35px;
    border-radius: 40px;
  }
  .blog-block__scrollbar {
    height: 300px;
    top: 130px;
    right: 8px;
    width: 4px;
  }
  .blog-block__dumbl {
    height: 78px;
    width: 4px;
  }
  .blog-block__items {
    margin-bottom: 10px;
  }
  .blog-block__items:last-child {
    margin: 0;
  }
  .item-blog-block__text {
    font-size: 20px;
  }
}
@media (max-width: 414px) {
  .page__left {
    margin-bottom: 230px;
  }
  .left-page__btn {
    padding: 20px 25px;
    font-size: 18px;
  }
  .left-page__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
  .left-page__title {
    font-size: 46px;
    line-height: 50px;
  }
  .right-page__title {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .item-blog-block__text {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 20px;
  }
  .nav-footer__items {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2px;
  }
  .footer__container {
    align-items: flex-start;
  }
  .footer__socials p {
    text-align: left;
    margin-bottom: 8px;
  }
  .socials__icon {
    justify-content: space-between;
  }
  .socials__svg {
    width: 27px;
    height: 27px;
  }
  .page__container {
    position: relative;
  }
  .page__center {
    position: absolute;
    transform: rotate(90deg);
    top: 260px;
    left: 0;
    right: 0;
    justify-content: flex-start;
    height: 480px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .center-page__icons {
    row-gap: 12px;
  }
  .center-page__icons {
    position: relative;
    transform: rotate(-90deg);
    width: 50px;
    height: 50px;
  }
  .center-page__icon {
    position: relative;
    transform: rotate(-90deg);
    width: 50px;
    height: 50px;
  }
  .swap {
    position: relative;
    transform: rotate(0deg);
  }
}