.main__wrapper {
    overflow: hidden;
    background-color: #050812;
    padding-top: 40px;
    padding-bottom: 20px;
}
.main__wrapper_otherPages {
    height: initial !important;
}
.main__wrapper_otherPages .main {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}
.mainBg {
    border-radius: var(--brad);
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.main {
    padding: 102px 60px;
}
.main p:nth-child(2) {
    color: var(--textPLighter) !important;
}

.main > div {
    max-width: 55%;
}
.main__bottom {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: start;
    gap: 52px;
}

.timer {
    z-index: 20;
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 4px;
    border-radius: var(--brad);
}
.timer > div {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1px;

    border-radius: var(--brad);
    /* background-color: #24242426; */
    background-color: white;
    /* backdrop-filter: blur(35px); */
    background-color: #ffffff0a;
    backdrop-filter: blur(35px);
}
.timer > div > p {
    text-align: centers;
}
.timer > div > p {
    color: white !important;
}

@media (max-width: 1000px) {
    .main {
        padding: 92px 16px 73px;
    }
    .mainBg {
    }
    .mainBg img {
        object-position: calc(67% + -50 * ((100vw - 360px) / 980)) 50%;
    }
    .mainBg::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: linear-gradient(to right, var(--bg) 20%, transparent 100%);
    }
    .main > div {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .main {
        padding-top: 64px;
    }
    .main__wrapper {
        height: initial !important;
    }
    .main__bottom {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 26px;
    }
}
