
@font-face {
    font-style: medium;
  font-weight: 400;
  font-display: swap;
  font-family: "Manrope";
  src: local("Manrope-Medium");
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  src: url("../fonts/Manrope-Medium.woff") format("woff");
  src: url("../fonts/Manrope-Medium.woff") format("truetype");
}

@font-face {
    font-style: regular;
  font-weight: 500;
  font-display: swap;
  font-family: "Manrope";
  src: local("Manrope-Regular");
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  src: url("../fonts/Manrope-Regular.woff") format("woff");
  src: url("../fonts/Manrope-Regular.woff") format("truetype");
}

@font-face {
    font-style: semibold;
  font-weight: 600;
  font-display: swap;
  font-family: "Manrope";
  src: local("Manrope-SemiBold");
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  src: url("../fonts/Manrope-SemiBold.woff") format("woff");
  src: url("../fonts/Manrope-SemiBold.woff") format("truetype");
}

@font-face {
    font-style: bold;
  font-weight: 700;
  font-display: swap;
  font-family: "Manrope";
  src: local("Manrope-Bold");
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  src: url("../fonts/Manrope-Bold.woff") format("woff");
  src: url("../fonts/Manrope-Bold.woff") format("truetype");
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes underline {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes underline {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

body::-webkit-scrollbar-track {
    background-color: #415FFF;
}

body::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb:active {
    background-color: #fff;
    border: 0.1rem solid #415FFF;
}

body::-webkit-scrollbar {
    width: 0.6rem;
    background-color: #415FFF;
}


body {
    font: 600 16px/1.5 Manrope;
    color: #fff;
    scroll-behavior: smooth;
    background: rgb(60, 60, 60);
    overflow-x: hidden;
}

.header, .footer {
    width: 100vw;
}

.light-theme {
    background: #415fff;
}

.light-theme .header__logo {
    background: #fff;
}

.light-theme .header__lang-option {
    background: #fff;
    color: #000000;
}

.header__lang-option {
    line-height: 150%;
    color: #bcbcbc;
    background: #000000;
    font-weight: 600;
}

.light-theme .header__logo .logo-txt {
    color: #000000;
}

.light-theme .header__main > *:not(.header__signup) {
    background: #415FFF;
}

.light-theme .header__main > *:not(.header__signup, .header__buttons).burgerActive {
    background: #415FFF;
}

.light-theme .menu__link {
    color: #000000;
}

.light-theme .menu__list.burgerActive .menu__link {
    color: white;
}

.light-theme .header__logo.burgerActive {
    background: #fff;
}

.light-theme .header__logo.burgerActive .logo-txt {
    color: #000000;
}

.light-theme .header__menu-burger.burgerActive {
    background: #fff;
}

.light-theme .menu__wallet {
    background: #fff;
}

.light-theme .menu__wallet-txt {
    background: none;
}

.light-theme .header__main.burgerActive .pools__link {
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive .menu__wallet-txt::-webkit-input-placeholder {
    background: #415FFF;
    color: #fff;
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive .menu__wallet-txt::-moz-placeholder {
    background: #415FFF;
    color: #fff;
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive .menu__wallet-txt:-ms-input-placeholder {
    background: #415FFF;
    color: #fff;
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive .menu__wallet-txt::-ms-input-placeholder {
    background: #415FFF;
    color: #fff;
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive .menu__wallet-txt::placeholder {
    background: #415FFF;
    color: #fff;
    opacity: 0.8;
}

.light-theme .menu__wallet.burgerActive {
    background: #415FFF;
}

.light-theme .header__top.burgerActive {
    background: #415FFF;
}

.light-theme .header__signup.burgerActive {
    background: #000000;
}

select.header__button {
    color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    top: 0;
}

.header__top.burgerActive {
    padding: 1.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100vh;
    width: 100vw;
    background: black;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-transform: translate(0rem, -1.5rem);
    -ms-transform: translate(0rem, -1.5rem);
    transform: translate(0rem, -1.5rem);
    overflow: hidden;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
}

.main {
    color: white;
}

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 2rem;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 80rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg-container {
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    height: 56rem;
    z-index: -1;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
}

.bg-gradient {
    background-color: #4764FF;
    border-radius: 50%;
    opacity: 0.8;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    position: absolute;
    z-index: -1;
}

.light-theme .bg-gradient {
    background-color: #00ffd1;
}

.bg {
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    z-index: -1;
    top: 4rem;
}

.bg__img {
    height: 55rem;
    max-width: 90rem;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
    color: #fff;
}

.logo-img {
    width: 2rem;
    height: 2rem;
}

.logo-txt {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

li {
    position: relative;
}

li a {
    text-decoration: none;
    color: #fff;
    line-height: 1.5;
}

.main {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.info__container {
    display: grid;
    width: 94%;
    grid-template-columns: 11em 2fr 11em;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 7rem;
    min-height: 30rem;
}

.info__container.statistics-container {
    font-size: 4rem;
    grid-template-columns: 1fr;
}

.statistics-container .column-center {
    max-width: 9em;
}

.row-copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: -0.5rem !important;
}

.grow {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.green {
    color: #21bc96;
    background: rgba(33, 188, 150, 0.2);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.red {
    color: #F64344;
    background: rgba(246, 67, 68, 0.2);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.light-theme .main__table {
    background: #f5f5f5;
}

.table__container::-webkit-scrollbar-track {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.table__container::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
    background-color: #fff;
}

.table__container::-webkit-scrollbar {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.table__table-main th, .table__table-main td {
    padding-left: 1rem;
}

.table__table-main td {
    margin: 0.72rem 1rem 0.72rem 1rem;
}

.table__table-main th {
    margin: 0.5rem 1rem 0.5rem 1rem;
}

.main__table {
    padding: 6.3rem 0 10rem;
}

.main__decor-container {
    position: absolute;
    max-width: 90rem;
    width: 100%;
    height: 30rem;
    z-index: -1;
    top: -1rem;
}

.main__decor {
    position: absolute;
    width: 33%;
    aspect-ratio: 1;
    border-radius: 100%;
    background: linear-gradient(216deg, rgba(65, 95, 255, 0.5) 0%, rgba(255, 255, 255, 0) 69.31%, rgba(65, 95, 255, 0.5) 100%);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.main__decor:nth-child(1) {
    left: 0;
}

.main__decor:nth-child(2) {
    left: 33%;
}

.main__decor:nth-child(3) {
    left: 66%;
}

.main__socials {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    padding-bottom: 5rem;
}

.info__column:nth-child(3) {
    text-align: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.social {
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000000;
    border-radius: 0.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.social__info {
    margin-right: auto;
}

.social__txt {
    opacity: 0.5;
}

.social__logo {
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
}

.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.3rem;
}

.column-center {
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    max-width: 39.4rem;
    width: 100%;
    justify-self: center;
}

.column-center .column__block {
    margin-left: -3rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    max-width: 41rem;
}

.column-center .column__title {
    line-height: 1.1;
    font-size: 2rem;
}

.column-center .column__title.index-title {
    font-size: 4rem;
}

.column-center .column__img {
    width: 7.5rem;
    height: 7.5rem;
    margin-top: 1.5rem;
    -webkit-animation: spin infinite 20s linear;
    animation: spin infinite 20s linear;
}

.column-centered-txt {
    max-width: 21em;
    text-align: center;
}

.column__bg {
    position: absolute;
}

.column__title {
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
}

.column__line {
    border: 1px solid #fff;
    width: 4rem;
}

.column__txt {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.5;
}

.socials__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    top: -5rem;
}

.social-card {
    background: #000000;
    padding: 1.5rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 3rem 1fr 1.5rem;
    gap: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.social-card__txt-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    overflow: hidden;
}

.social-card__txt {
    opacity: 0.5;
}

.light-theme .social-card {
    background: #fff;
}

.light-theme .social-card__txt-block {
    color: #000000;
}

.light-theme .table__option {
    background: #fff;
    color: #000000;
    background-repeat: no-repeat;
}

.light-theme select.table__option {
    background-image: url(../img/icons/option-arrow-black.svg);
    background-position: right 0 top 50%, 0 0;
}

.light-theme .table__option-txt {
    background: #fff;
    color: #000000;
}

table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
    line-height: 150%;
    border-radius: 0.5rem;
    text-wrap: nowrap;
    min-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.table__table-main {
    margin-bottom: 2.5rem;
    display: none;
}

.table__table-main thead {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #415FFF;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem 0.5rem 0 0;
}

.table__table-main tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
}

.light-theme .card {
    background: #fff;
    color: #000000;
}

.light-theme .arrow:not(.pagination__img) {
    background: #000000;
}

.light-theme tbody {
    color: #000000;
}

.light-theme .table__table-main tbody tr {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.light-theme .table__table-main td:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.table__table-main th:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.table__table-main th {
    text-transform: uppercase;
    color: #fff;
    background: #415FFF;
}

table tr {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.table__txt {
    overflow: hidden;
    text-overflow: ellipsis;
}

.table__table-main tbody tr {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.table__table-main tbody tr:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

table td:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.table__table-main td {
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.table__table-main td:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.light-theme .table__title {
    color: #000000;
}

.table__option {
    border-radius: 0.5rem;
}

select.table__option {
    background-size: 0.6rem 0.4rem;
    background-image: url(../img/icons/option-arrow.svg);
    background-repeat: no-repeat, repeat;
    background-position: right 1em top 50%, 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.blue {
    color: #415FFF;
}

.light-theme .table__option-container {
    background: #fff;
}

.table__tables-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    width: 100%;
}

.table__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.table__tr {
    width: 100%;
}

.table__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 2.5rem;
}

.table__title {
    font-weight: 500;
    font-size: 3rem;
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
}

.table__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000000;
    color: #fff;
    padding-left: 0.3em;
}

.table__option-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: black;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    gap: 0.25rem;
}

.table__option-title {
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.2);
}

.table__option-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    background: rgba(188, 188, 188, 0.5);
}

.table__option-txt {
    line-height: 150%;
    color: #bcbcbc;
    background: #000000;
    font-weight: 600;
    width: 8.5em;
}

.table__total tr {
    background: rgba(65, 95, 255, 0.2);
    border-radius: 0.5rem;
}

.table__ellipse {
    display: inline-block;
    border-radius: 100%;
    background: #21bc96;
    width: 0.75rem;
    height: 0.75rem;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.light-theme .navigation__info {
    color: #1C1C1C;
}

.navigation__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.3em;
    color: #fff;
    opacity: 0.5;
}

.subpages-nav {
    width: 100%;
    border-bottom: 2px solid rgba(188, 188, 188, 0.1);
    padding-bottom: 0.9rem;
    scrollbar-width: none;
    overflow-x: auto;
}

.active-subpage::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(29%, #415FFF), to(#00FFD1));
    background-image: linear-gradient(to right, #415FFF 29%, #00FFD1 100%);
    width: 100%;
    height: 3px;
}

.light-theme .subpages-nav__link {
    color: #000000;
}

.subpages-nav__img {
    width: 1.25rem;
    height: 1.25rem;
}

.subpages-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
}

.subpages-nav__item {
    text-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.footer {
    background: #1C1C1C;
    color: #fff;
}

.footer-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.65rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-menu__list:not(:nth-child(2)) .footer-menu__item:first-child .footer-menu__link {
    opacity: 1;
}

.footer-menu__list:nth-child(2) {
    margin-top: 2.2em;
}

.footer-menu__item {
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.footer-menu__link {
    opacity: 0.5;
}

.footer-menu__item .solo {
    background: linear-gradient(156deg, #415fff 0%, #273999 100%);
    border-radius: 4px;
    padding: 4px 6px;
    text-transform: uppercase;
    opacity: 1;
    margin-left: 0.5rem;
    font-size: 0.6rem;
    position: relative;
    top: -0.5em;
}

.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 31.6rem;
    text-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 1rem;
    white-space: nowrap;
}

.footer__container {
    padding-top: 5rem;
    gap: 4rem;
}

.footer__form {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    max-width: 25.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1rem;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5.6rem;
}

.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 1rem 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    line-height: 1.5;
    gap: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.copyright__txt {
    opacity: 0.5;
}

.copyright__social {
    width: 1rem;
    height: 1rem;
    -webkit-filter: grayscale(0.9);
    filter: grayscale(0.9);
    position: absolute;
    right: 50%;
}

.copyright__to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    color: #fff;
    text-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.to-top__txt {
    font-size: 1rem;
}

.form__main {
    border-bottom: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form__button {
    background: transparent;
}

.form__input {
    height: 2em;
    background: transparent;
    color: #000000;
    width: 100%;
    font: 500 0.75em/1.2 Manrope;
    color: #fff;
    opacity: 0.5;
}

.form__button-img {
    width: 1rem;
    height: 0.8rem;
}

.footer__logo .logo-txt {
    color: black;
}

.arrow:not(.pagination__img) {
    background: #fff;
    border-radius: 100%;
    padding: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
}

.footer__logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
    background: white;
}

.column-center .column__title {
    word-break: break-word;
}

.light-theme .info-card {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    background: rgba(65, 95, 255, 0.9);
}

.info-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1c1c1c;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.info-card__content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 6px;
    padding: 4px 8px;
}

.info-card__content-row::before {
    content: "";
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 0.25rem 0.5rem;
    overflow: hidden;
}

.info-card__content-row:nth-child(odd) {
    background: rgb(60, 60, 60);
}

.info-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    gap: 0.5rem;
}

.info-card__hashrate {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.info-card__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
}

.info-card__value {
    white-space: nowrap;
    opacity: 0.8;
}

.info-card__item {
    opacity: 0.8;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    white-space: nowrap;
}

.info-card__img {
    width: 3rem;
    height: 3rem;
}

.info-card__logo {
    gap: 1rem;
    padding-right: 0;
}

.info-card__pool-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.light-theme .info-card__content-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.2);
}

.hathor-cards {
    margin-top: -13rem;
    z-index: 2;
    position: relative;
}

.hathor-cards__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.hashrate-charts {
    margin-top: -4rem;
}

.earnings-container .charts__container {
    top: -9rem;
    padding-bottom: 1rem;
}

.table__copy:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .info__container {
        margin-top: -4rem;
    }

    .subpages-nav__list {
        gap: 3rem;
    }

    .footer__form {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 970px) {
    .subpages-nav__list {
        gap: 1.5rem;
    }

    .footer__form {
        font-size: 2rem;
    }

    .logo-img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .logo-txt {
        font-size: 1.15rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer__container {
        padding-top: 3rem;
        gap: 3rem;
    }

    .header__container {
        padding-top: 1.5rem;
    }

    .info__container {
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 912px) {
    .socials__container {
        grid-template-columns: 1fr;
    }

    .charts.earnings-container {
        margin-top: 0;
        margin-bottom: 0;
    }

    .earnings-container .charts__container {
        top: -1.5rem;
        padding-bottom: 1rem;
    }

    .hathor-cards__container {
        gap: 1rem;
    }

    .info-card {
        padding: 1rem;
        gap: 1rem;
    }

    .info-card__hashrate {
        font-size: 0.85rem;
    }

    .info-card__header {
        padding-bottom: 0.75rem;
    }

    .info-card__value {
        font-size: 0.85rem;
    }

    .info-card__txt {
        font-size: 0.85rem;
    }

    .copyright__social {
        position: static;
    }

    .footer__form {
        -ms-flex-item-align: end;
        align-self: flex-end;
        font-size: 1.5rem;
    }

    .footer-menu {
        max-width: 48.5vw;
    }

    .form__txt {
        -webkit-transform: translateY(-1rem);
        -ms-transform: translateY(-1rem);
        transform: translateY(-1rem);
    }
}

@media screen and (max-width: 767px) {
    .socials__container {
        top: 0;
        position: static;
        margin-bottom: 2rem;
    }

    .hathor-cards {
        margin-top: 0;
    }

    .hathor-cards__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-menu__list:nth-child(2) {
        margin-top: -4.5rem;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer__main {
        gap: 3rem;
    }

    .footer__logo .logo-img {
        width: 2rem;
        height: 2rem;
    }

    .footer__logo .logo-txt {
        font-size: 1.53rem;
    }

    .navigation {
        padding-top: 0;
        padding-bottom: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .copyright__txt {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .copyright__social {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media screen and (max-width: 480px) {
    .socials__container {
        gap: 0.75rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info__container {
        width: 90vw;
    }

    .table__option-txt {
        width: 6rem;
    }

    .navigation__info {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .acitve-page::after {
        bottom: -0.5rem;
    }

    .main__table {
        padding-top: 3.5rem;
    }

    .header__signup.burgerActive {
        width: calc(100vw - 150px);
    }

    .bg-container {
        height: 100%;
    }

    .bg-gradient {
        -webkit-transform: translate(0, -70%);
        -ms-transform: translate(0, -70%);
        transform: translate(0, -70%);
        width: 31.25rem;
        height: 31.25rem;
    }

    .navigation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mining-nav__item a:hover::after {
        bottom: -0.5rem;
    }

    .mining-nav {
        padding: 1rem 0rem 0.3rem;
    }

    .bg__img {
        height: 32rem;
    }

    .footer__copyright {
        gap: 0.5rem;
    }

    .footer__main {
        padding-bottom: 1.5rem;
    }

    .footer-menu__list:not(:nth-child(2)) .footer-menu__item:first-child {
        margin-bottom: 0.6rem;
    }

    .footer-menu {
        max-width: unset;
    }

    .form__txt {
        -webkit-transform: translateY(-0.5rem);
        -ms-transform: translateY(-0.5rem);
        transform: translateY(-0.5rem);
    }

    .footer__form {
        max-width: 20.5rem;
    }

    .footer-menu__list {
        gap: 0.5rem;
    }

    .footer__main {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer__form {
        gap: 0.45rem;
    }

    .footer__container {
        gap: 1.5rem;
    }

    .footer-menu {
        gap: 3rem;
    }
}

.light-theme {
    background: #415fff;
}

.light-theme .header__signup {
    background: #000000;
    color: #fff;
}

.light-theme .header__logo {
    background: #fff;
}

.light-theme .header__logo .logo-txt {
    color: #000000;
}

.light-theme .header__main > *:not(.header__signup) {
    background: #fff;
}

.light-theme .menu__link {
    color: #000000;
}

.header__logo {
    background: #000000;
}

details {
    cursor: pointer;
}

li {
    position: relative;
}

li a {
    text-decoration: none;
    color: #fff;
    line-height: 1.5;
}

a {
    color: #fff;
}

a::visited {
    color: #fff;
}

.acitve-page::after {
    content: "";
    position: absolute;
    bottom: -1.7rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.mining-nav__item a:hover::after {
    content: "";
    position: absolute;
    bottom: -1.7rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-animation: underline 0.3s ease-in-out forwards;
    animation: underline 0.3s ease-in-out forwards;
}

.footer-menu__link:hover::after {
    content: "";
    position: absolute;
    bottom: -0.2em;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-animation: underline 0.3s ease-in-out forwards;
    animation: underline 0.3s ease-in-out forwards;
}

.header__button:hover {
    cursor: pointer;
}

.header__signup {
    background: #415FFF;
    color: #fff;
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.header .menu__item {
    padding: 0 1.5rem;
}

.header__container {
    min-height: 3rem;
    padding: 2.5rem;
}

.header__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: transparent;
}

.header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.header__menu {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__button {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu__wallet {
    border-radius: 0.25rem;
    padding-right: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.menu__wallet-txt {
    font-weight: 600;
    line-height: 1.5;
    color: #848484;
    white-space: nowrap;
    background: black;
    width: 9.5em;
}

.menu__wallet-button {
    background: #848484;
    opacity: 0.5;
    width: 1rem;
    height: 1rem;
    border-radius: 8rem;
}

.header__main > *:not(.header__signup) {
    background: #000000;
}

.header__main > * {
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.mining-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mining-nav__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 59rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.25rem;
}

.mining-nav__img {
    width: 2.5rem;
    height: 2.5rem;
}

.mining-nav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
    color: #fff;
    white-space: nowrap;
}

.header__signup:hover, .header__button:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pool-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
}

.pools__link {
    display: block;
    margin-top: 1rem;
    opacity: 0.5;
    position: relative;
}

.pools .pools__link:hover::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-animation: underline 0.3s ease-in-out forwards;
    animation: underline 0.3s ease-in-out forwards;
}

.light-theme .pools .pools__link:hover::after {
    background-color: #000000;
}

.mining-nav__txt:first-letter {
    text-transform: uppercase;
}

.pools summary {
    display: inherit;
    list-style-position: inside;
    list-style-type: none;
    content: url(../details-icon.svg);
    color: #fff;
}

.pools summary::before {
    display: none;
    content: url(../img/details-icon.svg);
    position: absolute;
    right: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 0.75rem;
}

.light-theme .pools summary {
    color: #000000;
}

.pools[open] summary::before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.menu-burger {
    width: 2.5rem;
    height: 2.5rem;
    background: #000000;
    padding: 0.7rem;
    border-radius: 0.25rem;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.23rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.light-theme .menu-burger {
    background: #fff;
}

.light-theme .menu-burger__line {
    background: #000000;
}

.menu-burger__line {
    width: 1rem;
    background: #fff;
    height: 0.15rem;
    display: block;
}

.to-top__img {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dot {
    border-radius: 100%;
    background: #415FFF;
    width: 0.4rem;
    height: 0.4rem;
}

.main__info {
    padding-top: 4rem;
    width: 100%;
}

.info__bg-container {
    left: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
}

.light-theme .charts {
    background: #f5f5f5;
}

.light-theme .charts__chart {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.charts__container {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    position: relative;
    top: -6rem;
}

.charts__chart {
    height: 100%;
    max-height: 29rem;
    background: #000000;
    border-radius: 1rem;
    padding: 1rem;
}

.chart-zoomed {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    max-height: unset;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    border-radius: 0;
}

.chartReset {
    top: 1.4vh;
    position: fixed;
    right: 5rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.light-theme .pagination__number {
    color: #000000;
    background: #fff;
}

.light-theme .pagination__img {
    background: #fff;
}

.pagination__img {
    background: transparent;
    border-radius: 0;
    padding: 1rem;
    border-radius: 0.25rem;
    width: 3rem;
    height: 3rem;
    background: #000000;
    cursor: pointer;
}

.pagination__img:first-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination__img:last-child {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.pagination__numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.pagination__number {
    border-radius: 0.25rem;
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: #000000;
}

.pagination__number:hover {
    cursor: pointer;
}

.pagination__ellipsis {
    line-height: 3;
    cursor: pointer;
}

.light-theme .active-number {
    background: #415FFF;
    color: #fff;
}

.active-number {
    background: #415FFF;
    color: #000000;
}

.unactive {
    opacity: 0.5;
    cursor: default;
}

.copy-img {
    width: 1.2rem;
    height: 1.2rem;
}

@media screen and (min-width: 913px) {
    .light-theme .pools[open] {
        background: #fff;
    }

    .light-theme .pools__link {
        opacity: 1;
        color: #000000;
    }

    .pools[open] {
        position: absolute;
        top: -0.7rem;
        left: 0;
        background: #000000;
        z-index: 2;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding: 1rem;
        padding-top: 0;
        white-space: nowrap;
    }
}

@media screen and (max-width: 912px) {
    .hashrate-charts {
        margin-top: 5rem;
    }

    .column-center .column__title.index-title {
        font-size: 2.5rem;
    }

    .acitve-page::after {
        bottom: -1.2rem;
    }

    .details-item {
        width: 100%;
        position: relative;
    }

    .pools summary::before {
        display: inline;
    }

    .mining-nav__item a:hover::after {
        bottom: -1.2rem;
    }

    .menu__wallet-button {
        width: 0.8rem;
        height: 0.8rem;
    }

    .menu__wallet-txt {
        width: 100%;
    }

    .header .menu__item {
        padding: 0;
    }

    .header__main {
        display: none;
    }

    .menu-burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header .pool-logo {
        display: none !important;
    }

    .logo {
        gap: 0.2rem;
        padding: 0.4rem 0.5rem;
    }
}

@media screen and (max-width: 767px) {
    .hashrate-charts {
        margin-top: 10rem;
    }

    .statistics-container .index-title {
        word-break: break-word;
    }

    .info__container.statistics-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    table {
        font-size: 0.85rem;
    }

    .acitve-page::after {
        bottom: -1rem;
    }

    .mining-nav__item a:hover::after {
        bottom: -0.9rem;
    }

    .mining-nav__link-txt {
        display: none;
    }

    .mining-nav {
        padding: 0.7rem 0;
    }
}

.header__main.burgerActive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: -webkit-fill-available;
    margin-top: 2.5rem;
}

.header__menu.burgerActive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
}

.menu__wallet.burgerActive {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding: 0;
}

.menu__list.burgerActive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 3.7rem;
    gap: 1.5rem;
}

.header__buttons.burgerActive {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #fff;
    margin: 0;
}

.header__signup.burgerActive {
    color: #fff;
    background: #415FFF;
    padding: 0.8rem 1.5rem;
    right: 1.5rem;
    position: fixed;
    bottom: 1.5rem;
}

.header__logo.burgerActive {
    background: #fff;
    color: #000000;
}

.header__menu-burger.burgerActive {
    background: #fff;
}

.header__menu-burger.burgerActive .menu-burger__line {
    background: #000000;
}

.light-theme .menu__list.burgerActive .pools summary {
    color: #fff;
}

.bg-gradient {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 62rem;
    height: 62rem;
}

@media screen and (max-width: 768px) {
    .header__top.burgerActive {
        height: 101vh;
    }

    .bg-gradient {
        width: 34.75rem;
        height: 34.75rem;
    }

    .table__table-main th:not(:first-child) {
        width: 6rem;
    }

    .table__table-main td:not(:first-child) {
        width: 6rem;
    }

    .table__table-main th:first-child, .table__table-main td:first-child {
        margin-left: 0;
    }

    .table__table-main th, .table__table-main td {
        padding-left: 0.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .column-center .column__title {
        font-size: 1.5rem;
    }

    .info__bg {
        width: 360px;
    }

    .column__title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 912px) {
    .header__container {
        padding: 1.5rem;
    }

    .info {
        padding-bottom: 5rem;
    }

    .logo {
        gap: 0.2rem;
        padding: 0.4rem 0.5rem;
    }

    .main__table {
        padding: 0;
        padding-top: 3rem;
    }

    .hathor-cards__container {
        margin-bottom: 3rem;
    }

    .table__header {
        padding-bottom: 1.5rem;
    }

    .table__title {
        font-size: 1.5rem;
    }

    .table__container {
        padding-bottom: 2.5rem;
    }

    .info__container {
        gap: 1.5rem;
    }

    .charts {
        margin-top: 2rem;
        margin-bottom: -4.5rem;
    }

    .charts__container {
        top: -7.5rem;
    }
}

@media screen and (max-width: 767px) {
    .charts {
        margin-top: 3.5rem;
        margin-bottom: -6.5rem;
    }

    .charts__chart {
        padding: 0.5rem;
    }

    .charts__container {
        top: -9.5rem;
        grid-template-columns: 1fr;
    }

    .info {
        padding-top: 0;
    }

    .container {
        padding: 0 1rem;
    }

    .header__container {
        padding-top: 1rem;
    }

    .info__bg-container {
        display: none;
    }

    .info__container {
        display: grid;
        grid-template-areas: "a a" "b c";
        grid-template-columns: unset;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        row-gap: 3rem;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        padding-bottom: 2.5rem;
        margin-top: 2rem;
        word-break: break-all;
    }

    .info__column {
        height: 100%;
    }

    .info__column:nth-child(1) {
        grid-area: b;
        word-break: break-all;
    }

    .info__column:nth-child(2) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        grid-area: a;
        gap: 1rem;
        word-break: break-all;
    }

    .info__column:nth-child(3) {
        grid-area: c;
        text-align: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .column {
        gap: 1.4rem;
    }

    .column:not(.column-center) {
        min-width: 9.7rem;
    }

    .column__line {
        width: 100%;
    }

    .info__bg-container {
        display: none;
    }

    .main__info {
        padding: 0;
    }

    .footer__form {
        font-size: 1.5rem;
    }

    .footer__container {
        padding-top: 3rem;
    }

    .acitve-page::after {
        bottom: -0.9rem;
    }
}

@media screen and (max-width: 359px) {
    .column:not(.column-center) {
        min-width: 8.75rem;
    }

    .column__title {
        font-size: 1.25rem;
    }

    .info-card__img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .info-card__pool-logo {
        gap: 0.5rem;
    }
}