
.offer_manual{
    margin: 25px 0 66px;
}
.manual_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
}
.description{
    width: 100%;
    padding: 32px 64px;
    background-color: rgba(35, 30, 22, 20%);
    border-radius: 8px;
    gap: 22px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.description_base{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.base_step{
    display: flex;
    justify-content: start;
    align-items: center;
    gap:10px ;
}
.base_img{
    width: 25px;
    height: 25px;
}
.base_step h2{
    font-size: 20px;
    font-weight: normal;
}
.base_point{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 8px;
}
.point{
    width: 21px;
    height: 3px;
    border-radius: 48px;
    background-color: #FF9500;
    opacity: 20%;
}
.point_active{
    background-color: #FF9500;
    opacity: 100%;
}

.description_img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.description_img img{
    width: 100%;
}
.description_text p{
    font-size: 24px;
    font-weight: normal;
    letter-spacing: -0.5px;
}
.minecraft{
    color: #FF9500;
    font-size: 24px;
    font-weight: normal;
}

.manual-button {
    text-align: center;
    padding: 16px 0px 17.5px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #FF9500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    letter-spacing: -0.2px;
    box-shadow: 
    0 15px 29.8px rgba(255, 149, 0, 20%),   /* Внешняя тень */
    inset -2px -2px 4px rgba(0, 0, 0, 25%), /* Внутренняя тень снизу */
    inset 5px 5px 4px rgba(255, 255, 255, 25%); /* Внутренняя тень сверху */
}
.description_info p {
    font-size: 24px;
    font-weight: normal;
    color: #4B4337;
    letter-spacing: -0.7px;
}

.description_block{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.block_text{
    font-size: 24px;
    font-weight: normal;
}
.adaptiv-incruct{
    display: none;
}

@media(max-width:768px){
    .adaptiv-incruct{
        display: block;
        margin: 55px 0 17px;
    }
    .adaptiv-incruct h1{
        font-size: 32px;
    }
    .description {
        padding: 32px 29px;
    }
    .offer_manual{
        margin: 25px 0px 0px;
    }
    .description_info p{
        font-size: 18px;
    }
    .description_block{
        flex-direction: column;
        gap: 22px;
    }
   
}
@media(max-width:460px){
    .description_info p{
        font-size: 14px;
        letter-spacing:normal ;
        line-height: normal;
    }
    
}
