@import url(../fonts.css);

.burger {
    background: rgb(57, 54, 54);
}

.burger-rol {
    padding: 15px;
}

.burger-list {
    display: flex;
    box-shadow: 0px 1px 8px 0px rgba(17, 17, 17, 0.3);
    background: rgb(41, 41, 41);
    height: 65px;
    align-items: center;
    padding-left: 21px;
    gap: 37px;
}

.burger-list__link {
    color: rgb(255, 255, 255);
    font-family: 'RR';
    font-size: 18px;
    line-height: 24px;
}

.burger-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
}

.burger-items__box {
    width: 23.7%;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 4px;
    background: rgb(12, 12, 12);
    padding: 15px;
 
}

.burger-box__mini {
    position: relative;
}

.burger-box__photo {
    width: 100%;
}

.burger-modify__icon {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: white;
    background: rgba(105, 207, 23, 0.9);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 500ms;
}

.burger-modify__icon:hover {
    opacity: 1;
}

.burger-box__title {
    color: rgb(255, 255, 255);
    font-family: 'RB';
    font-size: 19px;
    line-height: 15px;
    margin-top: 15px;
}

.burger-box__text {
    color: rgb(255, 255, 255);
    font-family: 'RR';
    font-size: 19px;
    line-height: 25px;
    margin-top: 10px;
    height: 124px;
}

.burger-bottom {
    height: 50px;
    background: black;
}


@media (max-width: 1240px) {
    .burger-items__box{
        display: flex;
        
    
    }
}









