/* ============================================
   KEEVOK.CSS - Полные стили для главной страницы
   ============================================ */

/* ========== ОСНОВНЫЕ СТИЛИ ========== */
.keevok_main {
    min-height: calc(100vh - 80px);
    background-color: #0b141a;
}

/* ========== HERO СЕКЦИЯ ========== */
.hero_section {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0b141a 0%, #1a2a33 50%, #0b141a 100%);
}

.hero_section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 20, 26, 0.3) 0%, rgba(11, 20, 26, 0.7) 100%);
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge_new {
    background: #4caf50;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge_version {
    color: #6d8a9e;
    font-size: 14px;
}

.hero_content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #4fc3f7, #2b5278);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_content p {
    font-size: 20px;
    color: #6d8a9e;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero_btn.primary {
    background: linear-gradient(135deg, #2b5278, #1e3f5f);
    color: #fff;
    box-shadow: 0 4px 25px rgba(43, 82, 120, 0.4);
    flex-direction: column;
    padding: 18px 50px;
    line-height: 1.2;
}

.hero_btn.primary i {
    font-size: 28px;
}

.hero_btn.primary .btn_subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.hero_btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(43, 82, 120, 0.6);
    background: linear-gradient(135deg, #3b6a8f, #2b5278);
}

.hero_stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.hero_stat {
    text-align: center;
}

.hero_stat .stat_number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4fc3f7;
}

.hero_stat .stat_label {
    font-size: 14px;
    color: #6d8a9e;
}

/* ========== СЛАЙДЕР ========== */
.floating_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.25;
    z-index: 0;
}

.slider_track {
    display: flex;
    animation: scrollSlides 30s linear infinite;
    height: 100%;
    align-items: center;
}

.floating_slider:hover .slider_track {
    animation-play-state: paused;
}

@keyframes scrollSlides {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.slider_slide {
    flex: 0 0 280px;
    height: 350px;
    margin: 0 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.slider_slide:nth-child(2) {
    animation-delay: 1s;
}

.slider_slide:nth-child(3) {
    animation-delay: 2s;
}

.slider_slide:nth-child(4) {
    animation-delay: 3s;
}

.slider_slide:nth-child(5) {
    animation-delay: 4s;
}

.slider_slide:nth-child(6) {
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.slider_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== СЕКЦИЯ: ВОЗМОЖНОСТИ ========== */
.features_section {
    padding: 100px 40px;
    background: #0f1a24;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.features_section.visible {
    opacity: 1;
    transform: translateY(0);
}

.features_section h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.features_section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b5278, #4fc3f7);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features_section>p {
    color: #6d8a9e;
    font-size: 18px;
    margin-bottom: 50px;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature_card {
    background: #17212b;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #2b3b48;
    transition: all 0.3s ease;
}

.feature_card:hover {
    transform: translateY(-10px);
    border-color: #2b5278;
    box-shadow: 0 10px 40px rgba(43, 82, 120, 0.2);
}

.feature_card i {
    font-size: 48px;
    color: #4fc3f7;
    margin-bottom: 20px;
}

.feature_card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature_card p {
    color: #6d8a9e;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== СЕКЦИЯ: СКАЧАТЬ ========== */
.download_section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0a121a 0%, #1a2a33 100%);
    border-top: 1px solid #2b3b48;
    border-bottom: 1px solid #2b3b48;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.download_section.visible {
    opacity: 1;
    transform: translateY(0);
}

.download_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.download_content {
    flex: 1;
}

.download_content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.download_content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b5278, #4fc3f7);
    margin-top: 12px;
    border-radius: 2px;
}

.download_content>p {
    font-size: 18px;
    color: #6d8a9e;
    margin-bottom: 30px;
}

.download_info {
    background: rgba(15, 26, 36, 0.8);
    border-radius: 14px;
    padding: 20px 25px;
    margin-bottom: 25px;
    border: 1px solid #2b3b48;
}

.download_file_info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2b3b48;
    margin-bottom: 15px;
}

.download_file_info i {
    font-size: 32px;
    color: #4fc3f7;
}

.download_file_info .file_name {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.download_file_info .file_size {
    font-size: 13px;
    color: #6d8a9e;
}

.download_requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.download_requirements span {
    font-size: 13px;
    color: #6d8a9e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.download_requirements i {
    color: #4caf50;
}

.download_main_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    background: linear-gradient(135deg, #2b5278, #1e3f5f);
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

.download_main_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(43, 82, 120, 0.5);
    border-color: #4fc3f7;
}

.download_main_btn i {
    font-size: 36px;
}

.download_main_btn .btn_text {
    display: flex;
    flex-direction: column;
}

.download_main_btn .btn_title {
    font-size: 20px;
    font-weight: 700;
}

.download_main_btn .btn_subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.download_trust {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.download_trust span {
    font-size: 13px;
    color: #6d8a9e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.download_trust i {
    color: #4caf50;
}

.download_illustration {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.download_app_icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #2b5278, #1e3f5f);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(43, 82, 120, 0.3);
    transition: all 0.3s ease;
}

.download_app_icon:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(43, 82, 120, 0.5);
}

.download_stats {
    display: flex;
    gap: 30px;
}

.download_stats .stat_item {
    text-align: center;
}

.download_stats .stat_item .stat_number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4fc3f7;
}

.download_stats .stat_item .stat_label {
    font-size: 14px;
    color: #6d8a9e;
}

/* ========== СЕКЦИЯ: КАК ЭТО РАБОТАЕТ ========== */
.how_it_works {
    padding: 100px 40px;
    background: #0f1a24;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section_title {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.section_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b5278, #4fc3f7);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section_subtitle {
    text-align: center;
    color: #6d8a9e;
    font-size: 18px;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: #17212b;
    border-radius: 20px;
    border: 1px solid #2b3b48;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #2b5278;
    box-shadow: 0 10px 40px rgba(43, 82, 120, 0.2);
}

.step_number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2b5278, #4fc3f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.step_icon {
    font-size: 48px;
    color: #4fc3f7;
    margin: 10px 0 20px;
}

.step h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    color: #6d8a9e;
    font-size: 15px;
    line-height: 1.6;
}

/* ========== СЕКЦИЯ: FAQ ========== */
.faq_section {
    padding: 100px 40px;
    background: #0a121a;
}

.faq_items {
    max-width: 800px;
    margin: 0 auto;
}

.faq_item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #17212b;
    border: 1px solid #2b3b48;
    transition: all 0.3s ease;
}

.faq_item.active {
    border-color: #2b5278;
}

.faq_question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq_question:hover {
    background: rgba(43, 82, 120, 0.1);
}

.faq_icon {
    color: #4fc3f7;
    font-size: 20px;
    flex-shrink: 0;
}

.faq_text {
    flex: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.faq_arrow {
    color: #6d8a9e;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq_item.active .faq_arrow {
    transform: rotate(180deg);
    color: #4fc3f7;
}

.faq_answer {
    padding: 0 25px 20px 60px;
    display: none;
    color: #6d8a9e;
    font-size: 15px;
    line-height: 1.8;
}

.faq_item.active .faq_answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== СЕКЦИЯ: КОНТАКТЫ ========== */
.contact_section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0b141a 0%, #1a2a33 100%);
}

.contact_container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #17212b;
    border-radius: 12px;
    border: 1px solid #2b3b48;
    transition: all 0.3s ease;
}

.contact_item:hover {
    border-color: #2b5278;
    transform: translateX(5px);
}

.contact_icon {
    width: 50px;
    height: 50px;
    background: rgba(43, 82, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4fc3f7;
    font-size: 20px;
    flex-shrink: 0;
}

.contact_detail {
    display: flex;
    flex-direction: column;
}

.contact_label {
    font-size: 12px;
    color: #6d8a9e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact_value {
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form_group label {
    color: #e8edf0;
    font-size: 14px;
    font-weight: 500;
}

.form_group input,
.form_group textarea {
    padding: 12px 16px;
    background: #17212b;
    border: 1px solid #2b3b48;
    border-radius: 8px;
    color: #e8edf0;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #2b5278;
    box-shadow: 0 0 20px rgba(43, 82, 120, 0.1);
}

.form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact_submit {
    padding: 14px 30px;
    background: linear-gradient(135deg, #2b5278, #1e3f5f);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact_submit:hover {
    background: linear-gradient(135deg, #3b6a8f, #2b5278);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 82, 120, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: #0a121a;
    border-top: 1px solid #1f2c38;
    padding: 60px 40px 30px;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer_top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1f2c38;
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer_logo_img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer_logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.footer_desc {
    color: #6d8a9e;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer_social {
    display: flex;
    gap: 12px;
}

.footer_social a {
    width: 40px;
    height: 40px;
    background: #17212b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d8a9e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_social a:hover {
    background: #2b5278;
    color: #fff;
    transform: translateY(-3px);
}

.footer_col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer_col ul {
    list-style: none;
    padding: 0;
}

.footer_col ul li {
    margin-bottom: 12px;
}

.footer_col ul li a {
    color: #6d8a9e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer_col ul li a:hover {
    color: #4fc3f7;
    padding-left: 5px;
}

.footer_bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer_bottom span {
    color: #6d8a9e;
    font-size: 13px;
}

.footer_links {
    display: flex;
    gap: 25px;
}

.footer_links a {
    color: #6d8a9e;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer_links a:hover {
    color: #4fc3f7;
}

/* ========== АДАПТИВ ========== */

/* Планшеты */
@media (max-width: 1024px) {
    .download_container {
        flex-direction: column;
        text-align: center;
    }

    .download_content h2::after {
        margin: 12px auto 0;
    }

    .download_trust {
        justify-content: center;
    }

    .download_main_btn {
        justify-content: center;
    }

    .contact_container {
        grid-template-columns: 1fr;
    }

    .footer_top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero_section {
        height: 600px;
    }

    .hero_content h1 {
        font-size: 36px;
    }

    .hero_content p {
        font-size: 17px;
    }

    .hero_stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero_stat .stat_number {
        font-size: 22px;
    }

    .hero_btn.primary {
        padding: 16px 30px;
        font-size: 17px;
    }

    .hero_btn.primary i {
        font-size: 22px;
    }

    .slider_slide {
        flex: 0 0 200px;
        height: 260px;
    }

    .features_section {
        padding: 60px 20px;
    }

    .features_section h2 {
        font-size: 30px;
    }

    .features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download_section {
        padding: 60px 20px;
    }

    .download_content h2 {
        font-size: 30px;
    }

    .download_app_icon {
        width: 120px;
        height: 120px;
        font-size: 48px;
    }

    .download_main_btn {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .download_main_btn i {
        font-size: 28px;
    }

    .download_main_btn .btn_title {
        font-size: 17px;
    }

    .download_requirements {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .download_stats {
        justify-content: center;
    }

    .how_it_works {
        padding: 60px 20px;
    }

    .section_title {
        font-size: 30px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq_section {
        padding: 60px 20px;
    }

    .faq_answer {
        padding: 0 15px 15px 50px;
    }

    .contact_section {
        padding: 60px 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer_top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_desc {
        max-width: 100%;
    }

    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer_links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Телефоны */
@media (max-width: 480px) {
    .hero_section {
        height: 550px;
    }

    .hero_content h1 {
        font-size: 28px;
    }

    .hero_content p {
        font-size: 15px;
    }

    .hero_stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero_btn.primary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero_btn.primary i {
        font-size: 20px;
    }

    .hero_btn.primary .btn_subtitle {
        font-size: 12px;
    }

    .slider_slide {
        flex: 0 0 150px;
        height: 200px;
        margin: 0 8px;
    }

    .floating_slider {
        opacity: 0.15;
    }

    .features_section h2 {
        font-size: 24px;
    }

    .download_content h2 {
        font-size: 24px;
    }

    .download_info {
        padding: 15px;
    }

    .download_file_info {
        flex-direction: column;
        text-align: center;
    }

    .download_trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .download_main_btn {
        padding: 16px;
    }

    .download_main_btn .btn_title {
        font-size: 16px;
    }

    .download_app_icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .download_stats {
        flex-direction: column;
        gap: 10px;
    }

    .section_title {
        font-size: 24px;
    }

    .faq_question {
        padding: 15px 18px;
        font-size: 14px;
    }

    .faq_text {
        font-size: 14px;
    }

    .faq_answer {
        padding: 0 15px 15px 45px;
        font-size: 14px;
    }

    .contact_item {
        padding: 15px;
    }

    .contact_icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact_value {
        font-size: 14px;
    }
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ========== */

/* Анимация при скролле */
.features_section,
.download_section,
.how_it_works,
.faq_section,
.contact_section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.features_section.visible,
.download_section.visible,
.how_it_works.visible,
.faq_section.visible,
.contact_section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b141a;
}

::-webkit-scrollbar-thumb {
    background: #2b3b48;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b5b6f;
}

/* Выделение текста */
::selection {
    background: rgba(43, 82, 120, 0.5);
    color: #fff;
}

/* Ссылки */
a {
    transition: all 0.3s ease;
}

/* Скрытие элемента */
.hidden {
    display: none !important;
}