html {
    background: #1E1E1E;
    color: white;
    font-family: sans-serif;
    
}
body {
    margin: 0;
}
header {
    height: 100px;
    border-bottom: 0.5px solid #262626;
    
}
.header_block {
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 90%;
    justify-content: space-between;
}

.header_logo {
    background: url(https://manager.abcbrend.com/assets/images/logo.png) no-repeat center left;
    background-size: auto 54px;
        height: 60px;
        width: 100px;
}

.header_right {
    display: flex;
    align-items: center;
    background: #9EFF00;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
}
.header_right a {
    color: #262626;
    font-size: 18px;
    text-decoration: none;
}
.header_manu a {
    color: white;
    text-decoration: none;
    width: 20px;
    
    
    padding: 15px 20px;
    border-radius: 8px;
}
.header_manu a.active{
    background: #262626;
}

.page {
    margin: 0 auto;
    width: 100%;
    max-width: 90%;
}


.page_block {
    display: flex;
    width: 100%;
    height: 400px;
    align-items: center;
    justify-content: center;
    background-image: url(https://avatars.mds.yandex.net/i?id=0a0c4cc7a131f8575bea13957feb55cb_l-5022652-images-thumbs&n=13);
    background-size: cover;
    background-position: center;
    
    
    position: relative;
    overflow: hidden;
}

.page_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none; 
  z-index: 1;
}



.page_title {
    display: flex;
    font-size: 48px;
    z-index: 2;
}
