.section__top-banner {
    display: none;
}

.banner__antidetect {
    margin-top: 65px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #E0F406 0%, #BDCC14 100%);
    min-width: 104px;
    color: #222525;
    padding: 16px 8px;
    box-sizing: border-box;
    transition: .2s;
}

.banner__antidetect_text {
    max-width: 780px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
}

.banner__antidetect_text-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin: 0;
}

.banner__antidetect_text-subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.banner__antidetect_times {
    display: flex;
    max-width: 220px;
    align-items: flex-start;
    justify-content: space-between;
}

.banner__antidetect_date-block {
    min-width: 48px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.banner__antidetect_date-time {
    background-color: #A8B60E;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.banner__antidetect_date-text {
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    margin: 0;
}

.banner__antidetect_link {
    border-radius: 25px;
    color: #222525;
    text-decoration: none;
    margin: 0 24px;
    padding: 11px 16px;
    box-sizing: border-box;
    background-color: #D6E813;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: .2s;
}

.banner__antidetect_link:hover {
    text-decoration: none;
    color: #222525;
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .banner__antidetect {
        display: none;
    }
    .section__top-banner {
        display: flex;
    }
}