@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
p {
    font-weight: 600;
    line-height: 31px;
    margin: 0;
}
@keyframes slide-up {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
label {
    color: hsla(0,0%,78%,.8);
    display: block;
    font-size: 15px;
    font-size: var(--size-pre);
    font-weight: 600;
}
h1 {
    font-size: 38px;
    font-weight: 700;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #070b10;
    overflow-x: hidden;
    color: #fff;
    font-size: 16px;
}
.sidebar {
    background-color: #070b10;
    border-right: 1px solid #1e2024;
    height: 100vh;
    left: 0;
    max-width: 240px;
    padding: 12px;
    position: fixed;
    color: white;
    top: 0;
    transition: .2s ease-in-out;
    width: 100%;
    z-index: 5;
}
.links {
    display: flex;
    margin-top: 25px;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-weight: 900;
}
.logo img {
    height: 50px;
    max-width: 50px;
}
.logo span {
    color: #4992ff;;
}
a {
    text-decoration: none;
}
.link span {
    color: inherit;
    font-size: 14px;
    line-height: normal;
    margin: 0;
    text-align: center;
    text-decoration: none;
}
.icon, .icon svg {
    width: 20px;
    height: 20px;
}
.link.active .icon svg path {
    fill: #fff;
}
.link .icon svg path {
    fill: #96a0af;
}
.link {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #96a0af;
    border-radius: 12px;
    border-right: 2px solid transparent;
    display: flex;
    gap: 18px;
    padding: 14px;
    transition: .1s ease-in-out;
    width: 100%;
}
.link.active {
    background-color: #22252f;
    color: white;
}
.rate {
    background-color: rgba(39,113,214,.12);
    background-image: url(/img/rate.svg);
    background-position: 0 -10px;
    background-size: 100% 150%;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
}
.rate p {
    color: #4992ff;
    font-size: 15px;
    text-align: center;
}
.navbar {
    background-color: rgba(14,18,24,.7);
    border: 1px solid #1e2024;
    border-right: none;
    border-top: none;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: calc(100% - 260px);
    z-index: 5;
}
.order {
    backdrop-filter: blur(10px);
    background-color: inherit;
    border-right: 1px solid #1e2024;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    height: 100px;
    justify-content: flex-start;
    min-width: 250px;
    padding: 20px 25px;
}
.order p {
    color: hsla(0,0%,100%,.65);
}
.order span {
    color: #4992ff;;
}
.content {
    margin-left: 260px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation: slide-up 0.5s ease-out forwards;
}
.wrapper {
    display: flex;
    justify-content: center;
}
.main__full {
    margin-bottom: 0;
    max-width: 100%;
    padding: 0 40px;
}
main {
    margin: 8vh auto 40px;
    max-width: 530px;
    padding-top: 70px!important;
    width: 100%;
}
.startCard {
    display: flex;
    flex-direction: row;
    gap: 25px;
}
.crown img {
    left: -5px;
    top: -2px;
    width: 28px;
    position: absolute;
}
.crown {
    position: relative;
}
.line img {
    bottom: -15px;
    right: 0;
    width: 100px;
    position: absolute;
}
.line {
    position: relative;
    color: #4992ff;
}
.home {
    margin: 0 auto;
    max-width: 1180px;
    display: flex;
    gap: 100px;
    flex-direction: column;
}
.startCard {
    align-items: center;
    display: flex;
    gap: 35px;
    justify-content: space-between;
    width: 100%;
}
.startCard__text h1 {
    font-size: 45px;
    line-height: 3.5rem;
}
.startCard__image {
    min-width: 350px;
    width: 350px;
    margin-right: 150px;
}
.startCard__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.startCard__text p {
    color: hsla(0,0%,100%,.35);
    font-size: 18px;
}
.startCard__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}
.website {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 120px;
    width: 100%;
}
.website p {
    font-size: 14px;
    color: #4992ff;
}
.website div {
    height: 1.5px;
    width: 120px;
    background: #4992ff;
}
.buttonbuy, .buttonfaq {
    background-color: #3e75c7;
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 22px;
    transition: .3s ease-in-out;
}
.buttonfaq {
    background-color: rgba(39,113,214,.12);
    color: #4992ff;
}
.infoCard {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
}
.infoCard__image {
    align-items: center;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: .3s ease-in-out;
    width: calc(33.3% - 17.33333px);
    will-change: transform,box-shadow;
}
.infoCard__image:hover {
    transform: translateY(-15px);
}
.infoCard__image img {
    border-radius: 12px;
    width: 100%;
}
.infoCard span {
    color: #4992ff;
    font-size: 47px;
    font-weight: 700;
    left: 50%;
    position: absolute;
    top: 75px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.statsCard {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.stats__rate {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}
.stats__rate span {
    color: #4992ff;
}
.stats__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.stats__desc {
    color: hsla(0,0%,100%,.35);
    font-size: 17px;
    font-weight: 100;
}
.stats__cards {
    grid-gap: 25px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 30px;
}
.stats__card {
    background-color:#0e1218;
    border: 1px solid #1e2024;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    flex-shrink: 1;
    gap: 20px;
    padding: 30px;
    width: 100%;
}
.stats__text {
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.stats__text h3 {
    font-size: 20px;
    font-weight: 500;
}
.stats__text a, .stats__text p {
    color: hsla(0,0%,100%,.55);
    font-size: 15px;
    line-height: 27px;
}
.stats__text a {
    text-decoration: underline;
}
.stats__stats {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
}
.stats__stat {
    display: flex;
    flex-direction: column;
}
.stats__stat span {
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 36px;
    font-weight: 700;
}
.social {
    display: flex;
    align-items: center;
    padding-bottom: 150px;
    background-image: url(/img/bottom.png);
    background-position: bottom;
    background-repeat: no-repeat;
    flex-direction: column;
    gap: 30px;
}
.social__badge {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: #4992ff;
}
.social__badge svg {
    width: 20px;
    height: 20px;
}

.social__desc {
    color: hsla(0,0%,100%,.75);
    font-size: 18px;
    text-align: center;
}
.social__sn {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 60px;
}
.social__infobox {
    align-items: center;
    background-color: hsla(0,0%,100%,.1);
    border-radius: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 8px 20px;
}
.social__infobox span {
    color: hsla(0,0%,100%,.6);
    font-size: 14px;
}
.buy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bluep {
    color: #4992ff;
    font-size: 16px;
    text-transform: uppercase;
}
.buy__block {
    background-color: #0e1218;
    border: 1px solid #1e2024;
    border-radius: 19px;
    flex-grow: 1;
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 100%;
    padding: 25px;
    width: 100%;
}
.buy__header {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
    justify-content: space-between;
}
.buy__inputs {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}
.buy__input {
    align-items: center;
    background-color: #26292d;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-weight: 600;
    gap: 12px;
    justify-content: space-between;
    padding: 12px;
    transition: .3s ease-in-out;
    width: 100%;
}
.buy__input.iconright {
    flex-direction: row-reverse;
}
.input__icon {
    background-color: hsla(0,0%,100%,.1);
    border-radius: 7px;
    height: 23px;
    min-width: 23px;
    padding: 5px;
    width: 23px;
}
.input__icon svg {
    height: 100%;
    vertical-align: 0.3rem;
    width: 100%;
}
.buy__input input {
    background-color: initial;
    border: none;
    outline: none;
    color: #fff;
    flex-grow: 1;
    font-size: 1rem;
    margin: 0;
    width: 100%;
}
.errorText {
    color: #ff5d5d;
    text-transform: none;
    max-width: 300px;
    margin-top: 7px;
}
.errorBlock {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.buy__convert {
    background-color: #26292d;
    border-radius: 7px;
    height: 47px;
    padding: 13px;
    width: 47px;
}
.submit {
    background-color: #3e75c7;
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0 0;
    padding: 14px 22px;
    margin-top: 10px;
    transition: .3s ease-in-out;
    width: 100%;
}
.submit:disabled {
    background-color:#1b222b;
    color: #9e9e9e;
    cursor: not-allowed;
}
.alert {
    border: 1px solid #1e2024;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 20px;
}
.alert p {
    max-width: 500px;
}
.contacts {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}
.bluebutton {
    background-color: rgba(39,113,214,.12);
    color: #4992ff;    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    font-weight: 600;
    margin: 12px 0 0;
    padding: 14px 22px;
    transition: .3s ease-in-out;
}
.bluebutton:hover {
    background: #324154;
}
.faq__main {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.faqtab[data-selected=true] {
    background-color: rgba(39,113,214,.12);
    border-color: rgba(112,171,251,.15);
    color: #4992ff;
}

.faqtabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;

}
.card__main {
    background-color: #0e1218;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.card__top {
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.card__content p {
    padding-top: 20px;
}
.card__content {
    font-weight: 0;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.card__top::after {
    content: "\25BE";
    position: absolute;
    right: 5px;
    font-size: 25px;
}
.card__top.active::after {
    transform: rotate(60deg);
}
.buy__tovars {
    grid-gap: 10.5px;
    display: grid;
    gap: 10.5px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 15px;
}
.buy__tovar {
    border: 2px solid #1e2024;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    padding: 15px;
    transition: background-color .3s,border-color .3s;
}
.buy__tovar img {
    height: 140px;
    width: 140px;
}
.buy__tovar:hover {
    background-color: #26292d;
}
.buy__tovar.active{
    background-color: #26292d;
    border-color: #4992ff;
}
@media screen and (max-width: 1200px) {
    .startCard__image {
        min-width: 300px;
        width: 300px;
    }
    .infoCard>div {
        width: 350px;
    }
    .infoCard>div span {
        font-size: 50px;
        top: 70px;
    }
}
@media screen and (max-width: 1000px) {
    .content {
        margin-left: 75px;
    }
    .rate {
        background-size: cover;
        padding: 0;
    }
    .rate p {
        font-size: 10px;
        padding: 0;
    }
    .rate span {
        display: none;
    }
    .startCard {
        gap: 10px;
    }
    .startCard h1 {
        font-size: 40px;
    }
    .sidebar {
        max-width: 74px;
    }
    .startCard__image {
        display: none;
    }
    .navbar {
        left: 67px;
        width: calc(100% - 67px);
    }
    .link span {
        display: none;
    }
    .stats__cards {
        flex-direction: column;
        display: flex;
    }
    .stats__card {
        width: 100%;
    }
}
@media screen and (max-width: 880px) {
    .infoCard>div span {
        top: 70px;
    }
}
@media screen and (max-width: 700px) {
    .startCard__text {
        padding-left: 12px;
    }
    .buy__tovars {
        grid-template-columns: repeat(2,1fr);
    }
    .link span {
        display:inline;
    }
    .sidebar {
        max-width: 100vw;
        position: fixed;
    }
    .navbar {
    display: flex;
    position: absolute;
    margin-top: 65px;
    overflow: hidden;
    left: 0px;
    width: 100%;
    }
    .sidebar.hidden {
        opacity: 0;
        visibility: hidden;
    }
    .mobile {
        cursor: pointer;
        position: absolute;
        z-index: 10000;
        left: 20px;
        top: 20px;
        color: white;
    }
    .content {
        width: 100%;
        margin-left: 0;
    }
    .startCard {
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
    }
    .startCard h1 {
        font-size: 40px;
    }
    .line img {
        width: 80px;
    }
    .main__full {
        margin-top: 15vh;
        padding: 0;
    }
    .main__full>* {
        max-width: 100%;
    }
    
    .statsCard {
        padding-left: 30px;
        padding-right: 30px;
    }
    .stats__header h1 {
        font-size: 30px;
    }
    .stats__header {
        display: flex;
        align-items: center;
        justify-content: space-between;

    }
    .stats__cards {
        flex-direction: column;
        display: flex;
    }
    .stats__stats {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        justify-items: center;
    }
    .stats__stats svg {
        display: none;
    }
    .social__sn {
        flex-direction: column;
    }
    .social h1 {
        text-align: center;
        font-size: 30px;
    }
    .buy {
        display: flex;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .faq {
        padding-left: 20px;
        padding-right: 20px;
    }
    .buy h1 {
        font-size: 30px;
    }
    .contacts {
        padding-left: 20px;
        padding-right: 20px;
    }
    .faq {
        font-size: 13px;
    }
    .social {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 700px){
    .order {
       height: 100px;
       margin-top: 5px;
       min-width: 250px;
       padding: 20px 25px;
    }
}
