body{
   background-image: url(/img/bg-dark-blue.webp);
}

.burger__menu{
    max-width: 30px;
    display: none;
    cursor: pointer;
    @media (max-width: 1024px){
        display: block;
    }
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    /* @media(max-width: 1222px){
        padding: 0 16px;
    } */
}

.title{
    text-align: center;
}

/* header */

.header{
    padding: 16px 0;
}

.header__logo{
    max-width: 200px;
}

.header__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid black;
    padding: 0 10px;
}

.header__container{
    display: flex;
    gap: 20px;
}

/* sidebar */

.sidebar{
    max-width: 250px;
    width: 100%;
    height: 100vh;
    border: 1px solid black;
    @media(max-width: 1024px){
        position: fixed;
        top: 0;
        left: 0;
        max-width: 250px;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1000; /* Накрываем контент */
        transform: translateX(-100%); /* Скрываем за левый край экрана */
        transition: transform 0.3s ease-in-out; /* Плавное перемещение */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Добавляем тень для визуального разделения */
    }
}
.sidebar.active {
        transform: translateX(0); /* Возвращаем на экран */
    }

.sidebar__wrapper{
    padding: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* main */

.main{
    display: flex;
}
.content{
    max-width: 100%;
    width: 100%;
    border: 1px solid black;
    padding: 0 10px;
}
.content__title{
    margin-top: 30px;
}
.content__block{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid black;
}
.content__block__info{
    border: 1px solid black;
    display: flex;
    justify-content: space-between;
    max-width: 65%;
    width: 100%;
}
.content__block__info__item{
    border: 1px solid black;
    max-width: 48%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}
.content__block__info__item__text{
    border: 1px solid black;
}
.content__block__info__item__button{
    border: 1px solid black;
    padding: 6px 0;
}