.profile__box{
    display: flex;
    gap: 84px;
    margin-top: 30px;
}

.profile__title{
    background: #1B1E49;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: normal;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.profile__list ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: normal;

}

.profile__city{
    width: 100px;
}

.profile__percent{
    color: #B81C22;
}

.profile__right{
    display: flex;
    gap: 30px;
}

.profile__map{
    width: 213px;
}

@media screen and (max-width: 991px) {
    .profile__box{
        gap: 0;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .profile__title{
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .profile__list ul li{
        gap: 0;
        font-size: 14px;
    
    }
    
    .profile__city{
        width: 90px;
    }
    
    .profile__percent{
        color: #B81C22;
    }
    
    .profile__right{
        display: flex;
        flex-direction: row-reverse;
        gap: 15px;
    }
    
    .profile__map{
        width: 124px;
    }
}