

.not_found_page{
    width: 100%;
    padding-top: 55px;
    background-color: rgba(18, 22, 30, 1);
    padding-bottom: 164px;
}

.container_not_found{
    display: flex;
    flex-direction: column;
    max-width: 360px;
    gap: 44px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.box_title_btn_not_found{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


.title_not_found{
    font-family: var(--font-family-minor);
    font-size: 68px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(82, 98, 120, 1);
}

.subtitle_not_found{
    font-family: var(--font-family-main);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.63;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}


.description_not_found{
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(235, 240, 248, 1);

}

.link_not_found{
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    background-color:  rgba(235, 28, 36, 1);
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    transition: var(--transition-time-all);
}


.link_not_found:hover{
    background-color: rgba(82, 98, 120, 1);
    cursor: pointer;
    color: white;
}

.icon_arrow_right_not_found{
    width: 23px;
    height: 20px;
    display: block;
}


.not_fount_breadcrumbs a{
    opacity: 50%;
    color: rgba(255, 255, 255, 1)!important;
}

.not_fount_breadcrumbs .breadcrumbs__current {
    color: rgba(255, 255, 255, 1) !important;
}

@media screen and (min-width: 768px) {
    .not_found_page{
        padding-top: 126px;
        padding-bottom: 251px;
    }

    .container_not_found{
        max-width: none;
        width: 704px;
        gap: 80px;
        padding-left: 0;
        padding-right: 0;
    }

    .box_title_btn_not_found{
        gap: 0;
    }


    .title_not_found{
        font-size: 86px;
        margin-bottom: 28px;
    }

    .subtitle_not_found{
        font-size: 28px;
        margin-bottom: 20px;
    }


    .description_not_found{
        font-size: 22px;
        margin-bottom: 20px;

    }

    .link_not_found{
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 20px;
        padding-right: 20px;
        width: fit-content;
    }

}

@media screen and (min-width: 1440px) {
    .not_found_page{
        padding-top: 142px;
        padding-bottom: 221px;
    }

    .container_not_found{
        width: 1320px;
        gap: 87px;
    }


    .description_not_found{
        width: 874px;
        margin-left: auto;
        margin-right: auto;
    }


}