@font-face {
    font-family: proxima_nova_light;
    src: url(https://krockit.com/assets/fonts/proxima-nova-light.ttf);
    font-display:swap;
}

@font-face {
    font-family: proxima_nova_regular;
    src: url(https://krockit.com/assets/fonts/proxima-nova-regular.ttf);
    font-display:swap;
}

@font-face {
    font-family: proxima_nova_semibold;
    src: url(https://krockit.com/assets/fonts/proxima-nova-semibold.ttf);
    font-display:swap;
}

@font-face {
    font-family: proxima_nova_bold;
    src: url(https://krockit.com/assets/fonts/proxima-nova-bold.ttf);
    font-display:swap;
}

body {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    color: #272848;
}
a{
    text-decoration: none;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1240px;
}

/* Footer-start */
.footer {
    background: #312E38;
    color: #fff;
    padding: 40px 0;
    margin-top: 100px;
    
}

.footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.footer-links  {
    display: flex;
    gap: 20px;
    
}

.footer-links a {
    color: #ffffff;
    list-style-type: none;
    font-size: 14px;
}

.footer-logo img{
    height: 30px;
    margin-bottom: 15px;
    width:170px;
}


.privacy-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 0;
    box-sizing: border-box;
}

.privacy-links a {
    font-size: 12px;
    line-height: 118.69%;
    color: #fff;
    list-style-type: none;
    margin-left: 25px;
    color: #b0b0b0;
}

.privacy-links a:last-child {
    margin-left: 25px;
}

.footer p {
    font-size: 12px;
    line-height: 118.69%;
    margin: 10px 0 0;
    font-weight: 200;
    color: #b0b0b0;
}
/* Footer-end */

/* Header-start */

.header-logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo img {
    height: 45px;
}

.header {
    position: relative;
    text-align: center;
    z-index:1000;
    border-bottom: 1px solid #e9e9e9;
}

.review-link {
    font-size: 16px;
    font-weight: 700;
    color: #272848;
    padding: 6px 15px;
    border: 1px solid transparent;
    border-radius: 1px;
    transition: .3s;
}

.review-link:hover{
    border: 1px solid #7570F8;
    border-radius: 5px;
}

.top-menu{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 0;
    box-sizing: border-box;
    justify-content: space-between;
}

.header-button-menu {
    padding: 10px 25px;
    margin-left: 25px;
    background: #7570f8;
    border: none;
    border-radius: 7px;
    transition-duration: .3s;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    color: #ffffff;
}

.header-button-menu:hover {
    background: #4d4aa6;
}

.menu{
    display: none;
    position: absolute;
    height: 400px;
    width: 100%;
    background-image: linear-gradient(to right,#BABDFF 50%, rgb(255, 255, 255) 50%);
    background: -webkit-linear-gradient(to right,#BABDFF 50%, rgb(255, 255, 255) 50%);   
    background:    -moz-linear-gradient(to right,#BABDFF 50%, rgb(255, 255, 255) 50%);
    background:     -ms-linear-gradient(to right,#BABDFF 50%, rgb(255, 255, 255) 50%);
    background:      -o-linear-gradient(to right,#BABDFF 50%, rgb(255, 255, 255) 50%);
    position:-webkit-absolute;
    transition: transform .24s ease-out, box-shadow .24s ease-out;
    box-shadow: 0px 5px 8px rgba(45, 104, 230, 0.2);
    height: auto;
    z-index:1000;
    border-top:1px solid #d6d6d6;
}

.menu .container{
    height: 100%;
    display: flex;
    transition: transform .24s ease-out, box-shadow .24s ease-out;
    
}
.menu-categories{
    height: 100%;
    background: #BABDFF;
    padding: 25px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.menu-category{
    min-width: 290px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    padding: 16px 39px;
    box-sizing: border-box;
    color: #272848;
}

.menu-category.active {
    background: #ffff;
    border-radius: 40px 0 0 40px;
    -webkit-border-radius: 40px 0 0 40px;
    -moz-border-radius: 40px 0 0 40px;
    font-weight: 600;
}

.menu-category:hover{
    background: #f0f0f1;
    border-radius: 40px 0 0 40px;
    -webkit-border-radius: 40px 0 0 40px;
    -moz-border-radius: 40px 0 0 40px;
}

.menu-sub-categories{
    display: none;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-column-gap: 45px;
    grid-row-gap: 30px;
    padding: 35px 40px;
    box-sizing: border-box;
    background-color: #ffffff;
    
}

.menu-sub-categories.active{
    display: grid;
}

.menu-sub-category{
    width: fit-content;
    font-size: 16px;
    justify-self: flex-start;
    white-space:nowrap;
    color: #272848;
}

.menu-sub-category:hover{
    color: #7570F8;
}

/* Header-end */

nav.breadcrumb {
    font-size: 16px;
    box-sizing: border-box;
    line-height: 1.5;
    color: rgb(51, 51, 51);
    margin: 0px;
    padding: 20px 0px 10px;
}

nav.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

nav.breadcrumb li {
    margin-right: 5px;
    font-size: 13px;
}

nav.breadcrumb a {
    color: #7570F8;
    text-decoration: none;
}

nav.breadcrumb li::after {
    content: "/";
    margin: 0px 0px 0px 5px;
}

nav.breadcrumb li:last-child::after {
    content: "";
}

.content-error{
    padding: 70px 0 480px;
    text-align: center;
    background-image: url('https://krockit.kz/assets/images/bg/404.svg');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: bottom;
}

.content-error p{
    width: 60%;
    margin: 40px auto 0;
}

.separator-footer{
    padding: 15px 0 25px;
    border-top: 0.5px solid #414141;
    border-bottom: 0.5px solid #414141;
    margin-top: 30px;
}

@media(max-width: 1580px){
    .container{
        width: 90%;
    }
}

@media(max-width: 1400px){
    .content-error{
        padding-bottom: 410px;
    }
}

@media(max-width: 1280px){
    .menu-sub-category{
        font-size: 16px;
    }
    
    .menu-sub-categories{
        grid-column-gap: 60px;
        grid-row-gap: 30px;
    }
    
    .menu-category{
        font-size: 16px;
        padding: 15px 30px;
        min-width: 250px;
    }
}

@media(max-width: 1100px){
    .content-error{
        background-size: contain;
    }
}

@media(max-width: 1040px){
    .menu-sub-categories{
        grid-template-columns: repeat(2, 1fr);
    }
    
    body{
        overflow-x: hidden;
    }
    
    nav.breadcrumb{
       font-size: 14px; 
    }
    
    .review-link{
        font-size: 16px;
    }
    
    .header-button-menu{
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .header-logo img {
        height: 35px;
    }
}

@media(max-width: 845px){
    .content-error{
        padding-bottom: 285px;
    }
}

@media(max-width: 800px){
    .menu-sub-categories{
        grid-template-columns: repeat(1, 1fr);
    }
    
    .footer-info, .privacy-links a{
        font-size: 16px;
    }
    
    .footer p {
        font-size: 14px;
        line-height: 131.69%;
        font-weight: 300;
    }
    
    .privacy-links{
        justify-content: start;
        margin: 30px 0;
        padding-bottom: 30px;
    }
    
    .footer{
        padding: 40px 0 40px;
    }
}

@media(max-width: 630px){
    .menu-category{
        min-width: 200px;
        padding: 15px 20px;
    }
    
    .menu-sub-categories{
        padding: 35px 30px;
    }
    
    nav.breadcrumb{
       font-size: 12px; 
    }
    
    .privacy-links, .footer-info{
        flex-direction: column;
        gap: 20px;
    }
    
    .privacy-links a:last-child {
        margin-left: 0;
    }
    
    .footer-logo div{
        font-size: 12px;
        font-weight: 300;
    }
    
    .footer-logo .footer-text-logo {
        font-size: 30px;
        font-weight: 800;
    }
    
    .footer p{
        font-size: 12px;
    }
}

@media(max-width: 600px){
    .content-error{
        padding-bottom: 193px;
    }
    
    .content-error p{
        width: 100%;
    }
}

@media(max-width: 500px){
    .container {
        width: 92%;
    }
    
    .menu-category, .menu-sub-category{
        font-size: 14px;
    }
    
    .menu-sub-categories{
        grid-row-gap: 20px;
        padding: 25px 15px;
    }
    
    .menu-category{
        min-width: 168px;
    }
    
    .menu-categories{
        padding: 20px 0;
    }
    
    .footer-logo img{
        height: 40px;
    }
    .review-link {
        font-size: 14px;
    }
}

@media(max-width: 430px){
    .menu-category{
        padding: 10px;
        min-width: 158px;
    }
    
    .header-button-menu{
        margin-left: 0;
    }
    
    .header-logo img {
        height: 30px;
    }
    
    .top-menu{
        padding: 15px 0;
    }
    
    .header-logo{
        gap: 15px;
    }
    
    .content-error{
        padding-bottom: 145px;
    }
}

main{
    z-index:1;
}
.burger{
    display: flex;
    gap: 15px;
}

.footer-text-logo {
    font-size: 16px;
    font-weight: 800;
}

.footer-subtxt-logo{
    font-size: 12px;
    font-weight: 200;
    color: #b0b0b0;
}